@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/119/assets/Arimo-Regular.ttf?v=94715273011134798131669274157") 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;
  margin: 0 auto;
  padding: 0 7vw; }
  .page-width:after {
    content: '';
    display: table;
    clear: both; }
  @media (min-width: 1600px) and (max-width: 1921px) {
    .page-width {
      max-width: 1500px;
      padding: 0  50px; } }
  @media (min-width: 1922px) {
    .page-width {
      max-width: 100%;
      padding: 0 14vw; } }
  @media (max-width: 1921px) {
    .page-width {
      max-width: 1500px;
      padding: 0 50px; } }
  @media only screen and (max-width: 768px) {
    .page-width {
      padding: 0 3vw; } }

@media (min-width: 1600px) and (max-width: 1921px) {
  .qr-page-width {
    max-width: 1660px;
    padding: 0  50px; } }
@media (min-width: 1922px) {
  .qr-page-width {
    max-width: 100%;
    padding: 0 14vw; } }
@media (max-width: 1921px) {
  .qr-page-width {
    max-width: 1500px;
    padding: 0 50px; } }
@media only screen and (max-width: 768px) {
  .qr-page-width {
    padding: 0 3vw; } }

/*================ 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%;
  -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: #a11b23;
  color: white; }
  .btn:hover, .btn--secondary:hover,
  .rte .btn:hover,
  .rte .btn--secondary:hover {
    background-color: #cd222c;
    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: #a11b23;
    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%;
  margin: auto;
  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/119/assets/ico-select.svg?v=545218153059351571669274157");
  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/119/assets/signer_25x.gif?v=160134830012508230961669274158);
    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; }

.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 .h1,
  .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 .h1:first-child,
    .rte h2:first-child,
    .rte .h2:first-child,
    .rte h3:first-child,
    .rte .h3:first-child,
    .rte h4:first-child,
    .rte .h4:first-child,
    .rte h5:first-child,
    .rte .h5:first-child,
    .rte h6:first-child,
    .rte .h6:first-child {
      margin-top: 0; }
  .rte 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; }

.template-article .content-block {
  padding-top: 20px; }

/*================ 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: #a11b23;
  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: #5f1015; }

.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: #a11b23; }

/*================ 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 .h1,
  .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 ================*/
.hero__slide:not(:first-child) {
  display: none; }

.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/119/assets/ajax-loader.gif?v=41356863302472015721669274157) 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; }
  @media only screen and (max-width: 768px) {
    .site-header {
      margin-top: 0px; } }

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

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

.announcement-bar {
  position: relative;
  background: url("//cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/bar.png?v=1637207356") center bottom no-repeat;
  background-size: 100% 100%; }
  @media only screen and (min-width: 769px) {
    .announcement-bar {
      display: block; } }
  .announcement-bar:hover {
    opacity: 1; }
  .announcement-bar .announcement-bar-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6.5px 10px;
    color: #ffffff; }
    @media only screen and (max-width: 590px) {
      .announcement-bar .announcement-bar-item {
        flex-wrap: wrap;
        flex-direction: column; } }
    .announcement-bar .announcement-bar-item .announcement-text-box {
      flex: 0 1 55%;
      width: 100%;
      text-align: center; }
      @media only screen and (max-width: 1600px) {
        .announcement-bar .announcement-bar-item .announcement-text-box {
          flex: 0 1 65%; } }
      @media only screen and (max-width: 590px) {
        .announcement-bar .announcement-bar-item .announcement-text-box {
          flex: 0 1 100%; } }
    .announcement-bar .announcement-bar-item .announcement-countdown {
      flex: 0 1 15%;
      width: 100%;
      text-align: center;
      color: #000000;
      font-weight: 700;
      font-size: 20px; }
      @media only screen and (max-width: 1600px) {
        .announcement-bar .announcement-bar-item .announcement-countdown {
          flex: 0 1 20%; } }
      @media only screen and (max-width: 1100px) {
        .announcement-bar .announcement-bar-item .announcement-countdown {
          flex: 0 1 30%; } }
      @media only screen and (max-width: 590px) {
        .announcement-bar .announcement-bar-item .announcement-countdown {
          flex: 0 1 100%; } }
      @media only screen and (max-width: 790px) {
        .announcement-bar .announcement-bar-item .announcement-countdown {
          font-size: 18px; } }
      @media only screen and (max-width: 590px) {
        .announcement-bar .announcement-bar-item .announcement-countdown {
          font-size: 16px;
          margin-top: 5px; } }
      .announcement-bar .announcement-bar-item .announcement-countdown .clock-item {
        margin-right: 10px; }
      .announcement-bar .announcement-bar-item .announcement-countdown .num {
        color: #ffffff;
        margin-right: 10px; }
    .announcement-bar .announcement-bar-item .countdown-timeup {
      display: none; }
  .announcement-bar .swiper-button-box {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 9; }
    @media only screen and (max-width: 790px) {
      .announcement-bar .swiper-button-box {
        display: none; } }
    .announcement-bar .swiper-button-box .swiper-button:hover {
      cursor: pointer; }
    .announcement-bar .swiper-button-box .swiper-button svg path {
      fill: #ffffff; }

.announcement-close-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto; }

/*================ Menu toggle, Cart, and Search icons ================*/
.site-header__link {
  display: inline-block;
  color: white;
  padding: 8px 5px;
  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: #a11b23; }

.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: #a11b23; }

.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: #fff; }

.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 3vw; } }
  .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 {
  margin-bottom: 20px;
  clear: both;
  padding: 5px 0; }
  .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) and (max-width: 1920px) {
  .template-collection .product-card {
    min-height: 440px; } }
@media (min-width: 1921px) and (max-width: 3000px) {
  .template-collection .product-card {
    min-height: 520px; } }
@media (min-width: 3001px) {
  .template-collection .product-card {
    min-height: 570px; } }
@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; } }
@media (min-width: 1921px) {
  .template-page .product-card {
    min-height: 570px; } }

body.template-page .main-content {
  color: #3e3e3e;
  padding-bottom: 50px; }

/*================ 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 {
  margin-bottom: 5px;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical; }

.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: #a11b23; }

.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; }
  @media only screen and (max-width: 768px) {
    .soldout-border {
      width: 100%; } }

.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 {
  padding-top: 15px;
  margin-bottom: 30px; }
  @media only screen and (min-width: 769px) {
    .product-single {
      margin-bottom: 30px; } }

@media only screen and (min-width: 769px) and (max-width: 1000px) {
  .product-single .medium-up--one-half {
    width: 100%; }

  .product-single__info-wrapper {
    padding-left: 0; } }
@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%;
  position: relative; }

.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;
  overflow: hidden; }
  .product-single__thumbnail img {
    position: relative;
    display: block;
    max-height: 110px;
    margin: 0 auto;
    overflow: hidden; }
    .no-csstransforms .product-single__thumbnail img {
      top: 0; }
  .is-active .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.8;
  transition: opacity 0.15s ease-in;
  width: 48px;
  height: 48px; }
  .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.2 !important; }

.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; }
  .pagination a {
    color: #7b7b7b; }
    .pagination a:hover, .pagination a:focus {
      color: #a11b23; }
  .pagination .current {
    font-weight: 700;
    color: #222222; }
  .pagination a,
  .pagination .current {
    display: inline-block;
    padding: 5px 10px;
    font-size: 20px; }

/*================ 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: 1;
  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: #a11b23;
  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: #a11b23; }
  .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: #a11b23;
  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: #a11b23; }
  .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/119/assets/author-before.png?v=6216159433364999031669274159);
    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: #a11b23;
  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: #cd222c; }
  .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 #a11b23;
  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: #a11b23;
    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: #cd222c; }

/*================ 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, .page-title .h1 {
  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: 50px !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: 10px !important; }

@media only screen and (min-width: 769px) {
  .site-header__upper .medium-up--two-quarter {
    width: 90%;
    position: relative; }
  .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; }

.short_desc iframe {
  width: 100%;
  height: 300px; }
  @media only screen and (max-width: 768px) {
    .short_desc iframe {
      height: auto; } }

.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: 1000px) {
  .more_info_block .nav-tabs {
    overflow: auto;
    padding-bottom: 20px; }

  .more_info_block .nav-tabs > ul {
    width: 150vw; } }
@media only screen and (max-width: 590px) {
  .more_info_block .nav-tabs > ul {
    width: 180vw; } }
.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: 15px;
  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;
  padding-bottom: 80px; }

/*================  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 {
  margin: auto; }
  @media (max-width: 1921px) {
    #radio_about {
      max-width: 1200px; } }

#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  ================*/
#SiteNavSearchCart {
  padding-right: 5px; }

.site-header__upper {
  position: relative; }
  @media (max-width: 1921px) {
    .site-header__upper {
      max-width: 1320px;
      padding: 0; } }
  @media (min-width: 1400px) and (max-width: 1600px) {
    .site-header__upper {
      max-width: 1350px; } }
  @media (min-width: 1600px) and (max-width: 1920px) {
    .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: 120%;
  padding: 40px 45px 30px 45px;
  max-width: 1400px;
  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: 12px;
  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: 12px;
  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%; }

@media (max-width: 1921px) {
  .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{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; }

.dowload_search {
  display: none; }

/*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: 100%; }

  .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; }
  @media (max-width: 1921px) {
    .page-width_plus {
      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; }

#back-top {
  top: initial !important;
  position: fixed;
  bottom: 220px;
  z-index: 98;
  right: 40px; }
  #back-top a {
    width: 30px;
    height: 30px;
    border: none;
    font-size: 30px;
    color: #fff;
    background-color: #a11b23;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 100%;
    box-shadow: 0px 0px 8px #666; }
    #back-top a .fa {
      font-weight: 700;
      margin-top: -4px; }

/* slideshow prev next */
#Slideshow-slideshow:hover .slick-prev, #Slideshow-slideshow:hover .slick-next {
  opacity: 1;
  z-index: 1; }

.hero .slick-prev, .hero .slick-next {
  transition: all 0.5s ease;
  opacity: 0;
  top: 85%;
  height: 53px;
  margin-top: 0;
  width: 35px;
  border: none;
  z-index: -1; }

.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;
  font-weight: bold; }
  @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: 80%;
  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: 425px) {
    .bottom_a_btn {
      font-size: 12px; } }

@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/119/assets/tag-before.png?v=40361595375162200401669274158);
    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 7vw;
  margin: 0 auto !important;
  margin: 0 auto !important; }
  @media (min-width: 1921px) {
    .top-header1 {
      padding: 0 14vw; } }
  @media (max-width: 1921px) {
    .top-header1 {
      padding: 0 50px;
      max-width: 1550px; } }
  @media (min-width: 769px) and (max-width: 1200px) {
    .top-header1 {
      padding: 0; } }
  @media (max-width: 769px) {
    .top-header1 {
      padding: 0 3vw; } }

.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 (min-width: 1921px) {
    .right_header_03 {
      text-align: right; } }
  @media (max-width: 1400px) and (min-width: 1100px) {
    .right_header_03 {
      padding-left: 30px; } }
  @media (min-width: 1401px) {
    .right_header_03 {
      padding-left: 30px; } }

.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/119/assets/quick-view01_small.png?v=62631868086605972471669274157); }

.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/119/assets/scroll03_small.png?v=63325593490468198211669274159) 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/119/assets/scroll01_small.png?v=109380212861713240211669274157) no-repeat;
  background-size: 12px 12px; }

.data_content::-webkit-scrollbar-button:end {
  background: url(//cdn.shopify.com/s/files/1/0011/7220/9721/t/119/assets/scroll02_small.png?v=61231654767754789581669274157) 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; }

#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: 16px;
    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: 65px; } }

#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: 4px;
  font-size: 28px;
  transform: translateY(-70%); }
  @media (min-width: 1921px) {
    #divtime {
      letter-spacing: 13px;
      word-spacing: 1px;
      font-size: 26px;
      left: 4.5%; } }
  @media (max-width: 1920px) and (min-width: 1441px) {
    #divtime {
      letter-spacing: 3px;
      word-spacing: 10px;
      left: 4.5%; } }
  @media (max-width: 1440px) and (min-width: 1367px) {
    #divtime {
      letter-spacing: 3px;
      word-spacing: 7px;
      left: 3.8%; } }
  @media (max-width: 1366px) and (min-width: 1281px) {
    #divtime {
      letter-spacing: 3px;
      word-spacing: 4px;
      left: 3.8%; } }
  @media (max-width: 1280px) and (min-width: 1201px) {
    #divtime {
      letter-spacing: 3px;
      word-spacing: 0px;
      left: 3.8%; } }
  @media (min-width: 1101px) and (max-width: 1200px) {
    #divtime {
      letter-spacing: 1px;
      word-spacing: 8px;
      font-size: 2vw;
      left: 4%; } }
  @media (min-width: 1050px) and (max-width: 1100px) {
    #divtime {
      letter-spacing: 3px;
      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: 3px;
      word-spacing: -2px;
      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: 0px;
      left: 3.5%;
      font-size: 2vw; } }
  @media (max-width: 769px) and (min-width: 480px) {
    #divtime {
      left: 5%;
      letter-spacing: 10px;
      word-spacing: 1px;
      font-size: 6vw; } }
  @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: 9px;
      word-spacing: -4px;
      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: 5px;
      word-spacing: 1px;
      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; } }

#times_day02 {
  margin-left: 1px; }

.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: block;
    position: relative;
    overflow: hidden;
    margin-bottom: -8px; }
  .home-youtube-bg img {
    aspect-ratio: 16 / 9; }
  .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 (min-width: 1921px) {
    .faq-page .page-title {
      background-size: cover; } }
  @media only screen and (max-width: 768px) {
    .faq-page .page-title {
      height: 270px; } }
@media (max-width: 1921px) {
  .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 {
  clear: both;
  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; } }
  @media (min-width: 1921px) {
    .right-threebar .right-box002, .right-threebar .right-box003 {
      margin-top: 1.3vw; } }

.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 {
  margin: 0 auto; }
  @media (max-width: 1921px) {
    .faq-container {
      max-width: 720px; } }

.ref-topblock {
  margin: 20px 0; }

@media (max-width: 1921px) {
  .page-width05 {
    max-width: 1400px; } }

.geolizr-currency-switch-wrapper.geolizr-absolute-auto {
  display: none; }

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

.geolizr-currency-switcher {
  height: 25px !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 7vw; }
  @media (max-width: 1921px) {
    .vip-main .page-width {
      padding: 0 5%; } }
  @media (min-width: 1921px) {
    .vip-main .page-width {
      padding: 0 14vw; } }
  @media only screen and (max-width: 768px) {
    .vip-main .page-width {
      padding: 0 3vw; }
      .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, .vip-main .vip-top .h1 {
    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, .vip-main .vip-top .h1 {
        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, .vip-main .page-title .h1 {
    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, .vip-main .redone .h1 {
    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, .vip-main .redone .h1 {
        font-size: 1.2rem; } }
    .vip-main .redone h1 span, .vip-main .redone .h1 span, .vip-main .redone .h1--mini span, .vip-main .redone .h1 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, .vip-main .redone .h1 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: 1921px) {
  body {
    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; } }
  @media (max-width: 768px) {
    .product-ho-over-container {
      padding-top: 20px !important; } }
  .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-word; }
    @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;
    width: 100%; }
  .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; } }

.template-raddy-sw3 .allinopne-img-pross img {
  width: 100%; }

@media (min-width: 769px) and (max-width: 1259px) {
  .linght-box-container .light-box-textwrapper {
    width: 32vw; } }
@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; }
  @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%);
  background: #fff; }
  @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;
  top: 19px;
  right: 10px;
  font-size: 13px;
  z-index: 99;
  height: 15px;
  display: none; }

.ss-deletes > svg {
  width: 15px;
  height: 15px; }

.photos__item.photos__item--main {
  position: relative;
  padding: 0px 10px;
  padding-right: 8px;
  border: 1px solid #e8e8e8;
  max-height: 700px;
  overflow: hidden; }

@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 {
  margin: 10px 0px;
  font-size: 16px; }
  .product-stock-status img {
    vertical-align: bottom;
    margin-right: 10px; }
  .product-stock-status .has-stock-title {
    color: #a11b23;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    vertical-align: bottom;
    line-height: 1; }
  .product-stock-status .has-stock {
    color: #a11b23;
    text-decoration: underline; }
  .product-stock-status .us-stock {
    display: inline-block;
    vertical-align: bottom;
    line-height: 1;
    margin-right: 30px; }
  .product-stock-status .no-stock {
    color: #808080;
    text-decoration: underline; }
  .product-stock-status .eu-Stock {
    display: inline-block;
    vertical-align: bottom;
    line-height: 1;
    position: relative; }
  .product-stock-status .eu-question {
    margin-left: 15px;
    cursor: pointer; }

.eu-tips-box {
  position: absolute;
  width: 351px;
  top: -20px;
  left: calc(100% + 10px);
  padding: 10px;
  color: #525252;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 3px; }

.searchanise-recommendations {
  min-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: 26px;
    height: 26px;
    border-radius: 4px;
    opacity: 0.8;
    padding: 1px;
    border: 1px solid #444; }
  .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;
    display: inline-flex !important;
    align-items: center;
    justify-content: center; }

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

div.snize-recommendation-results ul {
  width: 100% !important; }

.product-frequently-bought-location {
  margin-bottom: 0; }

.zoomContainer {
  z-index: 20 !important; }

/*  geolizr */
.geolizr-currency-links::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.5); }

[class^="famfamfam-flag"] {
  background: url("data:image/png;base64,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") no-repeat 0 0; }

.geolizr-currency-links::-webkit-scrollbar {
  width: 8px;
  margin-left: -4px; }

.geolizr-currency-links::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 4px;
  border-radius: 4px; }

.geolizr-currency-links::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5); }

.famfamfam-flag-zw {
  background-position: 0 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-zm {
  background-position: -16px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-za {
  background-position: 0 -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-yt {
  background-position: -16px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ye {
  background-position: -32px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ws {
  background-position: -32px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-wf {
  background-position: 0 -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-wales {
  background-position: -16px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-vu {
  background-position: -32px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-vn {
  background-position: 0 -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-vi {
  background-position: -16px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-vg {
  background-position: -32px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ve {
  background-position: -48px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-vc {
  background-position: -48px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-va {
  background-position: -48px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-uz {
  background-position: -48px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-uy {
  background-position: 0 -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-us {
  background-position: -16px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-um {
  background-position: -16px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ug {
  background-position: -32px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ua {
  background-position: -48px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tz {
  background-position: -64px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tw {
  background-position: -64px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tv {
  background-position: -64px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tt {
  background-position: -64px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tr {
  background-position: -64px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-to {
  background-position: 0 -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tn {
  background-position: -16px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tm {
  background-position: -32px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tl {
  background-position: -48px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tk {
  background-position: -64px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tj {
  background-position: 0 -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-th {
  background-position: -16px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tg {
  background-position: -32px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tf {
  background-position: -48px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-td {
  background-position: -64px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-tc {
  background-position: -80px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sz {
  background-position: -80px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sy {
  background-position: -80px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sx {
  background-position: -80px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sv {
  background-position: -80px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-st {
  background-position: -80px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ss {
  background-position: -80px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sr {
  background-position: 0 -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-so {
  background-position: -16px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sn {
  background-position: -32px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sm {
  background-position: -48px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sl {
  background-position: -64px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sk {
  background-position: -80px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-si {
  background-position: -96px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sh {
  background-position: -96px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sg {
  background-position: -96px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-se {
  background-position: -96px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sd {
  background-position: -96px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-scotland {
  background-position: -96px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sc {
  background-position: -96px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sb {
  background-position: -96px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sa {
  background-position: 0 -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-rw {
  background-position: -16px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ru {
  background-position: -32px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-rs {
  background-position: -48px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ro {
  background-position: -64px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-qa {
  background-position: -80px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-py {
  background-position: -96px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pw {
  background-position: 0 -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pt {
  background-position: -16px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ps {
  background-position: -32px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pr {
  background-position: -48px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pn {
  background-position: -64px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pm {
  background-position: -80px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pl {
  background-position: -96px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pk {
  background-position: -112px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ph {
  background-position: -112px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pg {
  background-position: -112px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pf {
  background-position: -112px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pe {
  background-position: -112px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-pa {
  background-position: -112px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-om {
  background-position: -112px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-nz {
  background-position: -112px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-nu {
  background-position: -112px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-nr {
  background-position: -112px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-no {
  background-position: 0 -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bv {
  background-position: 0 -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-sj {
  background-position: 0 -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-nl {
  background-position: -16px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ni {
  background-position: -32px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ng {
  background-position: -48px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-nf {
  background-position: -64px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ne {
  background-position: -80px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-nc {
  background-position: -96px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-na {
  background-position: -112px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mz {
  background-position: -128px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-my {
  background-position: -128px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mx {
  background-position: -128px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mw {
  background-position: -128px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mv {
  background-position: -128px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mu {
  background-position: -128px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mt {
  background-position: -128px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ms {
  background-position: -128px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mr {
  background-position: -128px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mq {
  background-position: -128px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mp {
  background-position: -128px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mo {
  background-position: 0 -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mn {
  background-position: -16px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mm {
  background-position: -32px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ml {
  background-position: -48px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mk {
  background-position: -64px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mh {
  background-position: -80px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mg {
  background-position: -96px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-me {
  background-position: 0 -132px;
  width: 16px;
  height: 12px; }

.famfamfam-flag-md {
  background-position: -112px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mc {
  background-position: -128px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ma {
  background-position: -16px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ly {
  background-position: -32px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-lv {
  background-position: -48px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-lu {
  background-position: -64px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-lt {
  background-position: -80px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ls {
  background-position: -96px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-lr {
  background-position: -112px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-lk {
  background-position: -128px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-li {
  background-position: -144px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-lc {
  background-position: -144px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-lb {
  background-position: -144px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-la {
  background-position: -144px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-kz {
  background-position: -144px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ky {
  background-position: -144px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-kw {
  background-position: -144px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-kr {
  background-position: -144px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-kp {
  background-position: -144px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-kn {
  background-position: -144px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-km {
  background-position: -144px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ki {
  background-position: -144px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-kh {
  background-position: -144px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-kg {
  background-position: 0 -144px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ke {
  background-position: -16px -144px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-jp {
  background-position: -32px -144px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-jo {
  background-position: -48px -144px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-jm {
  background-position: -64px -144px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-je {
  background-position: -80px -144px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-it {
  background-position: -96px -144px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-is {
  background-position: -112px -144px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ir {
  background-position: -128px -144px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-iq {
  background-position: -144px -144px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-io {
  background-position: -160px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-in {
  background-position: -160px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-im {
  background-position: -160px -22px;
  width: 16px;
  height: 9px; }

.famfamfam-flag-il {
  background-position: -160px -31px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ie {
  background-position: -160px -42px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-id {
  background-position: -160px -53px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-hu {
  background-position: -160px -64px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ht {
  background-position: -160px -75px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-hr {
  background-position: -160px -86px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-hn {
  background-position: -160px -97px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-hk {
  background-position: -160px -108px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gy {
  background-position: -160px -119px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gw {
  background-position: -160px -130px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gu {
  background-position: -160px -141px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gt {
  background-position: 0 -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gs {
  background-position: -16px -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gr {
  background-position: -32px -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gq {
  background-position: -48px -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gp {
  background-position: -64px -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gn {
  background-position: -80px -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gm {
  background-position: -96px -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gl {
  background-position: -112px -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gi {
  background-position: -128px -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gh {
  background-position: -144px -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gg {
  background-position: -160px -155px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ge {
  background-position: -176px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gd {
  background-position: -176px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gb {
  background-position: -176px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ga {
  background-position: -176px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-fr {
  background-position: -176px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-gf {
  background-position: -176px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-re {
  background-position: -176px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-mf {
  background-position: -176px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bl {
  background-position: -176px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-fo {
  background-position: -176px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-fm {
  background-position: -176px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-fk {
  background-position: -176px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-fj {
  background-position: -176px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-fi {
  background-position: -176px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-fam {
  background-position: -176px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-eu {
  background-position: -176px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-et {
  background-position: -176px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-es {
  background-position: -176px -143px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-er {
  background-position: -176px -154px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-england {
  background-position: 0 -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-eh {
  background-position: -16px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-eg {
  background-position: -32px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ee {
  background-position: -48px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ec {
  background-position: -64px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-dz {
  background-position: -80px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-do {
  background-position: -96px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-dm {
  background-position: -112px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-dk {
  background-position: -128px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-dj {
  background-position: -144px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-de {
  background-position: -160px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cz {
  background-position: -176px -166px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cy {
  background-position: 0 -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cx {
  background-position: -16px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cw {
  background-position: -32px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cv {
  background-position: -48px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cu {
  background-position: -64px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cs {
  background-position: -80px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cr {
  background-position: -96px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-co {
  background-position: -112px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cn {
  background-position: -128px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cm {
  background-position: -144px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cl {
  background-position: -160px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ck {
  background-position: -176px -177px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ci {
  background-position: -192px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cg {
  background-position: -192px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cf {
  background-position: -192px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cd {
  background-position: -192px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-cc {
  background-position: -192px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-catalonia {
  background-position: -192px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ca {
  background-position: -192px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bz {
  background-position: -192px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-by {
  background-position: -192px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bw {
  background-position: -192px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bt {
  background-position: -192px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bs {
  background-position: -192px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-br {
  background-position: -192px -132px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bq {
  background-position: -192px -143px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bo {
  background-position: -192px -154px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bn {
  background-position: -192px -165px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bm {
  background-position: -192px -176px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bj {
  background-position: 0 -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bi {
  background-position: -16px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bh {
  background-position: -32px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bg {
  background-position: -48px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bf {
  background-position: -64px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-be {
  background-position: -80px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bd {
  background-position: -96px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-bb {
  background-position: -112px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ba {
  background-position: -128px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-az {
  background-position: -144px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ax {
  background-position: -160px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-aw {
  background-position: -176px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-au {
  background-position: -192px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-hm {
  background-position: -192px -188px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-at {
  background-position: -208px 0;
  width: 16px;
  height: 11px; }

.famfamfam-flag-as {
  background-position: -208px -11px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ar {
  background-position: -208px -22px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ao {
  background-position: -208px -33px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-an {
  background-position: -208px -44px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-am {
  background-position: -208px -55px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-al {
  background-position: -208px -66px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ai {
  background-position: -208px -77px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ag {
  background-position: -208px -88px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-af {
  background-position: -208px -99px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ae {
  background-position: -208px -110px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-ad {
  background-position: -208px -121px;
  width: 16px;
  height: 11px; }

.famfamfam-flag-np {
  background-position: -208px -132px;
  width: 9px;
  height: 11px; }

.famfamfam-flag-ch {
  background-position: -208px -143px;
  width: 11px;
  height: 11px; }

@media only screen and (orientation: portrait) {
  .geolizr-popup.gp-mobile {
    margin-top: 60px; } }
.geolizr-popup-round-corner {
  border-radius: 15px;
  overflow: hidden; }

.geolizr-popup-shadow {
  -webkit-box-shadow: 10px 10px 5px 0 rgba(143, 143, 143, 0.35);
  -moz-box-shadow: 10px 10px 5px 0 rgba(143, 143, 143, 0.35);
  box-shadow: 10px 10px 5px 0 rgba(143, 143, 143, 0.35); }

#geolizr-dismiss-popup {
  box-sizing: content-box;
  padding: 5px !important;
  margin: 0 !important;
  position: absolute !important;
  right: 0 !important;
  text-decoration: none !important;
  font-family: Arial, serif !important;
  top: 0 !important;
  height: 20px !important;
  width: 20px !important;
  line-height: 20px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  text-align: center; }

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes slideInUp {
  0 {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible; }

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

@keyframes slideInUp {
  0 {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible; }

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

/*  end geolizr */
/*  PRE ORDER TEMPLATE */
.pro-pre-order .product-single__info-wrapper {
  color: #999; }
.pro-pre-order .product-single__meta .sku {
  margin: 10px 2px; }
  @media screen and (max-width: 350px) {
    .pro-pre-order .product-single__meta .sku {
      border-left: none;
      padding: 0;
      margin-top: 0; } }
.pro-pre-order .product-form {
  margin-top: 20px; }
.pro-pre-order .product-single__title {
  margin-top: 25px;
  margin-bottom: 3px; }
@media screen and (max-width: 768px) {
  .pro-pre-order .product-single__meta {
    text-align: left !important;
    margin-top: 35px; } }
@media screen and (max-width: 768px) {
  .pro-pre-order span.areviews_reviews_number {
    display: none !important;
    font-size: 0 !important; } }
@media screen and (max-width: 768px) {
  .pro-pre-order .areviews_questions > span {
    font-size: 0 !important; } }
.pro-pre-order .order-pricesales {
  display: flex;
  margin: 12px 0 20px; }
  @media screen and (max-width: 768px) {
    .pro-pre-order .order-pricesales {
      margin: 15px 0 25px; } }
.pro-pre-order .left-bar-price {
  flex: 0 1 340px;
  position: relative;
  top: 3px; }
  @media screen and (max-width: 768px) {
    .pro-pre-order .left-bar-price {
      flex: 0 1 300px; } }
.pro-pre-order .left-bar-price-bar {
  width: 100%;
  background: #e6e6e6;
  height: 6px;
  border-radius: 5px;
  margin: 30px 0; }
.pro-pre-order .left-bar-oldprice {
  position: absolute;
  left: 2px;
  top: -11px;
  color: #a11b23;
  font-size: 28px;
  font-weight: bold; }
  .pro-pre-order .left-bar-oldprice:after {
    content: '';
    position: absolute;
    left: 50%;
    border-bottom: 10px solid #a11b23;
    border-left: 9px solid transparent;
    border-top: 8px solid transparent;
    border-right: 9px solid transparent;
    bottom: -9px;
    transform: translateX(-50%); }
  @media screen and (max-width: 768px) {
    .pro-pre-order .left-bar-oldprice {
      left: 12px; } }
  @media screen and (max-width: 350px) {
    .pro-pre-order .left-bar-oldprice {
      top: -7px;
      font-size: 24px; } }
.pro-pre-order .left-bar-newprice {
  position: absolute;
  right: 78px;
  top: -4px;
  font-size: 20px;
  text-decoration: line-through; }
  .pro-pre-order .left-bar-newprice:after {
    content: '';
    position: absolute;
    left: 50%;
    border-bottom: 10px solid #ccc;
    border-left: 9px solid transparent;
    border-top: 8px solid transparent;
    border-right: 9px solid transparent;
    bottom: -13px;
    transform: translateX(-50%); }
  @media (max-width: 768px) {
    .pro-pre-order .left-bar-newprice {
      right: 30px; } }
.pro-pre-order .left-bar-oldprice-lable {
  position: absolute;
  left: 4px;
  text-align: center;
  bottom: 4px; }
  @media (max-width: 768px) {
    .pro-pre-order .left-bar-oldprice-lable {
      left: 14px;
      bottom: -3px; } }
  @media (max-width: 350px) {
    .pro-pre-order .left-bar-oldprice-lable {
      bottom: -10px;
      font-size: 13px; } }
.pro-pre-order .left-bar-newprice-lable {
  position: absolute;
  right: 80px;
  text-align: center;
  bottom: 4px; }
  @media (max-width: 768px) {
    .pro-pre-order .left-bar-newprice-lable {
      right: 30px;
      bottom: -3px; } }
  @media (max-width: 350px) {
    .pro-pre-order .left-bar-newprice-lable {
      right: 38px;
      bottom: -10px;
      font-size: 13px; } }
.pro-pre-order .left-img-price {
  padding-left: 20px;
  max-width: 100px; }
  @media (max-width: 350px) {
    .pro-pre-order .left-img-price {
      padding-left: 0;
      max-width: 50px;
      margin-top: 10px; } }
.pro-pre-order .product-stock-status {
  padding-top: 10px; }
.pro-pre-order .time-downcount {
  display: flex;
  align-items: center;
  padding: 12px 15px 4px 15px;
  background: #313042;
  color: #fff; }
  .pro-pre-order .time-downcount .left-text-timecount {
    margin-right: 15px;
    font-size: 15px; }
    .pro-pre-order .time-downcount .left-text-timecount span {
      text-transform: uppercase;
      vertical-align: top;
      line-height: 17px;
      height: 17px;
      font-weight: 600;
      padding: 0 6px; }
    @media (max-width: 1200px) {
      .pro-pre-order .time-downcount .left-text-timecount {
        margin-right: 0;
        margin-bottom: 13px; } }
  .pro-pre-order .time-downcount .flasht01, .pro-pre-order .time-downcount .flasht03 {
    margin-right: 3px; }
  @media (max-width: 1200px) {
    .pro-pre-order .time-downcount {
      padding: 20px 7px 15px;
      flex-wrap: wrap;
      max-width: 375px;
      justify-content: center; } }
.pro-pre-order #divtime-pro {
  font-size: 14px;
  display: flex;
  justify-content: space-around;
  flex: 1 1 auto;
  text-align: center; }
  @media (max-width: 1200px) {
    .pro-pre-order #divtime-pro {
      text-align: center;
      flex: 0 1 100%;
      max-width: 300px; } }
@media (max-width: 768px) {
  .pro-pre-order .product-stock-status .has-stock-title {
    flex: 0 1 100%;
    margin-bottom: 5px; } }
@media (max-width: 768px) {
  .pro-pre-order .product-form__item--submit {
    max-width: 100%;
    flex: 0 1 100%; }
    .pro-pre-order .product-form__item--submit .product-form__cart-submit {
      max-width: 400px; } }
@media (max-width: 768px) {
  .pro-pre-order .wpbox-top {
    padding-top: 20px;
    border-top: 1px solid #ccc;
    margin-top: 10px; } }
@media (max-width: 768px) {
  .pro-pre-order .product-stock-status {
    padding-top: 0; } }

#times_day5, #times_hour5, #times_minute5, #second5 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 14px;
  background-image: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/bg-time.png?v=1616565961);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: #a11b23;
  /* padding: 0px 0px; */
  text-indent: 14px;
  display: inline-block;
  margin-bottom: 5px; }

.form__itemselects {
  margin-right: 30px; }
  @media screen and (max-width: 768px) {
    .form__itemselects {
      margin-right: 20px; } }

.qa-bank-container .page-title {
  background-image: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/D1C0B3EC-D9BA-45fe-BC3D-354F73FDB1A6_1.png?v=1617933773) !important; }

.qa-bank-bottom-contianer {
  padding-top: 3.646vw;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .qa-bank-bottom-contianer .item {
    height: 11.458vw;
    padding: 1.5vw;
    background-color: #f7f7f7;
    border-radius: 0.521vw;
    border: solid 0.052vw #e5e5e5; }
    .qa-bank-bottom-contianer .item .subtitle {
      color: #000;
      font-size: 0.834vw;
      margin: 0px; }
    .qa-bank-bottom-contianer .item .title {
      font-size: 1.875vw;
      color: #808080;
      font-weight: 600;
      line-height: 1; }
    .qa-bank-bottom-contianer .item .link {
      display: flex;
      width: 100%;
      height: 100%;
      flex-direction: column;
      justify-content: center; }
  .qa-bank-bottom-contianer .item:nth-child(1), .qa-bank-bottom-contianer .item:nth-child(3) {
    width: 17%; }
    .qa-bank-bottom-contianer .item:nth-child(1) img, .qa-bank-bottom-contianer .item:nth-child(3) img {
      width: 32.292%; }
    .qa-bank-bottom-contianer .item:nth-child(1) .right-text, .qa-bank-bottom-contianer .item:nth-child(3) .right-text {
      margin-top: 1vw; }
  .qa-bank-bottom-contianer .item:nth-child(2) {
    width: 22%;
    padding-right: 0.5vw; }
    .qa-bank-bottom-contianer .item:nth-child(2) .right-text {
      margin-top: 1vw; }
    .qa-bank-bottom-contianer .item:nth-child(2) img {
      width: 6.43vw; }
    .qa-bank-bottom-contianer .item:nth-child(2) .button {
      width: 60%;
      height: 2.2vw;
      margin-top: 10px;
      background-color: #c22b2b;
      border-radius: 5px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-weight: bold;
      font-size: 1vw; }
  .qa-bank-bottom-contianer .item:nth-child(3) img {
    margin-left: 5%; }
  .qa-bank-bottom-contianer .item:nth-child(3) .button {
    width: 60%;
    height: 2.2vw;
    margin-top: 10px;
    background-color: #c22b2b;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 1vw; }
  .qa-bank-bottom-contianer .item:nth-child(4) {
    width: 39%;
    padding-right: 0.5vw; }
    .qa-bank-bottom-contianer .item:nth-child(4) img {
      width: 11vw; }
    .qa-bank-bottom-contianer .item:nth-child(4) .right-text {
      margin-left: 4.5%; }
    .qa-bank-bottom-contianer .item:nth-child(4) .bigtitle {
      font-weight: bold;
      color: #808080;
      font-size: 1.718vw; }
    .qa-bank-bottom-contianer .item:nth-child(4) .group {
      display: flex;
      flex-wrap: wrap; }
    .qa-bank-bottom-contianer .item:nth-child(4) .cell {
      width: 50%;
      padding-left: 15px;
      background: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/1_2a880c14-1059-4ab1-9a49-ff263dceca9f.png?v=1617938053) 2px center no-repeat;
      margin-bottom: 8px; }
    .qa-bank-bottom-contianer .item:nth-child(4) .link {
      justify-content: flex-start !important;
      flex-direction: row !important;
      align-items: center; }

@media screen and (max-width: 768px) {
  .qa-bank-bottom-contianer .item {
    height: 15.5vw; }

  .qa-bank-bottom-contianer .item:nth-child(3) .cell {
    width: 100%; }

  .eu-tips-box {
    width: 330px;
    top: calc(100% + 10px);
    left: -110%; } }
@media screen and (max-width: 425px) {
  .qa-bank-bottom-contianer {
    flex-wrap: wrap;
    padding-top: 20px; }
    .qa-bank-bottom-contianer .item {
      width: 100% !important;
      height: 120px;
      padding: 15px; }
      .qa-bank-bottom-contianer .item img {
        width: 60px !important;
        margin: 0px !important; }
      .qa-bank-bottom-contianer .item .title, .qa-bank-bottom-contianer .item .bigtitle {
        font-size: 18px !important; }
    .qa-bank-bottom-contianer .item + .item {
      margin-top: 15px; }
    .qa-bank-bottom-contianer .link {
      flex-direction: row !important;
      justify-content: flex-start !important;
      align-items: center !important; }
    .qa-bank-bottom-contianer .subtitle {
      font-size: 14px !important; }
    .qa-bank-bottom-contianer .right-text {
      margin-left: 20px; }
    .qa-bank-bottom-contianer .item:nth-child(4) .cell {
      width: 100%;
      margin-bottom: 0px; }

  .item:nth-child(2) .button, .item:nth-child(3) .button {
    height: 25px !important;
    font-size: 14px !important; } }
/*  Count Down */
.template-flash-sale #wrapper-pluguins {
  padding: 0 15px;
  background: #A11B23;
  border-radius: 10px;
  margin-bottom: 30px; }
  .template-flash-sale #wrapper-pluguins * {
    color: #fff; }
  @media screen and (max-width: 768px) {
    .template-flash-sale #wrapper-pluguins {
      padding: 0 10px;
      margin-top: 5px;
      border-radius: 0; } }
.template-flash-sale #three-product.ba-product-bundle.with-total .bundle-plus img {
  background: #fff;
  border-radius: 50%; }
.template-flash-sale #AddToCart {
  padding-top: 7px;
  padding-bottom: 7px; }
.template-flash-sale .font-x1 {
  color: #a11b23;
  background: #fff;
  width: 35px;
  margin-left: 5px;
  height: 35px;
  display: inline-block;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  font-weight: bold; }
.template-flash-sale .product-form__cart-submitdown {
  position: relative;
  background: #a11b23;
  padding-top: 6px;
  padding-bottom: 6px; }
  .template-flash-sale .product-form__cart-submitdown .overbox-addcart {
    position: absolute;
    bottom: 28px;
    left: -14px;
    background: #fff;
    width: 330px;
    box-shadow: #999 0px 0px 4px;
    padding: 18px 15px 10px;
    white-space: initial;
    text-align: right;
    border-radius: 5px;
    display: none; }
    @media screen and (max-width: 768px) {
      .template-flash-sale .product-form__cart-submitdown .overbox-addcart {
        left: 0; } }
    @media screen and (max-width: 350px) {
      .template-flash-sale .product-form__cart-submitdown .overbox-addcart {
        width: 300px; } }
.template-flash-sale .overbox-addcart .product-form__cart-submit {
  background: #a11b23;
  outline: none;
  border: none;
  color: #fff;
  width: 68px;
  margin-right: 15px;
  padding: 5px 0 !important;
  border-radius: 5px; }
.template-flash-sale .delete-addcart {
  color: #999999;
  position: absolute;
  right: 9px;
  top: 8px;
  cursor: pointer; }
.template-flash-sale .overbox-addcarttop-text {
  color: #333;
  word-break: break-word;
  /* display: inline-block; */
  text-align: left;
  line-height: 1.8;
  margin-bottom: 15px;
  /*     text-transform: uppercase; */ }
  @media screen and (max-width: 350px) {
    .template-flash-sale .overbox-addcarttop-text {
      font-size: 12px; } }
@media screen and (max-width: 768px) {
  .template-flash-sale .product-single__meta {
    text-align: left !important; } }
@media screen and (max-width: 768px) {
  .template-flash-sale .bundle-total.show-savings {
    margin-top: 0 !important;
    margin-bottom: 0 !important; } }
@media screen and (max-width: 768px) {
  .template-flash-sale .has-stock-title {
    flex: 0 1 100%;
    margin-bottom: 5px; } }
@media screen and (max-width: 768px) {
  .template-flash-sale .bundle-plus {
    margin: 50px 0;
    position: relative;
    left: -7px; } }
.template-flash-sale .product-single__meta .sku {
  margin: 10px 2px; }
  @media screen and (max-width: 350px) {
    .template-flash-sale .product-single__meta .sku {
      border-left: none;
      padding: 0;
      margin-top: 0; } }
@media screen and (max-width: 768px) {
  .template-flash-sale .product-single__meta {
    text-align: left !important;
    margin-top: 35px; } }
@media screen and (max-width: 768px) {
  .template-flash-sale span.areviews_reviews_number {
    display: none !important;
    font-size: 0 !important; } }
@media screen and (max-width: 768px) {
  .template-flash-sale .areviews_questions > span {
    font-size: 0 !important; } }
@media (min-width: 350px) and (max-width: 768px) {
  .template-flash-sale .ba-product-bundle {
    flex-direction: initial !important; }
  .template-flash-sale .ba-product-bundle .bundle-plus {
    width: 10px !important;
    border-bottom: none !important; }
  .template-flash-sale #three-product.ba-product-bundle.with-total .bundle-plus {
    margin: 50px 0 !important;
    position: relative;
    left: -7px;
    border-bottom: none !important; }
  .template-flash-sale .ba-product-bundle .bundle-plus img, .template-flash-sale #two-product.ba-product-bundle.with-total .bundle-plus img, .template-flash-sale #three-product.ba-product-bundle.with-total .bundle-plus img, .template-flash-sale #four-product.ba-product-bundle.with-total .bundle-plus img, .template-flash-sale #over-four-product.ba-product-bundle.with-total .bundle-plus img, .template-flash-sale #two-product.ba-product-bundle.button-under .bundle-plus img, .template-flash-sale #three-product.ba-product-bundle.button-under .bundle-plus img, .template-flash-sale #four-product.ba-product-bundle.button-under .bundle-plus img, .template-flash-sale #over-four-product.ba-product-bundle.button-under .bundle-plus img {
    max-width: 24px !important; }
  .template-flash-sale .ba-product-bundle .ba-price {
    margin-top: 10px; }
  .template-flash-sale .ba-bundle-wrapper .ba-product-bundle {
    flex-wrap: wrap; }
  .template-flash-sale .ba-product-bundle .ba-image-container, .template-flash-sale .ba-product-bundle .ba-info-wrapper {
    width: 100% !important; } }
@media (min-width: 350px) and (max-width: 650px) {
  .template-flash-sale #three-product.ba-product-bundle.with-total .bundle-plus {
    margin: 50px 0 !important;
    position: relative;
    left: -7px;
    border-bottom: none !important; } }
@media (min-width: 651px) and (max-width: 768px) {
  .template-flash-sale #three-product.ba-product-bundle.with-total .bundle-plus {
    margin: 0 !important; }
  .template-flash-sale .ba-product-bundle.with-total .bundle-total button {
    margin-top: 10px !important; } }
.template-flash-sale .ba-product-bundle .ba-price {
  font-weight: bold; }
@media screen and (max-width: 768px) {
  .template-flash-sale #three-product.ba-product-bundle.with-total .bundle-total {
    flex-basis: auto !important; } }
.template-flash-sale .ba-bundle-wrapper .bundle-title {
  font-weight: bold; }
@media screen and (min-width: 769px) {
  .template-flash-sale .ba-bundle-wrapper .ba-product-bundle {
    margin: 0 0 5px !important; } }
@media screen and (min-width: 769px) {
  .template-flash-sale .ba-product-bundle .bundle-total button span {
    font-size: 12px; } }
@media screen and (min-width: 769px) {
  .template-flash-sale #three-product.ba-product-bundle.with-total .ba-product-wrapper {
    flex-basis: 40px !important; } }
.template-flash-sale .add-booster-bundle {
  position: relative; }
  @media screen and (min-width: 769px) {
    .template-flash-sale .add-booster-bundle {
      padding-right: 30px !important; } }
.template-flash-sale .btn-x0, .template-flash-sale .btn-x1 {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  color: #2D2C3F !important;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
  position: absolute;
  right: 10px;
  font-size: 14px !important;
  top: 50%;
  transform: translateY(-50%); }
  @media screen and (max-width: 1600px) {
    .template-flash-sale .btn-x0, .template-flash-sale .btn-x1 {
      right: 1px; } }
  @media screen and (max-width: 768px) {
    .template-flash-sale .btn-x0, .template-flash-sale .btn-x1 {
      right: 20%; } }
.template-flash-sale .ba-bundle-wrapper .booster-variants-container select.ba-variants {
  color: #333 !important; }
  .template-flash-sale .ba-bundle-wrapper .booster-variants-container select.ba-variants * {
    color: #333 !important; }
@media screen and (max-width: 768px) {
  .template-flash-sale .ba-product-bundle .bundle-total .ba-eqs {
    display: none; } }
@media screen and (max-width: 768px) {
  .template-flash-sale #three-product.ba-product-bundle.with-total .bundle-total, .template-flash-sale #two-product.ba-product-bundle.with-total .bundle-total {
    flex-basis: 100% !important; } }

.shortbottom_title {
  color: #333;
  font-size: 18px;
  width: 75%;
  margin-bottom: 5px; }
  @media screen and (max-width: 768px) {
    .shortbottom_title {
      width: 100%;
      font-size: 15px; } }

/* End Count Down */
.shopify-section-item {
  display: none; }
  .shopify-section-item.active {
    display: block; }

.qbi-outer-box {
  margin-top: 3vw; }
  .qbi-outer-box .qbim-item {
    display: inline-block;
    padding: 10px 30px;
    background-color: #c22b2b;
    border-radius: 30px;
    color: #fff;
    margin-right: 12px;
    margin-bottom: 12px;
    cursor: pointer; }
    .qbi-outer-box .qbim-item:hover {
      background-color: #333333; }
    .qbi-outer-box .qbim-item.active {
      background-color: #333333; }
  .qbi-outer-box .qbi-model-box {
    margin-bottom: 4.43vw; }
  .qbi-outer-box .qbimcb-content {
    display: flex;
    align-items: flex-start; }
  .qbi-outer-box .qbim-content-box {
    display: none; }
    .qbi-outer-box .qbim-content-box.active {
      display: block; }
    .qbi-outer-box .qbim-content-box .box_title {
      font-size: 1.667vw;
      margin-bottom: 1.667vw;
      color: #c22b2b; }
    .qbi-outer-box .qbim-content-box .qbi-box + .qbi-box {
      margin-top: 3.125vw;
      border-top: 2px solid #ccc;
      padding-top: 1.823vw; }
  .qbi-outer-box .cebian-slide {
    width: 22.3958vw;
    margin-right: 8.5vw;
    position: absolute;
    top: 0;
    text-align: left; }
    .qbi-outer-box .cebian-slide.sticky {
      background: #fff;
      top: 30px;
      position: fixed; }
  .qbi-outer-box .cebian-slide-box {
    width: 22.3958vw;
    margin-right: 8.5vw;
    position: relative; }
  .qbi-outer-box .cebian-slide-title {
    padding: 1.5625vw;
    border: 1px solid #eee;
    font-size: 1.145vw;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    border-radius: 5px; }
    .qbi-outer-box .cebian-slide-title.active {
      border: 1px solid #fff; }
  .qbi-outer-box .box-content {
    color: #000; }
  .qbi-outer-box .right-slide {
    word-break: break-word;
    flex: 1; }

.qa-bank-container .faq-tab > ul > li > span > img {
  max-height: 100% !important;
  max-width: 100% !important; }

@media screen and (max-width: 425px) {
  .qbi-outer-box .cebian-slide-box {
    display: none; }

  .qbi-outer-box .qbim-item {
    padding: 5px 18px; }

  .qbi-outer-box .qbim-content-box .box_title {
    font-size: 18px; }

  .qa-bank-container .page-title h1, .qa-bank-container .page-title .h1, .qa-bank-container .page-title .h1--mini, .qa-bank-container .page-title .h1 {
    font-size: 20px !important; } }
@media screen and (max-width: 769px) {
  .faq-page_g90.faq-page .page-title h1, .faq-page_g90.faq-page .page-title .h1, .faq-page_g90.faq-page .page-title .h1--mini, .faq-page_g90.faq-page .page-title .h1 {
    font-size: 22px !important; }

  .qbi-outer-box .cebian-slide-box {
    width: 150px; } }
@media screen and (min-width: 1921px) {
  .qbi-outer-box .cebian-slide-box {
    width: 29%;
    margin-right: 6.5vw; }
  .qbi-outer-box .cebian-slide-title {
    padding: 20px;
    font-size: 18px; }
  .qbi-outer-box .box-content {
    font-size: 18px; }

  .qa-bank-bottom-contianer .item .title {
    font-size: 1.5vw; }
  .qa-bank-bottom-contianer .item .subtitle {
    font-size: 0.634vw; }
  .qa-bank-bottom-contianer .item:nth-child(2) .button, .qa-bank-bottom-contianer .item:nth-child(3) .button {
    height: 45px;
    font-size: 0.8vw; }
  .qa-bank-bottom-contianer .item:nth-child(4) .bigtitle {
    font-size: 1.12vw; } }
.cover-box .revy-upsell-popup-wrapper {
  display: none !important; }

/*   wide screen */
.homeslide img,
#categories-scroll img,
.home-youtube-bg img,
#about_one img,
.ref-topblock img {
  width: 100%; }

.row {
  max-width: 100%; }

/* share btn */
.qa-bank-share-btn-box {
  position: fixed;
  top: 40%;
  right: 40px; }
  .qa-bank-share-btn-box .count {
    position: absolute;
    top: -7px;
    left: 100%;
    transform: translateX(-50%);
    border-radius: 20px;
    padding: 1px 8px;
    color: #fff;
    background-color: #c22b2b; }

.qbsbb-box .cell {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 5px;
  border: 1px solid #d4d4d4;
  background-color: #fff; }
  .qbsbb-box .cell svg {
    width: 25px;
    height: 25px; }

.qbsbb-box .cell-link {
  display: block; }

.qbsbb-box .cell-link + .cell-link,
.qbsbb-box .cell + .cell {
  margin-top: 15px; }

@media screen and (max-width: 425px) {
  .qbsbb-box .cell {
    width: 35px;
    height: 35px; }
    .qbsbb-box .cell svg {
      width: 15px;
      height: 15px; }

  .qa-bank-share-btn-box {
    top: 40%;
    right: 20px; }

  .qa-bank-share-btn-box .count {
    padding: 1px 5px;
    font-size: 12px; } }
@media screen and (min-width: 1921px) {
  /*   .top-img-pross,#shopify-section-product-ho-textoverimage,#shopify-section-product-ho-textandimage,#shopify-section-product-ho-over,#shopify-section-product-ho-morefeatures,
    #shopify-section-product-ho-talkingrange,#shopify-section-product-ho-Specifications,#shopify-section-product-ho-whatinboxs{
      img{
       width:100%;
      }
    } */
  .textandimage-container-item .re-img-box-textandimage img, .textoverimage-container img, .top-img-pross img
  , .product-itembox-bottomtext img, .morefeaturesbannercontainer img, .whatinboxsimgcontainer img, .product-ho-over-item img {
    width: 100%; } }
.qr20-first-item {
  position: relative;
  min-height: 1200px;
  color: #fff;
  overflow: hidden;
  background-color: #000;
  /*    inset: 0px auto auto 0px!important; */ }
  .qr20-first-item * {
    transition: all 0.5s ease; }
  .qr20-first-item.black-bg {
    background-color: #000000; }
  .qr20-first-item .product-image {
    transform: scale(1.5);
    opacity: 0;
    display: inline-block;
    z-index: 2; }
    .qr20-first-item .product-image.opacity {
      transition: all 1s ease;
      opacity: 1; }
  .qr20-first-item .product-image-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }
  .qr20-first-item .cell {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 3; }
    .qr20-first-item .cell .item {
      position: absolute;
      white-space: nowrap;
      letter-spacing: 3px; }
  .qr20-first-item .logo-contianer {
    font-size: 13.33vw;
    letter-spacing: 7px;
    color: #b00000;
    text-transform: uppercase;
    position: absolute;
    top: 34%;
    white-space: nowrap;
    z-index: 1; }
    .qr20-first-item .logo-contianer span {
      display: inline-block;
      background-color: #000; }
    .qr20-first-item .logo-contianer .first-logo {
      position: relative;
      z-index: 2; }
    .qr20-first-item .logo-contianer .second-logo {
      margin-left: -5.166vw; }
  .qr20-first-item .second-item {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #eeeeee; }
  .qr20-first-item .si-title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 20%;
    font-size: 30px;
    line-height: 48px;
    letter-spacing: 1px;
    max-width: 1000px;
    color: #263847;
    margin: 0 auto;
    font-weight: bold;
    opacity: 0; }
  .qr20-first-item .si-bottom-content {
    position: absolute;
    top: 62%;
    width: 100%;
    color: #263847;
    opacity: 0; }
    .qr20-first-item .si-bottom-content h1, .qr20-first-item .si-bottom-content .h1, .qr20-first-item .si-bottom-content .h1--mini, .qr20-first-item .si-bottom-content .h1 {
      color: #263847; }
    .qr20-first-item .si-bottom-content .si-bottom-inner-content {
      display: flex;
      justify-content: space-between; }
    .qr20-first-item .si-bottom-content .left-cell {
      width: 35%; }
      .qr20-first-item .si-bottom-content .left-cell .si-img {
        display: flex;
        margin-top: 30px; }
        .qr20-first-item .si-bottom-content .left-cell .si-img img {
          max-width: 200px;
          max-height: 65px; }
        .qr20-first-item .si-bottom-content .left-cell .si-img img + img {
          margin-left: 20px; }
    .qr20-first-item .si-bottom-content .right-cell {
      width: 45%; }
      .qr20-first-item .si-bottom-content .right-cell .si-img {
        display: flex;
        margin-top: 30px; }
        .qr20-first-item .si-bottom-content .right-cell .si-img img + img {
          margin-left: 20px; }
  .qr20-first-item .img {
    line-height: 0; }

.top-banner {
  margin-bottom: 40px;
  line-height: 0; }

.qr20-desc-container .image {
  line-height: 0; }
.qr20-desc-container > div + div {
  margin-top: -5px; }
.qr20-desc-container h1, .qr20-desc-container .h1, .qr20-desc-container .h1--mini, .qr20-desc-container .h1 {
  text-transform: capitalize; }
.qr20-desc-container .qr20-text-container {
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%; }
  .qr20-desc-container .qr20-text-container .cell {
    position: relative; }
  .qr20-desc-container .qr20-text-container .item {
    position: absolute;
    right: -100%; }
.qr20-desc-container #logo-contianer {
  right: -100%; }

.text-and-image-box {
  display: flex;
  align-items: center; }
  .text-and-image-box.qr-text-right {
    background-color: #0e0e10; }
    .text-and-image-box.qr-text-right h1, .text-and-image-box.qr-text-right .h1, .text-and-image-box.qr-text-right .h1--mini, .text-and-image-box.qr-text-right .h1,
    .text-and-image-box.qr-text-right .text {
      color: #fff; }
  .text-and-image-box .item {
    width: 50%; }
    .text-and-image-box .item.text {
      padding: 0px 10%; }
  .text-and-image-box h1, .text-and-image-box .h1, .text-and-image-box .h1--mini, .text-and-image-box .h1 {
    font-size: 2.4em; }
  .text-and-image-box .qr-content {
    font-size: 1.2em; }

.qr-cool-design-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #000;
  color: #fff;
  flex-direction: column;
  border: 1px solid #000; }
  .qr-cool-design-container .gif {
    position: relative;
    z-index: 1;
    margin-top: 70px; }
  .qr-cool-design-container h1, .qr-cool-design-container .h1, .qr-cool-design-container .h1--mini, .qr-cool-design-container .h1, .qr-cool-design-container p, .qr-cool-design-container span {
    color: #ffffff; }
  .qr-cool-design-container .first-title {
    text-align: center;
    max-width: 480px;
    position: absolute;
    top: 7em;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2; }
  .qr-cool-design-container .qr-cdc-content {
    text-align: center;
    max-width: 788px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: -30px;
    position: relative;
    z-index: 2; }
  .qr-cool-design-container .qr-content {
    font-size: 1.2em; }

.qr-what-more-container {
  background-color: #000000;
  padding-top: 7.33333em; }
  .qr-what-more-container h1, .qr-what-more-container .h1, .qr-what-more-container .h1--mini, .qr-what-more-container .h1 {
    color: #ffffff;
    margin-bottom: 145px; }
  .qr-what-more-container li {
    line-height: 60px;
    color: #666666;
    background-repeat: no-repeat;
    padding-left: 60px;
    background-position: 0px 8px;
    font-size: 24px;
    cursor: pointer; }
    .qr-what-more-container li.active {
      color: #fff;
      background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/1_9a738f7d-e799-421e-9330-ff0dc91596d9.png?v=1621841467"); }
  .qr-what-more-container .more-image {
    position: relative; }
    .qr-what-more-container .more-image .img {
      display: none; }
      .qr-what-more-container .more-image .img:nth-child(1) {
        display: block; }

.qr-product-specifications-box {
  padding-top: 8em !important; }
  .qr-product-specifications-box h1, .qr-product-specifications-box .h1, .qr-product-specifications-box .h1--mini, .qr-product-specifications-box .h1 {
    text-transform: capitalize; }
  .qr-product-specifications-box li {
    color: #000;
    line-height: 36px; }
  .qr-product-specifications-box span {
    vertical-align: top;
    display: inline-block;
    width: 50%; }
    .qr-product-specifications-box span:nth-child(1) {
      font-weight: bold; }
  .qr-product-specifications-box .show-psb-btn {
    width: 212px;
    height: 62px;
    background-color: #c90000;
    font-size: 18px;
    line-height: 32px;
    padding: 15px 20px;
    margin-top: 70px;
    text-align: center;
    border-radius: 5px; }
  .qr-product-specifications-box .first-box li:nth-child(4), .qr-product-specifications-box .first-box li:nth-child(6) {
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 10px; }
  .qr-product-specifications-box .second-box img {
    text-align: right;
    margin-left: auto;
    display: block;
    margin-top: 60px; }
  .qr-product-specifications-box .grid__item:nth-child(1) {
    padding-right: 100px; }
  .qr-product-specifications-box .grid__item:nth-child(2) {
    padding-left: 50px; }

.qr-wmc-container {
  padding-bottom: 70px; }
  .qr-wmc-container .first-grid__item {
    display: none; }

.js-scroll-fade-in {
  -webkit-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
  opacity: 0;
  -webkit-transform: translate(0px, 120px);
  -ms-transform: translate(0px, 120px);
  transform: translate(0px, 120px); }
  .js-scroll-fade-in.one-s {
    -webkit-transition: all 1.5s;
    -o-transition: all 1.5s;
    transition: all 1.5s; }
  .js-scroll-fade-in.two-s {
    -webkit-transition: all 2.5s;
    -o-transition: all 2.5s;
    transition: all 2.5s; }
  .js-scroll-fade-in.three-s {
    -webkit-transition: all 3.5s;
    -o-transition: all 3.5s;
    transition: all 3.5s; }

.is_over.js-scroll-fade-in {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px); }

.qr-detail-product-box {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  padding: 200px 0px;
  background-color: #fff;
  z-index: 1000001;
  overflow: auto; }
  .qr-detail-product-box .product-name {
    font-size: 32px;
    margin-bottom: 60px; }
  .qr-detail-product-box .product-cover {
    text-align: center;
    margin-bottom: 120px; }
  .qr-detail-product-box .product-name {
    text-align: center;
    color: #000; }
  .qr-detail-product-box li {
    display: flex;
    padding: 0 40px;
    list-style: none; }
    .qr-detail-product-box li span:nth-child(1) {
      display: inline-block;
      width: 45%; }
    .qr-detail-product-box li span:nth-child(2) {
      display: inline-block;
      width: 55%; }
  .qr-detail-product-box .diver {
    width: 100%;
    height: 1px;
    background-color: #000;
    margin: 15px 0px; }
  .qr-detail-product-box sup {
    color: #a11b23; }

.qr-detail-product-box .inner-box-content + .inner-box-content {
  margin-top: 100px; }

.inner-box-content-bottom {
  padding: 55px 40px; }

.qr-dpb-close-btn {
  position: fixed;
  right: 50px;
  bottom: 60px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #fff; }
  .qr-dpb-close-btn svg {
    width: 30px;
    height: 30px; }

.qr-side-buy-btn {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 300px;
  z-index: 2; }
  .qr-side-buy-btn .qr-sbb-btn {
    position: absolute;
    bottom: 17px;
    border-radius: 5px;
    left: 50%;
    padding: 8px 14px;
    transform: translateX(-50%); }
  .qr-side-buy-btn img {
    width: 180px; }

.cfsc .bottom-button {
  position: relative; }
.cfsc .section-header__title {
  background: #981F24;
  border-radius: 50px;
  color: #fff;
  min-width: 675px;
  padding: 9px 0px;
  margin-top: 45px;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 65px !important; }
.cfsc .product-card {
  display: flex;
  align-items: center;
  min-height: unset !important; }
.cfsc .product-card-left {
  position: relative;
  width: 44.12%; }
.cfsc .product-card__price {
  font-size: 20px; }
.cfsc .soldout-border, .cfsc .product-form__cart-submit-index {
  margin-left: 0px !important;
  width: 59%;
  min-width: 150px;
  text-align: center; }
.cfsc .product-card__info {
  padding: 0px; }
  .cfsc .product-card__info a {
    color: #7b7b7b; }
.cfsc .product-card__name {
  font-size: 16px; }
.cfsc .product-card-right {
  flex: 1;
  text-align: left;
  margin-left: 8%;
  margin-right: 2%; }
.cfsc .product-card__overlay-btn {
  top: 50%; }
.cfsc .save_percentage {
  position: relative;
  top: 0px;
  left: 0px; }
.cfsc .product-tag {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  background: #981F24;
  border-radius: 0px 0px 20px 0px;
  z-index: 8;
  /* width: 90%; */
  /* height: 50px; */
  padding: 7px 28px;
  font-size: 1em; }
.cfsc .product-card__image-wrapper {
  line-height: unset; }
.cfsc .section-header__subtext {
  margin-bottom: 60px; }

@media only screen and (min-width: 768px) and (max-width: 1440px) {
  .cfsc .product-card__name {
    height: 65px;
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical; } }
@media only screen and (max-width: 768px) {
  .small--margin-bottom45 {
    margin-bottom: 45px !important; }

  .qr20-desc-container h1, .qr20-desc-container .h1, .qr20-desc-container .h1--mini, .qr20-desc-container .h1 {
    font-size: 18px; }
  .qr20-desc-container .text-and-image-box .item.text {
    padding: 15px 60px; }
  .qr20-desc-container .text-and-image-box .qr-content {
    font-size: 14px; }
  .qr20-desc-container .qr-cool-design-container .first-title {
    max-width: 225px;
    font-size: 18px; }
  .qr20-desc-container .qr-cool-design-container .gif {
    width: 70%; }
  .qr20-desc-container .qr-cool-design-container .qr-cdc-content {
    width: 75%; }

  .qr-what-more-container {
    padding-top: 65px; }
    .qr-what-more-container h1, .qr-what-more-container .h1, .qr-what-more-container .h1--mini, .qr-what-more-container .h1 {
      font-size: 18px;
      margin-bottom: 50px; }
    .qr-what-more-container li {
      font-size: 14px;
      line-height: 36px;
      background-size: 20px;
      padding-left: 40px;
      background-position: 7px; }
    .qr-what-more-container .more-image .img {
      text-align: center;
      width: 100%; }

  .qr-product-specifications-box {
    padding-top: 100px !important; }
    .qr-product-specifications-box h1, .qr-product-specifications-box .h1, .qr-product-specifications-box .h1--mini, .qr-product-specifications-box .h1 {
      font-size: 18px;
      text-align: center;
      margin-bottom: 50px; }
    .qr-product-specifications-box .grid__item:nth-child(1) {
      padding-right: 0px; }
    .qr-product-specifications-box .grid__item:nth-child(2) {
      padding-left: 20px;
      padding-top: 50px; }
    .qr-product-specifications-box .show-psb-btn {
      width: 169px;
      height: 37px;
      font-size: 16px;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      padding: 3px 12px; }

  .qr-psb-content.second-box {
    display: flex;
    justify-content: space-between; }
  .qr-psb-content .word {
    width: 50%; }
  .qr-psb-content .img {
    width: 30%; }
    .qr-psb-content .img img {
      margin: 0px; }

  .qr-detail-product-box {
    padding: 120px 0; }
    .qr-detail-product-box .product-cover {
      margin-bottom: 80px; }
    .qr-detail-product-box .product-name {
      margin-bottom: 50px; }
    .qr-detail-product-box .inner-box-content + .inner-box-content {
      margin-top: 80px; }
    .qr-detail-product-box .qr-dpb-close-btn {
      bottom: 45px;
      right: 20px; }

  .qr20-first-item {
    min-height: 480px; }
    .qr20-first-item .product-image {
      width: 55%; }

  .cfsc .product-card {
    padding: 0px; } }
@media only screen and (max-width: 429px) {
  .cfsc .section-header__title {
    width: calc(100% - 24px);
    padding: 9px 12px;
    font-size: 20px;
    margin-left: 12px;
    margin-right: 12px;
    min-width: unset !important; }
  .cfsc .product-tag {
    padding: 3px 14px;
    font-size: 13px; }
  .cfsc .product-card__name {
    min-height: 55px;
    font-size: 12px; }
  .cfsc .product-card-right {
    margin: 0px 13px; }
  .cfsc .product-card__name {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical; }
  .cfsc .product-form__cart-submit-index, .cfsc .soldout-border {
    font-size: 12px;
    width: 80%;
    padding: 8px 0px; }
  .cfsc .product-card__price {
    font-size: 16px !important; }

  .qr20-desc-container .text-and-image-box {
    flex-wrap: wrap; }
    .qr20-desc-container .text-and-image-box .item {
      width: 100%; }
      .qr20-desc-container .text-and-image-box .item.text {
        order: 2;
        padding: 30px; }
      .qr20-desc-container .text-and-image-box .item.img {
        order: 1;
        line-height: 0; }
  .qr20-desc-container .qr-cool-design-container .gif {
    width: 100%; }
  .qr20-desc-container .first-title {
    top: 2em; }
  .qr20-desc-container .qr-cdc-content {
    margin-top: 5px; }

  .qr-wmc-container .grid__item {
    width: 100%; }
  .qr-wmc-container .first-grid__item {
    display: block; }
  .qr-wmc-container .second-grid__item {
    display: none; }

  .qr-page-width {
    padding: 0 3vw; }

  .qr-product-specifications-box {
    padding-top: 50px !important; }

  .qr-psb-content.second-box {
    display: block; }
    .qr-psb-content.second-box .word, .qr-psb-content.second-box .img {
      width: 100%; }
    .qr-psb-content.second-box .img {
      margin-top: 20px; }

  .qr-detail-product-box li {
    padding: 0px; }
  .qr-detail-product-box .qr-dpb-close-btn {
    right: 7vw;
    width: 35px;
    height: 35px; }
    .qr-detail-product-box .qr-dpb-close-btn svg {
      width: 25px;
      height: 25px; }
  .qr-detail-product-box .product-cover {
    margin-bottom: 40px; }
  .qr-detail-product-box .product-name {
    margin-bottom: 40px;
    font-size: 24px; }
  .qr-detail-product-box .inner-box-content + .inner-box-content {
    margin-top: 50px; }
  .qr-detail-product-box .inner-box-content-bottom {
    padding: 30px 0px; }

  .qr-side-buy-btn {
    transform: scale(0.5);
    right: -30px; } }
@media (min-width: 1921px) {
  .qr20-first-item {
    min-height: 100vh; }

  .qr20-desc-container .image img {
    width: 100%; }

  .template-collection .bottom-button {
    position: relative; }

  .cfsc .product-card-right {
    margin-left: 6%; } }
/* login, register  */
.template-customers-login .left, .template-customers-register .left {
  float: left; }
.template-customers-login .right, .template-customers-register .right {
  float: right; }
.template-customers-login .clearfix::after, .template-customers-register .clearfix::after {
  display: block;
  content: "";
  clear: both; }
.template-customers-login .page-width, .template-customers-register .page-width {
  margin-top: 35px; }
.template-customers-login .flex-content, .template-customers-register .flex-content {
  display: flex; }
  .template-customers-login .flex-content .login-box0, .template-customers-register .flex-content .login-box0 {
    order: 0; }
  .template-customers-login .flex-content .login-box1, .template-customers-register .flex-content .login-box1 {
    order: 1; }
  .template-customers-login .flex-content .register-box0, .template-customers-register .flex-content .register-box0 {
    order: 0; }
  .template-customers-login .flex-content .register-box1, .template-customers-register .flex-content .register-box1 {
    order: 1; }
.template-customers-login .form-item, .template-customers-register .form-item {
  margin-bottom: 23px; }
.template-customers-login .text-none-transform, .template-customers-register .text-none-transform {
  text-transform: none; }
.template-customers-login .form-title, .template-customers-register .form-title {
  color: #000000;
  font-size: 56px; }
.template-customers-login .reg-title, .template-customers-register .reg-title {
  text-align: center; }
.template-customers-login label, .template-customers-register label {
  color: #000000;
  font-size: 20px; }
.template-customers-login #keepMeLogin, .template-customers-login #agreeCheckbox, .template-customers-register #keepMeLogin, .template-customers-register #agreeCheckbox {
  margin-top: 5px; }
.template-customers-login .tips, .template-customers-register .tips {
  /*       height: 28px;
        line-height: 28px; */
  line-height: 22px; }
  .template-customers-login .tips .tips-text, .template-customers-register .tips .tips-text {
    color: #000000 !important;
    font-weight: normal;
    font-size: 16px; }
    .template-customers-login .tips .tips-text a, .template-customers-register .tips .tips-text a {
      color: #000000;
      text-decoration: underline; }
.template-customers-login #RecoverPassword, .template-customers-register #RecoverPassword {
  color: #000000; }
.template-customers-login .login-btn, .template-customers-register .login-btn {
  font-size: 24px;
  border-radius: 5px;
  width: 48%;
  height: 50px;
  line-height: 33px;
  background-color: #d8232f;
  color: #FFFFFF;
  -webkit-appearance: none;
  -moz-appearance: none; }
  .template-customers-login .login-btn:hover, .template-customers-register .login-btn:hover {
    background-color: #9D292F; }
.template-customers-login .sign-btn, .template-customers-register .sign-btn {
  font-size: 24px;
  border-radius: 5px;
  width: 48%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #000000;
  box-sizing: border-box; }
  .template-customers-login .sign-btn:hover, .template-customers-register .sign-btn:hover {
    background-color: #9D292F;
    color: #FFFFFF;
    border: none; }
  .template-customers-login .sign-btn a, .template-customers-register .sign-btn a {
    color: #000000;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 5px; }
    .template-customers-login .sign-btn a:hover, .template-customers-register .sign-btn a:hover {
      color: #ffffff; }
.template-customers-login .disabled, .template-customers-register .disabled {
  cursor: not-allowed; }
.template-customers-login .content-block, .template-customers-register .content-block {
  border: none; }
.template-customers-login .photo-area, .template-customers-register .photo-area {
  padding-top: 12%;
  box-sizing: border-box; }
.template-customers-login .register-btn, .template-customers-register .register-btn {
  width: 100%;
  background-color: #d8232f;
  color: #FFFFFF;
  font-size: 24px;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none; }
  .template-customers-login .register-btn:hover, .template-customers-register .register-btn:hover {
    background-color: #9D292F; }
.template-customers-login .already-have-account, .template-customers-register .already-have-account {
  font-size: 16px;
  line-height: 22px;
  color: #000000; }
  .template-customers-login .already-have-account a, .template-customers-register .already-have-account a {
    text-decoration: underline; }

@media only screen and (max-width: 768px) {
  .template-customers-login .flex-content, .template-customers-register .flex-content {
    flex-direction: column; }
    .template-customers-login .flex-content .login-box1, .template-customers-register .flex-content .login-box1 {
      order: -1; }
    .template-customers-login .flex-content .register-box1, .template-customers-register .flex-content .register-box1 {
      order: -1; }
  .template-customers-login .sign-btn:hover, .template-customers-register .sign-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000; }
  .template-customers-login .sign-btn a, .template-customers-register .sign-btn a {
    color: #000000; }
    .template-customers-login .sign-btn a:hover, .template-customers-register .sign-btn a:hover {
      color: #000000; } }
@media only screen and (max-width: 375px) {
  .template-customers-login .flex-content, .template-customers-register .flex-content {
    flex-direction: column; }
    .template-customers-login .flex-content .login-box1, .template-customers-register .flex-content .login-box1 {
      order: -1; }
    .template-customers-login .flex-content .register-box1, .template-customers-register .flex-content .register-box1 {
      order: -1; }
  .template-customers-login .form-title, .template-customers-register .form-title {
    font-size: 40px;
    text-align: left; }
  .template-customers-login .sign-btn:hover, .template-customers-register .sign-btn:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000; }
  .template-customers-login .sign-btn a, .template-customers-register .sign-btn a {
    color: #000000; }
    .template-customers-login .sign-btn a:hover, .template-customers-register .sign-btn a:hover {
      color: #000000; } }
/* trustpilot */
.trustpilot-area .trustpilot-widget {
  width: max-content;
  border: 1px solid #eaeaea;
  border-radius: 3px;
  padding: 5px 0;
  margin: 3vw auto; }

@media only screen and (max-width: 990px) {
  .trustpilot-area .trustpilot-widget {
    margin: 5vw auto; } }
/* Contact us */
.template-contact .page-container .main-content {
  padding-bottom: 0; }

.template-contact .page-container .main-content .breadcrumb {
  margin: -15px 0 -1px; }

@keyframes btnmove {
  0%,10%,27%,40%,50% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0); }

  20%,21% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -20px, 0); }

  35% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -10px, 0);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -10px, 0); }

  45% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.template-contact .contact-btn {
  text-transform: capitalize;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-animation: btnmove 2s infinite;
  -webkit-animation: btnmove 2s infinite;
  animation: btnmove 2s infinite;
  -moz-transform-origin: center bottom;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

.template-contact .contact-us-pc-img {
  width: 100%;
  aspect-ratio: 64/15;
  object-fit: contain; }

.template-contact .contact-us-mb-img {
  width: 100%;
  aspect-ratio: 768/1013;
  object-fit: contain; }

@media only screen and (max-width: 1600px) {
  .template-contact .page-container .main-content .page-width {
    max-width: 1350px; }

  .template-contact .contact-btn {
    font-size: 14px; } }
@media only screen and (min-width: 590px) and (max-width: 791px) {
  .template-contact .page-container .main-content .small-hide {
    display: block !important; }

  .template-contact .page-container .main-content .medium-up-hide {
    display: none !important; } }
.template-contact .content-box {
  position: relative; }

.template-contact .content-box .image {
  display: block;
  width: 100%;
  height: 100%; }

.template-contact .contact-header-wrapper {
  height: max-content;
  width: max-content;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14%;
  margin: auto;
  display: flex;
  justify-content: end; }

@media only screen and (max-width: 1600px) {
  .template-contact .contact-header-wrapper {
    right: 12%; } }
@media only screen and (max-width: 590px) {
  .template-contact .contact-header-wrapper {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: unset;
    bottom: 10%; }

  .template-contact .contact-btn {
    padding-left: 14px;
    padding-right: 14px; }

  .template-contact .contact-header-wrapper {
    justify-content: center; } }
.template-contact .title-box {
  height: max-content;
  width: max-content; }

.template-contact .title-box .title, .template-contact .title-box .subtitle {
  color: #fff !important; }

.template-contact .title-box .title {
  font-size: 2.5vw;
  margin-bottom: 0; }

@media only screen and (max-width: 790px) {
  .template-contact .title-box .title {
    font-size: 24px; } }
.template-contact .title-box .subtitle {
  font-size: 18px; }

.template-contact .contact-box {
  background-color: #fff;
  border-radius: 30px;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  transform: translateY(-17%); }

@media only screen and (max-width: 1100px) {
  .template-contact .contact-box {
    transform: translateY(-17%); } }
@media only screen and (max-width: 790px) {
  .template-contact .contact-box {
    transform: translateY(0); } }
.template-contact .contact-box .content-block {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none; }

@media only screen and (max-width: 590px) {
  .template-contact .contact-box .content-block {
    border-bottom: 1px dashed #000000;
    box-sizing: border-box; } }
.template-contact .contact-box .contact-itemlist {
  display: flex;
  justify-content: space-between;
  color: #000;
  padding: 2vw 5vw;
  border-radius: 30px;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset; }

@media only screen and (max-width: 590px) {
  .template-contact .contact-box .contact-itemlist {
    flex-wrap: wrap;
    flex-direction: column; } }
@media only screen and (max-width: 768px) {
  .template-contact .contact-box .contact-itemlist {
    padding: 2vw 3vw; } }
@media only screen and (max-width: 420px) {
  .template-contact .contact-box .contact-itemlist {
    padding: 5vw; } }
.template-contact .contact-box .contact-itemlist .contact-item {
  width: 25%; }

@media only screen and (max-width: 1100px) {
  .template-contact .contact-box .contact-itemlist .contact-item {
    width: 30%; } }
@media only screen and (max-width: 790px) {
  .template-contact .contact-box .contact-itemlist .contact-item {
    width: 32%; } }
@media only screen and (max-width: 590px) {
  .template-contact .contact-box .contact-itemlist .contact-item {
    width: 100%; } }
.template-contact .contact-box .contact-itemlist .contact-item .icon-title {
  display: flex;
  align-items: center; }

.template-contact .contact-box .contact-itemlist .contact-item .icon-title .title-box {
  margin-left: 15px;
  font-weight: 700;
  font-size: 16px; }

.template-contact .contact-box .contact-itemlist .contact-item .description {
  font-size: 15px; }

.template-contact .contact-box .contact-itemlist .contact-item .description a {
  text-decoration: underline;
  color: #AE3737; }

.template-contact .contact-box .contact-itemlist .contact-item .description a:hover {
  color: #961821; }

.template-contact .contact-box .contact-form .form-list label {
  display: block;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  margin-bottom: 5px; }

.template-contact .contact-box .contact-form .form-list input, .template-contact .contact-box .contact-form .form-list select, .template-contact .contact-box .contact-form .form-list textarea {
  color: #666; }

.template-contact .contact-box .contact-form .form-list select {
  text-align: center; }

.template-contact .contact-box .contact-form .form-list .label-tips {
  font-size: 14px;
  color: #666;
  margin-left: 5px; }

@media only screen and (max-width: 1100px) {
  .template-contact .contact-box .contact-form .form-list .label-tips {
    width: 85%; } }
@media only screen and (max-width: 590px) {
  .template-contact .contact-box .contact-form .form-list .label-tips {
    width: 100%; } }
.template-contact .contact-box .contact-form .form-list .required {
  margin-left: 5px; }

.template-contact .contact-box .contact-form .form-list .form-list-item {
  display: flex;
  justify-content: space-between; }

@media only screen and (max-width: 590px) {
  .template-contact .contact-box .contact-form .form-list .form-list-item {
    flex-wrap: wrap;
    flex-direction: column; } }
@media only screen and (max-width: 590px) {
  .template-contact .contact-box .form-list {
    padding-top: 20px; }

  .template-contact .contact-box .form-vertical {
    padding: 0; }

  .template-contact .contact-box .contact-form {
    padding: 0; }

  .template-contact .contact-box .form-list-item {
    margin-left: 0; }

  .template-contact .contact-box .form-list-item .grid__item {
    padding: 0; } }
.template-contact .contact-box .btn, .template-contact .contact-box .btn--secondary {
  margin: 20px 0;
  width: 20%; }

@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; } }
@media only screen and (max-width: 790px) {
  .template-contact .contact-box .btn, .template-contact .contact-box .btn--secondary {
    width: 25%; } }
@media only screen and (max-width: 590px) {
  .template-contact .contact-box .btn, .template-contact .contact-box .btn--secondary {
    width: 75%;
    margin: 20px auto; } }
.template-contact .contact-reviews {
  background-color: #F1F1F1;
  padding-top: 4vw;
  padding-bottom: 4vw; }

@media only screen and (max-width: 590px) {
  .template-contact .contact-reviews {
    padding-top: 8vw;
    padding-bottom: 8vw; } }
.template-contact .contact-reviews .title-area {
  margin-bottom: 24px;
  text-transform: capitalize; }

.template-contact .contact-reviews .reviews-area {
  display: flex;
  align-items: center;
  justify-content: center; }

.template-contact .contact-reviews .reviews-area .reviews-item {
  min-width: 380px; }

@media only screen and (max-width: 790px) {
  .template-contact .contact-reviews .reviews-area .reviews-item {
    min-width: unset;
    width: 380px !important; } }
@media only screen and (max-width: 590px) {
  .template-contact .contact-reviews .reviews-area .reviews-item {
    min-width: unset;
    width: 100% !important; }

  .template-contact .contact-reviews .reviews-area .reviews-item .item-box {
    margin: 16px 0; }

  .template-contact .contact-box .content-block .contact-form {
    padding-right: 0; } }
.template-contact .contact-reviews .reviews-area .reviews-item .item-box {
  background-color: #FFF;
  color: #000;
  padding: 15px;
  margin: 24px 0;
  transition: all 0.8s linear; }

.template-contact .page-container .main-content .contact-reviews .reviews-area .reviews-item .item-box:hover {
  transform: scale(1.05);
  transition: all 0.8s linear; }

.template-contact .page-container .main-content .contact-reviews .reviews-area .reviews-item .item-box .logo-star {
  display: flex;
  align-items: center; }

.template-contact .page-container .main-content .contact-reviews .reviews-area .reviews-item .item-box .logo-star .logo-box {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px; }

.template-contact .page-container .main-content .contact-reviews .reviews-area .reviews-item .item-box .logo-star .logo-box .logo-image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden; }

.template-contact .page-container .main-content .contact-reviews .reviews-area .reviews-item .item-box .author-product {
  margin: 10px 0; }

.template-contact .page-container .main-content .contact-reviews .reviews-area .reviews-item .item-box .author-product .reviewed-tips {
  color: #868686;
  margin: 0 5px; }

.template-contact .page-container .main-content .contact-reviews .reviews-area .reviews-item .item-box .author-product .producttitle-box {
  color: #000;
  text-decoration: underline;
  font-weight: 700; }

.template-contact .page-container .main-content .contact-reviews .reviews-area .reviews-item .item-box .author-product .producttitle-box:hover {
  color: #d8232f; }

.template-contact .page-container .main-content .contact-reviews .reviews-area .reviews-item .item-box .reviews-content {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; }

/* Feedback Modify */
@media only screen and (max-width: 1500px) {
  .site-header .site-header__search-login .right_header_03 {
    padding-left: 15px; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .site-header .site-header__upperback .site-nav__link {
    font-size: 14px; } }
@media only screen and (max-width: 790px) {
  .dd-options li:first-child, .dd-options li:nth-child(2) {
    display: none; } }
/* steplist | coupon-usestep.liquid */
.steplist .steplist-area {
  display: flex;
  flex-wrap: wrap; }

.steplist .step-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 2vw;
  margin-top: 2vw; }

.steplist .icon-box {
  width: 120px; }

.steplist .title {
  color: #171717;
  font-size: 28px;
  margin-bottom: 20px; }

.steplist .title small {
  background: #333;
  color: #fff;
  border-radius: 30px;
  padding: 0 14px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-right: 10px; }

.steplist .title span {
  font-weight: 700; }

.steplist .text ul {
  padding-left: 25px; }

.steplist .text li {
  list-style: disc; }

.steplist .text-box {
  padding: 0 1.5vw;
  flex: 0 1 calc(100% - 120px); }

@media only screen and (max-width: 790px) {
  .steplist .text-box {
    padding: 0 4vw; }

  .steplist .icon-box {
    position: relative;
    left: 0;
    top: 0; }

  .steplist .icon-box svg {
    width: 50px;
    height: auto; }

  .steplist .title {
    font-size: 22px; } }
@media only screen and (max-width: 590px) {
  .steplist .title span {
    width: 100%;
    display: block; } }
/* coupon-banner.liquid */
.coupon-bannertext {
  color: #fff;
  text-align: center;
  font-size: 16px; }

.couponimg-area {
  display: flex;
  padding: 1vw;
  text-align: center; }
  .couponimg-area .item {
    padding: 5px; }
  .couponimg-area img {
    max-width: 226px;
    width: 100%; }

@media only screen and (max-width: 768px) {
  .couponimg-area {
    flex-wrap: wrap; }
    .couponimg-area .item {
      width: 50%; } }
.link-btn {
  cursor: pointer; }

/* coupon-cointent.liquid */
.coupon-content .coupon-main {
  margin: auto;
  padding: 3vw 20px;
  text-align: center;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center; }
  @media screen and (max-width: 768px) {
    .coupon-content .coupon-main {
      flex-wrap: wrap; } }
.coupon-content .coupon-item {
  padding: 0 10px;
  margin-bottom: 20px;
  position: relative;
  width: 30%; }
  @media screen and (max-width: 768px) {
    .coupon-content .coupon-item {
      width: 100%; } }
.coupon-content .truecoupon {
  position: relative;
  min-height: 370px; }
.coupon-content .truecoupon .privy-embed-form {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  bottom: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat; }
.coupon-content .countdown {
  background: #16151a;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 20px; }
.coupon-content .countdown-item {
  display: flex;
  align-items: center;
  justify-content: space-around; }
.coupon-content .countdown-timeup {
  display: none;
  color: #fff;
  font-size: 30px;
  align-items: center; }
.coupon-content .clock-item {
  display: inline-block; }
  @media only screen and (min-width: 769px) {
    .coupon-content .clock-item {
      display: inline-flex;
      align-items: center;
      justify-content: center; } }
  @media only screen and (max-width: 590px) {
    .coupon-content .clock-item {
      max-width: 70px;
      max-height: 70px; } }
  .coupon-content .clock-item span {
    font-size: 14px;
    width: 100%;
    display: block;
    color: #fff; }
  .coupon-content .clock-item .num {
    font-size: 36px;
    color: #fff; }
    @media only screen and (min-width: 769px) {
      .coupon-content .clock-item .num {
        line-height: 1.3; } }
    @media only screen and (max-width: 768px) {
      .coupon-content .clock-item .num {
        font-size: 20px; } }
    @media only screen and (max-width: 590px) {
      .coupon-content .clock-item .num {
        line-height: 1.6; } }
    @media screen and (min-width: 1600px) {
      .coupon-content .clock-item .num {
        font-size: 28px; } }
.coupon-content .timeup-box img {
  max-width: 530px;
  margin: auto;
  width: 98%;
  margin-top: 2px; }
.coupon-content .timeup-box .before-tip {
  color: #f3650d;
  font-weight: bold;
  font-size: 2vw;
  border: 1px solid #4c4b4b;
  max-width: 530px;
  margin: 1vw auto;
  padding: 1vw;
  width: 98%;
  border-radius: 10px;
  text-transform: uppercase; }
  @media only screen and (max-width: 768px) {
    .coupon-content .timeup-box .before-tip {
      font-size: 16px; } }
  @media screen and (min-width: 1600px) {
    .coupon-content .timeup-box .before-tip {
      font-size: 26px; } }
.coupon-content .timeup-box .timeup-tip {
  display: none;
  width: 98%;
  color: #fff;
  font-weight: bold;
  font-size: 2vw;
  border: 1px solid #4c4b4b;
  max-width: 530px;
  margin: 1vw auto;
  padding: 1vw;
  border-radius: 10px;
  text-transform: uppercase; }
  @media only screen and (max-width: 768px) {
    .coupon-content .timeup-box .timeup-tip {
      font-size: 16px; } }
  @media screen and (min-width: 1600px) {
    .coupon-content .timeup-box .timeup-tip {
      font-size: 26px; } }

/* coupon page */
.site-header__search-login {
  background: transparent; }

@media only screen and (min-width: 769px) {
  .site-header__logo img {
    top: -72px; } }
#privy-container #privy-inner-container {
  max-width: 550px;
  margin: auto; }

.template-coupon-page, .template-black5-2021 {
  background: #16151a; }
  .template-coupon-page .breadcrumb, .template-black5-2021 .breadcrumb {
    display: none; }
  .template-coupon-page .main-content, .template-black5-2021 .main-content {
    padding-bottom: 0; }
  .template-coupon-page .site-header, .template-black5-2021 .site-header {
    background-color: transparent; }
  .template-coupon-page .steplist, .template-black5-2021 .steplist {
    background-size: cover;
    background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/coupon-intro-pg_2x_3c17edd2-c511-4a6a-b07e-7e214a04290b.png?v=1636596698");
    background-position: center center; }
    .template-coupon-page .steplist .title, .template-black5-2021 .steplist .title {
      font-size: 30px;
      color: #f3650d;
      font-weight: bold;
      text-transform: uppercase; }
    .template-coupon-page .steplist .text, .template-black5-2021 .steplist .text {
      color: #fff;
      font-size: 18px; }
  .template-coupon-page .section-title, .template-black5-2021 .section-title {
    font-size: 48px;
    color: #f3650d;
    margin-bottom: 2vw;
    font-weight: bold; }
  .template-coupon-page .count-title, .template-black5-2021 .count-title {
    font-size: 30px;
    color: #f3650d;
    margin-bottom: 2vw; }
  .template-coupon-page .coupon-offers .coupon-offerlist, .template-black5-2021 .coupon-offers .coupon-offerlist {
    background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/coupon-img01_2x_8d04d219-aa5f-4402-a10c-31862ab76840.png?v=1636596697");
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    background-size: contain; }
  .template-coupon-page .coupon-offers .offer-card, .template-black5-2021 .coupon-offers .offer-card {
    position: relative;
    display: inline-block;
    width: 13%;
    margin: 0 2vw; }
  .template-coupon-page .coupon-offers .coupon-offerlist, .template-black5-2021 .coupon-offers .coupon-offerlist {
    text-align: center;
    margin-bottom: 2vw; }
  .template-coupon-page .coupon-offers .btn, .template-coupon-page .coupon-offers .btn--secondary, .template-black5-2021 .coupon-offers .btn, .template-black5-2021 .coupon-offers .btn--secondary {
    background: transparent;
    border: solid 2px #4a4857;
    font-size: 20px; }
  .template-coupon-page .ship_image, .template-black5-2021 .ship_image {
    max-width: 306px;
    margin: auto;
    width: 100%; }
  .template-coupon-page .shipping-box, .template-black5-2021 .shipping-box {
    padding-top: 0;
    padding-bottom: 2vw;
    background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/coupon-freeshipping-bg_2x_feb96bea-9944-47e7-b233-2d127aff1818.png?v=1636596698");
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
    background-size: contain; }
  .template-coupon-page .mobile-image, .template-black5-2021 .mobile-image {
    display: none; }
  .template-coupon-page .pc-image, .template-black5-2021 .pc-image {
    display: block; }
  .template-coupon-page .offer-card:nth-child(1), .template-black5-2021 .offer-card:nth-child(1) {
    width: 16%; }
  .template-coupon-page .offer-card:nth-child(3), .template-black5-2021 .offer-card:nth-child(3) {
    width: 15%; }

.template-coupon-page .site-header {
  background-color: #1f1e24; }

.template-black5-2021 .site-header {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  background: none; }

.template-black5-2021 .section-coupon-offers {
  paddidng-top: 0; }

@media (min-width: 769px) and (max-width: 1599px) {
  .template-coupon-page .steplist .title, .template-black5-2021 .steplist .title {
    font-size: 2.1vw; } }
@media (max-width: 768px) {
  .template-coupon-page .ship_image, .template-black5-2021 .ship_image {
    max-width: 200px; }
  .template-coupon-page .steplist .icon-box, .template-black5-2021 .steplist .icon-box {
    width: 50px; }
  .template-coupon-page .steplist .title, .template-black5-2021 .steplist .title {
    font-size: 18px; }
  .template-coupon-page .steplist .text, .template-black5-2021 .steplist .text {
    font-size: 13px; }
  .template-coupon-page .steplist .text-box, .template-black5-2021 .steplist .text-box {
    flex: 0 1 calc(100% - 50px);
    padding-right: 0; }
  .template-coupon-page .coupon-offers .btn, .template-coupon-page .coupon-offers .btn--secondary, .template-black5-2021 .coupon-offers .btn, .template-black5-2021 .coupon-offers .btn--secondary {
    padding: 6px 10px;
    font-size: 14px; }
  .template-coupon-page .shipping-box, .template-black5-2021 .shipping-box {
    padding-top: 10vw; } }
@media (max-width: 590px) {
  .template-coupon-page .mobile-image, .template-black5-2021 .mobile-image {
    display: block; }
  .template-coupon-page .pc-image, .template-black5-2021 .pc-image {
    display: none; }
  .template-coupon-page .couponimg-area img, .template-black5-2021 .couponimg-area img {
    max-width: 100%; }
  .template-coupon-page .couponimg-area .item, .template-black5-2021 .couponimg-area .item {
    padding: 5px; }
  .template-coupon-page .section-title, .template-black5-2021 .section-title {
    font-size: 32px; }
  .template-coupon-page .countdown, .template-black5-2021 .countdown {
    min-height: 40vw; }
  .template-coupon-page .coupon-content .page-width, .template-black5-2021 .coupon-content .page-width {
    padding: 0; }
  .template-coupon-page .coupon-main, .template-black5-2021 .coupon-main {
    padding: 0; }
  .template-coupon-page .coupon-content .timeup-box .timeup-tip, .template-black5-2021 .coupon-content .timeup-box .timeup-tip {
    width: 80%; }
  .template-coupon-page .countdown, .template-coupon-page .shipping-box, .template-coupon-page .steplist, .template-coupon-page .coupon-offers, .template-black5-2021 .countdown, .template-black5-2021 .shipping-box, .template-black5-2021 .steplist, .template-black5-2021 .coupon-offers {
    padding-top: 5vw;
    padding-bottom: 5vw; } }
/* Landing Image with Code */
.landing-iamge-with-code {
  padding: 2vw 0;
  display: flex;
  justify-content: center; }
  @media only screen and (max-width: 1100px) {
    .landing-iamge-with-code {
      padding: 4vw 0; } }
  .landing-iamge-with-code .landing-iamge {
    width: max-content;
    margin: auto;
    position: relative;
    max-width: 85%;
    padding: 0 40px; }
    @media only screen and (max-width: 1600px) {
      .landing-iamge-with-code .landing-iamge {
        max-width: 1500px;
        padding: 0 50px; } }
    @media only screen and (max-width: 790px) {
      .landing-iamge-with-code .landing-iamge {
        max-width: 100%; } }
    @media only screen and (max-width: 590px) {
      .landing-iamge-with-code .landing-iamge {
        max-width: 100%;
        padding: 0; } }
    .landing-iamge-with-code .landing-iamge .landing-code {
      position: absolute;
      left: 0;
      right: 0;
      margin: auto;
      bottom: 18%;
      padding: 10px;
      font-weight: 700;
      text-align: center;
      font-size: 25px;
      text-transform: uppercase;
      max-width: 75%; }
      @media only screen and (max-width: 1100px) {
        .landing-iamge-with-code .landing-iamge .landing-code {
          font-size: 22px;
          bottom: 15%; } }
      @media only screen and (max-width: 790px) {
        .landing-iamge-with-code .landing-iamge .landing-code {
          font-size: 20px; } }
      @media only screen and (max-width: 590px) {
        .landing-iamge-with-code .landing-iamge .landing-code {
          font-size: 14px;
          bottom: 11%; } }

/* Landing Left Image */
.landing-left-image {
  position: relative; }
  .landing-left-image .landing-image-box img {
    display: block;
    width: 100%; }
  .landing-left-image .landing-image-box .pc-image {
    display: block;
    width: 100%;
    aspect-ratio: 364 / 163;
    object-fit: contain; }
    @media only screen and (max-width: 790px) {
      .landing-left-image .landing-image-box .pc-image {
        display: none !important; } }
  .landing-left-image .landing-image-box .mb-image {
    display: block;
    width: 100%;
    aspect-ratio: 25 / 18;
    object-fit: contain; }
    @media only screen and (min-width: 791px) {
      .landing-left-image .landing-image-box .mb-image {
        display: none !important; } }
  .landing-left-image .landing-text-box {
    width: 50%;
    max-width: 50%;
    height: max-content;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    padding: 0 5vw; }
    @media only screen and (max-width: 1400px) {
      .landing-left-image .landing-text-box {
        padding: 0 6vw; } }
    @media only screen and (max-width: 1100px) {
      .landing-left-image .landing-text-box {
        padding: 0 3vw; } }
    .landing-left-image .landing-text-box .title1 {
      color: #fff;
      opacity: 20%;
      font-size: 6vw;
      text-transform: uppercase;
      position: absolute;
      top: -8vw;
      left: -5vw; }
      @media only screen and (max-width: 991px) {
        .landing-left-image .landing-text-box .title1 {
          top: -4px;
          left: 7px;
          font-size: 11vw; } }
      @media (min-width: 992px) and (max-width: 1024px) {
        .landing-left-image .landing-text-box .title1 {
          top: -20px;
          left: -7px;
          font-size: 6vw; } }
    .landing-left-image .landing-text-box .subtitle, .landing-left-image .landing-text-box .title {
      color: #ffffff;
      text-transform: uppercase;
      margin-bottom: 25px; }
      @media only screen and (max-width: 1400px) {
        .landing-left-image .landing-text-box .subtitle, .landing-left-image .landing-text-box .title {
          margin-bottom: 15px; } }
    .landing-left-image .landing-text-box .title {
      font-size: 3vw; }
      @media only screen and (min-width: 591px) and (max-width: 1100px) {
        .landing-left-image .landing-text-box .title {
          font-size: 30px; } }
      @media only screen and (max-width: 590px) {
        .landing-left-image .landing-text-box .title {
          font-size: 28px; } }
    .landing-left-image .landing-text-box .subtitle {
      font-size: 1.5vw; }
      @media only screen and (max-width: 1100px) {
        .landing-left-image .landing-text-box .subtitle {
          font-size: 18px;
          margin-top: 5vw; } }
      @media only screen and (min-width: 591px) and (max-width: 1100px) {
        .landing-left-image .landing-text-box .subtitle {
          font-size: 22px; } }
    .landing-left-image .landing-text-box .shipping-info {
      margin-top: 25px; }
      .landing-left-image .landing-text-box .shipping-info .shipping-title {
        font-weight: 700; }
      .landing-left-image .landing-text-box .shipping-info .shipping-content .split-icon {
        margin: 0 10px;
        color: #f7711f; }
    .landing-left-image .landing-text-box .button-link {
      color: #7f2806;
      font-weight: 700;
      font-size: 1.5vw;
      border-radius: 10px;
      background-image: linear-gradient(to right, #feb535, #f7701f);
      font-family: "Open Sans",HelveticaNeue,"Helvetica Neue",sans-serif;
      padding: 10px 50px;
      margin-top: 25px;
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: max-content; }
      @media only screen and (max-width: 1400px) {
        .landing-left-image .landing-text-box .button-link {
          margin-top: 15px; } }
      @media only screen and (max-width: 1100px) {
        .landing-left-image .landing-text-box .button-link {
          font-size: 18px; } }
      @media only screen and (min-width: 591px) and (max-width: 1100px) {
        .landing-left-image .landing-text-box .button-link {
          font-size: 22px; } }
  @media only screen and (max-width: 790px) {
    .landing-left-image {
      display: flex;
      flex-direction: column; }
      .landing-left-image .landing-image-box, .landing-left-image .landing-text-box {
        flex: 0 1 100%;
        width: 100%; }
      .landing-left-image .landing-text-box {
        position: static;
        max-width: unset;
        padding: 3vw;
        padding-top: 8vw;
        order: -1; } }

/* Landing Right Image */
.landing-right-image .landing-right-image-wrapper {
  padding: 2vw 50px;
  max-width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 590px) {
    .landing-right-image .landing-right-image-wrapper {
      max-width: 100%; } }
  @media only screen and (max-width: 1600px) {
    .landing-right-image .landing-right-image-wrapper {
      padding: 2vw 50px; } }
  @media only screen and (max-width: 790px) {
    .landing-right-image .landing-right-image-wrapper {
      padding: 4vw 3vw;
      flex-wrap: wrap; } }
.landing-right-image .landing-text-box {
  flex: 0 1 40%;
  width: 40%; }
  .landing-right-image .landing-text-box .title-image {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .landing-right-image .landing-text-box .title-image .title {
      color: #ffffff;
      font-size: 2.3vw;
      margin-bottom: 0; }
      @media only screen and (max-width: 1600px) {
        .landing-right-image .landing-text-box .title-image .title {
          font-size: 2vw; } }
      @media only screen and (max-width: 1300px) {
        .landing-right-image .landing-text-box .title-image .title {
          font-size: 2.5vw; } }
      @media only screen and (max-width: 1100px) {
        .landing-right-image .landing-text-box .title-image .title {
          font-size: 2.8vw; } }
      @media only screen and (max-width: 790px) {
        .landing-right-image .landing-text-box .title-image .title {
          font-size: 5vw; } }
      @media only screen and (max-width: 590px) {
        .landing-right-image .landing-text-box .title-image .title {
          font-size: 7.5vw; } }
    .landing-right-image .landing-text-box .title-image .count {
      color: #f77420;
      font-size: 5vw;
      letter-spacing: 15px; }
      @media only screen and (max-width: 1100px) {
        .landing-right-image .landing-text-box .title-image .count {
          font-size: 5.5vw; } }
      @media only screen and (max-width: 790px) {
        .landing-right-image .landing-text-box .title-image .count {
          font-size: 10vw; } }
      @media only screen and (max-width: 590px) {
        .landing-right-image .landing-text-box .title-image .count {
          font-size: 14vw; } }
    .landing-right-image .landing-text-box .title-image .image-box img {
      display: block;
      width: 100%;
      aspect-ratio: 282 / 215;
      object-fit: contain;
      max-width: 95%;
      margin: auto; }
      @media only screen and (max-width: 1600px) {
        .landing-right-image .landing-text-box .title-image .image-box img {
          max-width: 90%; } }
      @media only screen and (max-width: 1500px) {
        .landing-right-image .landing-text-box .title-image .image-box img {
          max-width: 85%; } }
      @media only screen and (max-width: 790px) {
        .landing-right-image .landing-text-box .title-image .image-box img {
          max-width: 80%; } }
      @media only screen and (max-width: 590px) {
        .landing-right-image .landing-text-box .title-image .image-box img {
          max-width: 95%; } }
    @media only screen and (max-width: 1300px) {
      .landing-right-image .landing-text-box .title-image .title-box {
        flex: 0 1 55%;
        width: 55%; } }
    @media only screen and (max-width: 1100px) {
      .landing-right-image .landing-text-box .title-image .title-box {
        flex: 0 1 100%;
        width: 100%; } }
    @media only screen and (min-width: 590px) and (max-width: 790px) {
      .landing-right-image .landing-text-box .title-image {
        justify-content: flex-start; }
        .landing-right-image .landing-text-box .title-image .title-box {
          flex: 0 1 40%;
          width: 40%; } }
  .landing-right-image .landing-text-box p {
    font-size: 18px; }
    @media only screen and (max-width: 1600px) {
      .landing-right-image .landing-text-box p {
        font-size: 16px; } }
    @media only screen and (max-width: 590px) {
      .landing-right-image .landing-text-box p {
        font-size: 15px; } }
  .landing-right-image .landing-text-box .description {
    font-size: 18px;
    padding-right: 20px; }
    @media only screen and (max-width: 1600px) {
      .landing-right-image .landing-text-box .description {
        max-width: 80%; } }
    @media only screen and (max-width: 1500px) {
      .landing-right-image .landing-text-box .description {
        max-width: 90%; } }
    @media only screen and (max-width: 1300px) {
      .landing-right-image .landing-text-box .description {
        font-size: 16px;
        padding-right: 0; } }
    @media only screen and (max-width: 1100px) {
      .landing-right-image .landing-text-box .description {
        max-width: 100%; } }
    @media only screen and (max-width: 590px) {
      .landing-right-image .landing-text-box .description {
        font-size: 15px; } }
  .landing-right-image .landing-text-box .button-link {
    color: #7f2806;
    font-weight: 700;
    font-size: 24px;
    border-radius: 10px;
    background-image: linear-gradient(to right, #feb535, #f7701f);
    font-family: "Open Sans",HelveticaNeue,"Helvetica Neue",sans-serif;
    padding: 10px 50px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: max-content; }
    @media only screen and (max-width: 1600px) {
      .landing-right-image .landing-text-box .button-link {
        font-size: 22px; } }
    @media only screen and (max-width: 1400px) {
      .landing-right-image .landing-text-box .button-link {
        margin-top: 15px; } }
    @media only screen and (max-width: 1100px) {
      .landing-right-image .landing-text-box .button-link {
        font-size: 18px;
        padding: 10px 35px; } }
    @media only screen and (max-width: 790px) {
      .landing-right-image .landing-text-box .button-link {
        min-width: 50%; } }
    @media only screen and (max-width: 590px) {
      .landing-right-image .landing-text-box .button-link {
        min-width: 75%; } }
  .landing-right-image .landing-text-box p a {
    text-decoration: underline; }
.landing-right-image .landing-image-box {
  flex: 0 1 60%;
  width: 60%;
  padding-left: 20px;
  position: relative; }
  .landing-right-image .landing-image-box .image-overlay {
    position: absolute;
    width: calc(100% - 20px);
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 790px) {
      .landing-right-image .landing-image-box .image-overlay {
        width: 100%; } }
    .landing-right-image .landing-image-box .image-overlay .overlay-item {
      position: relative; }
      .landing-right-image .landing-image-box .image-overlay .overlay-item .item-content {
        display: none;
        flex-direction: column;
        align-items: center;
        max-width: 100%; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item .item-content .content-box {
          padding: 5px 15px;
          border-radius: 20px;
          background-color: #18171c;
          display: inline-block;
          text-align: center;
          white-space: nowrap;
          max-width: 200px;
          overflow: hidden;
          text-overflow: ellipsis; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item .item-content .content-point {
          width: 20px;
          height: 20px;
          border-radius: 50%;
          background-color: rgba(255, 255, 255, 0.5);
          position: relative;
          margin: 15px 0; }
          .landing-right-image .landing-image-box .image-overlay .overlay-item .item-content .content-point:before {
            content: "";
            display: block;
            width: 50%;
            height: 50%;
            border-radius: 50%;
            background-color: #ffffff;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            z-index: 2; }
      .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(1) {
        flex: 0 1 15%;
        margin-left: 5%;
        width: 100%; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(1) .item-content {
          position: absolute;
          top: 6%;
          left: 0;
          right: 0;
          margin: auto; }
          @media only screen and (max-width: 1500px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(1) .item-content {
              top: 1%; } }
          @media only screen and (max-width: 1300px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(1) .item-content {
              top: -4%; } }
          @media only screen and (min-width: 791px) and (max-width: 1100px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(1) .item-content {
              top: -14%; } }
      .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(2) {
        flex: 0 1 13%;
        width: 100%; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(2) .item-content {
          position: absolute;
          top: -20%;
          left: -14%; }
          @media only screen and (max-width: 1500px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(2) .item-content {
              top: -22%; } }
          @media only screen and (min-width: 791px) and (max-width: 1100px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(2) .item-content {
              top: -35%; } }
      .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(3) {
        max-width: 10%;
        width: 100%; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(3) .item-content {
          position: absolute;
          top: -20%;
          left: 15%; }
          @media only screen and (max-width: 1500px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(3) .item-content {
              top: -22%; } }
          @media only screen and (min-width: 791px) and (max-width: 1100px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(3) .item-content {
              top: -35%; } }
      .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(4) {
        max-width: 12%;
        width: 100%; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(4) .item-content {
          position: absolute;
          top: -20%;
          left: 22%; }
          @media only screen and (max-width: 1500px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(4) .item-content {
              top: -22%; } }
          @media only screen and (min-width: 791px) and (max-width: 1100px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(4) .item-content {
              top: -35%; } }
      .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(5) {
        flex: 0 1 17%;
        width: 100%; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(5) .item-content {
          position: absolute;
          top: 2%;
          left: 10%; }
          @media only screen and (max-width: 1500px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(5) .item-content {
              top: -2%; } }
          @media only screen and (max-width: 1300px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(5) .item-content {
              top: -6%; } }
          @media only screen and (min-width: 791px) and (max-width: 1100px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(5) .item-content {
              top: -18%; } }
      .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(6) {
        flex: 0 1 14%;
        width: 100%; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(6) .item-content {
          position: absolute;
          top: 5%;
          left: 10%; }
          @media only screen and (max-width: 1500px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(6) .item-content {
              top: 0%; } }
          @media only screen and (min-width: 791px) and (max-width: 1100px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(6) .item-content {
              top: -12%; } }
      .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(7) {
        flex: 0 1 19%;
        width: 100%; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(7) .item-content {
          flex-direction: column-reverse;
          position: absolute;
          bottom: -10%;
          left: 5%; }
          @media only screen and (max-width: 1500px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(7) .item-content {
              bottom: -12%; } }
          @media only screen and (min-width: 791px) and (max-width: 1100px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(7) .item-content {
              bottom: -22%; } }
      .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(8) {
        flex: 0 1 24%;
        width: 100%; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(8) .item-content {
          flex-direction: column-reverse;
          position: absolute;
          bottom: -15%;
          left: 24%; }
          @media only screen and (max-width: 1500px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(8) .item-content {
              bottom: -18%;
              left: 20%; } }
          @media only screen and (max-width: 1300px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(8) .item-content {
              bottom: -22%;
              left: 15%; } }
          @media only screen and (min-width: 791px) and (max-width: 1100px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(8) .item-content {
              bottom: -25%;
              left: 12%; } }
      .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(9) {
        flex: 0 1 25%;
        width: 100%; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(9) .item-content {
          flex-direction: column-reverse;
          position: absolute;
          bottom: -10%;
          left: 25%; }
          @media only screen and (max-width: 1500px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(9) .item-content {
              bottom: -14%; } }
          @media only screen and (min-width: 791px) and (max-width: 1100px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(9) .item-content {
              bottom: -22%; } }
      .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(10) {
        flex: 1 1 auto; }
        .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(10) .item-content {
          flex-direction: column-reverse;
          position: absolute;
          bottom: -8%;
          left: 12%; }
          @media only screen and (max-width: 1500px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(10) .item-content {
              bottom: -12%; } }
          @media only screen and (min-width: 791px) and (max-width: 1100px) {
            .landing-right-image .landing-image-box .image-overlay .overlay-item:nth-child(10) .item-content {
              bottom: -26%;
              left: -4%; } }
      @media only screen and (min-width: 591px) {
        .landing-right-image .landing-image-box .image-overlay .overlay-item:hover .item-content {
          display: flex; } }
@media only screen and (max-width: 790px) {
  .landing-right-image {
    display: flex;
    flex-direction: column; }
    .landing-right-image .landing-text-box, .landing-right-image .landing-image-box {
      flex: 0 1 100%;
      width: 100%; }
    .landing-right-image .landing-text-box {
      margin-bottom: 30px;
      display: flex;
      flex-direction: column; }
    .landing-right-image .landing-image-box {
      padding: 0; } }

/* Landing Sidebar */
.landing-sidebar {
  position: fixed;
  top: 30%;
  left: 0;
  z-index: 9;
  max-width: 10%;
  padding: 0 10px; }
  .landing-sidebar .sidebar-block-area .sidebar-item {
    position: relative;
    display: block;
    margin-bottom: 10px;
    box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1); }
    .landing-sidebar .sidebar-block-area .sidebar-item .block-image-box img {
      display: block;
      width: 100%;
      aspect-ratio: 362 / 154;
      object-fit: contain; }
    .landing-sidebar .sidebar-block-area .sidebar-item:nth-child(1) .block-image-box img {
      display: block;
      width: 100%;
      aspect-ratio: 362 / 220;
      object-fit: contain; }
  .landing-sidebar .close-btn {
    text-align: right;
    cursor: pointer; }
    .landing-sidebar .close-btn svg {
      fill: #36353e; }
  .landing-sidebar:hover .close-btn svg path {
    fill: #e48e21; }

@media only screen and (max-width: 790px) {
  .pc-landing-sidebar {
    display: none; } }

@media only screen and (min-width: 791px) {
  .mb-landing-sidebar {
    display: none; } }

.mb-landing-sidebar {
  position: static;
  max-width: 100%;
  padding: 0; }
  .mb-landing-sidebar .fixed-sidebar {
    position: fixed;
    left: 0;
    top: 35%;
    max-width: 20%;
    z-index: 99;
    padding: 0 10px; }
    @media only screen and (max-width: 590px) {
      .mb-landing-sidebar .fixed-sidebar {
        max-width: 30%; } }
  .mb-landing-sidebar .normal-sidebar {
    background-color: #1f1e24;
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    z-index: 3; }
    .mb-landing-sidebar .normal-sidebar .sidebar-block-area {
      display: flex;
      align-items: center;
      justify-content: center; }
      .mb-landing-sidebar .normal-sidebar .sidebar-block-area .sidebar-item {
        padding: 10px; }
        @media only screen and (max-width: 590px) {
          .mb-landing-sidebar .normal-sidebar .sidebar-block-area .sidebar-item {
            padding: 0;
            margin-bottom: 0; } }

/* bfcm-flashsale.liquid */
.bfcm-flashsale .banner-row {
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 590px) {
    .bfcm-flashsale .banner-row {
      flex-wrap: wrap; } }
.bfcm-flashsale .banner-item {
  flex: 0 1 50%;
  text-align: center; }
  @media only screen and (max-width: 590px) {
    .bfcm-flashsale .banner-item {
      flex: 0 1 100%; } }
@media screen and (min-width: 769px) {
  .bfcm-flashsale .item-left img {
    max-width: 400px; } }
.bfcm-flashsale .bfcmflashsale-top {
  background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/bfcm-flashsale-bg.png?v=1636686963");
  padding-bottom: 3vw; }
.bfcm-flashsale .flashdategroup {
  text-align: center; }
  @media only screen and (max-width: 590px) {
    .bfcm-flashsale .flashdategroup {
      margin: 5vw 0; } }
  .bfcm-flashsale .flashdategroup .date-item {
    width: 30%;
    margin: 0 4px;
    display: inline-block; }
    @media only screen and (max-width: 590px) {
      .bfcm-flashsale .flashdategroup .date-item {
        width: 31%;
        margin: 0 2px; } }
  .bfcm-flashsale .flashdategroup .date-title {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.8vw; }
    @media screen and (min-width: 1600px) {
      .bfcm-flashsale .flashdategroup .date-title {
        font-size: 30px; } }
    @media only screen and (max-width: 768px) {
      .bfcm-flashsale .flashdategroup .date-title {
        font-size: 14px; } }
    @media only screen and (max-width: 590px) {
      .bfcm-flashsale .flashdategroup .date-title {
        font-size: 12px; } }
  .bfcm-flashsale .flashdategroup .date-time {
    color: #fff;
    font-size: 2.1vw;
    font-weight: bold; }
    @media screen and (min-width: 1600px) {
      .bfcm-flashsale .flashdategroup .date-time {
        font-size: 40px; } }
    @media only screen and (max-width: 768px) {
      .bfcm-flashsale .flashdategroup .date-time {
        font-size: 22px; } }
    @media only screen and (max-width: 590px) {
      .bfcm-flashsale .flashdategroup .date-time {
        font-size: 12px;
        font-weight: bold; } }
  .bfcm-flashsale .flashdategroup .date-btn {
    cursor: pointer;
    text-transform: uppercase;
    color: #fff;
    font-size: 1.8vw;
    max-width: 300px;
    background-color: #000;
    border-radius: 27px;
    margin: auto; }
    @media screen and (min-width: 1600px) {
      .bfcm-flashsale .flashdategroup .date-btn {
        font-size: 30px; } }
    @media only screen and (max-width: 768px) {
      .bfcm-flashsale .flashdategroup .date-btn {
        font-size: 16px; } }
    @media only screen and (max-width: 590px) {
      .bfcm-flashsale .flashdategroup .date-btn {
        font-size: 12px; } }
  .bfcm-flashsale .flashdategroup .date-item.active .date-time {
    color: #ee9e1c; }
  .bfcm-flashsale .flashdategroup .date-item.active .date-btn {
    color: #000;
    background-image: linear-gradient(0deg, #eaa71e 0%, #ff6e12 100%); }
  .bfcm-flashsale .flashdategroup .date-item:hover .date-time {
    color: #ee9e1c; }
  .bfcm-flashsale .flashdategroup .date-item:hover .date-btn {
    color: #000;
    background-image: linear-gradient(0deg, #eaa71e 0%, #ff6e12 100%); }
.bfcm-flashsale .bfcm-flashsale-list {
  display: none; }
.bfcm-flashsale .active.bfcm-flashsale-list {
  display: block; }
.bfcm-flashsale .bfcm-flashsale-listcontent {
  padding: 1vw 50px;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  width: 85%;
  margin: auto; }
  @media only screen and (max-width: 790px) {
    .bfcm-flashsale .bfcm-flashsale-listcontent {
      padding: 1vw 5px; } }
  .bfcm-flashsale .bfcm-flashsale-listcontent .item {
    padding: 15px; }
    @media only screen and (max-width: 590px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .item {
        padding: 5px; } }
  .bfcm-flashsale .bfcm-flashsale-listcontent .itembox {
    height: 100%;
    position: relative;
    background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/bfcm-flashsale-bg02_1.png?v=1636696271"); }
  .bfcm-flashsale .bfcm-flashsale-listcontent .product-img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: contain; }
  .bfcm-flashsale .bfcm-flashsale-listcontent .deepcolor .itembox {
    background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/bfcm-flashsale-bg01.png?v=1636696271"); }
  .bfcm-flashsale .bfcm-flashsale-listcontent .sanjiao1-label, .bfcm-flashsale .bfcm-flashsale-listcontent .sanjiao2-label {
    position: absolute;
    left: 0;
    top: 0;
    width: 20%;
    max-width: 145px; }
  .bfcm-flashsale .bfcm-flashsale-listcontent .hot-label {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    max-width: 218px; }
  .bfcm-flashsale .bfcm-flashsale-listcontent .item-bottom {
    text-align: left;
    padding: 5%; }
  .bfcm-flashsale .bfcm-flashsale-listcontent .save-message {
    background: #000;
    color: #fff;
    margin-bottom: 20px;
    padding: 3px 3vw;
    display: inline-block;
    transform: skewX(-30deg);
    font-size: 2vw;
    font-weight: bold; }
    @media screen and (min-width: 1600px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .save-message {
        font-size: 36px; } }
    @media only screen and (max-width: 768px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .save-message {
        font-size: 20px; } }
    @media only screen and (max-width: 590px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .save-message {
        font-size: 14px; } }
  .bfcm-flashsale .bfcm-flashsale-listcontent .save-text {
    transform: skewX(30deg); }
  .bfcm-flashsale .bfcm-flashsale-listcontent .price1, .bfcm-flashsale .bfcm-flashsale-listcontent .price2 {
    position: relative;
    color: #000;
    font-weight: bold;
    display: inline-block; }
  .bfcm-flashsale .bfcm-flashsale-listcontent .limit-label {
    padding-top: 5px;
    font-family: 'OPEN SANS';
    font-weight: 400;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: -50px;
    z-index: 2;
    top: -14px;
    width: 50px;
    height: 52px;
    font-size: 18px;
    background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/bfcm-flashsale-num_1.png?v=1636696271");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center; }
    .bfcm-flashsale .bfcm-flashsale-listcontent .limit-label small {
      font-size: 12px;
      display: block; }
    .bfcm-flashsale .bfcm-flashsale-listcontent .limit-label span {
      display: block;
      font-size: 20px;
      color: #fff; }
  .bfcm-flashsale .bfcm-flashsale-listcontent .price1 {
    font-size: 4vw;
    margin-bottom: 0; }
    @media screen and (min-width: 1600px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .price1 {
        font-size: 60px; } }
    @media only screen and (max-width: 768px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .price1 {
        font-size: 7.8vw;
        margin-bottom: 0; } }
    @media only screen and (max-width: 590px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .price1 {
        font-size: 6vw;
        padding-top: 38px; } }
  .bfcm-flashsale .bfcm-flashsale-listcontent .price2 {
    font-size: 5vw; }
    @media screen and (min-width: 1600px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .price2 {
        font-size: 50px; } }
    @media only screen and (max-width: 1500px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .price2 {
        font-size: 3vw; } }
    @media only screen and (max-width: 1100px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .price2 {
        font-size: 3.5vw; } }
    @media only screen and (max-width: 768px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .price2 {
        font-size: 6vw;
        padding-top: 17px; } }
  .bfcm-flashsale .bfcm-flashsale-listcontent .price1 + .price2 {
    margin-left: 1.5vw; }
    @media only screen and (max-width: 1600px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .price1 + .price2 {
        margin-left: 0.5vw; } }
  .bfcm-flashsale .bfcm-flashsale-listcontent .itmetitle {
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.2vw; }
    @media screen and (min-width: 1600px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .itmetitle {
        font-size: 20px; } }
    @media only screen and (max-width: 768px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .itmetitle {
        font-size: 14px; } }
  .bfcm-flashsale .bfcm-flashsale-listcontent .btn, .bfcm-flashsale .bfcm-flashsale-listcontent .btn--secondary {
    width: 100%;
    font-size: 26px;
    font-weight: bold;
    padding: 5px;
    border-radius: 10px;
    background-color: #000000;
    color: #fff;
    letter-spacing: 0; }
    @media only screen and (max-width: 768px) {
      .bfcm-flashsale .bfcm-flashsale-listcontent .btn, .bfcm-flashsale .bfcm-flashsale-listcontent .btn--secondary {
        font-size: 18px; } }
  .bfcm-flashsale .bfcm-flashsale-listcontent .btn:hover, .bfcm-flashsale .bfcm-flashsale-listcontent .btn--secondary:hover {
    background-color: #ff6e12; }
  .bfcm-flashsale .bfcm-flashsale-listcontent .notify-btn {
    background-color: #ffffff;
    color: #000; }

/*  popup window */
.popwindows {
  position: fixed;
  z-index: 3;
  border-radius: 2px;
  width: 50%;
  height: 50%;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 475px;
  max-height: 320px;
  box-shadow: 0 0 3px #ccc;
  overflow: auto;
  background: #fff; }

.popcontent {
  width: 100%;
  height: 65%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; }
  .popcontent .form {
    display: none; }

svg.close-btn {
  width: 20px;
  height: 20px;
  color: #000; }

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

.popwindows .text-right {
  padding: 10px;
  color: #fff;
  cursor: pointer; }

/* Feedback Modify */
#NavDrawer .drawer__inner .close-toggle-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
  text-align: right; }

/* Feedback modify */
@media only screen and (max-width: 790px) {
  #privy-container #privy-inner-container .privy-mobile.privy-tab-container.privy-basic.privy-top .privy-mobile-tab {
    position: fixed;
    bottom: 0 !important;
    left: 0;
    right: 0;
    margin: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-top: none;
    max-width: calc(100vw - 8px);
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    border-top-left-radius: 6px !important;
    -moz-border-radius-topright: 6px;
    -webkit-border-top-right-radius: 6px;
    border-top-right-radius: 6px !important;
    -moz-border-radius-bottomleft: 0;
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0 !important;
    -moz-border-radius-bottomright: 0;
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0 !important;
    box-shadow: 0px 1px 15px -5px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 15px -5px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 1px 15px -5px rgba(0, 0, 0, 0.3); }

  #privy-container #privy-inner-container .privy-mobile.privy-tab-container.privy-basic .privy-mobile-tab:after {
    display: none; } }
/* System Feedback Modify */
@media only screen and (min-width: 1101px) {
  .template-collection .page-container .collection-left {
    width: 22%;
    padding-right: 10px; }

  .template-collection .page-container .collection-right {
    width: calc(100% - 22%); } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .template-collection .page-container .collection-left {
    width: 28%; }

  .template-collection .page-container .collection-right {
    width: calc(100% - 28%); }

  .template-collection .page-container .collection-right .grid--uniform .grid__item {
    width: 33.3%;
    clear: unset; }

  .template-collection .page-container .collection-right .grid--uniform .grid__item .product-card .product-card__overlay-btn {
    position: relative;
    top: 35%; } }
@media only screen and (min-width: 591px) and (max-width: 1100px) {
  .template-page .faq-page .page-title {
    background-position: center 0% !important; } }
@media only screen and (min-width: 791px) {
  .template-page .qa-bank-container .page-title, .template-page .faq-page_g90.faq-page .page-title {
    background-position: center 0% !important; } }
@media only screen and (min-width: 2048px) {
  .template-page .qa-bank-item-container .qbi-outer-box .cebian-slide-box .cebian-slide {
    width: 10vw; } }
@media only screen and (min-width: 791px) {
  .template-page .qa-bank-bottom-contianer .item:nth-child(4) {
    padding-left: .5vw; }

  .template-page .qa-bank-bottom-contianer .item:nth-child(4) img {
    width: 9vw; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .template-page .qa-bank-bottom-contianer .item:nth-child(4) {
    padding-left: .5vw; }

  .template-page .qa-bank-bottom-contianer .item:nth-child(4) img {
    width: 8vw; }

  .template-page .qa-bank-bottom-contianer .right-text .group.subtitle .cell:first-child {
    width: 40%; }

  .template-page .qa-bank-bottom-contianer .right-text .group.subtitle .cell:nth-child(2) {
    width: 60%; } }
@media only screen and (min-width: 591px) and (max-width: 790px) {
  .template-page .qa-bank-bottom-contianer .item .subtitle {
    font-size: 12px; } }
@media only screen and (min-width: 2048px) {
  .template-page .qa-bank-container .page-width {
    padding: 0 6vw; }

  .template-page .qa-bank-container .qbi-outer-box .cebian-slide-box .cebian-slide {
    width: 14vw;
    margin-right: 2.5vw; }

  .template-page .qa-bank-container .qbi-outer-box .right-slide {
    flex: 0 1 100%; }

  .template-page .qa-bank-bottom-contianer .item {
    padding: 15px; }

  .template-page .qa-bank-bottom-contianer .item .subtitle {
    font-size: 16px; }

  .template-page .qa-bank-bottom-contianer .item .title {
    font-size: 1.12vw; }

  .template-page .qa-bank-bottom-contianer .item:nth-child(3) .button {
    width: 80%; }

  .template-page .qa-bank-bottom-contianer .item:nth-child(4) img {
    width: 7vw; }

  .template-page .qa-bank-bottom-contianer .item:nth-child(4) .group .cell:first-child {
    width: 40%; }

  .template-page .qa-bank-bottom-contianer .item:nth-child(4) .group .cell:nth-child(2) {
    width: 60%; } }
@media only screen and (min-width: 1401px) and (max-width: 1600px) {
  .site-header .medium-up--one-third01 {
    width: 30%; }

  .site-header .medium-up--one-third03 {
    width: calc(100% - 63.3%); } }
@media only screen and (min-width: 591px) and (max-width: 790px) {
  .template-index #divtime {
    left: 4%;
    letter-spacing: 24px;
    word-spacing: -22px;
    font-size: 6vw; } }
@media only screen and (min-width: 1201px) and (max-width: 1300px) {
  .template-collection .page-container .collection-left {
    width: 25%; }

  .template-collection .page-container .collection-right {
    width: calc(100% - 25%); }

  .template-collection .product-card {
    min-height: 420px; } }
@media only screen and (max-width: 768px) {
  .template-collection .filters-toolbar {
    position: fixed;
    z-index: 2147483648; }

  .template-collection .filters-toolbar .filters-toolbar__item {
    margin-bottom: 0;
    height: 100vh;
    overflow-x: auto; } }
#fsb_background {
  position: fixed !important;
  min-height: 38px; }

.announcement-bar.fixed-announcement-bar {
  position: fixed;
  top: 0;
  z-index: 10; }

/* flash-sale template :bundle app */
.bndlr-product-qn-container {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical; }

.template-flash-sale .bndlr-container {
  border-radius: 10px;
  background: #a11b23;
  margin-bottom: 20px; }

.template-flash-sale .bndlr-products-container, .template-flash-sale .bndlr-bundle-title {
  color: #fff; }

.template-flash-sale .bndlr-old-price {
  color: #ccc !important; }

.template-flash-sale .bndlr-new-price {
  color: #fff !important; }

.template-flash-sale .bndlr-product {
  border: none;
  padding: 5px 6%;
  flex: 1 0; }

.template-flash-sale .bndlr-add-to-cart {
  background: #1e1e20;
  border-radius: 4px; }

.template-flash-sale .bndlr-product-image-url {
  margin-bottom: 10px;
  background: #fff;
  border-radius: 10px; }

.template-flash-sale .bndlr-product-title {
  color: #fff !important; }

.template-flash-sale .bndlr-product-image {
  max-width: 120px !important;
  border-radius: 10px; }

.template-flash-sale .bndlr-product:not(:last-of-type)::after {
  right: calc(-1em - 6px);
  width: 2em;
  height: 2em;
  line-height: 2.05em;
  background: #8c1018;
  top: 40%; }

.template-flash-sale .bndlr-bundle-checkout-warning {
  color: #d7d4d4; }

.template-flash-sale .bndlr-inner-products-container > div:first-child {
  align-items: flex-start; }

.template-flash-sale .bndlr-product:not(:last-of-type)::after {
  top: 60px; }

@media only screen and (max-width: 590px) {
  .template-flash-sale .bndlr-product:not(:last-of-type)::after {
    top: 40px; } }
/* flash sale page */
.bfcm-banner {
  position: relative; }
  .bfcm-banner img {
    display: block;
    width: 100%;
    object-fit: contain; }
  .bfcm-banner .banner-text {
    text-transform: uppercase;
    font-weight: 700;
    position: absolute;
    bottom: 8%;
    right: 8%; }
    @media only screen and (max-width: 790px) {
      .bfcm-banner .banner-text {
        bottom: 6%;
        right: 6%; } }
    @media only screen and (max-width: 590px) {
      .bfcm-banner .banner-text {
        bottom: 3%;
        right: 5%; } }
    .bfcm-banner .banner-text .subtitle {
      font-size: 3.6vw; }
    .bfcm-banner .banner-text .discount {
      font-size: 6vw; }
    .bfcm-banner .banner-text .time {
      font-size: 1.8vw; }
    @media only screen and (max-width: 790px) {
      .bfcm-banner .banner-text .subtitle {
        font-size: 4.6vw; }
      .bfcm-banner .banner-text .discount {
        font-size: 7.5vw; }
      .bfcm-banner .banner-text .time {
        font-size: 18px; } }
    @media only screen and (max-width: 590px) {
      .bfcm-banner .banner-text .subtitle {
        font-size: 8vw; }
      .bfcm-banner .banner-text .discount {
        font-size: 13.5vw; }
      .bfcm-banner .banner-text .time {
        font-size: 16px; } }
    .bfcm-banner .banner-text:before {
      width: 231px;
      height: 127px;
      display: block;
      content: "";
      background: url("//cdn.shopify.com/s/files/1/0011/7220/9721/files/flash-sale-PC-arrow.png?v=1646734750") top center no-repeat;
      background-size: 100% 100%;
      position: absolute;
      bottom: 10%;
      left: -65%; }
      @media only screen and (max-width: 1600px) {
        .bfcm-banner .banner-text:before {
          left: -70%; } }
      @media only screen and (max-width: 1600px) {
        .bfcm-banner .banner-text:before {
          bottom: 6%;
          left: -75%; } }
      @media only screen and (max-width: 1300px) {
        .bfcm-banner .banner-text:before {
          max-width: 200px;
          max-height: 110px; } }
      @media only screen and (max-width: 1100px) {
        .bfcm-banner .banner-text:before {
          max-width: 175px;
          max-height: 96px; } }
      @media only screen and (max-width: 790px) {
        .bfcm-banner .banner-text:before {
          max-width: 150px;
          max-height: 82px;
          bottom: 4%;
          left: -70%; } }
      @media only screen and (max-width: 590px) {
        .bfcm-banner .banner-text:before {
          max-width: 110px;
          max-height: 55px;
          bottom: 6%;
          left: -60%; } }

.bfcm-freegift {
  position: relative; }
  .bfcm-freegift img {
    display: block;
    width: 100%;
    aspect-ratio: 96/35;
    object-fit: contain; }
    @media only screen and (max-width: 790px) {
      .bfcm-freegift img {
        aspect-ratio: 192/169; } }
    @media only screen and (max-width: 590px) {
      .bfcm-freegift img {
        aspect-ratio: 375/563; } }
  .bfcm-freegift .freegift-text {
    position: absolute;
    max-width: 50%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 4vw;
    font-weight: 700; }
    @media only screen and (max-width: 790px) {
      .bfcm-freegift .freegift-text {
        max-width: 75%; } }
    @media only screen and (max-width: 590px) {
      .bfcm-freegift .freegift-text {
        max-width: 100%; } }
    @media only screen and (max-width: 590px) {
      .bfcm-freegift .freegift-text {
        top: 12%;
        left: 0;
        right: 0;
        margin: auto; } }
    .bfcm-freegift .freegift-text img {
      display: block;
      max-width: 50%;
      max-height: max-content;
      margin: auto;
      aspect-ratio: unset; }
      @media only screen and (max-width: 590px) {
        .bfcm-freegift .freegift-text img {
          max-width: 65%; } }
    .bfcm-freegift .freegift-text .title {
      font-size: 4.5vw;
      text-shadow: 8px 0 0 #d3862e;
      margin: 20px 0; }
      @media only screen and (max-width: 1300px) {
        .bfcm-freegift .freegift-text .title {
          text-shadow: 6px 0 0 #d3862e; } }
      @media only screen and (max-width: 1400px) {
        .bfcm-freegift .freegift-text .title {
          margin: 15px 0; } }
      @media only screen and (max-width: 790px) {
        .bfcm-freegift .freegift-text .title {
          font-size: 7vw; } }
      @media only screen and (max-width: 590px) {
        .bfcm-freegift .freegift-text .title {
          font-size: 10vw; } }
    .bfcm-freegift .freegift-text .product-left-tips {
      font-weight: normal;
      display: flex;
      max-width: max-content;
      margin: auto;
      align-items: center;
      text-transform: capitalize; }
      .bfcm-freegift .freegift-text .product-left-tips .prosurplus {
        font-weight: 700;
        vertical-align: sub;
        margin: 0 15px; }
        @media only screen and (max-width: 1500px) {
          .bfcm-freegift .freegift-text .product-left-tips .prosurplus {
            font-size: 1.8vw; } }
        @media only screen and (max-width: 1300px) {
          .bfcm-freegift .freegift-text .product-left-tips .prosurplus {
            font-size: 2.2vw; } }
        @media only screen and (max-width: 1100px) {
          .bfcm-freegift .freegift-text .product-left-tips .prosurplus {
            font-size: 2.5vw; } }
        @media only screen and (max-width: 790px) {
          .bfcm-freegift .freegift-text .product-left-tips .prosurplus {
            font-size: 3.8vw; } }
        @media only screen and (max-width: 590px) {
          .bfcm-freegift .freegift-text .product-left-tips .prosurplus {
            font-size: 24px; } }
    .bfcm-freegift .freegift-text .progress-bar-container {
      max-width: 50%;
      margin: auto;
      height: 24px;
      border-radius: 50px;
      border: 1px solid #ffffff;
      padding: 2px;
      margin-top: 5px;
      margin-bottom: 15px; }
      @media only screen and (max-width: 590px) {
        .bfcm-freegift .freegift-text .progress-bar-container {
          max-width: 60%; } }
      .bfcm-freegift .freegift-text .progress-bar-container .progress-item {
        height: 100%;
        background-color: #ffffff;
        border-radius: 50px; }
    .bfcm-freegift .freegift-text .subtitle {
      font-size: 1.6vw; }
      @media only screen and (max-width: 790px) {
        .bfcm-freegift .freegift-text .subtitle {
          font-size: 18px; } }
    .bfcm-freegift .freegift-text .text-link {
      border-radius: 50px;
      display: inline-block;
      color: #ffffff;
      background-color: #000000;
      margin-top: 20px;
      text-transform: uppercase; }
      @media only screen and (max-width: 1400px) {
        .bfcm-freegift .freegift-text .text-link {
          margin-top: 0; } }
      @media only screen and (max-width: 1459px) {
        .bfcm-freegift .freegift-text .text-link {
          padding: 8px 20px;
          font-size: 20px; } }
      .bfcm-freegift .freegift-text .text-link:hover {
        background-color: #981f24; }

.bfcm-couponcode {
  position: relative; }
  @media only screen and (max-width: 790px) {
    .bfcm-couponcode {
      width: 100%;
      display: flex;
      flex-direction: column-reverse;
      padding: 4vw;
      padding-top: 0; } }
  .bfcm-couponcode .bg-image {
    display: block;
    width: 100%;
    object-fit: contain;
    margin: auto; }
    @media only screen and (max-width: 590px) {
      .bfcm-couponcode .bg-image {
        transform: translateY(-22%); } }
  .bfcm-couponcode .couponcode-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 2vw; }
    @media only screen and (max-width: 790px) {
      .bfcm-couponcode .couponcode-text {
        position: unset;
        top: 0;
        left: 0;
        transform: translateY(18%); } }
    @media only screen and (max-width: 590px) {
      .bfcm-couponcode .couponcode-text {
        transform: translateY(10%); } }
    @media only screen and (max-width: 1100px) {
      .bfcm-couponcode .couponcode-text .title {
        font-size: 26px;
        margin-bottom: 5px; } }
    @media only screen and (max-width: 790px) {
      .bfcm-couponcode .couponcode-text .title {
        font-size: 5vw;
        margin-bottom: 15px; } }
    @media only screen and (max-width: 590px) {
      .bfcm-couponcode .couponcode-text .title {
        font-size: 26px;
        margin-bottom: 15px; } }
    .bfcm-couponcode .couponcode-text .discount {
      font-size: 2.5vw;
      font-weight: 700;
      text-transform: uppercase;
      position: relative;
      max-height: 245px;
      margin: auto; }
      @media only screen and (min-width: 2000px) {
        .bfcm-couponcode .couponcode-text .discount {
          font-size: 2vw; } }
      .bfcm-couponcode .couponcode-text .discount .discount-text {
        width: 100%;
        margin: auto;
        position: absolute;
        top: 16%;
        left: 50%;
        transform: translateX(-50%); }
      @media only screen and (max-width: 1600px) {
        .bfcm-couponcode .couponcode-text .discount {
          max-width: 80%;
          max-height: 185px; } }
      @media only screen and (max-width: 1400px) {
        .bfcm-couponcode .couponcode-text .discount {
          max-width: 75%; } }
      @media only screen and (max-width: 1300px) {
        .bfcm-couponcode .couponcode-text .discount {
          max-width: 70%;
          max-height: 170px; } }
      @media only screen and (max-width: 1100px) {
        .bfcm-couponcode .couponcode-text .discount {
          max-height: 130px; } }
      @media only screen and (max-width: 790px) {
        .bfcm-couponcode .couponcode-text .discount {
          max-width: 100%;
          max-height: 175px;
          font-size: 12.5vw; } }
      @media only screen and (max-width: 590px) {
        .bfcm-couponcode .couponcode-text .discount {
          font-size: 14vw;
          max-height: 145px; } }
      @media only screen and (max-width: 375px) {
        .bfcm-couponcode .couponcode-text .discount {
          max-height: 135px; } }
    .bfcm-couponcode .couponcode-text .usecode {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 8px 20px;
      border-radius: 50px;
      color: #ffffff;
      background-color: #000000;
      font-size: 1.8vw;
      min-width: 60%;
      max-width: max-content;
      margin: auto; }
      @media only screen and (max-width: 1300px) {
        .bfcm-couponcode .couponcode-text .usecode {
          min-width: 50%;
          max-width: 50%; } }
      @media only screen and (max-width: 790px) {
        .bfcm-couponcode .couponcode-text .usecode {
          transform: translateY(65px);
          font-size: 22px; } }
      @media only screen and (max-width: 590px) {
        .bfcm-couponcode .couponcode-text .usecode {
          transform: unset;
          min-width: 50%;
          max-width: 75%; } }
      .bfcm-couponcode .couponcode-text .usecode .usecode-code {
        font-weight: 700;
        color: #65b544;
        margin: 0 15px; }
      .bfcm-couponcode .couponcode-text .usecode .usecode-button svg {
        width: 1.5vw;
        position: relative;
        top: 0.3vw; }
        @media only screen and (max-width: 790px) {
          .bfcm-couponcode .couponcode-text .usecode .usecode-button svg {
            width: 2.5vw; } }
        @media only screen and (max-width: 590px) {
          .bfcm-couponcode .couponcode-text .usecode .usecode-button svg {
            width: 5.5vw; } }
      .bfcm-couponcode .couponcode-text .usecode .usecode-button .icon-check path {
        fill: #65b544; }
      .bfcm-couponcode .couponcode-text .usecode .usecode-button:hover {
        cursor: pointer; }
        .bfcm-couponcode .couponcode-text .usecode .usecode-button:hover svg path {
          fill: #65b544; }
    .bfcm-couponcode .couponcode-text .subtitle {
      margin: 15px 0;
      font-size: 20px; }
      @media only screen and (max-width: 1100px) {
        .bfcm-couponcode .couponcode-text .subtitle {
          margin: 5px 0; } }
      @media only screen and (max-width: 790px) {
        .bfcm-couponcode .couponcode-text .subtitle {
          margin: 15px 0;
          transform: translateY(65px); } }
      @media only screen and (max-width: 590px) {
        .bfcm-couponcode .couponcode-text .subtitle {
          margin: 15px 0;
          transform: unset;
          font-size: 18px; } }
    .bfcm-couponcode .couponcode-text .text-link {
      border-radius: 50px;
      display: inline-block;
      color: #ffffff;
      background-color: #000000;
      text-transform: uppercase;
      margin-top: 1vw; }
      @media only screen and (max-width: 1459px) {
        .bfcm-couponcode .couponcode-text .text-link {
          padding: 8px 20px;
          font-size: 20px; } }
      @media only screen and (max-width: 790px) {
        .bfcm-couponcode .couponcode-text .text-link {
          transform: translateY(65px); } }
      @media only screen and (max-width: 590px) {
        .bfcm-couponcode .couponcode-text .text-link {
          transform: unset; } }
      @media only screen and (min-width: 1460px) {
        .bfcm-couponcode .couponcode-text .text-link {
          font-size: 22px;
          padding: 5px 45px; } }
      .bfcm-couponcode .couponcode-text .text-link:hover {
        background-color: #981f24; }

.bfcm-earlyoffer {
  position: relative; }
  @media only screen and (max-width: 790px) {
    .bfcm-earlyoffer {
      display: flex;
      flex-direction: column-reverse; } }
  .bfcm-earlyoffer .bg-image {
    display: block;
    width: 100%;
    object-fit: contain;
    margin: auto; }
  .bfcm-earlyoffer .earlyoffer-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 22vw;
    max-width: 50%;
    font-weight: 700; }
    @media only screen and (max-width: 1100px) {
      .bfcm-earlyoffer .earlyoffer-text {
        max-width: 60%; } }
    @media only screen and (max-width: 790px) {
      .bfcm-earlyoffer .earlyoffer-text {
        position: static;
        top: 0;
        transform: unset;
        left: 0;
        max-width: 85%;
        width: 100%;
        padding: 4vw;
        margin: auto; } }
    @media only screen and (max-width: 590px) {
      .bfcm-earlyoffer .earlyoffer-text {
        max-width: 100%; } }
    .bfcm-earlyoffer .earlyoffer-text .title {
      font-size: 3vw;
      margin: 0; }
      @media only screen and (max-width: 790px) {
        .bfcm-earlyoffer .earlyoffer-text .title {
          font-size: 7vw; } }
      @media only screen and (max-width: 590px) {
        .bfcm-earlyoffer .earlyoffer-text .title {
          font-size: 6vw; } }
      @media only screen and (min-width: 1000px) {
        .bfcm-earlyoffer .earlyoffer-text .title {
          max-width: 500px; } }
    .bfcm-earlyoffer .earlyoffer-text .subtitle {
      margin: 0;
      font-size: 1.65vw;
      text-transform: uppercase; }
      @media only screen and (max-width: 1100px) {
        .bfcm-earlyoffer .earlyoffer-text .subtitle {
          font-size: 18px; } }
      @media only screen and (max-width: 790px) {
        .bfcm-earlyoffer .earlyoffer-text .subtitle {
          font-size: 5vw; } }
      @media only screen and (max-width: 590px) {
        .bfcm-earlyoffer .earlyoffer-text .subtitle {
          font-size: 24px;
          max-width: 100%; } }
      @media only screen and (min-width: 1500px) {
        .bfcm-earlyoffer .earlyoffer-text .subtitle {
          max-width: 340px; } }
      @media (min-width: 1201px) and (max-width: 1499px) {
        .bfcm-earlyoffer .earlyoffer-text .subtitle {
          max-width: 280px; } }
      @media (min-width: 1000px) and (max-width: 1199px) {
        .bfcm-earlyoffer .earlyoffer-text .subtitle {
          max-width: 230px; } }
    .bfcm-earlyoffer .earlyoffer-text .money {
      margin: 0;
      font-size: 2.5vw; }
      @media only screen and (max-width: 790px) {
        .bfcm-earlyoffer .earlyoffer-text .money {
          font-size: 8vw; } }
    .bfcm-earlyoffer .earlyoffer-text .discount-area {
      margin-top: 15px; }
      @media only screen and (max-width: 1400px) {
        .bfcm-earlyoffer .earlyoffer-text .discount-area {
          margin-top: 10px; } }
      @media only screen and (max-width: 1100px) {
        .bfcm-earlyoffer .earlyoffer-text .discount-area {
          margin-top: 0; } }
      @media only screen and (max-width: 790px) {
        .bfcm-earlyoffer .earlyoffer-text .discount-area {
          margin-top: 15px; } }
      .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item {
        position: relative;
        margin-bottom: 15px; }
        @media only screen and (max-width: 1400px) {
          .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item {
            margin-bottom: 10px; } }
        @media only screen and (max-width: 1100px) {
          .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item {
            margin-bottom: 0; } }
        @media only screen and (max-width: 790px) {
          .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item {
            margin-bottom: 15px; } }
        .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box {
          background: url("//cdn.shopifycdn.net/s/files/1/0592/5090/1201/files/coupon.png?v=1637652350") top right no-repeat;
          background-size: 100% 100%;
          max-width: 40%;
          margin-bottom: 5px;
          text-align: center; }
          @media only screen and (max-width: 1600px) {
            .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box {
              max-width: 50%; } }
          @media only screen and (max-width: 1500px) {
            .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box {
              max-width: 52%; } }
          @media only screen and (max-width: 1400px) {
            .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box {
              max-width: 55%; } }
          @media only screen and (max-width: 1300px) {
            .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box {
              max-width: 58%; } }
          @media only screen and (max-width: 1100px) {
            .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box {
              max-width: 65%; } }
          @media only screen and (max-width: 790px) {
            .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box {
              max-width: 42%; } }
          @media only screen and (max-width: 590px) {
            .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box {
              max-width: 60%; } }
          .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box .discount-number {
            color: #ffffff;
            font-size: 2vw;
            text-transform: uppercase; }
            @media only screen and (max-width: 1100px) {
              .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box .discount-number {
                font-size: 20px; } }
            @media only screen and (max-width: 790px) {
              .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box .discount-number {
                font-size: 28px; } }
          .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box .discount-description {
            font-size: 18px; }
            @media only screen and (max-width: 1100px) {
              .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .discount-text-box .discount-description {
                font-size: 16px; } }
        .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .product-left-box {
          display: flex;
          align-items: center; }
          .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .product-left-box .progress-bar-container {
            flex: 0 1 65%;
            width: 100%;
            height: 10px;
            border: 2px solid #000;
            border-radius: 50px;
            margin-right: 15px; }
            @media only screen and (max-width: 790px) {
              .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .product-left-box .progress-bar-container {
                flex: 0 1 60%; } }
            @media only screen and (max-width: 590px) {
              .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .product-left-box .progress-bar-container {
                flex: 0 1 70%; } }
            .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .product-left-box .progress-bar-container .progress-item {
              height: 100%;
              background: #65b544;
              border-radius: 50px; }
          .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .product-left-box .product-left-tips {
            display: flex;
            align-items: center;
            text-transform: capitalize; }
            .bfcm-earlyoffer .earlyoffer-text .discount-area .discount-item .product-left-box .product-left-tips .prosurplus {
              margin: 0 10px;
              font-size: 24px;
              color: #65b544; }
    .bfcm-earlyoffer .earlyoffer-text .text-link {
      border-radius: 50px;
      display: inline-block;
      color: #ffffff;
      background-color: #000000;
      text-transform: uppercase;
      margin-top: 1vw; }
      @media only screen and (max-width: 1459px) {
        .bfcm-earlyoffer .earlyoffer-text .text-link {
          padding: 8px 20px;
          font-size: 20px; } }
      @media only screen and (max-width: 790px) {
        .bfcm-earlyoffer .earlyoffer-text .text-link {
          min-width: 25%; } }
      @media only screen and (max-width: 590px) {
        .bfcm-earlyoffer .earlyoffer-text .text-link {
          min-width: 40%; } }
      @media only screen and (min-width: 1460px) {
        .bfcm-earlyoffer .earlyoffer-text .text-link {
          font-size: 22px;
          padding: 5px 45px; } }
      .bfcm-earlyoffer .earlyoffer-text .text-link:hover {
        background-color: #981f24; }
  .bfcm-earlyoffer .save_money {
    background: #f1c32c;
    border-radius: 50px;
    font-size: 16px;
    color: #000;
    padding-top: 0;
    padding-bottom: 0; }

.bfcm-earlyoffer01 .earlyoffer-text {
  top: 60%; }

.bfcm-earlyoffer01 .earlyoffer-text-pc {
  top: 20%; }

.bfcm-bottombar {
  display: flex;
  justify-content: space-between;
  padding: 0 16vw;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9;
  left: 0;
  align-items: center; }
  @media only screen and (max-width: 1600px) {
    .bfcm-bottombar {
      padding: 0 10vw; } }
  @media only screen and (max-width: 1100px) {
    .bfcm-bottombar {
      padding: 0 4vw; } }
  @media only screen and (max-width: 790px) {
    .bfcm-bottombar {
      padding: 10px 2vw; } }
  @media only screen and (max-width: 590px) {
    .bfcm-bottombar {
      padding: 5px 2vw; } }
  .bfcm-bottombar .title-discount {
    display: flex;
    align-items: center; }
    .bfcm-bottombar .title-discount .title, .bfcm-bottombar .title-discount .discount-text {
      font-weight: 700;
      color: #65b544;
      text-transform: uppercase;
      margin: 0; }
      @media only screen and (max-width: 790px) {
        .bfcm-bottombar .title-discount .title, .bfcm-bottombar .title-discount .discount-text {
          font-size: 20px; } }
      @media only screen and (max-width: 590px) {
        .bfcm-bottombar .title-discount .title, .bfcm-bottombar .title-discount .discount-text {
          font-size: 15px; } }
    .bfcm-bottombar .title-discount .discount {
      position: relative;
      margin-left: 5px; }
      @media only screen and (max-width: 790px) {
        .bfcm-bottombar .title-discount .discount {
          max-width: 75%; } }
      @media only screen and (max-width: 590px) {
        .bfcm-bottombar .title-discount .discount {
          max-width: 70%; } }
      .bfcm-bottombar .title-discount .discount .discount-text {
        position: absolute;
        text-align: center;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
  .bfcm-bottombar .time {
    font-weight: 700;
    font-size: 18px; }
    @media only screen and (max-width: 1100px) {
      .bfcm-bottombar .time {
        font-size: 16px; } }
    @media only screen and (max-width: 790px) {
      .bfcm-bottombar .time {
        flex: 0 1 35%;
        width: 100%;
        text-align: center; } }
    @media only screen and (max-width: 590px) {
      .bfcm-bottombar .time {
        font-size: 14px; } }
  .bfcm-bottombar .countdown-area {
    flex: 0 1 30%;
    width: 100%;
    display: flex;
    align-items: center; }
    .bfcm-bottombar .countdown-area .countdown-title {
      margin-right: 20px;
      font-size: 18px; }
      @media only screen and (max-width: 1100px) {
        .bfcm-bottombar .countdown-area .countdown-title {
          font-size: 16px; } }
      @media only screen and (max-width: 790px) {
        .bfcm-bottombar .countdown-area .countdown-title {
          margin-right: 0; } }
    .bfcm-bottombar .countdown-area .countdown-container {
      flex: 0 1 60%;
      width: 100%; }
    @media only screen and (min-width: 591px) and (max-width: 790px) {
      .bfcm-bottombar .countdown-area {
        flex-wrap: wrap;
        flex-direction: column; }
        .bfcm-bottombar .countdown-area .countdown-title, .bfcm-bottombar .countdown-area .countdown-container {
          flex: 0 1 100%;
          width: 100%;
          text-align: center; } }
  @media only screen and (max-width: 590px) {
    .bfcm-bottombar .title-discount, .bfcm-bottombar .time {
      flex: 0 1 50%;
      width: 100%; } }

.template-flash-sale .breadcrumb {
  display: none; }

.template-flash-sale .main-content {
  padding-bottom: 0; }

.productlist-item .item {
  position: absolute;
  max-width: 14vw; }

@media only screen and (max-width: 790px) {
  .productlist-item {
    position: relative;
    height: 71vw; }

  .productlist-item .item {
    max-width: 23vw; }

  .bfcm-couponcode .couponcode-text .discount .discount-text {
    font-size: 6.5vw; }

  .earlyoffer-text-mobile {
    position: absolute !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
    margin: auto; } }
/* flash sale page */
/* Feedback Modify */
.support-bg {
  padding: 40px 25px 30px 25px; }

.support-bg .support-box {
  margin: 0 5px;
  padding-left: 2px;
  padding-right: 2px; }

/* download page modify */
.download-page .content-block #dowload_search_all #searchall {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px; }

.download-page #dowload_search_all #search_btn {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #981F24;
  transition: all 0.1s linear; }

.download-page #dowload_search_all #search_btn:hover {
  opacity: 0.85;
  transition: all 0.1s linear; }

.download-page .download-lists select {
  border-radius: 5px; }

.download-page .grid--uniform .grid__item img {
  display: block; }

.download-page .grid--uniform .grid__item {
  clear: unset;
  width: 14.28571%; }

@media only screen and (max-width: 790px) {
  .download-page .grid--uniform .grid__item {
    width: 50%; } }
.download-page .grid--uniform .type-title {
  text-transform: uppercase; }

.download-page .grid--uniform .grid__item .grid-view-item {
  border: 1px solid #DCDCDC;
  box-sizing: border-box;
  border-radius: 10px;
  transition: all 0.2s linear; }
  .download-page .grid--uniform .grid__item .grid-view-item .grid-view-item__imageoverlap, .download-page .grid--uniform .grid__item .grid-view-item .grid-view-item__imageoverlap img {
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden; }
  .download-page .grid--uniform .grid__item .grid-view-item .grid-view-item__imageoverlap {
    position: relative; }
    .download-page .grid--uniform .grid__item .grid-view-item .grid-view-item__imageoverlap:before {
      display: block;
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      overflow: hidden;
      background-color: rgba(0, 0, 0, 0.05); }
  .download-page .grid--uniform .grid__item .grid-view-item .grid-view-item__title {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; }

.download-page .grid--uniform .grid__item .grid-view-item__title {
  background-color: #FFFFFF; }
  .download-page .grid--uniform .grid__item .grid-view-item__title p {
    color: #000000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.2s linear; }

.download-page .grid--uniform .grid__item:hover .grid-view-item {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s linear; }
.download-page .grid--uniform .grid__item:hover .grid-view-item__title p {
  color: #981F24;
  text-decoration: underline;
  transition: all 0.2s linear; }

.download-page .download-notice {
  z-index: 3; }

.download-page .download-box {
  border-radius: 10px; }

.download-page .download-box .download-header {
  position: absolute;
  top: 10px;
  right: 10px; }

.download-page .download-box .dclose-btn {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #BFBFBF;
  border: 1px solid #BFBFBF;
  box-sizing: border-box; }

.download-page .download-box .dclose-btn:hover {
  color: #981F24;
  border: 1px solid #981F24; }

.download-page .download-box .download-title {
  padding-bottom: 20px;
  margin-right: 20px;
  border-bottom: 1px solid #E1E1E1;
  box-sizing: border-box; }

.download-page .download-box .download-title .title-box {
  margin-bottom: 10px; }

.download-page .download-box .download-title .title-box,
.download-page .download-box .download-title .desc-box,
.download-page .download-box .dborder-top h2,
.download-page .download-box .dborder-top .h2,
.download-page .download-box .dborder-top .h2 {
  color: #000000; }

.download-page .download-scroll {
  height: 295px;
  margin-top: 0; }

.download-page .download-box .dborder-top {
  margin-top: 0;
  border-top: none;
  padding-left: 0;
  border-top: 1px solid #E1E1E1;
  box-sizing: border-box;
  padding-bottom: 20px; }

.download-page .download-box .dborder-top:first-child {
  border-top: none; }

.download-page .download-box .dborder-top:last-child {
  padding-bottom: 0; }

.download-page .download-box .dborder-top h2, .download-page .download-box .dborder-top .h2,
.download-page .download-box .dborder-top .h2 {
  padding-left: 40px;
  height: 26px;
  line-height: 26px;
  position: relative;
  background: unset; }

.download-page .download-box .dborder-top h2::before, .download-page .download-box .dborder-top .h2::before,
.download-page .download-box .dborder-top .h2::before {
  display: block;
  content: "";
  width: 30px;
  height: 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto; }

.download-page .download-box .software-box h2::before, .download-page .download-box .software-box .h2::before,
.download-page .download-box .software-box .h2::before {
  background: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/software-icon_7b5e3393-f75b-454b-8bed-c6ba47c92443.png?v=1647482434");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain; }

.download-page .download-box .user-guide-box h2::before, .download-page .download-box .user-guide-box .h2::before,
.download-page .download-box .user-guide-box .h2::before {
  background: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/manual-icon.png?v=1647482445");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain; }

.download-page .download-box .specification-box h2::before, .download-page .download-box .specification-box .h2::before,
.download-page .download-box .specification-box .h2::before {
  background: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/other-icon.png?v=1647482603");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain; }

.nicescroll-rails {
  background: #F4F4F4;
  border-radius: 10px;
  opacity: 1 !important; }
  .nicescroll-rails div {
    background-color: #c6c6c6 !important; }

.download-page .download-box .download {
  margin-bottom: 5px; }

.download-page .download-box .download:last-child {
  margin-bottom: 0; }

.download-page .download-box .download a {
  /*   display: flex;
  align-items: center; */
  color: #981F24;
  text-decoration: none;
  line-height: 25px; }

.download-page .download-box .download a:hover {
  color: #981F24;
  text-decoration: underline; }

.download-page .download-box .download a img {
  margin-left: 5px;
  margin-bottom: 0;
  display: inline-block; }

.download-page .download-lists select {
  text-transform: uppercase; }

.download-page .download-notice {
  cursor: auto; }

@media only screen and (max-width: 790px) {
  .download-page .download-box {
    width: 75%; }

  .download-page .download-scroll {
    width: calc(75% - 40px);
    height: 215px; } }
@media only screen and (max-width: 590px) {
  .download-page .download-box .download-header {
    top: 5px;
    right: 5px; }

  .download-page .download-box {
    width: calc(100% - 20px);
    height: 375px; }

  .download-page .download-scroll {
    width: calc(100% - 50px);
    height: 205px; }

  .download-page .download-box .download {
    margin-left: 20px; }

  .download-page .download-lists select {
    width: 100%;
    margin-left: 0;
    margin-top: 10px; }

  .download-page #dowload_search_all {
    margin-right: 0;
    width: 100%;
    margin-bottom: 20px; }
    .download-page #dowload_search_all #searchall {
      width: 75%; }
    .download-page #dowload_search_all #search_btn {
      width: 25%; }

  .download-page .grid__item {
    padding: 0 6px; }

  .download-page .grid__item:nth-of-type(odd) {
    padding-left: 0; }

  .download-page .grid__item:nth-of-type(even) {
    padding-right: 0; } }
.download-page .download-header {
  text-align: center; }

.download-page .download-search-bar {
  margin-top: 20px; }

.grid-view-item:hover {
  cursor: pointer; }

.download-page .download-scroll::-webkit-scrollbar {
  width: 5px;
  height: 5px; }
.download-page .download-scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #C6C6C6; }
.download-page .download-scroll::-webkit-scrollbar-track {
  background: #F4F4F4;
  border-radius: 10px; }

.download-page {
  max-width: calc(1430px + 100px);
  margin: 0 auto; }

.download-page .scroll-pos.scroll-abled:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 295px;
  background-color: #F4F4F4;
  border-radius: 10px; }
  @media only screen and (max-width: 790px) {
    .download-page .scroll-pos.scroll-abled:before {
      height: 215px; } }
  @media only screen and (max-width: 590px) {
    .download-page .scroll-pos.scroll-abled:before {
      height: 205px; } }

@media only screen and (min-width: 1922px) {
  .download-page {
    max-width: 100%;
    margin: 0 auto; } }
.download-page .download-section {
  margin-bottom: 20px; }

.download-page:last-child .download-section {
  margin-bottom: 0; }

/* special offer */
.special-collection .product-card__name {
  -webkit-line-clamp: 1;
  line-clamp: 1;
  min-height: 0; }

.page-desc {
  margin-top: 3vw;
  margin-bottom: 3vw;
  background: #F4F4F4;
  border-radius: 6px;
  padding-top: 3vw;
  color: #000;
  padding-bottom: 3vw; }

.save_label {
  background: #981F24;
  border-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 2px 5px;
  display: inline-block; }

.special-collection {
  margin-top: 45px;
  margin-bottom: 25px; }

.text-black {
  color: #000; }

.special-collection .product-form__cart-submit-index, .special-collection .product-card__availability {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: center; }

.underline-black {
  border-bottom: 1px solid #000; }

.product-card__price p {
  margin-bottom: 0;
  line-height: 1; }

.low-as {
  font-weight: 400; }

.mobile-image {
  width: 100%; }

.openbox-label {
  margin-top: 10px; }

.pc-image, .mobile-image {
  width: 100%; }

.special-collection .product-card__name a {
  color: #000; }

@media only screen and (min-width: 1290px) {
  .special-collection .product-form__cart-submit-index, .special-collection .product-card__availability {
    max-width: 170px; }

  .product_minprice {
    font-size: 26px; } }
/* 404 recent view */
.recently_product_container {
  margin-top: 30px; }

.template-404 .recent-img {
  width: 100%; }

.template-404 .product-template__container .details .title {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 2;
  -moz-box-orient: vertical;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  overflow: hidden;
  color: #7b7b7b; }

.template-404 .recent-hide {
  display: none; }

@media screen and (max-width: 500px) {
  .template-404 .section-header__title {
    font-size: 20px;
    text-align: center; } }
/* 404 recent view end */
/*  update  product image function*/
.view-choose-btns {
  display: flex;
  align-items: center;
  justify-content: center; }

.view-choose-btns > li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #AEAEAE;
  border-radius: 8px;
  padding: 8px;
  margin: 30px 14px;
  cursor: pointer; }

.view-choose-btns > li > svg {
  margin-right: 13px; }

.view-choose-btns > li.active {
  color: #A11B23;
  border-color: #F4F4F4;
  background: #F4F4F4; }

.view-choose-btns > li.active > svg, .view-choose-btns > li.active > svg > path {
  fill: #A11B23; }

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

.video-box-container > iframe {
  width: 100%;
  height: 100%; }

.coverbg:before {
  content: "";
  position: absolute;
  width: 110%;
  height: 100%;
  z-index: 3;
  left: -5%; }

@media only screen and (max-width: 1000px) {
  .view-choose-btns > li {
    flex-wrap: wrap;
    padding: 8px 4px;
    margin: 30px 10px; }

  .view-choose-btns > li > svg {
    margin-right: 8px; }

  .fancybox-custom-tools {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    width: 80%; }

  .fancybox-video-preview-box, .fancybox-3d-preview-box {
    display: none !important; }

  .fancybox-video-box, .fancybox-3d-box {
    width: 90%;
    height: 50%;
    top: 20%; } }
/* copy discount code */
.conpon-box {
  width: 100%;
  order: 2; }

.discount_card {
  margin: 10px 0;
  padding: 2px 10px;
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #a11b23; }

.discount_content_flex {
  display: flex; }

.discount_card:before {
  content: "";
  width: 3px;
  height: 100%;
  border-left: 6px dotted #fff;
  position: absolute;
  left: -3px; }

.discount_card:after {
  content: "";
  width: 3px;
  height: 100%;
  border-left: 6px dotted #fff;
  position: absolute;
  right: -3px; }

.discount_card .discount_content p {
  color: #e10800; }

.discount_card strong {
  font-size: 16px; }

.sale_codes {
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px; }

.sale_codes:before {
  content: "";
  width: 1px;
  height: 50px;
  background: #fff;
  position: absolute;
  top: -16px;
  left: -5px; }

@media screen and (min-width: 768px) {
  .discount_card strong {
    font-size: 16px; } }
.code_text_copy {
  width: 60px;
  padding: 6px 0;
  height: 100%;
  text-align: center;
  cursor: pointer; }

.code_text_copy > span {
  text-transform: uppercase;
  padding: 5px;
  background: #fff;
  border-radius: 4px;
  color: #a11b23;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center; }

.code_text_copy svg {
  fill: #fff; }

.coupon-text {
  margin-left: 10px; }

.coupon-text .h6 {
  margin-bottom: 0;
  font-size: 14px; }

.coupon-details {
  font-size: 12px; }

.conpon-box {
  display: flex;
  align-items: center; }

@media only screen and (max-width: 590px) {
  .conpon-box {
    flex-wrap: wrap; }

  .coupon-text {
    margin-left: 0; } }
.wap-topbarkei {
  display: none; }

.main-content {
  padding-bottom: 0; }

.breadcrumb {
  display: none; }

.k10th-video-box {
  position: relative; }

.k10th-video-box .k10th-banner h1, .k10th-video-box .k10th-banner .h1, .k10th-video-box .k10th-banner .h1--mini, .k10th-video-box .k10th-banner .h1 {
  position: absolute;
  top: 11%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.3vw;
  color: #fff;
  text-transform: none; }

.k10th-video-box .k10th-banner .small-hide {
  display: block; }

.k10th-video-box .k10th-banner .video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  display: block;
  cursor: pointer;
  z-index: 1; }

.k10th-video-box .k10th-banner #video-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -39%);
  width: 30%;
  height: 64%;
  -webkit-transform: translate(-50%, -39%);
  -moz-transform: translate(-50%, -39%);
  -ms-transform: translate(-50%, -39%);
  -o-transform: translate(-50%, -39%); }

.k10th-mobile-bannerint {
  display: none; }

.anniversary-06-wrapper-mobile-note {
  display: none; }

.anniversary-05-mobile-title-box {
  display: none; }

.mobilebundleimg-k {
  display: none; }

#shopify-section-anniversary-02-10th {
  font-family: "Open Sans"; }

#shopify-section-anniversary-02-10th .anniversary-02-wrapper h4.anniversary-02-title, #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-title.h4 {
  margin: 0;
  font-size: 2vw;
  background-color: #0f0f0f;
  color: #fff;
  text-align: center;
  text-transform: none; }

#shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container {
  justify-content: center;
  background-color: #171717;
  padding: 2vh 0 2.8vh; }

#shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item {
  flex: unset;
  padding: 0 1.6vw; }

#shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item .anniversary-02-loop-item-img {
  cursor: pointer; }

#shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item .anniversary-02-loop-item-img img {
  display: block; }

#shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item .anniversary-02-loop-item-img-bottom {
  display: block;
  height: 5px;
  background-color: #222222;
  width: 100%; }

#shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item .anniversary-02-loop-item-title {
  background-image: none;
  position: relative;
  padding: 0;
  z-index: 1;
  font-weight: bold; }

#shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item .anniversary-02-loop-item-title::after {
  Content: "";
  background-image: url(https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/p2-bgimg.png?v=1658201472);
  /* background-position: center; */
  background-repeat: no-repeat;
  background-size: 100%;
  width: 174px;
  left: -10px;
  height: 28px;
  position: absolute;
  top: 0;
  z-index: -666; }

.anniversary-03-wrapper .img-box-anniversary-03 .small-hide {
  display: block;
  width: 100%; }

.anniversary-03-wrapper .img-box-anniversary-03 .medium-up-hide {
  width: 100%;
  display: block; }

.anniversary-03-wrapper .text-box-anniversary-03 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  height: 100%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle {
  color: #fff;
  width: 30%;
  order: 2;
  margin: 0 2%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top {
  display: flex;
  height: 120px;
  justify-content: center; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left {
  margin-right: 2vw; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left img {
  height: 100%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-right {
  line-height: 1;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-right p {
  font-size: 2.1vw;
  margin: 0; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-right span {
  font-size: 3.7vw;
  line-height: 1;
  background: linear-gradient(90deg, #e1ae6c 3.56%, #931f23 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc {
  margin: 46px 0 41px;
  text-align: center; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc .text-box-anniversary-03-middle-m1 p {
  font-weight: 700;
  font-size: 24px;
  line-height: 33px; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc .text-box-anniversary-03-middle-m2 {
  margin-top: 28px; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc .text-box-anniversary-03-middle-m2 p {
  font-size: 16px;
  line-height: 22px; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-button {
  display: block;
  background: linear-gradient(90deg, #e1ae6c 0%, #9a1e23 100%);
  box-shadow: inset 0 4px 4px #00000040;
  border-radius: 5px;
  width: 15vw;
  height: 60px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  font-weight: 700; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-clickhere {
  margin-top: 28px;
  text-align: center; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-clickhere a {
  color: #E1AE6C;
  text-decoration-line: underline;
  font-weight: 700; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box {
  position: relative; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay a.overlay-item {
  position: relative; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay a.overlay-item .item-content {
  display: none;
  max-width: 100%;
  flex-direction: column;
  align-items: center; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay a.overlay-item .item-content .content-box {
  color: #fff;
  white-space: nowrap; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay a.overlay-item .item-content .content-point {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #981F24;
  position: relative;
  margin: 15px 0; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay a.overlay-item .item-content .content-point:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #981F24;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay a.overlay-item:hover .item-content {
  display: flex; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left {
  width: max-content;
  order: 1;
  text-align: right; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 47%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(1) {
  flex: 3 0 2%;
  margin-top: 29%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(1) .item-content {
  position: absolute;
  top: -3%;
  left: 0;
  right: 0;
  margin: auto; }

@media only screen and (max-width: 1500px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(1) .item-content {
    top: 1%; } }
@media only screen and (max-width: 1300px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(1) .item-content {
    top: -4%; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(1) .item-content {
    top: -14%; } }
.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(2) {
  flex: 4 0 2%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(2) .item-content {
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
  margin: auto; }

@media only screen and (max-width: 1500px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(2) .item-content {
    top: 1%; } }
@media only screen and (max-width: 1300px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(2) .item-content {
    top: 12%; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(2) .item-content {
    top: 10%; } }
.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(3) {
  flex: 4 0 0%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(3) .item-content {
  position: absolute;
  top: -6%;
  left: 0;
  right: 0;
  margin: auto; }

@media only screen and (max-width: 1500px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(3) .item-content {
    top: 1%; } }
@media only screen and (max-width: 1300px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(3) .item-content {
    top: -4%; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(3) .item-content {
    top: 0%; } }
.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(4) {
  flex: 3 0 2%;
  margin-bottom: 4%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(4) .item-content {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  margin: auto; }

@media only screen and (max-width: 1500px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(4) .item-content {
    top: 1%; } }
@media only screen and (max-width: 1300px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(4) .item-content {
    top: -4%; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left .text-box-anniversary-03-left-num .landing-image-box .image-overlay a.overlay-item:nth-child(4) .item-content {
    top: -14%; } }
.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right {
  width: max-content;
  order: 3; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay {
  width: 100%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item {
  display: block; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(1) {
  display: block;
  height: 16%;
  width: 34%;
  margin: 8% 31% 0; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(1) .item-content {
  position: absolute;
  top: -16%;
  left: 0;
  right: 0;
  margin: auto; }

@media only screen and (max-width: 1500px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(1) .item-content {
    top: 1%; } }
@media only screen and (max-width: 1300px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(1) .item-content {
    top: -4%; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(1) .item-content {
    top: -14%; } }
.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(2) {
  width: 24%;
  height: 24%;
  margin-left: 7%;
  margin-top: -4%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(2) .item-content {
  position: absolute;
  top: -17%;
  left: 0;
  right: 0;
  margin: auto; }

@media only screen and (max-width: 1500px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(2) .item-content {
    top: 1%; } }
@media only screen and (max-width: 1300px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(2) .item-content {
    top: -4%; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(2) .item-content {
    top: -14%; } }
.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(3) {
  position: absolute;
  width: 24%;
  height: 24%;
  top: 18%;
  right: 8%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(3) .item-content {
  position: absolute;
  top: -6%;
  left: 0;
  right: 0;
  margin: auto; }

@media only screen and (max-width: 1500px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(3) .item-content {
    top: 1%; } }
@media only screen and (max-width: 1300px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(3) .item-content {
    top: -4%; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(3) .item-content {
    top: -14%; } }
.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(4) {
  position: absolute;
  width: 24%;
  height: 25%;
  top: 49%;
  left: 7%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(4) .item-content {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  margin: auto; }

@media only screen and (max-width: 1500px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(4) .item-content {
    top: 1%; } }
@media only screen and (max-width: 1300px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(4) .item-content {
    top: -4%; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(4) .item-content {
    top: -14%; } }
.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(5) {
  position: absolute;
  width: 30%;
  height: 22%;
  top: 51%;
  right: 3%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(5) .item-content {
  position: absolute;
  top: 24%;
  left: 0;
  right: 0;
  margin: auto; }

@media only screen and (max-width: 1500px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(5) .item-content {
    top: 1%; } }
@media only screen and (max-width: 1300px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(5) .item-content {
    top: -4%; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(5) .item-content {
    top: -14%; } }
.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(6) {
  position: absolute;
  width: 26%;
  height: 18%;
  bottom: 2%;
  right: 37%; }

.anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(6) .item-content {
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
  margin: auto; }

@media only screen and (max-width: 1500px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(6) .item-content {
    top: 1%; } }
@media only screen and (max-width: 1300px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(6) .item-content {
    top: -4%; } }
@media only screen and (min-width: 791px) and (max-width: 1100px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right .text-box-anniversary-03-right-num .landing-image-box .image-overlay a.overlay-item:nth-child(6) .item-content {
    top: -14%; } }
.anniversary-04-wrapper {
  position: relative; }

.anniversary-04-wrapper .img-box-anniversary-04 img.small-hide {
  display: block; }

.anniversary-04-wrapper .img-box-anniversary-04 img.medium-up-hide {
  display: block; }

.anniversary-04-wrapper .anniversary-04-10th-box {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  line-height: 1; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-title svg {
  width: 90%; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-subtitle {
  font-weight: 700;
  font-size: 2.5vw;
  letter-spacing: 1vw; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-discount {
  font-weight: 700;
  font-size: 9vw;
  color: #E1AE6C;
  text-shadow: 2px 4px 0px #000000; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 5% 0 4%; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode .anniversary-04-10th-box-copycode-left {
  display: flex;
  font-weight: 700;
  font-size: 1.5vw;
  flex-direction: row; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode .anniversary-04-10th-box-copycode-left p {
  color: #000;
  margin: 0; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode .anniversary-04-10th-box-copycode-left span {
  padding: 0 0.5vw; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode .code_text_copy {
  border: 1px dashed #E1AE6C;
  border-radius: 50px;
  width: unset;
  position: relative;
  padding: 0.4vh 1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-direction: row;
  cursor: pointer; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode .code_text_copy svg {
  margin-right: 0.6vw; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode .copyfinish {
  fill: #fff; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2em; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp {
  margin-top: 4%; }

.anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp.active {
  transform: translateY(50vw);
  animation: move99 1.8s 0.2s forwards;
  animation-timing-function: ease-out;
  -webkit-transform: translateY(50vw);
  -moz-transform: translateY(50vw);
  -ms-transform: translateY(50vw);
  -o-transform: translateY(50vw);
  -webkit-animation: move99 1.8s 0.2s forwards; }

.anniversary-05-wrapper {
  position: relative; }

.anniversary-05-wrapper .anibuton {
  background: linear-gradient(90deg, #e1ae6c 0%, #9a1e23 100%);
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  padding: 1vh 2.7vw;
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: #FFFFFF; }

.anniversary-05-wrapper .small-hide, .anniversary-05-wrapper .medium-up-hide {
  display: block; }

.anniversary-05-wrapper .anniversary-05-flex {
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 13%;
  transition: 0.35s;
  -webkit-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text {
  color: #fff;
  flex: 1 0 60%; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .anni10thgradient {
  font-weight: 800;
  background: linear-gradient(90deg, #e1ae6c 0%, #981f24 101.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-title {
  font-size: 2.6vw;
  text-transform: uppercase; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-subtitle {
  font-size: 1.55vw;
  padding: 2vh 0; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-content {
  font-size: 0.94vw;
  background: linear-gradient(0deg, white, white), linear-gradient(90deg, #e1ae6c 0%, #981f24 101.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 2vh;
  text-fill-color: transparent; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-content ul {
  padding-left: 1em; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-content ul li {
  padding: 0.5vh 0; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-content ul li::marker {
  font-size: 12px; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .anibuton {
  margin-top: 3vh; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img {
  height: 100%;
  flex: 1 0 40%;
  position: relative; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep {
  position: relative;
  height: 100%;
  width: 100%; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep img {
  filter: drop-shadow(0px 10px 50px black);
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0, 0.6, 0.3, 1);
  transition: -webkit-transform 1.5s cubic-bezier(0, 0.6, 0.3, 1);
  -o-transition: transform 1.5s cubic-bezier(0, 0.6, 0.3, 1);
  -moz-transition: transform 1.5s cubic-bezier(0, 0.6, 0.3, 1), -moz-transform 1.5s cubic-bezier(0, 0.6, 0.3, 1);
  transition: transform 1.5s cubic-bezier(0, 0.6, 0.3, 1);
  transition: transform 1.5s cubic-bezier(0, 0.6, 0.3, 1), -webkit-transform 1.5s cubic-bezier(0, 0.6, 0.3, 1), -moz-transform 1.5s cubic-bezier(0, 0.6, 0.3, 1); }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_front {
  position: absolute;
  top: 8%;
  left: 34%;
  transform: translateX(-50%);
  z-index: 2;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_behind {
  position: absolute;
  top: -10%;
  left: 22%;
  z-index: 1;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s; }

.anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .new_board {
  position: absolute;
  font-weight: 700;
  font-size: 2.1vw;
  text-transform: uppercase;
  color: #AA7639;
  top: 8%;
  left: 13%;
  background: #60161B;
  border-radius: 5px;
  padding: 0 1.5vw;
  z-index: 3; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch {
  position: absolute;
  bottom: 19%;
  right: 13%;
  z-index: 3; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul {
  display: flex;
  flex-direction: column; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul li {
  overflow: hidden;
  list-style: none;
  cursor: pointer;
  transition: 0.35s;
  -webkit-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul li .anniversary-05-flex-img-switch-box {
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: solid;
  border-width: 2px;
  border-color: rgba(109, 109, 109, 0.2);
  transition: 0.35s;
  -webkit-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul li .anniversary-05-flex-img-switch-box .rep-img {
  width: 100%;
  display: block; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul li .anniversary-05-flex-img-switch-box-protitle {
  text-align: center;
  color: rgba(234, 234, 240, 0.6);
  margin-top: 5px;
  transition: 0.35s;
  -webkit-transition: 0.35s;
  -moz-transition: 0.35s;
  -ms-transition: 0.35s;
  -o-transition: 0.35s; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul li:hover .anniversary-05-flex-img-switch-box {
  border-image: linear-gradient(135deg, #bc8c58, #8e191e);
  border-image-slice: 1; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul li:hover .anniversary-05-flex-img-switch-box-protitle {
  color: #EAEAF0; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul li.active {
  opacity: 1; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul li.active .anniversary-05-flex-img-switch-box {
  border-image: linear-gradient(135deg, #bc8c58, #8e191e);
  border-image-slice: 1; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul li.active .anniversary-05-flex-img-switch-box-protitle {
  color: #EAEAF0; }

.anniversary-05-wrapper .anniversary-05-flex-img-switch ul li + li {
  margin-top: 2vh; }

.anniversary-06-wrapper {
  position: relative; }

.anniversary-06-wrapper .small-hide, .anniversary-06-wrapper .medium-up-hide {
  display: block; }

.anniversary-06-wrapper .anniversary-06-wrapper-up {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 100%; }

.anniversary-06-wrapper .anniversary-06-wrapper-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  width: 100%; }

.anniversary-06-wrapper .anni06-zsp {
  display: block; }

.anniversary-06-wrapper .anniversary-06-wrapper-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 100%;
  align-items: center;
  height: 100%;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row; }

.anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-left {
  flex: 1 0 50%;
  text-align: right;
  vertical-align: middle;
  padding-top: 1%; }

.anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-right {
  flex: 1 0 43%;
  padding-left: 6%;
  padding-top: 3%; }

.anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-right .anniversary-06-wrapper-box-right-note {
  color: #fff;
  font-size: 16px;
  font-size: 0.85vw;
  padding-top: 1em; }

.anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-right .anniversary-06-wrapper-box-right-note p {
  margin: 0;
  line-height: 1.5em; }

.anniversary-07-wrapper {
  background-color: #1F1C1C; }

.anniversary-07-wrapper .bfcmflashsale-top {
  background-image: none;
  padding-bottom: 1vw; }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 {
  margin: 0 auto; }

@media (min-width: 1600px) and (max-width: 1921px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 {
    max-width: 1600px;
    padding: 0 50px; } }
@media (max-width: 1921px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 {
    max-width: 1600px;
    padding: 0 50px; } }
.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup {
  padding-top: 6.5vh; }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-linetop {
  display: block;
  margin: 0 auto;
  height: 1px;
  border-top: dashed 1px #896331;
  width: 1000px;
  padding-bottom: 2.7vh; }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item {
  position: relative;
  font-weight: 700;
  cursor: pointer;
  width: 26%; }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item .date-time {
  font-size: 1vw; }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item .date-title {
  font-size: 1.5vw;
  background: linear-gradient(91.53deg, #e1ae6c -3.14%, #981f24 105.95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent; }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item .date-btn {
  font-size: 16px;
  max-width: 150px;
  background-color: unset;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='29' viewBox='0 0 150 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Crect x='1' y='1' width='148' height='27' rx='13.5' stroke='url(%23paint0_linear_122_3364)' stroke-opacity='0.5' stroke-width='2' stroke-dasharray='4 4'/%3E %3Cdefs%3E %3ClinearGradient id='paint0_linear_122_3364' x1='-6.5' y1='-5.56827e-06' x2='162.5' y2='29' gradientUnits='userSpaceOnUse'%3E %3Cstop stop-color='%23E1AE6C'/%3E %3Cstop offset='1' stop-color='%23981F24'/%3E %3C/linearGradient%3E %3C/defs%3E %3C/svg%3E ");
  padding: 5px 0;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center; }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  top: -5vh;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Ccircle cx='14' cy='14' r='13.5' fill='%231F1C1C' stroke='%235F5F5F'/%3E %3Ccircle cx='14' cy='14' r='8' fill='%235F5F5F'/%3E %3C/svg%3E "); }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Ccircle cx='14' cy='14' r='13.5' fill='%231F1C1C' stroke='%239E2B2A'/%3E %3Ccircle cx='14' cy='14' r='8' fill='%239E2B2A'/%3E %3C/svg%3E "); }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:hover .date-btn {
  color: #fff;
  background-image: none;
  background: linear-gradient(91.53deg, #e1ae6c -3.14%, #981f24 105.95%), #d9d9d9; }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:hover .date-time {
  color: #fff; }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item.active::before {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Ccircle cx='14' cy='14' r='13.5' fill='%231F1C1C' stroke='%239E2B2A'/%3E %3Ccircle cx='14' cy='14' r='8' fill='%239E2B2A'/%3E %3C/svg%3E "); }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item.active .date-btn {
  color: #fff;
  background-image: none;
  background: linear-gradient(91.53deg, #e1ae6c -3.14%, #981f24 105.95%), #d9d9d9; }

.anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item.active .date-time {
  color: #fff; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent {
  width: 90%;
  text-align: unset; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem {
  padding: 10px; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox {
  border-radius: 5px;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
  background-repeat: no-repeat;
  overflow: hidden;
  max-width: 520px;
  max-height: 300px;
  background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/p7-line2-bg.png?v=1658397519");
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  align-items: center; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left {
  width: 45%;
  padding: 30px 20px;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .itmetitle {
  font-weight: 700;
  font-size: 18px;
  color: #E1AE6C;
  margin: 0;
  width: 120%; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .progress-container {
  width: 180px;
  height: 13px;
  background: #343434;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  margin: 25px 0 9px; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .progress-container .progress-bar {
  height: 100%;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-iteration-count: 1;
  background-color: #981F24;
  font-size: 12px;
  text-align: right;
  padding-right: 15%;
  line-height: 13px;
  position: relative; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .progress-container .progress-bar::after {
  content: "";
  position: absolute;
  background-size: 100%;
  background-position: 100%;
  background-repeat: no-repeat;
  width: 21px;
  height: 21px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Ccircle cx='10.5' cy='10.5' r='10.5' fill='%23E1AE6C'/%3E %3Cpath d='M6 11.4236L10.0355 3.00016L16.5 3L11.9019 10.3176L14.4714 12.1293L6.15688 19.5L8.97527 13.3295L6 11.4236Z' fill='%2372181B'/%3E %3C/svg%3E "); }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .kei-itembox-limit {
  text-transform: capitalize;
  font-size: 14px; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .kei-itembox-limit span {
  color: #E1AE6C;
  font-weight: 700; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .kei-itembox-price {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-direction: row; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .kei-itembox-price .kei-price {
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  white-space: nowrap; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .kei-itembox-price .kei-price sup {
  font-size: 18px; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .kei-itembox-price .kei-price-original {
  font-size: 20px;
  text-decoration-line: line-through;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 5px; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .anibuton {
  background: linear-gradient(90deg, #e1ae6c 0%, #9a1e23 100%);
  box-shadow: inset 0 4px 4px #00000040;
  border-radius: 5px;
  padding: 0.7vh 1.85vw;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 20px;
  cursor: pointer;
  text-align: center; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-right {
  width: 60%;
  height: 100%;
  cursor: pointer; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-right a {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-right a .product-img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 95%;
  transform: translate(-50%, -50%); }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-right img.soldoutimg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-savemessage {
  position: absolute;
  display: flex;
  flex-direction: column;
  line-height: 1;
  top: 15px;
  right: 15px;
  pointer-events: none; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-savemessage .kei-itembox-savemessage-top {
  font-weight: 700;
  font-size: 22px;
  background: #981F24;
  border-radius: 3px 3px 0px 0px;
  padding: 3px 8px; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-savemessage .kei-itembox-savemessage-bottom {
  font-weight: 700;
  font-size: 30px;
  color: #981F24;
  background: #FFBA60;
  border-radius: 0px 0px 3px 3px;
  text-align: center;
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 0px 0px 3px 3px;
  -moz-border-radius: 0px 0px 3px 3px;
  -ms-border-radius: 0px 0px 3px 3px;
  -o-border-radius: 0px 0px 3px 3px; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .soldoutitembox .kei-itembox-left .anibuton {
  background: linear-gradient(0deg, #565656, #565656), linear-gradient(90deg, #e1ae6c 0%, #9a1e23 100%);
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25); }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .soldoutitembox .kei-itembox-savemessage {
  mix-blend-mode: luminosity; }

.anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .deepcolor .itembox {
  background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/p7-line1-bg.png?v=1658397519"); }

.anniversary-10-wrapper {
  background-color: #1F1C1C;
  padding-bottom: 0vh; }

.anniversary-10-wrapper .anniversary-10-title {
  font-weight: 800;
  font-size: 2.6vw;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90deg, #e1ae6c 0%, #981f24 101.35%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  width: max-content;
  padding: 0;
  margin-bottom: 3vh; }

.anniversary-10-wrapper .img-bl-item-10 {
  height: 140px; }

.anniversary-10-wrapper .img-bl-item-10 .review-anniversary {
  background-color: #000;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  font-size: 16px;
  color: #fff;
  height: 100%; }

.anniversary-10-wrapper .img-bl-item-10 .review-anniversary .re-sapns {
  display: block; }

.anniversary-10-wrapper .img-bl-item-10 .review-anniversary span {
  display: block;
  margin-top: 5px;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.5); }

.anniversary-10-wrapper .posiweizhi01, .anniversary-10-wrapper .posiweizhi03, .anniversary-10-wrapper .posiweizhi05 {
  left: 0; }

.anniversary-10-wrapper .posiweizhi02, .anniversary-10-wrapper .posiweizhi04, .anniversary-10-wrapper .posiweizhi06 {
  left: -3%; }

.anniversary-10-topbar-kei ul li:first-child {
  width: 25%; }

.an10tbkei1s {
  align-items: center;
  justify-content: flex-end;
  flex-direction: row !important;
  padding-right: 20%;
  width: 100% !important; }

.anniversary-10-topbar-kei ul li {
  list-style: none;
  width: calc((100% - 25%) / 5 );
  padding: 2.5% 0%;
  height: 100%;
  white-space: nowrap;
  background: #1F1E21;
  position: relative; }

.anniversary-10-topbar-kei ul li a {
  display: flex;
  width: max-content;
  flex-direction: column;
  position: relative;
  z-index: 1; }

.anniversary-10-topbar-kei ul li:nth(2) a {
  padding-left: 20%; }

.anniversary-10-topbar-kei ul li a i {
  font-size: 20px;
  align-items: center;
  font-style: normal;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5); }

.anniversary-10-topbar-kei ul li a p {
  font-size: 16px;
  color: #FFFFFF; }

.anniversary-10-topbar-svg01::before {
  content: "";
  background: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/Group_602.svg?v=1658806823");
  transform: translateY(-50%);
  position: absolute;
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  left: -150%;
  width: 117px;
  height: 116px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%); }

@media screen and (min-width: 1921px) {
  img.small-hide {
    width: 100%; }

  .text-box-anniversary-03-middle-top-right p {
    white-space: nowrap; }

  .anniversary-06-wrapper .anni06-zsp {
    width: 100%; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .itmetitle {
    font-size: 16px; }

  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item .date-title {
    font-size: 28px; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc .text-box-anniversary-03-middle-m1 p {
    font-size: 20px; } }
@media screen and (min-width: 2048px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-linetop {
    width: 70%; }

  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -4.2vh; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent {
    width: 75%; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox {
    max-width: unset;
    background-size: cover;
    background-position: center; } }
@media screen and (min-width: 4000px) {
  .anniversary-02-loop-item .anniversary-02-loop-item-title {
    line-height: 1; }

  .anniversary-06-wrapper-box-right-note {
    padding-top: 0.5em; }

  .footer-bg {
    position: absolute;
    z-index: 1;
    left: 48.4%;
    top: 56.5%;
    transform: translate(-50%, -50%); }

  .footer-bg img {
    width: 94%; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-right {
    padding-left: 14%; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-left {
    flex: 1 0 35%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .new_board {
    left: -25%; }

  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item .anniversary-02-loop-item-title {
    line-height: 1;
    font-size: 0.9vw; } }
@media screen and (max-width: 1800px) {
  .anniversary-05-wrapper .anniversary-05-flex-img-switch {
    bottom: 13%;
    right: 11%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_front {
    top: 0%;
    left: 37%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_behind {
    top: -16%;
    left: 27%; } }
@media screen and (max-width: 1699px) {
  .anniversary-05-wrapper .anniversary-05-flex-img-switch {
    bottom: 13%;
    right: 11%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_front {
    top: 0%;
    left: 42%;
    width: 65%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_behind {
    top: -16%;
    left: 28%;
    width: 85%; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-title svg {
    width: 75%; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode {
    margin: 3% 0 2%; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-left svg {
    transform: scale(0.8); }

  .anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-right img {
    width: 75%; }

  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -4vh; } }
@media screen and (max-width: 1499px) {
  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-discount {
    font-size: 8vw; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-subtitle {
    font-size: 2vw; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem {
    padding: 5px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left {
    padding: 30px 0px 30px 20px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-right a .product-img {
    display: block;
    width: 80%;
    margin: 0 auto;
    aspect-ratio: unset; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .progress-container {
    margin: 15px 0 5px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .anibuton {
    margin-top: 15px;
    min-width: 130px; }

  .an10tbkei1s {
    padding-right: 10%; }

  .anniversary-10-topbar-kei ul li:first-child {
    width: 30%; }

  .p7-limited-offer .toplimited-offer {
    padding: 0px 2px; }

  .p7-limited-offer .lastlimited-offer {
    padding: 0 2px; }

  .template-10th-anniversary .privy-mobile-tab {
    display: none !important; } }
@media screen and (max-width: 1399px) {
  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box {
    padding: 4%; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay {
    padding: 4%; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-discount {
    font-size: 7vw; }

  .anniversary-05-wrapper .anniversary-05-flex-img-switch {
    bottom: 9%;
    right: 9%; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-left svg {
    transform: scale(0.7); }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left {
    padding: 15px 0 15px 20px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .itmetitle {
    font-size: 16px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .progress-container {
    margin: 10px 0 5px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .kei-itembox-limit {
    margin-bottom: 10px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .progress-container {
    width: 150px; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left {
    margin-right: 1vw; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left img {
    height: auto; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-right {
    white-space: nowrap; }

  .anniversary-10-topbar-kei ul li:first-child {
    width: 25%; }

  .topbarulli-6 {
    padding-right: 20%; }

  .anniversary-10-topbar-kei ul li {
    padding: 3% 0;
    width: 20%; }

  .anniversary-10-topbar-svg01::before {
    background-size: 80%;
    left: -95%; } }
@media screen and (max-width: 1280px) {
  .anniversary-10-topbar-kei ul li:first-child {
    width: 30%; }

  .anniversary-top-note {
    display: none; }

  .k10th-video-box .k10th-banner .small-hide {
    display: none; }

  .k10th-video-box .k10th-banner .medium-up-hide {
    display: block !important;
    width: 100%; }

  .k10th-video-box .k10th-banner #video-placeholder {
    height: unset !important; }

  .k10th-video-box .k10th-banner h1, .k10th-video-box .k10th-banner .h1, .k10th-video-box .k10th-banner .h1--mini, .k10th-video-box .k10th-banner .h1 {
    position: relative;
    display: block;
    margin: 0;
    top: 0;
    left: 0;
    transform: none;
    background-position: center bottom;
    background-repeat: no-repeat;
    text-align: center;
    line-height: 2;
    padding-top: 2vh;
    background-color: #000;
    background-size: 50%;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    background-image: url("data:image/svg+xml,%3Csvg width='375' height='41' viewBox='0 0 375 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M7.28328 40.4144L0 31.7118H48.5L70.5275 1H306.361L327.5 31.3566H375L367.006 40.4144H7.28328Z' fill='%23931F23' stroke='black'/%3E %3C/svg%3E "); }

  .k10th-mobile-bannerint {
    display: block;
    background-color: #262424; }

  .k10th-mobile-bannerint img {
    display: block;
    width: 100%; }

  .k10th-mobile-bannerint .k10th-mobile-box-a {
    padding: 2vh 5vw; }

  .k10th-mobile-bannerint .k10th-mobile-box-b {
    text-align: center;
    color: #E1AE6C;
    line-height: 1.5;
    font-size: 4.3vw; }

  #shopify-section-anniversary-02-10th .anniversary-02-wrapper h4.anniversary-02-title, #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-title.h4 {
    padding: 2vh 0;
    background-color: #171717; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box {
    padding: 6%; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp svg {
    transform: scale(0.8); }

  .anniversary-07-10th-proitem {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    flex-basis: 50%; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .kei-itembox-price {
    justify-content: flex-start; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .kei-itembox-price .kei-price-original {
    padding-left: 1vw;
    margin-left: 0; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox {
    background-image: url("https://cdn.shopifycdn.net/s/files/1/0011/7220/9721/files/p7-line1-bg.png?v=1658397519"); }

  .anniversary-10-wrapper .img-bl-item-10 .review-anniversary {
    font-size: 15px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left {
    display: block; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .itmetitle {
    width: 100%; }

  li.topbarulli-6 {
    width: 25% !important; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_front {
    left: 54%; } }
@media screen and (max-width: 1230px) {
  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item {
    margin: 0 5%; }

  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item .anniversary-02-loop-item-title {
    padding: 0.5vw 1vw;
    font-size: 14px;
    font-weight: 700; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .img-box-anniversary-03 .small-hide {
    display: none; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .img-box-anniversary-03 .medium-up-hide {
    display: block !important; }

  .img-box-anniversary-03 {
    height: 1000px; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa {
    flex-wrap: wrap;
    flex-direction: row; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle {
    display: block;
    order: 1;
    width: 100%; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left {
    order: 2;
    margin-right: 2%; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box {
    padding: 0; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top {
    height: unset; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left {
    flex: 0 0 12%; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc {
    margin: 15px 0; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc .text-box-anniversary-03-middle-m2 {
    margin-top: 10px; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-button {
    font-size: 16px;
    height: 40px;
    line-height: 40px; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-clickhere {
    margin-top: 15px; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-discount {
    font-size: 6vw; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode {
    margin: 1% 0; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp {
    margin-top: 2%; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp svg {
    transform: scale(0.9); }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay {
    padding: 0; } }
@media screen and (max-width: 1230px) {
  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item {
    margin: 0 5%; }

  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item .anniversary-02-loop-item-title {
    padding: 0.5vw 1vw;
    font-size: 14px;
    font-weight: 700; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .img-box-anniversary-03 .small-hide {
    display: none; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .img-box-anniversary-03 .medium-up-hide {
    display: block !important; }

  .img-box-anniversary-03 {
    height: 1000px; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa {
    flex-wrap: wrap;
    flex-direction: row; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle {
    display: block;
    order: 1;
    width: 100%; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left {
    order: 2;
    margin-right: 2%; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box {
    padding: 0; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top {
    height: unset; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left {
    flex: 0 0 12%; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc {
    margin: 15px 0; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc .text-box-anniversary-03-middle-m2 {
    margin-top: 10px; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-button {
    font-size: 16px;
    height: 40px;
    line-height: 40px; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-clickhere {
    margin-top: 15px; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-discount {
    font-size: 6vw; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode {
    margin: 1% 0; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp {
    margin-top: 2%; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp svg {
    transform: scale(0.9); }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay {
    padding: 0; } }
@media screen and (max-width: 1230px) {
  .img-box-anniversary-03 {
    height: 950px; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-title svg {
    width: 55%;
    height: 90%; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode {
    margin: 0; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-note {
    width: 80%;
    margin: 0 auto;
    line-height: 1.5; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp svg {
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6); }

  .anniversary-10-wrapper .img-bl-item-10 .review-anniversary {
    padding: 16px;
    font-size: 14px; } }
@media screen and (max-width: 1024px) {
  li.topbarulli-6 {
    width: 100% !important; }

  .k10th-video-box .k10th-banner h1, .k10th-video-box .k10th-banner .h1, .k10th-video-box .k10th-banner .h1--mini, .k10th-video-box .k10th-banner .h1 {
    font-size: 2.8vw; } }
@media screen and (max-width: 1000px) {
  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .progress-container .progress-bar {
    line-height: 15px; }

  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-title {
    font-size: 20px !important; }

  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item {
    margin: 0 5%;
    padding: 0;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8); }

  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item .anniversary-02-loop-item-title {
    padding-bottom: 0;
    margin-bottom: 0; }

  .img-box-anniversary-03 {
    display: none; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left {
    flex: 0 0 30%; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-right {
    flex: 0 0 35%;
    justify-content: space-around; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-right p {
    font-size: 24px; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-right span {
    font-size: 40px; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc .text-box-anniversary-03-middle-m1 p {
    font-size: 18px; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc .text-box-anniversary-03-middle-m2 p {
    font-size: 14px; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-button {
    width: 180px; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right {
    width: 59%;
    margin-top: -30%; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa {
    align-items: normal; }

  .anniversary-03-wrapper {
    background-image: url(https://cdn.shopify.com/s/files/1/0011/7220/9721/files/p3-wap-bg_2b45ecab-1b31-4d80-b32c-ea1cefb64519.png?v=1658716363);
    padding: 50px 0; }

  .anniversary-03-wrapper .text-box-anniversary-03 {
    display: block;
    top: 0;
    left: 0;
    position: relative;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    width: 100%; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle {
    margin: 0;
    margin-bottom: 5%; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-left {
    width: 42%;
    margin-right: 0;
    display: inline-block; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-right {
    width: 50%;
    margin-top: 0;
    display: inline-block; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    transform: none; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left img {
    width: 75%;
    margin: 0 auto;
    display: block; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left {
    margin-right: 0; }

  .anniversary-04-wrapper .img-box-anniversary-04 img.medium-up-hide {
    width: 100%; }

  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-linetop {
    width: 100%; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent {
    width: 100%; }

  .p7-limited-offer .toplimited-offer {
    padding: 0px 4px; }

  .p7-limited-offer .lastlimited-offer {
    padding: 0 4px; } }
@media screen and (max-width: 985px) {
  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp {
    margin-top: 0%; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp svg {
    transform: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    -o-transform: unset;
    display: block;
    margin: 0 auto;
    width: 25%;
    height: 100%; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-note {
    font-size: 14px; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode .code_text_copy {
    font-size: 12px;
    padding: 0.2vh 0.4em; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode .code_text_copy svg {
    margin-right: 0.2vw;
    display: block; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-subtitle {
    padding: 1vh 0; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-content {
    padding-top: 0vh; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text {
    flex: 1 0 40%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img {
    flex: 1 0 60%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_front {
    top: -24%;
    left: 57%;
    width: 55%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_behind {
    top: -30%;
    left: 35%;
    width: 65%; }

  .anniversary-05-wrapper .anniversary-05-flex-img-switch {
    bottom: 7%;
    right: 11%; }

  .anniversary-05-wrapper .anniversary-05-flex-img-switch ul li .anniversary-05-flex-img-switch-box-protitle {
    font-size: 12px; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-left svg {
    transform: none;
    width: 100%;
    height: 100%; }

  .anniversary-06-wrapper .img-box-anniversary-06 .small-hide {
    display: none !important; }

  .anniversary-06-wrapper .img-box-anniversary-06 .medium-up-hide {
    display: block !important;
    width: 100%; }

  .anniversary-06-wrapper .anniversary-06-wrapper-up {
    display: none; }

  .anniversary-06-wrapper .anniversary-06-wrapper-down {
    display: none; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box {
    padding: 0 2%; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-left {
    flex: unset;
    text-align: unset;
    vertical-align: unset;
    padding-top: 0;
    width: 50%; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-right {
    flex: unset;
    padding-left: 0;
    text-align: center;
    padding-top: 0;
    width: 50%; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-right img {
    width: 100%; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box .anniversary-06-wrapper-box-right .anniversary-06-wrapper-box-right-note {
    display: none; }

  .anniversary-06-wrapper-mobile-note {
    display: block;
    position: absolute;
    bottom: 16%;
    width: 100%;
    font-size: 14px;
    padding: 0 2%;
    color: #fff; }

  .anniversary-07-10th-proitem {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    flex-basis: 100%; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox {
    margin: 0 auto; }

  .anniversary-10-wrapper .img-bl-item-10 .review-anniversary {
    padding: 10px; } }
@media screen and (max-width: 800px) {
  .anniversary-10-wrapper .img-bl-item-10 {
    height: 160px; }

  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item .date-time {
    font-size: 12px; } }
@media screen and (max-width: 768px) {
  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay a.overlay-item .item-content {
    font-size: 14px; }

  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 {
    padding: 0; }

  .anniversary-04-wrapper .anniversary-04-10th-box {
    width: 100%; }

  .anniversary-04-10th-box-title {
    width: 65%;
    margin: 3% auto; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-subtitle {
    font-size: 8vw; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-discount {
    font-size: 13vw; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-copycode .anniversary-04-10th-box-copycode-left {
    font-size: 4vw; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-note {
    font-size: 3vw; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp {
    margin-top: 3%; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp svg {
    width: unset;
    margin-bottom: 17%; }

  .anniversary-05-wrapper .img-box-anniversary-05 .medium-up-hide {
    width: 100%; }

  .anniversary-05-wrapper .anniversary-05-flex {
    flex-direction: column;
    align-items: flex-end;
    padding: 0 5%;
    justify-content: normal; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text {
    flex: unset;
    order: 2;
    width: 100%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img {
    flex: unset;
    order: 1;
    margin-top: 5%;
    height: 40%;
    width: 60%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep {
    height: 100%;
    width: 100%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_front {
    height: 100%;
    right: 3%;
    top: -10%;
    width: unset;
    left: unset; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .anniversary-05-flex-img-rep .img_behind {
    top: unset;
    height: 100%;
    right: -3%;
    top: -15%;
    width: unset; }

  .anniversary-05-mobile-title-box {
    display: block;
    font-family: "Open Sans";
    margin-top: 50px;
    width: 100%;
    z-index: 3; }

  .anniversary-05-mobile-title-b {
    font-weight: 800;
    background: linear-gradient(90deg, #e1ae6c 0%, #981f24 101.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 7vw;
    text-transform: uppercase; }

  .anniversary-05-mobile-title-a {
    padding: 1vh 0;
    font-size: 4.5vw;
    font-weight: 800;
    background: linear-gradient(90deg, #e1ae6c 0%, #981f24 101.35%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-title {
    display: none; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-subtitle {
    display: none; }

  .anniversary-05-wrapper .anniversary-05-flex-img-switch {
    left: 6%;
    right: unset;
    bottom: unset;
    top: 35%; }

  .anniversary-05-wrapper .anniversary-05-flex-img-switch ul li {
    width: 80%; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-img .new_board {
    font-size: 4vw; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .flex-text-content {
    font-size: 3.5vw; }

  .anniversary-05-wrapper .anniversary-05-flex .anniversary-05-flex-text .anibuton {
    padding: 1vh 6vw;
    font-size: 16px; }

  .pcbundleimg-k {
    display: none; }

  .mobilebundleimg-k {
    display: block; }

  .bfcm-flashsale .flashdategroup {
    margin: 0 !important; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .anibuton {
    padding: 0.7vh 5vw;
    min-width: 170px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .kei-itembox-price .kei-price {
    font-size: 24px; }

  .anniversary-10-wrapper .anniversary-10-title {
    font-size: 24px;
    width: 85%; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-savemessage .kei-itembox-savemessage-top {
    font-size: 16px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-savemessage .kei-itembox-savemessage-bottom {
    font-size: 26px; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem + .anniversary-07-10th-proitem {
    padding-top: 20px; }

  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item .date-title {
    font-size: 14px;
    white-space: nowrap; }

  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item .date-btn {
    font-size: 12px; }

  .k10th-mobile-bannerint .k10th-mobile-box-b {
    font-size: 16px; }

  .anniversary-10-wrapper {
    padding-bottom: 2vh; } }
@media screen and (max-width: 680px) {
  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item {
    margin: 0 4%; } }
@media screen and (max-width: 620px) {
  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item {
    margin: 0; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-discount {
    font-size: 92px; }

  .anniversary-04-10th-box-title {
    width: 100%;
    margin: 2% auto; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-subtitle {
    margin: 1% 0; }

  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp svg {
    margin-bottom: 1%; }

  div#shopify-section-anniversary-06-10th {
    margin-top: -15%; }

  .k10th-video-box .k10th-banner h1, .k10th-video-box .k10th-banner .h1, .k10th-video-box .k10th-banner .h1--mini, .k10th-video-box .k10th-banner .h1 {
    background-size: 100%;
    padding-top: 6vh;
    font-size: 30px; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left img {
    height: auto; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-left {
    flex: unset; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-right {
    flex: unset; } }
@media screen and (max-width: 520px) {
  div#shopify-section-anniversary-06-10th {
    margin-top: 0; } }
@media screen and (max-width: 470px) {
  .wap-topbarkei ul li a {
    padding-left: 25% !important; }

  .wap-topbarkei-svg {
    left: 5%; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .landing-image-box .image-overlay a.overlay-item .item-content {
    font-size: 12px; }

  .k10th-video-box .k10th-banner h1, .k10th-video-box .k10th-banner .h1, .k10th-video-box .k10th-banner .h1--mini, .k10th-video-box .k10th-banner .h1 {
    padding-top: 2vh;
    font-size: 22px; }

  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item {
    width: 30%; }

  #shopify-section-anniversary-02-10th .anniversary-02-wrapper .anniversary-02-loop-container .anniversary-02-loop-item .anniversary-02-loop-item-title:after {
    width: 111%;
    left: -7px; }

  #shopify-section-anniversary-03-10th .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-desc {
    margin: 15px 7%; }

  .anniversary-06-wrapper .anniversary-06-wrapper-box {
    margin-top: -8%; }

  .anniversary-07-wrapper .bfcm-flashsale-list .bfcm-flashsale-listcontent .anniversary-07-10th-proitem .itembox .kei-itembox-left .anibuton {
    font-size: 14px; }

  .anniversary-03-wrapper .text-box-anniversary-03 .text-box-anniversary-03-boxa .text-box-anniversary-03-middle .text-box-anniversary-03-middle-top .text-box-anniversary-03-middle-top-right {
    width: 55%;
    margin-right: 5%; } }
@media screen and (max-width: 450px) {
  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-discount {
    font-size: 76px; }

  .anniversary-06-wrapper-mobile-note p {
    margin: 0; }

  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item {
    width: 30%; }

  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    width: 16px;
    height: 16px;
    top: -4vh;
    background-size: 100%; } }
@media screen and (max-width: 400px) {
  .anniversary-04-wrapper .anniversary-04-10th-box .anniversary-04-10th-box-mrp svg {
    width: 30%; }

  .anniversary-05-wrapper .anniversary-05-flex-img-switch {
    left: 10%;
    top: 32%; }

  .k10th-mobile-bannerint .k10th-mobile-box-b {
    font-size: 14px; } }
@media screen and (max-height: 1440px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -3.7vh; } }
@media screen and (max-height: 1200px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -4vh; } }
@media screen and (max-height: 1080px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -4.3vh; } }
@media screen and (max-height: 980px) and (max-width: 450px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -3.6vh; } }
@media screen and (max-height: 900px) and (max-width: 450px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -3.8vh; } }
@media screen and (max-height: 800px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -4.5vh; } }
@media screen and (max-height: 700px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -5vh; } }
@media screen and (max-height: 700px) and (max-width: 450px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -4vh; } }
@media screen and (max-height: 600px) {
  .anniversary-07-wrapper .bfcmflashsale-top .page-width1600 .flashdategroup .date-item:before {
    top: -6vh; } }
#shopify-section-anniversary-keibar-10th {
  position: relative;
  top: 0;
  z-index: 4;
  width: 100%;
  display: none;
  transform: translate3d(0, -1px, 0); }

.anniversary-10-topbar-kei ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto;
  flex: 1;
  align-items: center; }

.anniversary-10-topbar-svg svg {
  display: block; }

.anniversary-10-topbar-svg01 {
  /* margin: 0 15% 0 10%; */
  margin-left: 10%;
  position: relative; }

.template-10th-anniversary .sticky--active {
  position: unset; }

.anniversary-10-topbar-kei ul li span {
  position: absolute;
  display: block;
  top: 0;
  width: 0;
  height: 100%;
  z-index: 0;
  background-color: #4F2A13; }

.nav-toggle-kei {
  display: none;
  background-color: initial;
  background-image: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  touch-action: manipulation; }

@media screen and (max-width: 1024px) {
  .page-container {
    overflow: hidden; }

  #shopify-section-footer {
    overflow: unset; }

  div#shopify-section-anniversary-10-10th {
    overflow: unset; }

  .sticky--active {
    position: hidden; }

  .anniversary-10-topbar-kei ul {
    display: block;
    margin: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 70px, 0 70px);
    clip-path: polygon(0 0, 100% 0, 100% 70px, 0 70px);
    height: 0; }

  .anniversary-10-topbar-kei ul li:first-child {
    width: 100%; }

  .anniversary-10-topbar-kei ul li {
    list-style: none;
    width: 100%;
    padding: 0%;
    height: unset;
    white-space: nowrap;
    background: #1F1E21;
    position: relative;
    height: 70px; }

  .anniversary-10-topbar-kei ul li a {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 1;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding-left: 20%;
    height: 100%;
    justify-content: center; }

  .an10tbkei1s {
    justify-content: flex-start !important;
    flex-direction: column;
    padding-right: 0;
    width: 100%;
    align-items: center !important; }

  .anniversary-10-topbar-svg01 {
    margin-left: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start; }

  .anniversary-10-topbar-svg01:before {
    left: -83%;
    background-size: 35%;
    background-repeat: no-repeat;
    background-position: center; }

  #shopify-section-anniversary-keibar-10th {
    display: none;
    position: fixed;
    top: 0;
    z-index: 9999999; }

  #shopify-section-anniversary-keibar-10th .anniversary-10-topbar-kei {
    display: none; }

  #shopify-section-anniversary-keibar-10th .wap-topbarkei {
    display: block; }

  .wap-topbarkei ul li a.topbarullia00::before {
    display: none; }

  .wap-topbarkei-svg {
    position: absolute;
    left: 5%;
    /* top: 50%; */
    z-index: 1;
    /* transform: translateY(-50%); */
    line-height: 7.8; }

  .wap-topbarkei ul {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s; }

  .anniversary-10-topbar-kei ul li + li {
    border-top: 1px solid #66381b; }

  .anniversary-10-topbar-kei {
    position: relative; }

  .anniversary-10-topbar-kei ul.nav--expanded {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    height: 100%; }

  .anniversary-10-topbar-kei ul li.activeuuu {
    position: absolute !important;
    top: 0;
    z-index: 1; }

  .anniversary-10-topbar-kei ul li:first-child.activeuuu {
    position: relative !important; }

  .anniversary-10-topbar-kei ul.nav--expanded li.activeuuu {
    position: relative !important; }

  .anniversary-10-topbar-kei ul.nav--expanded li a.topbarullia00::before {
    display: none; } }
@media screen and (max-width: 768px) {
  .anniversary-10-topbar-svg01:before {
    left: -125%; }

  .anniversary-10-topbar-kei ul li a.topbarullia00:before {
    left: 0; } }
.anniversary-top-note {
  color: #e1ae6c;
  font-size: 0.8vw;
  position: absolute;
  left: 13%;
  bottom: 14%;
  width: 22%; }

@media only screen and (max-width: 1310px) {
  .anniversary-top-note {
    bottom: 8%; } }
.opensansfm-k {
  font-family: "Open Sans"; }

.kei-itembox-savemessage-bottom sub {
  font-size: 16px; }

li.topbarulli-2 a {
  padding-left: 12%; }

.nav-toggle-kei {
  display: block !important;
  height: 70px;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px; }

.sr-only-kei {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px; }

.nav-toggle__bottom-line-kei, .nav-toggle__top-line-kei {
  border-radius: 50px;
  height: 3px;
  position: absolute;
  transition: transform 0.3s ease;
  width: 16px;
  background: #D9D9D9; }

.nav-toggle__top-line-kei {
  right: 1rem;
  top: 24px;
  transform-origin: left top; }

.nav-toggle__mid-line-kei {
  border-radius: 50px;
  height: 3px;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: right;
  transition: transform 0.3s ease;
  width: 10px;
  background: #D9D9D9; }

.nav-toggle__bottom-line-kei {
  bottom: 24px;
  right: 1rem;
  transform-origin: left bottom; }

.nav-toggle--expanded .nav-toggle__top-line-kei {
  transform: rotate(45deg) translate(8px, 0px);
  -webkit-transform: rotate(45deg) translate(8px, 0px);
  -moz-transform: rotate(45deg) translate(8px, 0px);
  -ms-transform: rotate(45deg) translate(8px, 0px);
  -o-transform: rotate(45deg) translate(8px, 0px); }

.nav-toggle--expanded .nav-toggle__mid-line-kei {
  transform: translateY(-50%) scale(0); }

.nav-toggle--expanded .nav-toggle__bottom-line-kei {
  transform: rotate(-45deg) translate(6px, 2px);
  -webkit-transform: rotate(-45deg) translate(6px, 2px);
  -moz-transform: rotate(-45deg) translate(6px, 2px);
  -ms-transform: rotate(-45deg) translate(6px, 2px);
  -o-transform: rotate(-45deg) translate(6px, 2px); }

.wap-topbarkei .an10tbkei1s {
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important; }

.anniversary-abutton {
  position: relative;
  overflow: hidden; }

.anniversary-abutton::before {
  content: "";
  position: absolute;
  display: block;
  width: 200px;
  height: 15px;
  background: rgba(255, 255, 255, 0.2);
  transition: 1.2s;
  -webkit-transition: 1.2s;
  -moz-transition: 1.2s;
  -ms-transition: 1.2s;
  -o-transition: 1.2s;
  transform: translateX(-100%) rotateZ(110deg);
  -webkit-transform: translateX(-100%) rotateZ(110deg);
  -moz-transform: translateX(-100%) rotateZ(110deg);
  -ms-transform: translateX(-100%) rotateZ(110deg);
  -o-transform: translateX(-100%) rotateZ(110deg); }

.anniversary-abutton:hover::before {
  left: unset;
  transform: translateX(130%) rotateZ(110deg);
  -webkit-transform: translateX(130%) rotateZ(110deg);
  -moz-transform: translateX(130%) rotateZ(110deg);
  -ms-transform: translateX(130%) rotateZ(110deg);
  -o-transform: translateX(130%) rotateZ(110deg); }

.p7-limited-offer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 12px;
  align-items: center;
  margin-top: 5px;
  white-space: nowrap; }

.p7-limited-offer .toplimited-offer {
  background: #981F24;
  border-radius: 50px;
  padding: 0 4px;
  vertical-align: middle; }

.p7-limited-offer .lastlimited-offer {
  background: #E1AE6C;
  border-radius: 50px;
  color: #981F24;
  padding: 0 4px;
  margin-left: 5px; }

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .site-footer-10th-5 {
    padding-left: 20%; } }
.rte__table-wrapper td {
  vertical-align: top; }

.contact-form .temp-tips {
  text-align: center;
  padding: 4vw 0;
  font-size: 16px; }

.contact-form .temp-tips a {
  text-decoration: underline;
  font-weight: 700; }

@media only screen and (max-width: 590px) {
  .contact-form .temp-tips {
    padding: 10vw 4vw 0; } }
@media only screen and (min-width: 1000px) and (max-width: 1100px) {
  .discount_content_flex {
    display: flex;
    align-items: center; } }
@media screen and (max-width: 768px) {
  .model-viewer-new {
    width: 450px !important;
    height: 450px !important;
    top: 60%; }

  /*   .model-viewer-new #default-progress-bar > .bar{top:8%!important;} */ }
@media only screen and (max-width: 590px) {
  .model-viewer-new {
    top: unset;
    transform: translateX(-50%); } }
.error-popup {
  display: none;
  position: fixed;
  width: 200px;
  height: 100px;
  z-index: 1000000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #a11b23;
  border: 1px solid #f2ca80;
  border-radius: 4px;
  color: #fff; }

.error-popup > .close-btn {
  position: absolute;
  right: 0; }

.error-popup > .popup-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%; }

@media (max-width: 1024px) and (min-width: 769px) {
  .support-bg {
    width: 98vw;
    padding: 30px 5px; }

  .support-bg .support-box .bottom-link span {
    font-size: 12px; }

  .support-bg .support-box p {
    font-size: 12px; } }
@media (max-width: 768px) {
  .pc-description-image {
    display: none !important; }

  .mobile-description-image {
    display: block !important; } }
@media (min-width: 768px) {
  .pc-description-image {
    display: block !important; }

  .mobile-description-image {
    display: none !important; } }
