@charset "UTF-8";
/*============================================================================
  Debut | Built with Shopify Slate

  Some things to know about this file:
    - Sass is compiled on Shopify's server so you don't need to convert it to CSS yourself
    - The output CSS is compressed and comments are removed
    - You cannot use native CSS/Sass @imports in this file without a build script
==============================================================================*/
/*================ 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
==============================================================================*/
/*============================================================================
  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
==============================================================================*/
/*============================================================================
  Return a color based on the brightness of an existing color.
  Need to pass in brightness because it is calculated with Liquid.
  @param {Number} $brightness
  @param {String} $color
  @example scss - Usage
    $focusColor: adaptiveColor(#000, 0);
  @example css - CSS Output
    $focusColor: #404040;
  @return {String}

  @adaptiveColor used for changing text
  @adaptiveBackgroundColor used for background colors where the change doesn't
  need to be as strong
==============================================================================*/
/*================ #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 ================*/
/*================ Responsive Show/Hide Helper ================*/
/*================ Responsive Text Alignment Helper ================*/
/*============================================================================
  Flexbox prefix mixins from Bourbon
    https://github.com/thoughtbot/bourbon/blob/master/app/assets/stylesheets/css3/_flex-box.scss
==============================================================================*/
/*================ VARIABLES ================*/
/*============================================================================
  Grid Breakpoints and Class Names
    - Do not change the variable names
    - Breakpoint pixel values are used in the window.theme.breakpoints object
    - These values are hard-copied within `search.js` and must be kept in sync!
==============================================================================*/
/*============================================================================
  Generate breakpoint-specific column widths and push classes
    - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
    - Default is no push classes
==============================================================================*/
/*================ Sizing Variables ================*/
/*================ Footer Variables ================*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ Drawers ================*/
/*================ Hero Slider ================*/
/*================ Gift Cards ================*/
/*================ Z-index ================*/
/*================ GLOBAL ================*/
/*============================================================================
  #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: 100%;
}

a {
  background-color: transparent;
}

b,
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;
}

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"], input[type="number"], input[type="email"], input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

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

/*============================================================================
  Fast Tap
  enables no-delay taps (FastClick-esque) on supporting browsers
==============================================================================*/
a,
button,
[role="button"],
input,
label,
select,
textarea {
  touch-action: manipulation;
}

/*============================================================================
  #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;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px;
}

.grid::after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 749px) {
  .grid {
    margin-left: -22px;
  }
}

.grid__item {
  float: left;
  padding-left: 30px;
  width: 100%;
}

@media only screen and (max-width: 749px) {
  .grid__item {
    padding-left: 22px;
  }
}

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

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

.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
  float: right;
}

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

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

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

.two-thirds {
  width: 66.66667%;
}

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

.two-quarters {
  width: 50%;
}

.three-quarters {
  width: 75%;
}

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

.two-fifths {
  width: 40%;
}

.three-fifths {
  width: 60%;
}

.four-fifths {
  width: 80%;
}

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

.two-sixths {
  width: 33.33333%;
}

.three-sixths {
  width: 50%;
}

.four-sixths {
  width: 66.66667%;
}

.five-sixths {
  width: 83.33333%;
}

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

.two-eighths {
  width: 25%;
}

.three-eighths {
  width: 37.5%;
}

.four-eighths {
  width: 50%;
}

.five-eighths {
  width: 62.5%;
}

.six-eighths {
  width: 75%;
}

.seven-eighths {
  width: 87.5%;
}

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

.two-tenths {
  width: 20%;
}

.three-tenths {
  width: 30%;
}

.four-tenths {
  width: 40%;
}

.five-tenths {
  width: 50%;
}

.six-tenths {
  width: 60%;
}

.seven-tenths {
  width: 70%;
}

.eight-tenths {
  width: 80%;
}

.nine-tenths {
  width: 90%;
}

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

.two-twelfths {
  width: 16.66667%;
}

.three-twelfths {
  width: 25%;
}

.four-twelfths {
  width: 33.33333%;
}

.five-twelfths {
  width: 41.66667%;
}

.six-twelfths {
  width: 50%;
}

.seven-twelfths {
  width: 58.33333%;
}

.eight-twelfths {
  width: 66.66667%;
}

.nine-twelfths {
  width: 75%;
}

.ten-twelfths {
  width: 83.33333%;
}

.eleven-twelfths {
  width: 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: 749px) {
  /* Whole */
  .small--one-whole {
    width: 100%;
  }
  /* Halves */
  .small--one-half {
    width: 50%;
  }
  /* Thirds */
  .small--one-third {
    width: 33.33333%;
  }
  .small--two-thirds {
    width: 66.66667%;
  }
  /* Quarters */
  .small--one-quarter {
    width: 25%;
  }
  .small--two-quarters {
    width: 50%;
  }
  .small--three-quarters {
    width: 75%;
  }
  /* Fifths */
  .small--one-fifth {
    width: 20%;
  }
  .small--two-fifths {
    width: 40%;
  }
  .small--three-fifths {
    width: 60%;
  }
  .small--four-fifths {
    width: 80%;
  }
  /* Sixths */
  .small--one-sixth {
    width: 16.66667%;
  }
  .small--two-sixths {
    width: 33.33333%;
  }
  .small--three-sixths {
    width: 50%;
  }
  .small--four-sixths {
    width: 66.66667%;
  }
  .small--five-sixths {
    width: 83.33333%;
  }
  /* Eighths */
  .small--one-eighth {
    width: 12.5%;
  }
  .small--two-eighths {
    width: 25%;
  }
  .small--three-eighths {
    width: 37.5%;
  }
  .small--four-eighths {
    width: 50%;
  }
  .small--five-eighths {
    width: 62.5%;
  }
  .small--six-eighths {
    width: 75%;
  }
  .small--seven-eighths {
    width: 87.5%;
  }
  /* Tenths */
  .small--one-tenth {
    width: 10%;
  }
  .small--two-tenths {
    width: 20%;
  }
  .small--three-tenths {
    width: 30%;
  }
  .small--four-tenths {
    width: 40%;
  }
  .small--five-tenths {
    width: 50%;
  }
  .small--six-tenths {
    width: 60%;
  }
  .small--seven-tenths {
    width: 70%;
  }
  .small--eight-tenths {
    width: 80%;
  }
  .small--nine-tenths {
    width: 90%;
  }
  /* Twelfths */
  .small--one-twelfth {
    width: 8.33333%;
  }
  .small--two-twelfths {
    width: 16.66667%;
  }
  .small--three-twelfths {
    width: 25%;
  }
  .small--four-twelfths {
    width: 33.33333%;
  }
  .small--five-twelfths {
    width: 41.66667%;
  }
  .small--six-twelfths {
    width: 50%;
  }
  .small--seven-twelfths {
    width: 58.33333%;
  }
  .small--eight-twelfths {
    width: 66.66667%;
  }
  .small--nine-twelfths {
    width: 75%;
  }
  .small--ten-twelfths {
    width: 83.33333%;
  }
  .small--eleven-twelfths {
    width: 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--one-eighth:nth-child(8n + 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: 750px) {
  /* Whole */
  .medium-up--one-whole {
    width: 100%;
  }
  /* Halves */
  .medium-up--one-half {
    width: 50%;
  }
  /* Thirds */
  .medium-up--one-third {
    width: 33.33333%;
  }
  .medium-up--two-thirds {
    width: 66.66667%;
  }
  /* Quarters */
  .medium-up--one-quarter {
    width: 25%;
  }
  .medium-up--two-quarters {
    width: 50%;
  }
  .medium-up--three-quarters {
    width: 75%;
  }
  /* Fifths */
  .medium-up--one-fifth {
    width: 20%;
  }
  .medium-up--two-fifths {
    width: 40%;
  }
  .medium-up--three-fifths {
    width: 60%;
  }
  .medium-up--four-fifths {
    width: 80%;
  }
  /* Sixths */
  .medium-up--one-sixth {
    width: 16.66667%;
  }
  .medium-up--two-sixths {
    width: 33.33333%;
  }
  .medium-up--three-sixths {
    width: 50%;
  }
  .medium-up--four-sixths {
    width: 66.66667%;
  }
  .medium-up--five-sixths {
    width: 83.33333%;
  }
  /* Eighths */
  .medium-up--one-eighth {
    width: 12.5%;
  }
  .medium-up--two-eighths {
    width: 25%;
  }
  .medium-up--three-eighths {
    width: 37.5%;
  }
  .medium-up--four-eighths {
    width: 50%;
  }
  .medium-up--five-eighths {
    width: 62.5%;
  }
  .medium-up--six-eighths {
    width: 75%;
  }
  .medium-up--seven-eighths {
    width: 87.5%;
  }
  /* Tenths */
  .medium-up--one-tenth {
    width: 10%;
  }
  .medium-up--two-tenths {
    width: 20%;
  }
  .medium-up--three-tenths {
    width: 30%;
  }
  .medium-up--four-tenths {
    width: 40%;
  }
  .medium-up--five-tenths {
    width: 50%;
  }
  .medium-up--six-tenths {
    width: 60%;
  }
  .medium-up--seven-tenths {
    width: 70%;
  }
  .medium-up--eight-tenths {
    width: 80%;
  }
  .medium-up--nine-tenths {
    width: 90%;
  }
  /* Twelfths */
  .medium-up--one-twelfth {
    width: 8.33333%;
  }
  .medium-up--two-twelfths {
    width: 16.66667%;
  }
  .medium-up--three-twelfths {
    width: 25%;
  }
  .medium-up--four-twelfths {
    width: 33.33333%;
  }
  .medium-up--five-twelfths {
    width: 41.66667%;
  }
  .medium-up--six-twelfths {
    width: 50%;
  }
  .medium-up--seven-twelfths {
    width: 58.33333%;
  }
  .medium-up--eight-twelfths {
    width: 66.66667%;
  }
  .medium-up--nine-twelfths {
    width: 75%;
  }
  .medium-up--ten-twelfths {
    width: 83.33333%;
  }
  .medium-up--eleven-twelfths {
    width: 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--one-eighth:nth-child(8n + 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;
  }
}

/*================ Build Grid Push Classes ================*/
@media only screen and (max-width: 749px) {
  /* Halves */
  .small--push-one-half {
    left: 50%;
  }
  /* Thirds */
  .small--push-one-third {
    left: 33.33333%;
  }
  .small--push-two-thirds {
    left: 66.66667%;
  }
  /* Quarters */
  .small--push-one-quarter {
    left: 25%;
  }
  .small--push-two-quarters {
    left: 50%;
  }
  .small--push-three-quarters {
    left: 75%;
  }
  /* Fifths */
  .small--push-one-fifth {
    left: 20%;
  }
  .small--push-two-fifths {
    left: 40%;
  }
  .small--push-three-fifths {
    left: 60%;
  }
  .small--push-four-fifths {
    left: 80%;
  }
  /* Sixths */
  .small--push-one-sixth {
    left: 16.66667%;
  }
  .small--push-two-sixths {
    left: 33.33333%;
  }
  .small--push-three-sixths {
    left: 50%;
  }
  .small--push-four-sixths {
    left: 66.66667%;
  }
  .small--push-five-sixths {
    left: 83.33333%;
  }
  /* Eighths */
  .small--push-one-eighth {
    left: 12.5%;
  }
  .small--push-two-eighths {
    left: 25%;
  }
  .small--push-three-eighths {
    left: 37.5%;
  }
  .small--push-four-eighths {
    left: 50%;
  }
  .small--push-five-eighths {
    left: 62.5%;
  }
  .small--push-six-eighths {
    left: 75%;
  }
  .small--push-seven-eighths {
    left: 87.5%;
  }
  /* Tenths */
  .small--push-one-tenth {
    left: 10%;
  }
  .small--push-two-tenths {
    left: 20%;
  }
  .small--push-three-tenths {
    left: 30%;
  }
  .small--push-four-tenths {
    left: 40%;
  }
  .small--push-five-tenths {
    left: 50%;
  }
  .small--push-six-tenths {
    left: 60%;
  }
  .small--push-seven-tenths {
    left: 70%;
  }
  .small--push-eight-tenths {
    left: 80%;
  }
  .small--push-nine-tenths {
    left: 90%;
  }
  /* Twelfths */
  .small--push-one-twelfth {
    left: 8.33333%;
  }
  .small--push-two-twelfths {
    left: 16.66667%;
  }
  .small--push-three-twelfths {
    left: 25%;
  }
  .small--push-four-twelfths {
    left: 33.33333%;
  }
  .small--push-five-twelfths {
    left: 41.66667%;
  }
  .small--push-six-twelfths {
    left: 50%;
  }
  .small--push-seven-twelfths {
    left: 58.33333%;
  }
  .small--push-eight-twelfths {
    left: 66.66667%;
  }
  .small--push-nine-twelfths {
    left: 75%;
  }
  .small--push-ten-twelfths {
    left: 83.33333%;
  }
  .small--push-eleven-twelfths {
    left: 91.66667%;
  }
}

@media only screen and (min-width: 750px) {
  /* 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%;
  }
}

/*================ #Helper Classes ================*/
.clearfix {
  *zoom: 1;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

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

.visibility-hidden {
  visibility: hidden;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.visually-hidden--static {
  position: static !important;
}

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

.no-js:not(html) {
  display: none;
}

.no-js .no-js:not(html) {
  display: block;
}

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

.hide {
  display: none !important;
}

/*============================================================================
  Skip to content button
    - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px;
  opacity: 1;
  transition: none;
}

/*=============== Lazy loading ===================*/
.box {
  background: no-repeat;
  background-color: #f7f7f7;
  background-size: contain;
}

.ratio-container {
  position: relative;
}

.ratio-container:after {
  content: "";
  display: block;
  height: 0;
  width: 100%;
  /* 16:9 = 56.25% = calc(9 / 16 * 100%) */
  padding-bottom: 50%;
  content: "";
}

.ratio-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*================ #Basic Styles ================*/
.page-width {
  *zoom: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.page-width::after {
  content: "";
  display: table;
  clear: both;
}

.main-content {
  display: block;
  padding-top: 35px;
}

@media only screen and (min-width: 750px) {
  .main-content {
    padding-top: 55px;
  }
}

/*================ Typography ================*/
blockquote {
  font-size: em(18px);
  font-style: normal;
  text-align: center;
  padding: 0 30px;
  margin: 0;
}

.rte blockquote {
  border-width: 1px 0;
  border-style: solid;
  padding: 30px 0;
}

blockquote cite {
  display: block;
  font-size: 0.85em;
}

blockquote cite::before {
  content: "\2014 \0020";
}

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

pre {
  overflow: auto;
}

body,
input,
textarea,
button,
select {
  font-size: 15px;
  font-family: Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

/*================ Headings ================*/
h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

h1 a, .h1 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, .h1 {
  text-transform: none;
  letter-spacing: 0;
}

h2, .h2 {
  text-transform: uppercase;
}

h3, .h3 {
  text-transform: none;
  letter-spacing: 0;
}

/*================ RTE headings ================*/
.rte:last-child {
  margin-bottom: 0;
}

.rte h1, .rte .h1,
.rte h2,
.rte .h2,
.rte h3,
.rte .h3,
.rte h4,
.rte .h4,
.rte h5,
.rte .h5,
.rte h6,
.rte .h6 {
  margin-top: 55px;
  margin-bottom: 27.5px;
}

.rte h1:first-child, .rte .h1:first-child,
.rte h2:first-child,
.rte .h2:first-child,
.rte h3:first-child,
.rte .h3:first-child,
.rte h4:first-child,
.rte .h4:first-child,
.rte h5:first-child,
.rte .h5:first-child,
.rte h6:first-child,
.rte .h6:first-child {
  margin-top: 0;
}

.rte li {
  margin-bottom: 4px;
  list-style: inherit;
}

.rte li:last-child {
  margin-bottom: 0;
}

.rte-setting {
  margin-bottom: 19.44444px;
}

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

/*================ Paragraph styles ================*/
p {
  margin: 0 0 19.44444px;
}

@media only screen and (max-width: 749px) {
  p {
    font-size: em(14);
  }
}

p:last-child {
  margin-bottom: 0;
}

/*================ Lists ================*/
li {
  list-style: none;
}

/*================ Misc styles ================*/
.fine-print {
  font-size: em(14);
  font-style: italic;
}

.txt--minor {
  font-size: 80%;
}

.txt--emphasis {
  font-style: italic;
}

.address {
  border: 1px solid;
  padding: 80px 0 0 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-color: #eeeeee;
}

.address p {
  text-align: left;
}

.form-vertical label {
  font-size: 12px;
}

.form-vertical select {
  font-size: 12px;
}

.form-vertical input {
  font-size: 12px;
  margin-bottom: 30px;
}

.form-vertical .text-link .address-edit-toggle {
  color: #6b99cf;
  font-size: 12px;
}

/*============================================================================
  Animation Classes and Keyframes
==============================================================================*/
.is-transitioning {
  display: block !important;
  visibility: visible !important;
}

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

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

svg.icon:not(.icon--full-color) .icon-error__symbol,
symbol.icon:not(.icon--full-color) .icon-error__symbol {
  fill: #ffffff;
}

/*============================================================================
  A generic way to visually hide content while
  remaining accessible to screen readers (h5bp.com)
==============================================================================*/
/*================ Payment Icons ================*/
.payment-icons {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
}

@media only screen and (max-width: 749px) {
  .payment-icons {
    line-height: 40px;
  }
}

.payment-icons .icon {
  width: 38px;
  height: 24px;
  fill: inherit;
}

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

@media only screen and (min-width: 750px) {
  .social-icons .icon {
    width: 25px;
    height: 25px;
  }
}

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

/*================ Spinner Icon ================*/
.icon-spinner {
  -moz-animation: spin 500ms infinite linear;
  -o-animation: spin 500ms infinite linear;
  -webkit-animation: spin 500ms infinite linear;
  animation: spin 500ms infinite linear;
}

/*================ Error Icons ================*/
/*================ #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;
}

/*================ #Rich Text Editor ================*/
.rte img {
  height: auto;
}

.rte table {
  table-layout: fixed;
}

.rte ul,
.rte ol {
  margin: 0 0 17.5px 35px;
}

.rte ul.list--inline,
.rte ol.list--inline {
  margin-left: 0;
}

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

.rte ul ul {
  list-style: circle outside;
}

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

.rte a:not(.btn) {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

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

.scrollable-wrapper {
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*================ #Links and Buttons ================*/
a {
  color: #000;
  text-decoration: none;
}

a[href^="tel"] {
  color: inherit;
}

/*================ Buttons ================*/
.btn {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 8px 15px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: normal;
}

.btn:not([disabled]):hover, .btn:focus {
  color: #fff;
  background-color: #447ec3;
}


@media only screen and (min-width: 750px) {
  .btn {
    padding: 10px 18px;
  }
}

.btn .icon-arrow-right,
.btn .icon-arrow-left {
  height: 9px;
}

.btn[disabled], .btn[aria-disabled] {
  cursor: default;
  opacity: 0.5;
}

.login-btn {
  padding: 14px 77px;
  border-radius: 0;
}

.btn--small {
  padding: 8px 10px;
  font-size: em(12);
  line-height: 1;
}

/*================ Button variations ================*/
@media only screen and (max-width: 749px) {
  .btn--small-wide {
    padding-left: 50px;
    padding-right: 50px;
  }
}

.btn--link {
  background-color: transparent;
  border: 0;
  margin: 0;
  text-align: left;
}

.btn--link .icon {
  vertical-align: middle;
}

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

.btn--has-icon-after .icon {
  margin-left: 10px;
}

.btn--has-icon-before .icon {
  margin-right: 10px;
}

/*================ Force an input/button to look like a text link ================*/
.text-link {
  display: inline;
  border: 0 none;
  background: none;
  padding: 0;
  margin: 0;
  color: #6b99cf;
  font-size: 12px;
}

.text-link--accent {
  color: #6b99cf;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.text-link--accent:not([disabled]):hover, .text-link--accent:focus {
  color: #447ec3;
}

/*================ Return to collection/blog links ================*/
.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/*================ #Tables ================*/

table {
  margin-bottom: 27.5px;
}

table a {
    border-bottom: 1px solid currentColor;
}

th,
td {
  text-align: left;
  border: 1px solid transparent;
  padding: 10px 14px;
}

/*============================================================================
  Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 749px) {
  .responsive-table thead {
    display: none;
  }
  .responsive-table th,
  .responsive-table td {
    float: left;
    clear: left;
    width: 100%;
    text-align: right;
    padding: 27.5px;
    border: 0;
    margin: 0;
  }
  .responsive-table th::before,
  .responsive-table td::before {
    content: attr(data-label);
    float: left;
    text-align: center;
    font-size: 12px;
    padding-right: 10px;
    font-weight: normal;
  }
  .responsive-table__row + .responsive-table__row,
  tfoot > .responsive-table__row:first-child {
    position: relative;
    margin-top: 10px;
    padding-top: 55px;
  }
  .responsive-table__row + .responsive-table__row::after,
  tfoot > .responsive-table__row:first-child::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 27.5px;
    right: 27.5px;
  }
}

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

.video-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  height: auto;
}

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

/*================ Forms ================*/
form {
  margin: 0;
}

legend {
  border: 0;
  padding: 0;
}

button {
  cursor: pointer;
}

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

label {
  display: block;
  margin-bottom: 5px;
}

@media only screen and (max-width: 749px) {
  label {
    font-size: em(13px);
  }
}

[type="radio"] + label,
[type="checkbox"] + label {
  display: inline-block;
  margin-bottom: 0;
}

label[for] {
  cursor: pointer;
}

input,
textarea,
select {
  max-width: 100%;
  line-height: 1.2;
}

input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
  background-color: #f4f4f4;
  border-color: #f4f4f4;
}

input.hidden-placeholder::-webkit-input-placeholder,
textarea.hidden-placeholder::-webkit-input-placeholder,
select.hidden-placeholder::-webkit-input-placeholder {
  color: transparent;
}

input.hidden-placeholder::-moz-placeholder,
textarea.hidden-placeholder::-moz-placeholder,
select.hidden-placeholder::-moz-placeholder {
  color: transparent;
}

input.hidden-placeholder:-ms-input-placeholder,
textarea.hidden-placeholder:-ms-input-placeholder,
select.hidden-placeholder:-ms-input-placeholder {
  color: transparent;
}

input.hidden-placeholder::-ms-input-placeholder,
textarea.hidden-placeholder::-ms-input-placeholder,
select.hidden-placeholder::-ms-input-placeholder {
  opacity: 1;
}

.product-form input, .product-form
textarea, .product-form
select {
  min-height: 44px;
}

textarea {
  min-height: 100px;
}

/*================ Error styles ================*/
input.input--error,
select.input--error,
textarea.input--error {
  border-color: #d20000;
  background-color: #fff8f8;
  color: #d20000;
  margin-bottom: 11.66667px;
}

.input-error-message {
  display: flex;
  line-height: 1.3;
}

.input-error-message .icon {
  width: 1em;
  height: 1em;
  margin-right: em(10px);
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url({{ "ico-select.svg" | asset_url }});
  background-repeat: no-repeat;
  background-position: right 10px center;
  line-height: 1.2;
  padding-right: 28px;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer;
  padding-top: 8px;
  padding-left: 15px;
  padding-bottom: 8px;
}

@media only screen and (min-width: 750px) {
  select {
    padding-top: 10px;
    padding-left: 18px;
    padding-bottom: 10px;
  }
}

.select-group {
  position: relative;
  z-index: 2;
}

.select-group select {
  background-image: none;
  background-color: transparent;
}

.select-group .icon {
  height: calc(8em / 16);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(8em / 16);
  z-index: -1;
}

.select-label {
  font-size: 0.8em;
  text-transform: uppercase;
}

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

/*================ Labels ================*/
.label--error {
  color: #d20000;
}

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

@media only screen and (min-width: 750px) {
  input,
  textarea {
    padding: 10px 18px;
  }
}

/*================ Vertical forms ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 19.44444px;
}

.form-vertical input.input--error,
.form-vertical select.input--error,
.form-vertical textarea.input--error {
  margin-bottom: 11.66667px;
}

.form-vertical [type="radio"],
.form-vertical [type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 5px;
}

.form-vertical [type="submit"],
.form-vertical .btn {
  display: inline-block;
  width: auto;
}

/*================ Single field forms ================*/
.form-single-field {
  margin: 0 auto 55px;
  max-width: 35rem;
}

.form-single-field .input--error {
  margin-bottom: 0;
}

/*================ Form feedback messages ================*/
/*================ Input Groups ================*/
.input-group {
  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-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.form-vertical .input-group {
  margin-bottom: 55px;
}

.input-group--nowrap {
  flex-wrap: nowrap;
}

.input-group--error {
  margin-bottom: 11.66667px;
}

.input-group__field,
.input-group__field input,
.input-group__btn .btn {
  min-height: 42px;
}

@media only screen and (min-width: 750px) {
  .input-group__field,
  .input-group__field input,
  .input-group__btn .btn {
    min-height: 46px;
  }
}

.input-group__field {
  -ms-flex-preferred-size: 15rem;
  -webkit-flex-basis: 15rem;
  -moz-flex-basis: 15rem;
  flex-basis: 15rem;
  flex-grow: 9999;
  margin-bottom: 1rem;
  border-radius: 2px 0 0 2px;
  text-align: left;
}

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

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

.input-group__field--connected {
  margin-bottom: 0;
}

.input-group__field--connected input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group__btn {
  flex-grow: 1;
}

.input-group__btn .btn {
  width: 100%;
  border-radius: 0 2px 2px 0;
}

/*================ #Site Nav and Dropdowns ================*/
.site-header__logo img {
  display: block;
}

.site-nav {
  position: relative;
  padding: 0;
  text-align: center;
  margin: 49px 0 38px 0;
}

.site-nav a {
  padding: 3px 10px;
}

.site-nav--centered {
  padding-bottom: 22px;
}

/*================ Site Nav Links ================*/
.site-nav__link {
  display: block;
  white-space: nowrap;
}

.site-nav--centered .menu-item a {
  padding-top: 0;
}

.site-nav__link .icon-chevron-down {
  width: calc(8em / 16);
  height: calc(8em / 16);
  margin-left: 0.5rem;
}

.site-nav__link.site-nav--active-dropdown {
  border-bottom: 1px solid transparent;
  z-index: 2;
}

.site-nav__label {
  border-bottom: 1px solid transparent;
}

.site-nav__link--button {
  border: none;
  background-color: transparent;
  padding: 3px 10px;
}

/*================ Dropdowns ================*/
.site-nav--has-dropdown {
  position: relative;
}

.site-nav--has-centered-dropdown {
  position: static;
}

.site-nav__dropdown {
  display: none;
  position: absolute;
  padding: 11px 30px 11px 0;
  margin: 0;
  text-align: left;
  left: -1px;
  top: 41px;
}

.site-nav__dropdown .site-nav__link {
  padding: 4px 15px 5px;
}

.site-nav--active-dropdown .site-nav__dropdown {
  display: block;
}

.site-nav__dropdown li {
  display: block;
}

.site-nav__dropdown--right:not(.site-nav__dropdown--centered) {
  right: 0;
  left: unset;
}

.site-nav__dropdown--left:not(.site-nav__dropdown--centered) {
  left: 0;
}

.site-nav__dropdown--centered {
  width: 100%;
  padding: 0;
  text-align: center;
}

/*================ Child list ================*/
.site-nav__childlist {
  display: inline-block;
  padding: 11px 17px;
  text-align: left;
}

.site-nav__childlist-grid {
  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;
  width: auto;
  margin-bottom: -15px;
}

.site-nav__childlist-item {
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-bottom: 15px;
}

.site-nav__child-link--parent {
  margin: 4px 0;
}

body.prevent-scrolling {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.page-width {
  padding-left: 55px;
  padding-right: 55px;
}

@media only screen and (max-width: 749px) {
  .page-width {
    padding-left: 22px;
    padding-right: 22px;
  }
}

.page-width h1, .page-width .h1 {
  font-size: 18px;
}

.icon_logout a {
  color: #6b99cf;
  vertical-align: bottom;
  font-size: 12px;
}

.icon_shopping a {
  color: #6b99cf;
  vertical-align: bottom;
  font-size: 12px;
}

.icon_shopping::before {
  content:url(../images/icon_shopping.svg);
  display:inline-block;
	width:1em;
  height:1em;
  background-size:contain;
  vertical-align: text-bottom;
}

.page-container {
  position: relative;
  overflow: hidden;
}

hr {
  border: 0;
}

.hr--small {
  padding: 10px 0;
  margin: 0;
}

.hr--invisible {
  border-bottom: 0;
}

.grid--table {
  display: table;
  table-layout: fixed;
  width: 100%;
}

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

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

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

.grid--half-gutters {
  margin-left: -15px;
}

.grid--half-gutters > .grid__item {
  padding-left: 15px;
}

.grid--double-gutters {
  margin-left: -60px;
}

.grid--double-gutters > .grid__item {
  padding-left: 60px;
}

.grid--flush-bottom {
  margin-bottom: -55px;
  overflow: auto;
}

.grid--flush-bottom > .grid__item {
  margin-bottom: 55px;
}

.drawer {
  display: none;
  position: fixed;
  -webkit-overflow-scrolling: touch;
  z-index: 9;
}

.js-drawer-open-top .drawer {
  display: block;
}

.drawer--top {
  width: 100%;
}

.js-drawer-open-top .drawer--top {
  display: flex;
  max-height: 100vh;
}

.drawer__title,
.drawer__close {
  display: table-cell;
  vertical-align: middle;
}

.drawer__close-button {
  background: none;
  border: 0 none;
  position: relative;
  right: -15px;
  height: 100%;
  width: 60px;
  padding: 0 20px;
  color: inherit;
  font-size: em(18);
}

.grid--view-items {
  overflow: auto;
}

.custom__item .grid-view-item {
  margin-bottom: 0;
}

.grid-view-item__title {
  margin-bottom: 0;
}

.grid-view-item__meta {
  margin-top: 8px;
}

.grid-view-item__link {
  display: block;
}

.grid-view-item__image-wrapper {
  position: relative;
  width: 100%;
}

.grid-view-item__image {
  display: block;
  margin: 0 auto;
  width: 100%;
}

.grid-view-item__image-wrapper .grid-view-item__image {
  position: absolute;
  top: 0;
}

.grid-view-item__image.lazyload {
  opacity: 0;
}

.list-view-item {
  margin-bottom: 22px;
}

.list-view-item:last-child {
  margin-bottom: 0;
}

.list-view-item__link {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.list-view-item__image {
  max-height: 95px;
}

.list-view-item__image-column {
  display: table-cell;
  vertical-align: middle;
  width: 130px;
  min-height: 44px;
}

@media only screen and (max-width: 749px) {
  .list-view-item__image-column {
    width: 85px;
  }
}

.list-view-item__image-wrapper {
  position: relative;
  margin-right: 35px;
}

@media only screen and (max-width: 749px) {
  .list-view-item__image-wrapper {
    margin-right: 17.5px;
  }
}

.list-view-item__title-column {
  display: table-cell;
  vertical-align: middle;
}

.list-view-item__price-column {
  display: table-cell;
  text-align: right;
  vertical-align: middle;
  width: 20%;
}

.list-view-item__price-column .price {
  align-items: flex-end;
}

.list-view-item__price-column .price dd {
  margin: 0 0 0 0.5em;
}

.list-view-item__price-column .price__regular,
.list-view-item__price-column .price__sale {
  flex-basis: 100%;
  justify-content: flex-end;
  margin-right: 0;
}

/*============================================================================
  Slick slider overrides
==============================================================================*/
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/*================ Slick dots and prev/next pagination ================*/
.slideshow__arrows .slick-dots {
  margin: 0 0.75rem;
}

.slideshow__arrows .slick-dots li {
  margin: 0;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  margin-left: 6px;
}

.slideshow__arrows .slick-dots li:first-of-type {
  margin-left: 0;
}

@media only screen and (min-width: 750px) {
  .slideshow__arrows .slick-dots li {
    width: 12px;
    height: 12px;
    margin-left: 8px;
  }
}

.slideshow__arrows .slick-dots li button,
.slideshow__arrows .slick-dots li a {
  position: relative;
  padding: 0;
  width: 10px;
  height: 10px;
}

@media only screen and (min-width: 750px) {
  .slideshow__arrows .slick-dots li button,
  .slideshow__arrows .slick-dots li a {
    width: 12px;
    height: 12px;
  }
}

.slideshow__arrows .slick-dots li button::before,
.slideshow__arrows .slick-dots li a::before {
  text-indent: -9999px;
  background-color: transparent;
  border-radius: 100%;
  background-color: currentColor;
  width: 10px;
  height: 10px;
  opacity: 0.4;
  transition: all 0.2s;
}

@media only screen and (min-width: 750px) {
  .slideshow__arrows .slick-dots li button::before,
  .slideshow__arrows .slick-dots li a::before {
    width: 12px;
    height: 12px;
  }
}

.slideshow__arrows .slick-dots li.slick-active button::before,
.slideshow__arrows .slick-dots li.slick-active a::before,
.slideshow__arrows .slick-dots li.slick-active-mobile button::before,
.slideshow__arrows .slick-dots li.slick-active-mobile a::before {
  opacity: 1;
}

.slideshow__arrows .slick-dots li button:active::before,
.slideshow__arrows .slick-dots li .slick-active a::before,
.slideshow__arrows .slick-dots li .slick-active-mobile a::before {
  opacity: 0.7;
}

/*================ Index sections ================*/
.index-section {
  padding-top: 35px;
  padding-bottom: 35px;
}

@media only screen and (min-width: 750px) {
  .index-section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

.index-section:first-child {
  padding-top: 0;
  border-top: 0;
}

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

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

@media only screen and (min-width: 750px) {
  [class*="index-section--flush"] + [class*="index-section--flush"] {
    margin-top: -110px;
  }
}

.index-section--flush:first-child {
  margin-top: -35px;
}

@media only screen and (min-width: 750px) {
  [class*="index-section--flush"]:first-child {
    margin-top: -55px;
  }
}

.index-section--flush:last-child {
  margin-bottom: -35px;
}

@media only screen and (min-width: 750px) {
  [class*="index-section--flush"]:last-child {
    margin-bottom: -55px;
  }
}

@media only screen and (max-width: 749px) {
  .index-section--featured-product:first-child {
    margin-top: -12px;
  }
}

@media only screen and (max-width: 749px) {
  .index-section--slideshow + .index-section--flush {
    margin-top: 0.4rem;
  }
}

.placeholder-svg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

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

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

.placeholder-background .icon {
  border: 0;
}

.placeholder-background--animation {
  -moz-animation: placeholder-background-loading 1.5s infinite linear;
  -o-animation: placeholder-background-loading 1.5s infinite linear;
  -webkit-animation: placeholder-background-loading 1.5s infinite linear;
  animation: placeholder-background-loading 1.5s infinite linear;
}

.no-js .placeholder-background--animation {
  display: none;
}

.image-bar__content .placeholder-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.plyr.plyr--full-ui.plyr--video {
  background-color: transparent;
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line */
}

.plyr.plyr--full-ui.plyr--video .plyr__video-wrapper {
  background-color: transparent;
}

.plyr.plyr--full-ui.plyr--video:fullscreen .plyr__video-wrapper .plyr.plyr--full-ui.plyr--video:fullscreen .plyr__poster {
  background-color: #000;
}

.plyr.plyr--full-ui.plyr--video:-webkit-full-screen .plyr__video-wrapper,
.plyr.plyr--full-ui.plyr--video:-webkit-full-screen .plyr__poster {
  background-color: #000;
}

.plyr.plyr--full-ui.plyr--video:-moz-full-screen .plyr__video-wrapper,
.plyr.plyr--full-ui.plyr--video:-moz-full-screen .plyr__poster {
  background-color: #000;
}

.plyr.plyr--full-ui.plyr--video:-ms-fullscreen .plyr__video-wrapper,
.plyr.plyr--full-ui.plyr--video:-ms-fullscreen .plyr__poster {
  background-color: #000;
}

.plyr.plyr--full-ui.plyr--video .plyr--fullscreen-fallback .plyr__video-wrapper,
.plyr.plyr--full-ui.plyr--video .plyr--fullscreen-fallback .plyr__poster {
  background-color: #000;
}

/*================ TEMPLATES ================*/
/*============= Templates | Password =============*/
.password-page {
  display: table;
  height: 100%;
  width: 100%;
  background-size: cover;
}

.password-form-message {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.password-header {
  height: 85px;
  display: table-row;
}

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

.password-login {
  padding: 0 30px;
  text-align: right;
}

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

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

.password-content__title {
  display: block;
}

.password-main {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

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

.password-message {
  max-width: 500px;
}

.product-single {
  overflow-anchor: none;
}

.product-single__title {
  margin-bottom: 0.5rem;
}

.product__price,
.featured-product__price {
  font-size: 1.25em;
}

.product__policies {
  margin: 0.4rem 0 1rem 0;
}

.recover-password-flex {
  display: flex;
  justify-content: center;
}

/*================ Add to cart form ================*/
.product-form {
  width: auto;
  padding-top: 2rem;
}

.product-form__controls-group {
  display: flex;
  flex-wrap: wrap;
}

.product-form__controls-group--submit {
  margin-top: 0px;
}

.product-form__controls-group ~ .product-form__controls-group--submit {
  margin-top: 15px;
}

.product-form__item {
  flex-grow: 0;
  flex-basis: 100%;
  margin-bottom: 10px;
  padding: 0;
}

@media only screen and (min-width: 990px) {
  .product-form__item {
    flex-basis: 50%;
    padding: 0 5px;
  }
  .product-single--large-image .product-form__item {
    flex-basis: 100%;
  }
}

.product-form__item label {
  display: block;
}

.product-form--hide-variant-labels .product-form__item label {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.product-form__item--submit {
  -webkit-flex: 1 1 300px;
  -moz-flex: 1 1 300px;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
}

.product-form__item--no-variants {
  max-width: 400px;
}

.product-form__item--payment-button {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
}

@media only screen and (min-width: 990px) {
  .product-single--small-media .product-form__item--payment-button,
  .product-single--full-media .product-form__item--payment-button {
    display: inline-flex;
    -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;
  }
}

.product-form__item--payment-button.product-form__item--no-variants {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
}

.product-form--variant-sold-out .shopify-payment-button {
  display: none;
}

.product-form--payment-button-no-variants {
  max-width: 25rem;
}

.product-form__variants {
  display: none;
}

.no-js .product-form__variants {
  display: block;
}

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

.product-form__input.input--error {
  margin-bottom: 0;
}

.product-form__input--quantity {
  max-width: 5rem;
}

.product-form__error-message-wrapper {
  display: flex;
  flex-basis: 100%;
  padding: 0.5rem 0;
  margin: 0 em(5px) 20px;
}

.product-form__controls-group ~ .product-form__error-message-wrapper {
  margin-bottom: 0;
}

.product-form__error-message-wrapper--has-payment-button {
  padding: 0.5rem 0;
}

.product-form__error-message-wrapper--hidden {
  display: none;
}

.product-form__error-message {
  margin-left: 0.5rem;
  line-height: 1.2;
}

.product-form__cart-submit {
  display: block;
  width: 100%;
  line-height: 1.4;
  padding-left: 5px;
  padding-right: 5px;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 10px;
  min-height: 44px;
}

.product-single--small-media .product-form__cart-submit,
.product-single--full-media .product-form__cart-submit {
  -webkit-flex: 50%;
  -moz-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
  margin-right: 10px;
}

.product-single--small-media .shopify-payment-button,
.product-single--full-media .shopify-payment-button {
  -webkit-flex: 50%;
  -moz-flex: 50%;
  -ms-flex: 50%;
  flex: 50%;
}

.shopify-payment-button .shopify-payment-button__button--branded {
  overflow: hidden;
}

.shopify-payment-button .shopify-payment-button__more-options {
  margin: 16px 0 10px;
  text-decoration: underline;
}

@media only screen and (min-width: 750px) {
  .product-form__cart-submit--small {
    max-width: 300px;
  }
}

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

.product__quantity-error .icon {
  margin-right: 1rem;
}

/*================ Product Images ================*/
.product-single__thumbnail {
  display: block;
  margin: -2px 0 8px;
  min-height: 44px;
  position: relative;
  border: 2px solid transparent;
}

.product-single__thumbnail:not([disabled]):not(.active-thumb):hover {
  opacity: 0.8;
}

.product-single__thumbnail-image {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  padding: 2px;
}

.product-single__thumbnail-badge {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 6px;
  top: 6px;
  pointer-events: none;
}

@media only screen and (min-width: 750px) {
  .product-single__thumbnail-badge {
    width: 26px;
    height: 26px;
  }
}

.product-single__thumbnail-badge .icon {
  width: 100%;
  height: 100%;
  vertical-align: baseline;
}

.product-featured-media {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
}

.no-js .product-featured-media {
  position: relative;
}

.product-single__media-wrapper {
  margin: 0 auto;
  width: 100%;
}

.product-single__media {
  margin: 0 auto;
  min-height: 1px;
  width: 100%;
  height: 100%;
  position: relative;
}

.product-single__media iframe,
.product-single__media model-viewer,
.product-single__media .shopify-model-viewer-ui,
.product-single__media img,
.product-single__media > video,
.product-single__media .plyr,
.product-single__media .media-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
}

.product-single__media iframe,
.product-single__media .media-video,
.product-single__media model-viewer,
.product-single__media .shopify-model-viewer-ui,
.product-single__media .media-item,
.product-single__media .plyr,
.product-single__media .plyr__video-wrapper {
  height: 100%;
}

.product-single__view-in-space {
  border: none;
  width: 100%;
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
}

.product-single__view-in-space[data-shopify-xr-hidden] {
  visibility: hidden;
}

@media only screen and (min-width: 750px) {
  .product-single__view-in-space[data-shopify-xr-hidden] {
    display: none;
  }
}

.product-single__view-in-space svg.icon {
  height: em(25);
  width: em(25);
  margin-top: -3px;
  margin-right: 2.43px;
  fill: transparent;
}

.product-single__view-in-space svg.icon .icon-3d-badge-full-color-outline {
  stroke: none;
}

.product-single__view-in-space svg.icon .icon-3d-badge-full-color-element {
  opacity: 1;
}

.product-single__view-in-space-text {
  border-bottom: 1px solid transparent;
}

@media only screen and (max-width: 749px) {
  .page-id-8 .main-content {
    padding-top: 22px;
  }
  .product-single__media-group {
    position: relative;
  }
  .thumbnails-wrapper {
    position: relative;
    top: 10px;
    text-align: center;
    margin: 0 2px 30px 2px;
  }
  .thumbnails-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .thumbnails-slider__btn .icon {
    height: 14px;
    width: 14px;
  }
  .thumbnails-slider__prev {
    left: -15px;
  }
  .thumbnails-slider__next {
    right: -15px;
  }
  .product-single__thumbnail {
    margin: 0 auto;
  }
}

.product-single__thumbnails {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-left: -9px;
  margin-right: -9px;
}

@media only screen and (max-width: 749px) {
  .product-single__thumbnails {
    margin-top: 0;
    justify-content: center;
  }
  .thumbnails-slider--active .product-single__thumbnails {
    display: none;
  }
  .thumbnails-slider--active .product-single__thumbnails.slick-initialized {
    display: block;
    margin: 0 auto;
    max-width: 75%;
  }
}

.product-single__thumbnails-item {
  flex: 0 0 25%;
  padding-left: 5px;
}

@media only screen and (max-width: 749px) {
  .product-single__thumbnails-item.slick-slide {
    padding-bottom: 10px;
    padding-left: 2.5px;
    padding-right: 2.5px;
    vertical-align: middle;
  }
  .thumbnails-slider--active .product-single__thumbnails-item.slick-slide {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media only screen and (min-width: 750px) {
  .product-single__thumbnails-item {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 750px) {
  .product-single__thumbnails-item--small {
    flex: 0 0 50%;
  }
}

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--small {
    flex: 0 0 33.33333%;
  }
}

@media only screen and (min-width: 750px) {
  .product-single__thumbnails-item--medium {
    flex: 0 0 33.33333%;
  }
}

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--medium {
    flex: 0 0 25%;
  }
}

@media only screen and (min-width: 750px) {
  .product-single__thumbnails-item--large {
    flex: 0 0 25%;
  }
}

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--large {
    flex: 0 0 20%;
  }
}

@media only screen and (min-width: 750px) {
  .product-single__thumbnails-item--full {
    flex: 0 0 20%;
  }
}

@media only screen and (min-width: 990px) {
  .product-single__thumbnails-item--full {
    flex: 0 0 12.5%;
  }
}

/*================ Template | Collections ================*/
.collection-hero {
  position: relative;
  overflow: hidden;
  margin-top: -55px;
  margin-bottom: 22px;
}

@media only screen and (min-width: 750px) {
  .collection-hero {
    margin-bottom: 35px;
  }
}

.collection-description {
  margin-bottom: 22px;
  margin-top: 22px;
}

@media only screen and (min-width: 750px) {
  .collection-description {
    margin-bottom: 35px;
    margin-top: 35px;
  }
}

.collection-hero__image {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  opacity: 1;
}

@media only screen and (max-width: 749px) {
  .collection-hero__image {
    height: 180px;
  }
}

.collection-hero__title-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.collection-hero__title {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  right: 0;
  top: 50%;
}

.blog-list-view .pagination {
  padding-top: 0;
}

.blog-filter {
  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-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.blog-filter .icon-chevron-down {
  width: calc(10em / 16);
  height: calc(10em / 16);
  right: 0.7rem;
}

.blog-filter__label {
  margin: 0 1rem 0 0;
}

.cart-header {
  margin-bottom: 0.7rem;
  text-align: center;
}

@media only screen and (min-width: 750px) {
  .cart-header {
    margin-bottom: 1.7rem;
  }
}

.cart-header__title {
  margin-bottom: 0.5rem;
}

@media only screen and (min-width: 750px) {
  .cart-header__title {
    margin-bottom: 1rem;
  }
}

/*================ Cart page ================*/
.cart th,
.cart td {
  border: 0;
}

td {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  th {
    font-family: Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
    font-weight: 400;
    font-size: 0.86667em;
    text-transform: uppercase;
    padding: 27.5px 22px;
    font-weight: bold;
  }


@media only screen and (max-width: 749px) {
  .cart td:nth-child(3),
  .cart th:nth-child(2) {
    padding-left: 0;
    padding-right: 0;
  }
}

.cart td:first-child,
.cart th:first-child {
  padding-left: 0;
  font-size: 14px;
  font-weight: bold;
}

.cart td:first-child.cart__removed-product,
.cart th:first-child.cart__removed-product {
  padding: 1rem 0 1.2rem 0.5rem;
}

@media (max-width: 767px) {
  .cart td:first-child,
  .cart th:first-child {
    padding-right: 0;
  }
}

.cart td:last-child,
.cart th:last-child {
  padding-right: 0;
}

.cart dd {
  margin-left: 0;
}

.cart__meta {
  width: 71%;
}

@media only screen and (min-width: 750px) {
  .cart__meta {
    width: 40%;
  }
}

@media only screen and (min-width: 990px) {
  .cart__meta {
    width: 45%;
  }
}

.cart__product-information {
  display: flex;
  position: relative;
}

.cart__image-wrapper {
  padding-right: 1.5rem;
  flex: 5rem 0 0;
}

@media only screen and (min-width: 750px) {
  .cart__image-wrapper {
    padding-right: 2.5rem;
    flex: 8rem 0 0;
  }
}

@media only screen and (min-width: 990px) {
  .cart__image-wrapper {
    padding-right: 3rem;
    flex: 9rem 0 0;
  }
}

.product-details {
  padding: em(5px) 0 0;
}

.product-details.hide + .cart__remove {
  margin-top: em(0px);
  font-size: 10px;
  color: #6b99cf;
  position: absolute;
  bottom: 0;
}

.product-details__item {
  margin-bottom: 0.15em;
}

.product-details__item--variant-option:not(.hide) + .product-details__item--property {
  margin-top: 0.8rem;
}

.cart__qty {
  margin-top: em(15px);
}

@media only screen and (min-width: 750px) {
  .cart__qty {
    margin-top: 0;
  }
}

.cart__qty-input {
  text-align: center;
  width: 60px;
  padding-left: em(5px);
  padding-right: em(5px);
  font-size: 12px;
}

.cart__qty-error-message-wrapper,
.cart__error-message-wrapper {
  line-height: 1.2;
}

.cart__qty-error-message-wrapper .icon-error,
.cart__error-message-wrapper .icon-error {
  margin-top: 0;
}

.cart__qty-error-message-wrapper--desktop {
  display: none;
}

@media only screen and (min-width: 750px) {
  .cart__qty-error-message-wrapper--desktop {
    display: block;
  }
}

.cart__qty-error-message-wrapper--mobile {
  display: block;
}

@media only screen and (min-width: 750px) {
  .cart__qty-error-message-wrapper--mobile {
    display: none;
  }
}

.cart__error-message-wrapper {
  margin-top: 1rem;
}

@media only screen and (min-width: 750px) {
  .cart__error-message-wrapper {
    margin-top: 0.8rem;
  }
}

.cart__row p {
  margin-bottom: 0;
}

.cart__row p + p {
  margin-top: 10px;
}

.cart__row td {
  vertical-align: top;
}

@media only screen and (min-width: 750px) {
  .cart__row td {
    vertical-align: middle;
  }
}

#shopify-section-cart-template h1, #shopify-section-cart-template .h1,
#shopify-section-cart-template p,
#shopify-section-cart-template a,
#shopify-section-cart-template th,
#shopify-section-cart-template dd,
#shopify-section-cart-template li,
#shopify-section-cart-template span,
#shopify-section-cart-template input,
#shopify-section-cart-template div {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#shopify-section-cart-template h1, #shopify-section-cart-template .h1 {
  font-weight: normal;
}

#shopify-section-cart-template .shopify-cleanslate {
  display: none;
}

.cart__row {
  border-top: 1px solid rgba(112, 112, 112, 0.2);
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}

.cart__row.cart__row--heading {
  border: none;
}

.cart__row .cart__qty input {
  border: 1px solid rgba(112, 112, 112, 0.2);
}

@media (max-width: 767px) {
  .page-id-29 .site-footer .breadcrumbs-box {
    border-top: 1px solid #707070;
  }
}

.cart-subtotal {
  background: url(../images/cart_subtotal_frame.svg) no-repeat;
  background-position: right 0% top 0%;
  width: 250px;
  height: 80px;
  position: relative;
  margin: 0 auto;
 
}

.cart-subtotal__title {
	  font-size: 0.86667em;
  position: absolute;
  right: 75%;
  top: 35%;
}

@media only screen and (min-width: 750px) {
  .cart-subtotal__title {
    right: 75%;
    top: 35%;
  }
}

.cart-subtotal__price {
  padding-left: 27.5px;
  font-weight: bold;
  position: absolute;
  right: 10%;
  top: 35%;
}

@media only screen and (min-width: 750px) {
  .cart-subtotal__price {
    padding-left: 55px;
    min-width: 150px;
    display: inline-block;
  }
}

.cart__footer {
  padding-top: 17.5px;
}

@media (max-width: 767px) {
  .cart__footer {
    padding-bottom: 45px;
  }
}

.cart__buttons-container {
  display: flex;
  flex-direction: column;
  max-width: 20rem;
  margin: 0 auto;
}

@media only screen and (min-width: 750px) {
  .cart__buttons-container {
    display: block;
    max-width: none;
  }
}

.cart__submit-controls {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media only screen and (min-width: 750px) {
  .cart__submit-controls {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -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-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
  }
}

.cart__submit {
  margin-bottom: 0;
  min-height: 44px;
  width: 100%;
}

.cart__submit + .cart__submit {
  margin-top: 10px;
  margin-left: 0;
}

@media only screen and (min-width: 750px) {
  .cart__submit {
    min-height: auto;
    width: auto;
  }
  .cart__submit + .cart__submit {
    margin-top: 0;
    margin-left: 10px;
  }
}

.cart__shipping {
  font-size: 10px;
  padding: 10px 0 20px;
  margin-bottom: 25px;
  text-align: center;
}

.cart-note__label,
.cart-note__input {
  display: block;
}

@media only screen and (max-width: 749px) {
  .cart-note__label,
  .cart-note__input {
    margin: 0 auto;
  }
}

.cart-note__label {
  margin-bottom: 15px;
}

.cart-note__input {
  min-height: 50px;
  width: 100%;
}

@media only screen and (max-width: 749px) {
  .cart-note__input {
    margin-bottom: 40px;
  }
}

.cart__product-title {
  border-bottom: none;
  font-size: 12px;
}

.cart__product-title:not([disabled]):hover, .cart__product-title:focus {
  border-bottom: 1px solid currentColor;
}

.cart__image {
  max-height: 95px;
  display: block;
  margin: 0 auto;
}

.cart__remove {
  margin-top: em(8px);
  color: #6b99cf;
  font-size: 10px;
}

.text-right .cart td {
  font-size: 12px;
}

.cart__price {
  text-align: right;
  padding-right: 0;
  font-size: 12px;
  width: 50%;
}

.cart__price dl {
  margin: 0;
}

@media only screen and (min-width: 750px) {
  .cart__price {
    width: 25%;
  }
}

@media (max-width: 767px) {
  .cart__price {
    padding-left: 0;
  }
}

.cart__quantity-td {
  width: 20%;
}

.cart__final-price {
  width: 15%;
}

.cart__qty {
  margin-top: 1em;
}

@media only screen and (min-width: 750px) {
  .cart__qty {
    margin-top: 0;
  }
}

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

@media only screen and (max-width: 749px) {
  .cart-message {
    padding-top: 20px;
  }
  .cart__qty-label {
	  position: inherit !important;
    overflow: auto;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    font-size: em(13);
    margin-right: 5px;
  }
}

.cart--no-cookies .cart__continue-btn {
  display: none;
}

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

.cookie-message {
  display: none;
  padding-bottom: 25px;
}

.cart--no-cookies .cookie-message {
  display: block;
}

.additional-checkout-buttons {
  margin-top: 1rem;
}

.additional-checkout-buttons input[type="image"] {
  padding: 0;
  border: 0;
  background: transparent;
}

[data-shopify-buttoncontainer] {
  justify-content: flex-end;
}

.myaccount {
  display: flex;
  flex-wrap: wrap;
}

.myaccount .btn--secondary {
  color: #6b99cf;
  border-color: #6b99cf;
}

.myaccount__account-details .btn .btn--small a {
  background-color: #6b99cf;
}

@media only screen and (min-width: 990px) {
  .myaccount__order-history {
    -webkit-flex: 1 0 66.66667%;
    -moz-flex: 1 0 66.66667%;
    -ms-flex: 1 0 66.66667%;
    flex: 1 0 66.66667%;
  }
}

.myaccount__order-history h2, .myaccount__order-history .h2 {
  color: #6b99cf !important;
  border: 1px solid;
  width: 110px;
  padding: 5px;
  text-align: center;
}

.myaccount__order-history tr:first-child {
  border-top: 2px solid #eeeeee;
}

.myaccount__account-details {
  margin: 0 auto;
  background-size: 90% auto;
}

.myaccount__account-details_box h3, .myaccount__account-details_box .h3 {
  font-size: 14px;
}

.myaccount__order-history h2, .myaccount__order-history .h2 {
  font-size: 14px;
}

.myaccount__order-history th {
  border-left: 5px solid white;
  border-right: 5px solid white;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.myaccount__order-history td {
  border-right: 5px solid white;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 749px) {
  .myaccount {
    margin: 0 auto;
  }
  .myaccount .grid {
    margin-left: 0px;
  }
  .myaccount .grid__item {
    padding-left: 0px;
  }
  .myaccount__order-history tr {
    border: 1px solid #eeeeee;
    text-align: start;
    border-left: none;
    border-right: none;
  }
  .myaccount__order-history tr:first-child {
    border: 1px solid #eeeeee;
    border-left: none;
    border-right: none;
  }
  .myaccount__order-history td {
    text-align: end;
    border-bottom: 1px solid #eeeeee;
  }
  .myaccount__order-history th {
    text-align: end;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #eeeeee;
  }
  .myaccount__order-history .responsive-table th::before {
    font-weight: bold;
  }
  .myaccount__order-history .responsive-table td::before {
    font-weight: bold;
  }
  .myaccount .myaccount__account-details {
    padding: 40px;
    background-size: 100% auto;
  }
}

@media only screen and (min-width: 990px) {
  .myaccount__account-details {
    -webkit-flex: 1 0 10%;
    -moz-flex: 1 0 10%;
    -ms-flex: 1 0 10%;
    flex: 1 0 10%;
    margin-left: 5%;
    padding: 30px;
    padding-left: 35px;
  }
}

.grid__item .myaccount__account-details {
  padding: 30px;
}

.myaccount__account-details h2, .myaccount__account-details .h2 {
  font-size: 14px;
}

.myaccount__account-details p {
  font-size: 10px;
}

.order-table a {
  border-bottom: 1px solid currentColor;
}

.order-table th,
.order-table td {
  border: 0;
}

.order-table tbody th,
.order-table tfoot th {
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
}

.order-table tbody tr + tr {
  border-top: 1px solid #eeeeee;
}

.order-table thead {
  border-bottom: 1px solid #eeeeee;
}

.order-table tfoot tr:first-child th,
.order-table tfoot tr:first-child td {
  padding-top: 1.25em;
}

.order-table tfoot tr:nth-last-child(2) th,
.order-table tfoot tr:nth-last-child(2) td {
  padding-bottom: 1.25em;
}

.order-table tfoot tr:last-child th,
.order-table tfoot tr:last-child td {
  border-top: 1px solid #6b99cf;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  text-transform: uppercase;
}

@media only screen and (min-width: 750px) {
  .order-table thead th {
    text-transform: uppercase;
    padding-top: 1.25em;
    padding-bottom: 1.25em;
  }
  .order-table tbody tr th,
  .order-table tbody tr td {
    padding-top: 1.25em;
    padding-bottom: 1.25em;
  }
  .order-table tfoot tr td,
  .order-table tfoot tr th {
    vertical-align: bottom;
  }
}

@media only screen and (max-width: 749px) {
  .order-table {
    border: 0;
  }
  .order-table thead {
    display: none;
  }
  .order-table th,
  .order-table td {
    float: left;
    clear: left;
    width: 100%;
    text-align: right;
    padding: 0.5rem 0;
    border: 0;
    margin: 0;
  }
  .order-table th::before,
  .order-table td::before {
    content: attr(data-label);
    float: left;
    text-align: left;
    padding-right: 2em;
    max-width: 80%;
  }
  .order-table tbody tr th:first-child {
    padding-top: 1.25em;
  }
  .order-table tbody tr td:last-child {
    padding-bottom: 1.25em;
  }
}

#customer_logout_link a {
  color: #6b99cf;
}

@media only screen and (max-width: 749px) {
  .order-table__product {
    display: flex;
    justify-content: space-between;
  }
}

.order-discount {
  display: block;
  line-height: 1.2em;
}

.order-discount .icon-saletag {
  fill: currentColor;
  width: 1em;
  height: 1em;
  margin-right: 0.4em;
}

.order-discount--title {
  text-transform: uppercase;
  word-break: break-word;
  padding-right: 1em;
}

.order-discount--list {
  margin: 0.8em 0 0 1.3em;
  list-style: none;
  padding: 0;
}

.order-discount__item {
  text-indent: -1.3em;
}

.order-discount__item + .order-discount__item {
  margin-top: 0.6em;
}

@media only screen and (max-width: 749px) {
  .order-discount-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}

.order-discount-card-wrapper {
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 750px) {
  .order-discount-card-wrapper {
    justify-content: flex-end;
  }
}

.order-discount--cart {
  padding-right: 0;
}

@media only screen and (min-width: 750px) {
  .order-discount--cart-total {
    min-width: 150px;
  }
}

/*================ MODULES ================*/
.site-header {
  position: relative;
  background-color: #fff;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: content-box;
}

.site-header__logo {
	margin: 13px 50px 20px 0;
}

.logo-align--center .site-header__logo {
  text-align: center;
  margin: 0 auto;
}

@media only screen and (max-width: 749px) {
  .logo-align--center .site-header__logo {
    text-align: left;
    margin: 15px 0;
  }
}

@media only screen and (max-width: 749px) {
  .site-header__logo {
    padding-left: 22px;
    text-align: left;
  }
  .site-header__logo img {
    margin: 0;
  }
}

.site-header__logo-link {
  display: inline-block;
  word-break: break-word;
}

@media only screen and (min-width: 750px) {
  .logo-align--center .site-header__logo-link {
    margin: 0 auto;
  }
}

.site-header__logo-image {
  display: block;
  width: 185px;
}

@media only screen and (min-width: 750px) {
  .site-header__logo-image {
    margin: 0 auto;
  }
}

.site-header__logo-image img {
  width: 100%;
}

.site-header__logo-image--centered img {
  margin: 0 auto;
}

.site-header__icons {
  position: relative;
  white-space: nowrap;
  margin-bottom: -7px;
}

@media only screen and (max-width: 749px) {
  .site-header__icons {
    width: auto;
    padding-right: 13px;
  }
}

.site-header__icons-wrapper {
  position: relative;
  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-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}

.site-header__cart,
.site-header__search,
.site-header__account {
  position: relative;
}

.site-header__search.site-header__icon {
  display: none;
}

@media only screen and (min-width: 1400px) {
  .site-header__search.site-header__icon {
    display: block;
  }
}

.site-header__search-toggle {
  display: block;
}

@media only screen and (min-width: 750px) {
  .site-header__account,
  .site-header__cart {
    padding: 10px 11px;
  }
}

.site-header__cart-title,
.site-header__search-title {
  display: block;
  vertical-align: middle;
}

.site-header__cart-title {
  margin-right: 3px;
}

.site-header__cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -0.1rem;
  top: 0.1rem;
  font-weight: bold;
  color: #fff;
  border-radius: 50%;
  min-width: 1em;
  height: 1em;
}

.site-header__cart-count span {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: calc(11em / 16);
  line-height: 1;
}

@media only screen and (max-width: 749px) {
  .site-header__cart-count {
    top: calc(0em / 16);
    right: -10px;
    border-radius: 50%;
    min-width: calc(19em / 16);
    height: calc(19em / 16);
  }
}

@media only screen and (max-width: 749px) {
  .site-header__cart-count span {
    padding: 0.25em calc(6em / 16);
    font-size: 12px;
  }
}

.site-header__menu {
  display: none;
}

@media only screen and (max-width: 749px) {
  .site-header__icon {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 11px;
    margin: 0;
  }
}

@media only screen and (min-width: 750px) {
  .site-header__icon .icon-search {
    margin-right: 3px;
  }
}

.announcement-bar {
  z-index: 10;
  position: relative;
  text-align: center;
  border-bottom: 1px solid transparent;
  padding: 2px;
}

.announcement-bar__link {
  display: block;
}

.announcement-bar__message {
  display: block;
  font-size: em(16);
}

.article__tags--list {
  font-style: italic;
}

.article__link {
  display: block;
}

@media only screen and (max-width: 749px) {
  .article__link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.article__link--fixed-overlay:not([disabled]):hover .article__grid-image-wrapper::before, .article__link--fixed-overlay:focus .article__grid-image-wrapper::before {
  bottom: auto;
}

.article__meta-buttons li:first-child {
  margin-right: 1.5rem;
}

.article__comment-count {
  border-color: transparent;
  border-bottom-color: currentColor;
  padding: 0 0 3px 0;
}

.article__comment-count:not([disabled]):hover, .article__comment-count:focus {
  border-color: transparent;
  border-bottom-color: currentColor;
}

.rte--article {
  margin-bottom: 20px;
}

/*============================================================================
  Blog article grid
==============================================================================*/
.grid--blog {
  margin-bottom: -55px;
  overflow: auto;
}

.article__grid-tag {
  margin-right: 10px;
}

.article__grid-meta {
  margin-bottom: 55px;
}

@media only screen and (max-width: 749px) {
  .article__grid-meta--has-image {
    float: left;
    padding-left: 22px;
  }
}

.article__grid-excerpt {
  margin-bottom: 17.5px;
}

.article-image-wrapper.article__grid-image-wrapper {
  margin-left: 0;
  margin-right: 0;
}

.article__grid-image-wrapper {
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.article__grid-image-wrapper--small {
  width: 50%;
}

.article__grid-image-container {
  display: block;
  clear: both;
  position: relative;
  margin: 0 auto 27.5px 0;
  min-height: 1px;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 749px) {
  .article__grid-image-container {
    float: left;
    margin: 0 0 55px 0;
  }
}

.article__grid-image-container img {
  display: block;
}

.article__grid-image {
  margin: 0 auto;
  width: 100%;
}

.js .article__grid-image {
  position: absolute;
  top: 0;
}

.article__list-image-container {
  display: block;
  clear: both;
  position: relative;
  min-height: 1px;
  width: 100%;
  height: 100%;
}

.article__list-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.article__list-image {
  margin: 0 auto;
  width: 100%;
  position: absolute;
  top: 0;
}

/*============================================================================
  Blog/article card
==============================================================================*/
.blog-card {
  margin-bottom: 30px;
  margin-top: 30px;
}

@media only screen and (min-width: 750px) {
  .blog-card {
    margin-top: 0;
  }
}

.blog-card__image-wrapper {
  margin-bottom: 30px;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}

.blog-card__image-wrapper:focus {
  opacity: 1;
}

.blog-card__image-wrapper--small {
  padding-bottom: 50%;
}

.blog-card__image-wrapper--medium {
  padding-bottom: 75%;
}

.blog-card__title {
  hyphens: auto;
  margin-bottom: 11px;
  padding: 0 5px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}

@media only screen and (min-width: 750px) {
  .blog-card__title {
    padding: 0 15px;
  }
}

.blog-card__link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.blog-card__overlay {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.blog-card__title-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.blog-card__comment-count {
  border-color: transparent;
  border-bottom-color: currentColor;
  padding: 0 0 3px 0;
}

.blog-card__comment-count:not([disabled]):hover, .blog-card__comment-count:focus {
  border-color: transparent;
  border-bottom-color: currentColor;
}

.cart-popup-wrapper {
  display: block;
  position: fixed;
  width: 100%;
  z-index: 9999;
  transform: translateY(0%);
}

@media only screen and (min-width: 750px) {
  .cart-popup-wrapper {
    width: 23rem;
    right: 0;
  }
}

.cart-popup-wrapper--hidden {
  display: none;
  transform: translateY(-100%);
}

.cart-popup {
  padding: 0.2rem 1.5rem 1rem;
}

.cart-popup__header {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.cart-popup__heading {
  flex-grow: 1;
  padding: 0.5rem 0rem;
  margin: 0;
  line-height: 1.2em;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cart-popup__close {
  padding: 0.9rem;
  margin-right: -0.9rem;
  background-color: transparent;
  border: none;
  line-height: 0;
}

.cart-popup__close .icon-close {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.cart-popup-item {
  display: flex;
  margin: 1rem 0;
}

.cart-popup-item__image-wrapper {
  position: relative;
  flex-basis: 18%;
  flex-shrink: 0;
  margin-right: 1rem;
  text-align: center;
}

.cart-popup-item__image {
  display: block;
  margin: 0 auto;
  max-height: 95px;
}

.cart-popup-item__image--placeholder {
  position: relative;
  width: 100%;
}

.cart-popup-item__description {
  display: flex;
  flex-basis: 100%;
  justify-content: space-between;
  line-height: 1.2rem;
}

.cart-popup-item__title {
  margin-bottom: 0;
}

.product-details {
  margin-top: 0.25rem;
	padding: 0.33333em 0 0;
  font-size: 0.86667em;
}

.product-details__item {
  margin-bottom: 0.2rem;
  line-height: 1.5;
}

.product-details__item:last-child {
  margin-bottom: 0;
}

.product-details__item--variant-option + .product-details__item--property {
  margin-top: 0.8rem;
}

.cart-popup-item__quantity {
  flex-basis: 30%;
  flex-shrink: 0;
  margin-left: 1rem;
  text-align: right;
}

.cart-popup__cta-link {
  width: 100%;
}

.cart-popup__dismiss {
  margin-top: 0.5rem;
  text-align: center;
}

.sidebar {
  margin-top: 40px;
  background-color: aliceblue;
}

.sidebar__list {
  list-style: none;
}

.sidebar__list li {
  margin-bottom: 10px;
}

.pagination {
  text-align: center;
  list-style: none;
  font-size: em(15);
}

.pagination li {
  display: inline-block;
}

.pagination .icon {
  display: block;
  vertical-align: middle;
}

.comment:last-child {
  margin-bottom: 0;
}

.comment__content {
  margin-bottom: 5px;
}

.comment__meta-item {
  margin-right: 10px;
  font-size: em(14);
}

.comment__meta-item:first-child::before {
  content: "\2014 \0020";
}

.social-sharing {
  display: flex;
}

.template-password .social-sharing {
  justify-content: center;
}

.btn {
  background-color: #6b99cf;
}

.myaccount__order-history .btn {
  background-color: #ffffff;
}

.btn--share {
  background-color: transparent;
  margin-right: 5px;
  margin-bottom: 10px;
}

.btn--share:not([disabled]):hover, .btn--share:focus {
  background-color: transparent;
}

.btn--share .icon {
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.share-title {
  display: inline-block;
  vertical-align: middle;
}

/*================ Variables ================*/
.search-form__input-wrapper {
  position: relative;
}

.search-form__input {
  padding-right: 45px;
  width: 100%;
  min-height: 44px;
  border: none;
}

.search-form__input::-ms-clear {
  display: none;
}

.search-form__input::-webkit-search-cancel-button {
  display: none;
}

.search-form__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
}

.search-form__input::-ms-input-placeholder {
  /* Microsoft Edge */
}

.search-form__clear-action {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 10px;
  border-radius: 50%;
  background-color: transparent;
  transition-timing-function: ease-in-out;
}

.search-form__clear-action .icon-close {
  flex: 1 1 auto;
}

.search-form__clear-action:active {
  transform: scale(0.9);
}

.search-form__connected-submit {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar__interior {
  height: 100%;
  display: flex;
  flex: 1;
  padding-left: 55px;
  padding-right: 55px;
  height: auto;
  height: 106px;
  width: 100%;
  background-color: #fff;
}

@media only screen and (min-width: 750px) {
  .search-bar__interior {
    height: auto;
  }
}

.search-form__container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar__form {
  flex: 1 1 100%;
  position: relative;
  border: 1px solid transparent;
}

.search-bar__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.search-bar__submit {
  background-color: transparent;
  border: 0;
  margin: 0;
}

.search-bar__submit .icon {
  position: relative;
  top: -1px;
  width: 1.2rem;
  height: auto;
}

.search-bar__submit:hover, .search-bar__submit:focus {
  color: #6b99cf;
}

.search-bar__close {
  padding: calc(10em / 16) 0.75em;
}

.search-bar__close .icon {
  width: 1rem;
  height: auto;
}

.search--less-than-2-results {
  height: 40vh;
}

.predictive-search-wrapper--visible {
  display: block;
}

.predictive-search {
  height: 100%;
  text-align: left;
}

@media only screen and (max-width: 989px) {
  .search-bar .predictive-search {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.predictive-search-loading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.icon-predictive-search-spinner::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid;
  border-color: currentColor currentColor currentColor transparent;
  -moz-animation: spin 500ms infinite linear;
  -o-animation: spin 500ms infinite linear;
  -webkit-animation: spin 500ms infinite linear;
  animation: spin 500ms infinite linear;
}

.predictive-search-loading__icon {
  display: inline-block;
  margin: 0;
}

.predictive-search-loading__icon .icon-predictive-search-spinner::before {
  width: 100%;
  height: 100%;
  border-width: 3px;
}

.predictive-search-title {
  position: relative;
  display: flex;
  align-items: center;
}

.predictive-search-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  height: 0;
}

.predictive-search-title::after {
  content: "";
  position: absolute;
}

.predictive-search-title__content {
  flex: 1 1 auto;
  margin-bottom: 0;
  text-transform: uppercase;
  white-space: normal;
}

.predictive-search-title__loading-spinner {
  flex: 0 0 auto;
  position: absolute;
  top: 50%;
}

.predictive-search-title__loading-spinner .icon-predictive-search-spinner::before {
  width: 100%;
  height: 100%;
  border-width: 3px;
}

.predictive-search-item {
  font-weight: 400;
  white-space: normal;
}

.predictive-search-item__details {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 0;
  margin-bottom: 0;
}

.predictive-search-item__detail--inline {
  display: flex;
  flex-direction: row;
}

.predictive-search-item__link {
  display: flex;
  background-color: transparent;
}

.predictive-search-item__link:active {
  background-color: transparent;
}

.predictive-search__column {
  flex: 1 1 auto;
}

.predictive-search__column--image {
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 12px;
  position: relative;
}

.predictive-search-item__image {
  object-fit: contain;
  font-family: "object-fit: contain";
  width: 100%;
  height: 100%;
}

.predictive-search__column--content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.predictive-search__column--center {
  justify-content: center;
}

.predictive-search-item__price--compare {
  text-decoration: line-through;
}

@media only screen and (min-width: 750px) {
  .predictive-search__list .predictive-search-view-all:first-child, .predictive-search__list
  .predictive-search-loading:first-child {
    border-top: none;
  }
}

/*================ Mobile Site Nav ================*/
.mobile-nav {
  display: block;
}

.menu-item a,
.mobile-nav__sublist-link {
  display: block;
  width: 100%;
}

.menu-item a {
  position: relative;
}

.mobile-nav__label {
  border-bottom: 1px solid transparent;
}

.menu-item .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 14px;
  width: 14px;
  margin: -6px 0 0 -7px;
}

.mobile-nav__return-btn {
  position: relative;
  padding: 24px 0;
}

.mobile-nav__icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.mobile-nav__table {
  display: table;
  width: 100%;
}

.mobile-nav__table-cell {
  display: table-cell;
  vertical-align: middle;
  width: 1%;
  text-align: left;
  white-space: normal;
}

.mobile-nav__toggle-button {
  padding: 20px 15px;
}

.mobile-nav__dropdown {
  position: absolute;
  width: 100%;
  top: 0;
  right: -100%;
  display: none;
}

.is-active + .mobile-nav__dropdown {
  display: block;
  opacity: 1;
}

.mobile-nav__dropdown.is-closing {
  opacity: 0.99;
}

.mobile-nav__dropdown .mobile-nav__sublist-header {
  display: table-cell;
  vertical-align: middle;
}

/*================ Mobile nav wrapper ================*/
.mobile-nav-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  overflow: hidden;
  width: 100%;
}

.mobile-nav-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.mobile-nav-wrapper.js-menu--is-open {
  display: block;
}

.mobile-nav--open .icon-close {
  display: none;
}

.mobile-nav--close .icon-hamburger {
  display: none;
}

.site-header__mobile-nav {
  position: relative;
}

@media only screen and (max-width: 749px) {
  .site-header__mobile-nav {
    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;
  }
}

/*================ Modals ================*/
.modal--is-active {
  display: block;
  opacity: 1;
  overflow: hidden;
}

.modal__inner {
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  height: 100%;
}

.modal__centered {
  position: relative;
  top: 50%;
}

.modal__close {
  border: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
}

.modal__close .icon {
  font-size: em(20);
}

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

  Extends default slick slider styles.
  Extra specificity in selectors is used to override defaults.
==============================================================================*/
.price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
}

.price dl {
  margin-top: 0;
}

.price dd {
  margin: 0 0.5em 0 0;
}

.price--unavailable {
  visibility: hidden;
}

.price--compare-price-hidden .price__compare {
  display: none;
}

.price__pricing-group {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.price__regular {
  display: block;
}

.price__regular,
.price__sale {
  margin-right: 0.625rem;
}

.price--on-sale .price__regular,
.price--on-sale .price__availability {
  display: none;
}

.price__availability {
  display: none;
}

.price--sold-out .price__availability {
  display: block;
}

.price__sale {
  display: none;
}

.price--on-sale .price__sale {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.price__vendor {
  margin: 5px 0 10px;
  width: 100%;
}

.price__vendor--listing {
  margin: 0 0 4px;
}

.price__unit {
  display: none;
}

.price--unit-available .price__unit {
  display: block;
}

.price--on-sale .price-item--regular {
  text-decoration: line-through;
}

.price-unit-price {
  font-size: 0.8em;
}

.price-item__label {
  display: inline-block;
  white-space: nowrap;
}

.price__badges {
  margin-top: 0;
}

.price__badge {
  display: none;
  align-self: center;
  text-align: center;
  font-size: 0.5em;
  line-height: 1em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
	background-color: #fff;
	border: 1px solid black;
  padding: 0.2rem 0.5rem;
}

.price--on-sale .price__badge--sale {
  display: flex;
}

.price--sold-out .price__badge--sale {
  display: none;
}

.price--sold-out .price__badge--sold-out {
  display: flex;
}

.price__badges--listing {
  margin-top: 0.5rem;
}

.price__badges--listing .price__badge {
  font-size: 0.6em;
  padding: 0.25rem 0.55rem;
}

/*================ Module | Filters and Sort toolbar and selection ================*/
@media only screen and (min-width: 750px) {
  .filters-toolbar-wrapper {
    margin-bottom: 55px;
  }
}

.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 {
  width: calc(10em / 16);
  height: calc(10em / 16);
  right: 8px;
}

.filters-toolbar--has-filter {
  position: relative;
}

@media only screen and (max-width: 749px) {
  .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__item {
  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: 749px) {
  .filters-toolbar__item:first-child .filters-toolbar__input {
    padding-left: 0;
  }
}

@media only screen and (max-width: 749px) {
  .filters-toolbar__item-child {
    flex-grow: 0;
  }
}

@media only screen and (max-width: 749px) {
  .filters-toolbar__item-child:first-child {
    margin-right: 2.5rem;
  }
}

@media only screen and (max-width: 375px) {
  .filters-toolbar__item-child:first-child {
    margin-right: 2rem;
  }
}

@media only screen and (min-width: 750px) {
  .filters-toolbar__item-child:first-child {
    margin-right: 3rem;
  }
}

@media only screen and (max-width: 749px) {
  .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 33%;
  -moz-flex: 1 1 33%;
  -ms-flex: 1 1 33%;
  flex: 1 1 33%;
}

@media only screen and (max-width: 749px) {
  .filters-toolbar__item-wrapper {
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
  }
}

.filters-toolbar__item--count {
  min-width: 0;
  -webkit-flex: 0 1 auto;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  text-align: center;
}

@media only screen and (max-width: 749px) {
  .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: right;
  }
}

@media only screen and (max-width: 375px) {
  .filters-toolbar__item--count {
    -webkit-flex: 1 1 50%;
    -moz-flex: 1 1 50%;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    text-align: right;
  }
}

.filters-toolbar__label {
  display: inline-block;
}
.filters-toolbar__label {
  display: none;
}

@media only screen and (max-width: 749px) {
  .filters-toolbar__label {
    display: block;
    margin-bottom: 0;
    margin-top: 8px;
  }
  .filters-toolbar__label {
    display: none !important;
    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%;
  height: 55px;
  opacity: 1;
  position: relative;
}

.filters-toolbar__item:first-child .filters-toolbar__input {
  padding-left: 0;
}

@media only screen and (max-width: 749px) {
  .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-style: italic;
  line-height: 55px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media only screen and (min-width: 750px) {
  .site-footer__centered--single-block {
    width: 75%;
    margin: 0 auto;
  }
}

.site-footer__hr {
  margin: 55px 0 30px 0;
}

@media only screen and (min-width: 750px) {
  .site-footer__hr {
    margin: 45px 0 20px 0;
  }
}

@media only screen and (max-width: 749px) {
  .site-footer__linklist.list--inline > li {
    display: block;
  }
}

.site-footer__linklist-item {
  display: block;
  padding: 15px 0;
}

@media only screen and (min-width: 750px) {
  .site-footer__linklist-item {
    padding: 0 30px 5px 0;
  }
}

.site-footer__linklist-item:last-of-type {
  padding-right: 0;
}

.site-footer__icon-list {
  padding-bottom: 30px;
}

@media only screen and (min-width: 750px) {
  .site-footer__icon-list {
    padding-bottom: 15px;
  }
}

@media only screen and (min-width: 750px) {
  .site-footer__social-icons {
    padding-top: 7.5px;
    text-align: right;
  }
}

.social-icons__item {
  padding: 0 15px;
}

@media only screen and (min-width: 750px) {
  .social-icons__item:last-of-type {
    padding-right: 0;
  }
}

.social-icons__link {
  display: block;
}

@media only screen and (min-width: 750px) {
  .site-footer-item-align-right {
    text-align: right;
  }
}

.site-footer__payment-icons .payment-icon {
  margin-bottom: 5px;
  margin-left: 5px;
}

.site-footer__payment-icons .payment-icon:first-child {
  margin-left: 0;
}

.site-footer-item-center-vertically {
  padding-top: 7.5px;
}

@media only screen and (min-width: 750px) {
  .site-footer-item-tall {
    margin-bottom: 15px;
    height: 46px;
  }
  .site-footer-item-tall .site-footer__icon-list {
    padding-bottom: 0;
  }
}

.feature-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -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 (max-width: 749px) {
  .feature-row {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.feature-row__item {
  -webkit-flex: 0 1 50%;
  -moz-flex: 0 1 50%;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

@media only screen and (max-width: 749px) {
  .feature-row__item {
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
}

.feature-row__image-wrapper {
  margin: 0 auto 19.44444px;
  position: relative;
  width: 100%;
}

.feature-row__image {
  display: block;
  margin: 0 auto;
}

.feature-row__image-wrapper .feature-row__image {
  width: 100%;
  position: absolute;
  top: 0;
}

@media only screen and (max-width: 749px) {
  .feature-row__image {
    order: 1;
  }
}

.feature-row__text {
  padding-top: 35px;
  padding-bottom: 35px;
}

@media only screen and (max-width: 749px) {
  .feature-row__text {
    order: 2;
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 750px) {
  .feature-row__text--left {
    padding-left: 35px;
  }
  .feature-row__text--right {
    padding-right: 35px;
  }
}

.hero {
  position: relative;
  height: 475px;
  display: table;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.hero--adapt,
.hero-fixed-width__image {
  max-height: 100vh;
}

@media only screen and (min-width: 750px) {
  .hero--adapt,
  .hero-fixed-width__image {
    max-height: 80vh;
  }
}

.hero--x-small {
  height: 94px;
}

.hero--small {
  height: 225px;
}

.hero--medium {
  height: 357px;
}

.hero--large {
  height: 488px;
}

.hero--x-large {
  height: 582px;
}

@media only screen and (min-width: 750px) {
  .hero--x-small {
    height: 125px;
  }
  .hero--small {
    height: 300px;
  }
  .hero--medium {
    height: 475px;
  }
  .hero--large {
    height: 650px;
  }
  .hero--x-large {
    height: 775px;
  }
}

.hero__inner {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  z-index: 2;
}

/*================ Fixed width ================*/
.hero-fixed-width {
  position: relative;
}

.hero-fixed-width__content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-fixed-width__image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  font-family: "object-fit: cover";
  overflow: hidden;
}

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

.quotes-slider__text cite {
  font-style: normal;
}

.quotes-slider__text p + cite {
  margin-top: 0;
}

.slick-dotted.quotes-slider.slick-initialized {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.quotes-wrapper .slick-dots {
  position: relative;
  bottom: 0;
}

.quotes-wrapper .slick-dots li {
  margin: 0;
}

.quotes-wrapper .slick-dots li button::before {
  font-size: 34px;
  opacity: 0.2;
}

.quotes-wrapper .slick-dots li.slick-active button::before {
  opacity: 1;
}

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

.logo-bar {
  list-style: none;
  text-align: center;
}

@media only screen and (min-width: 750px) {
  .logo-bar--large {
    margin-bottom: -55px;
  }
}

.logo-bar__item {
  display: inline-block;
  vertical-align: middle;
  max-width: 160px;
  margin: 0 27.5px 35px;
}

@media only screen and (min-width: 750px) {
  .logo-bar__item--large {
    margin-bottom: 55px;
  }
}

.logo-bar__image {
  display: block;
  margin: 0 auto;
}

.logo-bar__link {
  display: block;
}

.map-section {
  position: relative;
  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;
}

@media only screen and (min-width: 750px) {
  .map-section {
    min-height: 500px;
  }
}

.map-section--load-error {
  height: auto;
}

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

.map-section__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 2;
}

.map-section__error {
  position: relative;
  z-index: 3;
}

@media only screen and (min-width: 750px) {
  .map-section__error {
    position: absolute;
    margin: 0 2rem;
    top: 50%;
  }
}

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

.map-section__container {
  max-width: none;
  width: 100%;
  height: 55vh;
  left: 0;
}

@media only screen and (min-width: 750px) {
  .map-section__container {
    position: absolute;
    height: 100%;
    top: 0;
    width: 130%;
  }
}

.map_section__directions-btn [class^="icon"] {
  height: 1em;
}

.map_section__directions-btn * {
  vertical-align: middle;
}

.map-section__background-wrapper {
  overflow: hidden;
  position: relative;
}

@media only screen and (min-width: 750px) {
  .map-section__background-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}

.map-section--onboarding .map-section__background-wrapper {
  min-height: 55vh;
}

.map-section__image {
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
}

@media only screen and (min-width: 750px) {
  .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;
}

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

.image-bar {
  overflow: hidden;
}

@media only screen and (max-width: 749px) {
  .image-bar {
    max-width: 400px;
    margin: 0 auto;
  }
}

.image-bar__item {
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.image-bar__link:focus {
  position: relative;
  z-index: 2;
}

.image-bar__content,
.image-bar__item {
  position: relative;
  width: 100%;
}

.image-bar--x-small .image-bar__content, .image-bar--x-small
.image-bar__item {
  height: 94px;
}

.image-bar--small .image-bar__content, .image-bar--small
.image-bar__item {
  height: 225px;
}

.image-bar--medium .image-bar__content, .image-bar--medium
.image-bar__item {
  height: 357px;
}

.image-bar--large .image-bar__content, .image-bar--large
.image-bar__item {
  height: 488px;
}

.image-bar--x-large .image-bar__content, .image-bar--x-large
.image-bar__item {
  height: 582px;
}

@media only screen and (min-width: 750px) {
  .image-bar--x-small .image-bar__content, .image-bar--x-small
  .image-bar__item {
    height: 125px;
  }
  .image-bar--small .image-bar__content, .image-bar--small
  .image-bar__item {
    height: 300px;
  }
  .image-bar--medium .image-bar__content, .image-bar--medium
  .image-bar__item {
    height: 475px;
  }
  .image-bar--large .image-bar__content, .image-bar--large
  .image-bar__item {
    height: 650px;
  }
  .image-bar--x-large .image-bar__content, .image-bar--x-large
  .image-bar__item {
    height: 775px;
  }
}

.image-bar__caption {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
}

.collection-grid {
  overflow: auto;
}

.collection-grid-item {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.collection-grid-item__title {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  padding: 0 5px;
  hyphens: auto;
}

@media only screen and (min-width: 750px) {
  .collection-grid-item__title {
    padding: 0 15px;
  }
}

.collection-grid-item__link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.collection-grid-item__link:focus {
  opacity: 1;
}

.collection-grid-item__overlay {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.collection-grid-item__title-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.custom__item .collection-grid-item {
  margin-bottom: 0;
}

.custom__item-inner {
  position: relative;
  display: block;
  text-align: left;
  max-width: 100%;
}

.custom__item-inner--video,
.custom__item-inner--collection,
.custom__item-inner--html {
  display: block;
}

.custom__item-inner--image {
  position: relative;
  margin: 0 auto;
}

.custom__image {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
}

/*================ Linklist ================*/
@media only screen and (max-width: 749px) {
  .custom__item.custom__item--link_list {
    flex: 1 0 100%;
    max-width: none;
  }
}

.custom__linklist {
  margin-left: -15px;
  margin-right: -15px;
}

@media only screen and (min-width: 750px) {
  .custom__linklist {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.custom__linklist-link {
  display: inline-block;
  padding: 10px 15px;
  margin: 5px 0;
}

@media only screen and (min-width: 750px) {
  .custom__linklist-link {
    padding: 3px 12px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

/*================ Flex item alignment ================*/
.product-card {
  position: relative;
}

.product-card:hover .product-card__image-wrapper, .product-card:focus-within .product-card__image-wrapper {
  opacity: 0.8;
}

.product-card__image-with-placeholder-wrapper {
  position: relative;
}

/*================ Selectors ================*/
/*================ mari-colore-common ================*/
body {
  padding-top: 90px;
  padding-top: 68px;
}

.price__badges.price__badges--listing {
  display: none;
}

.grid-view-item:hover .grid-view-item__title {
  color: #6b99cf;
}

.grid-view-item:hover .price-item {
  color: #6b99cf;
}

.grid-view-item:hover .price-item-tax {
  color: #6b99cf !important;
}

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

.grid-view-item__title {
  transition: 0.3s;
  color: #000;
}

.price-item {
  transition: 0.3s;
  color: #000;
  font-weight: normal;
}

.price-item .price-item-tax {
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #6b99cf;
  display: inline-block;
  margin-left: 5px;
  font-weight: normal;
  transition: 0.3s;
}

.grid-view-item__link {
  color: #000;
}

.product-card .product-card__image-wrapper,
.product-card .product-card__image-wrapper {
  transition: 0.3s;
}

h2, .h2 {
  color: #000 !important;
  font-weight: 100 !important;
  text-align: center;
}

@media (max-width: 1023px) {
  .page-width {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 0;
  }
  .page-container {
    padding-top: 100px;
  }
}

@media (max-width: 749px) {
  .page-container {
    padding-top: 0;
  }
  .page-width {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*================ mari-colore-header ================*/
.site-header {
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
  padding: 0 3%;
}

.site-header .grid--no-gutters {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .header-flex2 {
  display: flex;
  justify-content: left;
  align-items: center;
}

.site-header .grid--table {
  display: flex;
}

.site-header .grid__item {
  float: none;
  width: auto;
}

.site-header .grid::after {
  content: "";
  display: none;
  clear: both;
}

.site-header .site-header__cart {
  padding: 10px 0 9px 11px;
}

.site-header .site-header__cart:hover {
  cursor: pointer;
}

.site-header .site-header__cart-count {
  background-color: #6b99cf;
}

.site-header .site-nav {
  margin: 30px 0 30px 0;
}

.site-header .site-nav li {
  font-size: 16px;
}

.site-header .site-nav__link {
  color: rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.site-header .site-nav__link--active {
  color: black;
}

.site-header .site-nav__link:hover {
  color: #6b99cf;
}

.site-header .site-nav__label {
  border-bottom: none;
}

.site-header .site-header__icons-wrapper .site-header__search-toggle {
  margin-right: 5px;
	padding-top:1px;
}

.site-header .site-header__icons-wrapper .site-header__search-toggle:hover {
  cursor: pointer;
}

.site-header .site-header__icons-wrapper .site-header__search-toggle .icon-search .cls-3 {
  transition: 0.3s;
}

.site-header .site-header__icons-wrapper .site-header__search-toggle:hover .icon-search .cls-3 {
  stroke: #6b99cf;
}

.site-header .site-header__icons-wrapper .site-header__account .icon-login .cls-2,
.site-header .site-header__icons-wrapper .site-header__account .icon-login .cls-3 {
  transition: 0.3s;
}

.site-header .site-header__icons-wrapper .site-header__account:hover .icon-login .cls-2 {
  stroke: #6b99cf;
}

.site-header .site-header__icons-wrapper .site-header__account:hover .icon-login .cls-3 {
  stroke: #6b99cf;
}

.site-header .site-header__icons-wrapper .site-header__cart .icon-cart .cls-2,
.site-header .site-header__icons-wrapper .site-header__cart .icon-cart .cls-3 {
  transition: 0.3s;
}

.site-header .site-header__icons-wrapper .site-header__cart:hover .icon-cart .cls-2 {
  stroke: #6b99cf;
}

.site-header .site-header__icons-wrapper .site-header__cart:hover .icon-cart .cls-3 {
  stroke: #6b99cf;
}

.site-header .mobile-nav-wrapper {
  z-index: 14;
  background-color: transparent;
  transform: initial;
  transition: none;
}

.site-header .mobile-nav-wrapper:after {
  border-bottom: none;
}

.site-header .mobile-nav-wrapper .icon-search:hover {
  cursor: pointer;
}

.site-header .mobile-nav--open-box {
  display: none;
}

.site-header .js-menu--is-open {
  position: absolute;
  top: 48px;
  left: 10px;
  width: 99px;
  height: 50px;
  box-shadow: 0 2px 8px #ccc;
  transform: initial !important;
}

.site-header .js-menu--is-open .site-header__search-toggle {
  display: inline-block;
}

.site-header .js-menu--is-open .site-header__account {
  display: inline-block;
  padding: 10px 11px;
}

.site-header .js-menu--is-open .mobile-nav {
  background-color: #fff;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.site-header .mobile-nav__link {
  color: rgba(0, 0, 0, 0.4);
  transition: 0.3s;
	    display: inline-block;
}

.site-header .mobile-nav__link:hover {
  color: #6b99cf;
}

.site-header .mobile-nav__link--active {
  color: #000;
}

.site-header .fixedlist-nav {
  display: none;
}

.site-header .mobile-nav__label {
  border-bottom: none;
}

.site-header .search-bar__interior {
  padding-left: 55px;
  padding-right: 55px;
  height: auto;
}

@media (max-width: 1023px) {
  .site-header .site-header__logo {
    margin: 11px 19px 15px 0;
  }
  .site-header .site-header__logo-image {
    width: 160px;
  }
  .site-header .site-header__account {
    padding: 10px 5px;
  }
}

@media (max-width: 767px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
  }
  .site-header .site-header__logo {
    margin: 28px 21px 20px 7px;
  }
  .site-header .site-header__logo-image {
    width: 110px;
    margin: 0 auto;
  }
  .site-header .site-nav a {
    padding: 3px 8px;
  }
  .site-header .js-menu--is-open .site-header__search-toggle {
    display: inline-block;
  }
  .site-header .js-menu--is-open .site-header__account {
    display: inline-block;
    padding: 10px 11px;
  }
  .site-header .mobile-nav--open-box {
    display: block;
  }
  .site-header .grid--table {
    display: flex;
	margin-bottom:-12px;
  }
  .site-header .grid__item {
    width: auto;
  }
  .site-header .header-flex2 {
    display: flex;
    justify-content: center;
  }
  .site-header .site-header__cart {
    padding: 8px 0 9px 11px;
  }
  .site-header .icon-hamburger {
    position: relative;
  }
  .site-header .hamburger-menu-line {
    position: absolute;
    background-color: #707070;
    width: 15px;
    height: 1px;
    transition: 0.3s;
  }
  .site-header .hamburger-menu-line.line-top {
    left: 3px;
    top: 2px;
  }
  .site-header .hamburger-menu-line.line-middle {
    left: 3px;
    top: 8px;
  }
  .site-header .hamburger-menu-line.line-bottom {
    left: 3px;
    bottom: 5px;
  }
  .site-header .icon-close {
    position: relative;
  }
  .site-header .icon-close .hamburger-menu-line {
    position: absolute;
    background-color: #707070;
    width: 15px;
    height: 1px;
  }
  .site-header .icon-close .hamburger-menu-line.line-top {
    left: 2px;
    top: 7px;
    width: 17px;
    transform: rotate(45deg);
  }
  .site-header .icon-close .hamburger-menu-line.line-middle {
    left: 3px;
    top: 10px;
    display: none;
  }
  .site-header .icon-close .hamburger-menu-line.line-bottom {
    left: 2px;
    bottom: 12px;
    width: 17px;
    transform: rotate(-45deg);
  }
  .site-header .mobile-nav--open-box:hover .hamburger-menu-line {
    background-color: #6b99cf;
  }
  .site-header .fixedlist-nav {
    display: block;
    position: fixed;
    z-index: 3;
    background-color: #fff;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .site-header .fixedlist-nav .mobile-nav {
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
  .site-header .fixedlist-nav .mobile-nav__item {
    position: relative;
    display: block;
    width: 100%;
  }
  .site-header .fixedlist-nav .mobile-nav__item a {
    padding: 7px 30px;
    font-size: 14px;
  }
  .site-header .fixedlist-nav .mobile-nav__item + .mobile-nav__item:after {
    display: block;
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    background-color: #707070;
    opacity: 0.4;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .site-header .fixedlist-nav .mobile-nav__item:nth-child(4) {
    display: none;
  }
  .site-header .fixedlist-nav .mobile-nav__item:nth-child(5) {
    display: none;
  }
  .site-header .fixedlist-nav .mobile-nav__item:nth-child(6) {
    display: none;
  }
}

@media (max-width: 749px) {
  .site-header .site-header__logo {
    padding-left: 0px;
    margin: 20px 7px 24px 7px;
  }
  .site-header .site-header__account {
    display: none;
  }
  .site-header .site-header__search-toggle {
    display: none;
  }
  .site-header .myaccount__account-details {
    padding: 30px;
    padding-left: 35px;
  }
  .site-header .myaccount__order-history tr {
    border: 1px solid #eeeeee;
  }
}

#shopify-section-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
}

#shopify-section-header form {
  height: 47px;
}

@media (max-width: 767px) {
  #shopify-section-header {
    position: static;
    top: auto;
    left: auto;
    width: auto;
  }
}

.section-header p a {
  font-size: 12px;
  color: #6b99cf;
}

.search-bar__submit {
  padding: 7px 12px 0;
}

/*================ mari-colore-footer ================*/
.site-footer {
  margin-top: 55px;
  padding: 0 0 56px;
  background-color: #ffffff !important;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  position: relative;
}

.site-footer .grid--no-gutters {
  text-align: center;
  font-size: 10px;
}

.site-footer .page-width {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 0.5px solid rgba(112, 112, 112, 0.4);
}

.site-footer .breadcrumbs-box {
  padding: 25px 50px 25px;
  position: relative;
}

.site-footer .breadcrumb {
  font-size: 14px;
  color: #000;
}

.site-footer .breadcrumb a {
  transition: 0.3s;
  color: #000;
}

.site-footer .breadcrumb a:hover {
  color: #6b99cf;
}

.site-footer .breadcrumb li {
  display: inline-block;
}

.site-footer .breadcrumb .breadcrumb-home {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: #000;
}

.site-footer .breadcrumb .breadcrumb-home .icon-breadcrumb-home {
  margin: 0 11px -7px 0;
}

.site-footer .breadcrumb .breadcrumb-home .icon-breadcrumb-home .cls-2,
.site-footer .breadcrumb .breadcrumb-home .icon-breadcrumb-home .cls-3 {
  transition: 0.3s;
}

.site-footer .breadcrumb .breadcrumb-home:hover .icon-breadcrumb-home .cls-2 {
  stroke: #6b99cf;
}

.site-footer .breadcrumb .breadcrumb-home:hover .icon-breadcrumb-home .cls-3 {
  stroke: #6b99cf;
}

.site-footer .footer-menu {
  max-width: 878px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 40px;
}

.site-footer .footer-menu .footer-menu-item:hover .footer-menu-item-link {
  color: #6b99cf;
}

.site-footer .footer-menu .footer-menu-item-link {
  transition: 0.3s;
  color: #000;
}

.site-footer .site-footer-item-tall {
  height: auto;
  margin-bottom: 0;
}

.site-footer .page-top {
  position: absolute;
  top: -50px;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: #6b99cf;
}

.site-footer .page-top:hover {
  cursor: pointer;
}

.site-footer .page-top:after {
  content: "";
  position: absolute;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  border-right: 0;
  border-bottom: 0;
  width: 10px;
  top: 13px;
  right: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.site-footer .fixedlist-nav2 {
  display: none;
}

.site-footer .mobile-nav__link{
  color: rgba(0, 0, 0, 0.4);
  padding: 7px 30px;
  font-size: 14px;
  transition: 0.3s;
	display:inline-block;
}

.site-footer .mobile-nav__link:hover {
  color: #6b99cf;
}

.site-footer .mobile-nav__link--active {
  color: #000;
}

@media (max-width: 1279px) {
  .site-footer .page-top {
    right: 20px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 0 0 36px;
    margin-top: 0;
  }
  .site-footer .page-width {
    border-top: 1px solid #707070;
  }
  .site-footer .breadcrumbs-box {
    border-top: none;
    padding: 25px 55px 25px 20px;
  }
  .site-footer .page-top {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .site-footer .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
  }
  .site-footer .footer-menu .footer-menu-item {
    width: 43%;
    text-align: center;
    margin-bottom: 10px;
  }
  .site-footer .footer-menu .footer-menu-item:nth-child(3) {
    padding-left: 8%;
  }
  .site-footer .footer-menu .footer-menu-item:nth-child(4) {
    padding-right: 10%;
  }
  .site-footer .page-width {
    padding-top: 25px;
  }
  .site-footer .fixedlist-nav2 {
    display: block;
    position: fixed;
    z-index: 10;
    background-color: #fff;
    width: 100%;
    left: 0;
    bottom: 0;
  }
  .site-footer .fixedlist-nav2 .mobile-nav {
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
  .site-footer .fixedlist-nav2 .mobile-nav__item {
    position: relative;
    display: block;
    width: 100%;
  }
  .site-footer .fixedlist-nav2 .mobile-nav__item + .mobile-nav__item:after {
    display: block;
    content: "";
    width: 1px;
    height: 10px;
    position: absolute;
    background-color: #707070;
    opacity: 0.4;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .site-footer .fixedlist-nav2 .mobile-nav__item:nth-child(4):after {
    display: none;
  }
  .site-footer .fixedlist-nav2 .mobile-nav__item:nth-child(1) {
    display: none;
  }
  .site-footer .fixedlist-nav2 .mobile-nav__item:nth-child(2) {
    display: none;
  }
  .site-footer .fixedlist-nav2 .mobile-nav__item:nth-child(3) {
    display: none;
  }
}

@media (max-width: 413px) {
  .site-footer .footer-menu-item:nth-child(3) {
    padding-left: 12%;
  }
  .site-footer .footer-menu-item:nth-child(4) {
    padding-right: 18%;
  }
}

@media (max-width: 767px) {
  #shopify-section-footer {
    padding-top: 0;
  }
}

/*================ mari-colore-collection-new ================*/
#shopify-section-collection-new {
  padding-top: 104px;
}

#shopify-section-collection-new .grid {
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#shopify-section-collection-new .grid__item {
  float: none;
  margin-right: 15px;
  padding-left: 0;
  width: calc(25% - 45px / 4);
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#shopify-section-collection-new .grid__item:nth-child(4n) {
  margin-right: 0;
}

#shopify-section-collection-new .grid-view-item {
  margin: 0 auto 20px;
}

#shopify-section-collection-new .grid-view-item__image-wrapper {
  margin: 0 auto 5px;
}

#shopify-section-collection-new .grid-view-item__image-wrapper > div {
  padding-top:110.9375% !important;
}

#shopify-section-collection-new .grid-view-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#shopify-section-collection-new .page-width {
  max-width: 998px;
  box-sizing: content-box;
}

#shopify-section-collection-new .section-header {
  margin-bottom: 40px;
}

#shopify-section-collection-new h2, #shopify-section-collection-new .h2 {
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  margin-bottom: 40px;
  text-transform: initial;
  color: #000;
  margin-top: 0;
}

#shopify-section-collection-new .product-card__title {
  font-size: 10px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
}

#shopify-section-collection-new .price {
  font-size: 12px;
}

#shopify-section-collection-new .price .price-item-tax {
  color: #000;
  margin-left: 0;
}

#shopify-section-collection-new .variant-inventory {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
}

#shopify-section-collection-new .variant-inventory-badge {
  display: inline-block;
  background-color: #6b99cf;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  padding: 2px 8px;
  color: #fff;
}

@media (max-width: 767px) {
  #shopify-section-collection-new {
    padding-top: 50px;
  }
  #shopify-section-collection-new .grid__item {
    width: calc(50% - 15px / 2);
  }
  #shopify-section-collection-new .grid__item:nth-child(2n) {
    margin-right: 0;
  }
  #shopify-section-collection-new .section-header {
    margin-bottom: 20px;
  }
  #shopify-section-collection-new h2, #shopify-section-collection-new .h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

/*================ mari-colore-collection-ranking ================*/
#shopify-section-collection-ranking {
  padding-top: 54px;
}

#shopify-section-collection-ranking .page-width {
  max-width: 998px;
  box-sizing: content-box;
}

#shopify-section-collection-ranking .grid {
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#shopify-section-collection-ranking .grid__item {
  float: none;
  margin-right: 20px;
  padding-left: 0;
  width: calc(33.33333% - 40px / 3);
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#shopify-section-collection-ranking .grid__item:nth-child(3n) {
  margin-right: 0;
}

#shopify-section-collection-ranking .grid__item:nth-child(1) .product-card__image-with-placeholder-wrapper:after {
  display: block;
  position: absolute;
  content: "1";
  color: rgba(107, 153, 207, 0.5);
  left: 0;
  bottom: 0;
  font-size: 64px;
  line-height: 47px;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
}

#shopify-section-collection-ranking .grid__item:nth-child(2) .product-card__image-with-placeholder-wrapper:after {
  display: block;
  position: absolute;
  content: "2";
  color: rgba(107, 153, 207, 0.5);
  left: 0;
  bottom: 0;
  font-size: 64px;
  line-height: 47px;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
}

#shopify-section-collection-ranking .grid__item:nth-child(3) .product-card__image-with-placeholder-wrapper:after {
  display: block;
  position: absolute;
  content: "3";
  color: rgba(107, 153, 207, 0.5);
  left: 0;
  bottom: 0;
  font-size: 64px;
  line-height: 47px;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
}

#shopify-section-collection-ranking .grid__item:nth-child(4) .product-card__image-with-placeholder-wrapper:after {
  display: block;
  position: absolute;
  content: "4";
  color: rgba(107, 153, 207, 0.5);
  left: 0;
  bottom: 0;
  font-size: 64px;
  line-height: 47px;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
}

#shopify-section-collection-ranking .grid__item:nth-child(5) .product-card__image-with-placeholder-wrapper:after {
  display: block;
  position: absolute;
  content: "5";
  color: rgba(107, 153, 207, 0.5);
  left: 0;
  bottom: 0;
  font-size: 64px;
  line-height: 47px;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
}

#shopify-section-collection-ranking .grid__item:nth-child(6) .product-card__image-with-placeholder-wrapper:after {
  display: block;
  position: absolute;
  content: "6";
  color: rgba(107, 153, 207, 0.5);
  left: 0;
  bottom: 0;
  font-size: 64px;
  line-height: 47px;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
}

#shopify-section-collection-ranking .grid-view-item {
  margin: 0 auto 20px;
}

#shopify-section-collection-ranking .grid-view-item__image-wrapper {
  margin: 0 auto 5px;
}

#shopify-section-collection-ranking .section-header {
  margin-bottom: 40px;
}

#shopify-section-collection-ranking h2, #shopify-section-collection-ranking .h2 {
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  margin-bottom: 40px;
  text-transform: initial;
  color: #000;
}

#shopify-section-collection-ranking .product-card__title {
  font-size: 10px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
}

#shopify-section-collection-ranking .grid-view-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#shopify-section-collection-ranking .price {
  font-size: 12px;
}

#shopify-section-collection-ranking .price .price-item-tax {
  color: #000;
  margin-left: 0;
}

#shopify-section-collection-ranking .variant-inventory {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
}

#shopify-section-collection-ranking .variant-inventory-badge {
  display: inline-block;
  background-color: #6b99cf;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  padding: 2px 8px;
  color: #fff;
}

@media (max-width: 767px) {
  #shopify-section-collection-ranking {
    padding: 11px 0 20px;
  }
  #shopify-section-collection-ranking .grid__item {
    margin-right: 15px;
    width: calc(50% - 15px / 2);
  }
  #shopify-section-collection-ranking .grid__item:nth-child(3n) {
    margin-right: 15px;
  }
  #shopify-section-collection-ranking .grid__item:nth-child(2n) {
    margin-right: 0;
  }
  #shopify-section-collection-ranking .grid-view-item {
    margin: 0 auto 15px;
  }
  #shopify-section-collection-ranking .section-header {
    margin-bottom: 20px;
  }
  #shopify-section-collection-ranking h2, #shopify-section-collection-ranking .h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

/*================ mari-colore-search-menu ================*/
.search-menu-section {
  padding: 30px 0 150px;
}

.search-menu-section h2, .search-menu-section .h2 {
  text-transform: initial;
  font-size: 2em;
  margin-bottom: 40px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  color: #000;
	padding-top: 120px;
    margin-top: -120px;
}

.search-menu-section .inner {
  max-width: 1000px;
  padding: 0 50px;
}

.search-menu-section .search-menu {
  display: flex;
  justify-content: space-between;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
}

.search-menu-section .search-menu-item {
  width: 25%;
  text-align: center;
  position: relative;
  padding: 30px 0;
}

.search-menu-section .search-menu-item:before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #707070;
  left: 0px;
  top: 0;
}

.search-menu-section .search-menu-item:after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #707070;
  right: 0px;
  top: 0;
}

.search-menu-section .search-menu-item + .search-menu-item:before {
  display: none;
}

.search-menu-section .search-menu-item-inner {
  display: inline-block;
  text-align: left;
}

.search-menu-section .search-menu-item-ttl {
  font-size: 14px;
  margin-bottom: 0;
  color: #000;
}

.search-menu-section .search-undermenu {
  margin-top: 16px;
}

.search-menu-section .search-undermenu-item {
  font-size: 10px;
}

.search-menu-section .search-undermenu-item .search-undermenu-item-ttl {
  line-height: 2;
  transition: 0.3s;
  color: #000;
}

.search-menu-section .search-undermenu-item:hover .search-undermenu-item-ttl {
  color: #6b99cf;
}

.search-menu-section .search-undermenu-item .search-undermenu-item-ttl-active {
  color: #6b99cf;
}

.search-menu-section .search-undermenu-item:nth-child(n + 8) {
/*   display: none; */
/*   padding-left: 10px; */
}

.search-menu-section .moretype {
  color: #6b99cf;
  font-size: 10px;
  padding-left: 10px;
  line-height: 1.9;
}

.search-menu-section .moretype:hover {
  cursor: pointer;
}

@media (max-width: 1023px) {
  .search-menu-section .inner {
    padding: 0 30px;
  }
  .search-menu-section .search-menu-item-ttl {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .search-menu-section {
    padding: 35px 0 0;
  }
  .search-menu-section .search-menu {
    display: block;
  }
  .search-menu-section .inner {
    padding: 0 0;
  }
  .search-menu-section .section-header {
    margin-bottom: 20px;
  }
  .search-menu-section h2, .search-menu-section .h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .search-menu-section .search-menu-item-inner {
    display: block;
  }
  .search-menu-section .search-menu-item-ttl {
    text-align: center;
  }
  .search-menu-section .search-menu-item {
    width: 100%;
    text-align: center;
    padding: 20.5px 20px;
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
  }
  .search-menu-section .search-menu-item:before {
    display: none;
  }
  .search-menu-section .search-menu-item:after {
    display: none;
  }
  .search-menu-section .search-menu-item + .search-menu-item {
    border-top: none;
  }
  .search-menu-section .search-menu-item:nth-child(3) {
    padding: 20.5px 20px;
  }
  .search-menu-section .search-menu-item:nth-child(3) .search-undermenu {
    margin-bottom: 0px;
  }
  .search-menu-section .search-menu-item:nth-child(3) .search-undermenu:after {
    left: 7%;
    bottom: 21px;
  }
  .search-menu-section .search-menu-item:nth-child(2n) .search-undermenu {
    display: none;
  }
  .search-menu-section .search-undermenu {
    margin-top: 5px;
    padding-left: 28%;
  }
  .search-menu-section .search-undermenu-item {
    font-size: 12px;
  }
  .search-menu-section .search-undermenu-item .search-undermenu-item-ttl {
    line-height: 2.5;
  }
  .search-menu-section .moretype {
    font-size: 12px;
    padding-left: 10px;
    line-height: 2.5;
  }
}

@media (max-width: 413px) {
  .search-menu-section .search-undermenu {
    padding-left: 25.5%;
  }
}

/*================ mari-colore-slideshow ================*/
.home #vue_unit15_sp {
    display: none;
  }

.home .swiper-container {
  position: relative;
  max-width: 1100px;
	max-width: 100%;
   height: calc(100vh - 215px);
  margin: 0 auto;
  overflow: visible !important;
}

.home .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:center;
}

.home .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.home .swiper-container-horizontal > .swiper-pagination-bullets,
.home .swiper-pagination-custom,
.home .swiper-pagination-fraction {
  bottom: 20px;
}

.home .swiper-pagination-bullet-active {
  background: #6b99cf;
}

@media (max-width: 1107px) {
  .home .swiper-container {
     height: calc(100vh - 90px - 130px);
  }
}

@media (max-width: 1023px) {
  .home .swiper-container {
      height: calc(100vh - 90px - 130px);
  }
}

@media (max-width: 767px) {
.home #vue_unit15_sp {
    display: block;
 }
.home #vue_unit15_pc {
    display: none;
  }
  .home .shopify-section {
    padding-top: 38px;
  }
  .home .swiper-container {
    height: 375px;
    padding-top: 78px;
	  			height: auto;
  }
  .home .swiper-slide img {
/*     object-position: -22px; */
	  			object-fit: contain;
  }
  .home .swiper-container-horizontal > .swiper-pagination-bullets,
  .home .swiper-pagination-custom,
  .home .swiper-pagination-fraction {
    bottom: -24px;
  }
  .home .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px;
  }
  .home .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 749px) {
  .home .shopify-section {
    padding-top: 13px;
  }
}

@media (max-width: 413px) {
  .home .swiper-slide img {
/*     object-position: -31px; */
  }
}

/*================ mari-colore-collection ================*/
.page-id-6 .main-content, .page-id-31 .main-content {
  padding-top: 63px;
}

.page-id-6 .collection-header, .page-id-31 .collection-header {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.page-id-6 .collection-header .section-header, .page-id-31 .collection-header .section-header {
  margin-bottom: 40px;
}

.page-id-6 .collection-header .section-header h1, .page-id-6 .collection-header .section-header .h1,.page-id-31 .collection-header .section-header h1, .page-id-31 .collection-header .section-header .h1 {
  font-size: 18px;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
  margin-bottom: 40px;
  text-align: center;
  margin-top: 0;
}

.page-id-6 .collection-header .section-header .collection-ttl-frame,.page-id-31 .collection-header .section-header .collection-ttl-frame {
  position: relative;
  color: #000;
}

.page-id-6 .collection-header .section-header .icon-frame-top-left , .page-id-31 .collection-header .section-header .icon-frame-top-left {
  position: absolute;
  top: -24px;
  left: -49px;
}

.page-id-6 .collection-header .section-header .icon-frame-bottom-right, .page-id-31 .collection-header .section-header .icon-frame-bottom-right {
  position: absolute;
  right: -49px;
  bottom: -24px;
}

.page-id-6 .collection-header .c-mrkdwn__pre, .page-id-31 .collection-header .c-mrkdwn__pre {
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
}

.page-id-6 .collection-header .filters-toolbar__input, .page-id-31 .collection-header .filters-toolbar__input {
  font-size: 12px;
  height: 30px;
  padding-top: 0px;
  padding-left: 0px;
  padding-bottom: 0px;
  width:185px !important;
}

.page-id-6 .collection-header .icon-chevron-down, .page-id-31 .collection-header .icon-chevron-down {
  fill: #6b99cf;
  right: 40%;
}

.page-id-6 .collection-header .filters-toolbar ,.page-id-31 .collection-header .filters-toolbar {
  color: #000;
}

.page-id-6 .collection-header .filters-toolbar-wrapper, .page-id-31 .collection-header .filters-toolbar-wrapper {
  margin-bottom: 40px;
  border-top: none;
  border-bottom: none;
}

.page-id-6 .collection-header .filters-toolbar-wrapper .page-width, .page-id-31 .collection-header .filters-toolbar-wrapper .page-width {
  max-width: 1280px;
  border-top: 1px solid rgba(112, 112, 112, 0.4);
  border-bottom: 1px solid rgba(112, 112, 112, 0.4);
  padding-left: 50px;
  padding-right: 50px;
}

.page-id-6 .collection-header .filters-toolbar__product-count, .page-id-31 .collection-header .filters-toolbar__product-count {
  font-size: 12px;
  font-style: initial;
  line-height: 50px;
}

.page-id-6 #Collection, .page-id-31 #Collection {
  max-width: 998px;
  box-sizing: content-box;
}

.page-id-6 #Collection .grid, .page-id-31 #Collection .grid {
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.page-id-6 #Collection .grid__item, .page-id-31 #Collection .grid__item {
  float: none;
  margin-right: 15px;
  padding-left: 0;
  width: calc(25% - 45px / 4);
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.page-id-6 #Collection .grid__item.empty-messagebox, .page-id-31 #Collection .grid__item.empty-messagebox {
  width: auto;
}

.page-id-6 #Collection .grid__item:nth-child(4n), .page-id-31 #Collection .grid__item:nth-child(4n) {
  margin-right: 0;
}

.page-id-6 #Collection .grid-view-item, .page-id-31 #Collection .grid-view-item {
  margin: 0 auto 20px;
}

.page-id-6 #Collection .grid-view-item__image-wrapper, .page-id-31 #Collection .grid-view-item__image-wrapper  {
  margin: 0 auto 5px;
}

.page-id-6 #Collection .grid-view-item__image-wrapper > div, .page-id-31 #Collection .grid-view-item__image-wrapper > div {
      padding-top: 110.9375% !important;
}

.page-id-6 #Collection .grid-view-item__image, .page-id-31 #Collection .grid-view-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-id-6 #Collection .product-card__title, .page-id-31 #Collection .product-card__title {
  font-size: 10px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
}

.page-id-6 #Collection .price, .page-id-31 #Collection .price {
  font-size: 12px;
}

.page-id-6 #Collection .price .price-item-tax, .page-id-31 #Collection .price .price-item-tax {
  color: #000;
  margin-left: 0;
}

.page-id-6 #Collection .variant-inventory, .page-id-31 #Collection .variant-inventory {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
}

.page-id-6 #Collection .variant-inventory-badge, .page-id-31 #Collection .variant-inventory-badge {
  display: inline-block;
  background-color: #6b99cf;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  padding: 2px 8px;
  color: #fff;
}

@media (max-width: 1023px) {
  .page-id-6 .collection-header .filters-toolbar-wrapper .page-width, .page-id-31 .collection-header .filters-toolbar-wrapper .page-width {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .page-id-6 .main-content, .page-id-31 .main-content {
    padding-top: 54px;
  }
  .page-id-6 .collection-header, .page-id-31 .collection-header {
    padding-top: 86px;
  }
  .page-id-6 .collection-header .icon-chevron-down, .page-id-31 .collection-header .icon-chevron-down {
    right: 40%;
  }
  .page-id-6 .collection-header .filters-toolbar-wrapper, .page-id-31 .collection-header .filters-toolbar-wrapper  {
    margin-bottom: 0;
  }
  .page-id-6 .collection-header .filters-toolbar-wrapper .page-width, .page-id-31 .collection-header .filters-toolbar-wrapper .page-width {
    padding-left: 22px;
    padding-right: 22px;
  }
.page-id-6 .collection-header .filters-toolbar__product-count, .page-id-31 .collection-header .filters-toolbar__product-count {
  line-height: 40px;
}
  .page-id-6 #Collection, .page-id-31 #Collection {
    padding-top: 40px;
  }
  .page-id-6 #Collection .grid__item, .page-id-31 #Collection .grid__item {
    margin-right: 15px;
    width: calc(50% - 15px / 2);
  }
  .page-id-6 #Collection .grid__item:nth-child(2n), .page-id-31 #Collection .grid__item:nth-child(2n) {
    margin-right: 0;
  }
  .page-id-6 #shopify-section-collection-ranking, .page-id-31 #shopify-section-collection-ranking {
    padding: 20px 0 20px;
  }
  .page-id-6 .search-menu-section,  .page-id-31 .search-menu-section  {
    padding: 40px 0 0;
  }
}

@media (max-width: 749px) {
  .page-id-6 .collection-header .filters-toolbar-wrapper .filters-toolbar__item-wrapper, .page-id-31 .collection-header .filters-toolbar-wrapper .filters-toolbar__item-wrapper {
    flex-basis: 50%;
  }
  .page-id-6 .collection-header .filters-toolbar-wrapper .filters-toolbar__item--count, .page-id-31 .collection-header .filters-toolbar-wrapper .filters-toolbar__item--count {
    flex-basis: 19%;
    text-align: right;
  }
  .page-id-6 .collection-header .filters-toolbar-wrapper .filters-toolbar__item-child, .page-id-31 .collection-header .filters-toolbar-wrapper .filters-toolbar__item-child {
    flex-basis: auto;
  }
  .page-id-6 .collection-header .filters-toolbar-wrapper .filters-toolbar__item-child .filters-toolbar__label, .page-id-31 .collection-header .filters-toolbar-wrapper .filters-toolbar__item-child .filters-toolbar__label {
    display: inline-block;
  }
}

@media (max-width: 375px) {
  .page-id-6 .collection-header .filters-toolbar-wrapper .filters-toolbar__item--count, .page-id-31 .collection-header .filters-toolbar-wrapper .filters-toolbar__item--count {
    flex-basis: 0;
    text-align: right;
  }
}

/*================ mari-colore-news-posts ================*/
#shopify-section-news-posts {
  padding: 35px 0 34px;
}

#shopify-section-news-posts .newslists .newslists-ttl {
  text-align: center;
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  margin-bottom: 47.9px;
  text-transform: initial;
  color: #000;
}

#shopify-section-news-posts .newslists .inner {
  max-width: 770px;
  padding: 0 55px;
}

#shopify-section-news-posts .newslists .newslists-box {
  padding: 40px 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  position: relative;
}

#shopify-section-news-posts .newslists dl {
  width: 100%;
  max-width: 467px;
  margin: 0 auto;
  color: #000000;
}

#shopify-section-news-posts .newslists dl:nth-of-type(3) dd {
   margin-bottom: 0;
}

#shopify-section-news-posts .newslists dt {
  width: 84px;
  float: left;
  font-size: 14px;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
  color: #000000;
}

#shopify-section-news-posts .newslists dd {
  margin-bottom: 20px;
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000000;
}

#shopify-section-news-posts .newslists dd a {
  transition: 0.3s;
}

#shopify-section-news-posts .newslists dd a:hover {
  color: #6b99cf;
}

#shopify-section-news-posts .newslists dl::after {
  content: "";
  display: block;
  clear: both;
}

#shopify-section-news-posts .newslists .icon-frame-top-left {
  position: absolute;
  top: -9px;
  left: -39px;
}

#shopify-section-news-posts .newslists .icon-frame-top-right {
  position: absolute;
  top: -9px;
  right: -39px;
}

#shopify-section-news-posts .newslists .icon-frame-bottom-left {
  position: absolute;
  bottom: -9px;
  left: -39px;
}

#shopify-section-news-posts .newslists .icon-frame-bottom-right {
  position: absolute;
  bottom: -9px;
  right: -39px;
}

@media (max-width: 1023px) {
  #shopify-section-news-posts .newslists .inner {
    padding: 0 55px;
  }
}

@media (max-width: 767px) {
  #shopify-section-news-posts {
    padding: 20px 0 38px;
  }
  #shopify-section-news-posts .newslists .newslists-ttl {
    font-size: 22px;
    margin-bottom: 29px;
  }
  #shopify-section-news-posts .newslists .inner {
    padding: 0 22px;
  }
  #shopify-section-news-posts .newslists .newslists-box {
    padding: 30px 0 30px 9px;
    border-top: none;
    border-bottom: none;
  }
  #shopify-section-news-posts .newslists .newslists-box:before {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-color: #707070;
    width: 84%;
    height: 1px;
  }
  #shopify-section-news-posts .newslists .newslists-box:after {
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: #707070;
    width: 84%;
    height: 1px;
  }
  #shopify-section-news-posts .newslists dt {
    float: none;
    position: relative;
  }
  #shopify-section-news-posts .newslists dt:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 79px;
    background-color: #eeeeee;
    width: 318%;
    height: 1px;
  }
  #shopify-section-news-posts .newslists dd {
    margin-bottom: 15px;
    margin-left: 0;
    padding-right: 5px;
  }
  #shopify-section-news-posts .newslists .icon-frame-top-left {
    position: absolute;
    top: -9px;
    left: -12px;
  }
  #shopify-section-news-posts .newslists .icon-frame-top-right {
    position: absolute;
    top: -9px;
    right: -12px;
  }
  #shopify-section-news-posts .newslists .icon-frame-bottom-left {
    position: absolute;
    bottom: -9px;
    left: -12px;
  }
  #shopify-section-news-posts .newslists .icon-frame-bottom-right {
    position: absolute;
    bottom: -9px;
    right: -12px;
  }
}

@media (max-width: 413px) {
  #shopify-section-news-posts .newslists dt:after {
    width: 282%;
  }
  #shopify-section-news-posts .newslists dd {
    padding-right: 0;
  }
}

/*================ mari-colore-blog-posts ================*/
#shopify-section-blog-posts {
  padding-top: 35px;
}

#shopify-section-blog-posts .bloglists-ttl {
  text-align: center;
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  margin-bottom: 40px;
  text-transform: initial;
  color: #000000;
}

#shopify-section-blog-posts .inner {
  max-width: 1000px;
  padding: 0 55px;
}

#shopify-section-blog-posts .bloslists-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#shopify-section-blog-posts .grid__item {
  float: none;
  margin-right: 8px;
  padding-left: 0;
  width: calc(25% - 24px / 4);
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#shopify-section-blog-posts .grid__item img {
  vertical-align: bottom;
  margin-bottom: 7px;
}

#shopify-section-blog-posts .grid__item:nth-child(4n) {
  margin-right: 0;
}

#shopify-section-blog-posts .bloslists-item {
  display: inline-block;
  width: 100%;
}

#shopify-section-blog-posts .bloslists-item:hover .bloslists-item-date {
  color: #6b99cf;
}

#shopify-section-blog-posts .bloslists-item:hover .bloglists-item-ttl {
  color: #6b99cf;
}

#shopify-section-blog-posts .bloslists-item:hover img {
  opacity: 0.8;
}

#shopify-section-blog-posts .bloslists-item img {
  transition: 0.3s;
}

#shopify-section-blog-posts .bloslists-item-date {
  font-size: 12px;
  color: #000000;
  transition: 0.3s;
}

#shopify-section-blog-posts .bloglists-item-ttl {
  font-size: 10px;
  font-weight: normal;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 0;
  color: #000000;
  transition: 0.3s;
}

@media (max-width: 1023px) {
  #shopify-section-blog-posts .inner {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  #shopify-section-blog-posts {
    padding: 40px 0 0 0;
  }
  #shopify-section-blog-posts .bloglists-ttl {
    font-size: 22px;
    margin-bottom: 20px;
  }
  #shopify-section-blog-posts .inner {
    padding: 0 15px;
  }
  #shopify-section-blog-posts .bloslists-item-img {
    position: relative;
    width: 100%;
  }
  #shopify-section-blog-posts .bloslists-item-img:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  #shopify-section-blog-posts .bloslists-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    vertical-align: bottom;
    object-fit: cover;
  }
  #shopify-section-blog-posts .bloslists-item-date {
    margin-left: 0;
  }
  #shopify-section-blog-posts .bloglists-item-ttl {
    margin-left: 0;
    padding-right: 7px;
    font-size: 12px;
  }
  #shopify-section-blog-posts .grid__item {
    margin-right: 15px;
    margin-bottom: 15px;
    width: calc(50% - 15px / 2);
  }
  #shopify-section-blog-posts .grid__item img {
    margin-bottom: 4px;
  }
  #shopify-section-blog-posts .grid__item:nth-child(2n) {
    margin-right: 0;
  }
  #shopify-section-blog-posts .grid-view-item__image-wrapper {
    margin: 0 auto 5px;
  }
}

/*================ mari-colore-message ================*/
#shopify-section-message {
  padding: 25px 0 58px;
}

#shopify-section-message .message-section-ttl {
  text-align: center;
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  margin-bottom: 47.9px;
  text-transform: initial;
}

#shopify-section-message .inner {
  max-width: 920px;
  padding: 0 55px;
}

#shopify-section-message .message-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 50px 10px 55px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

#shopify-section-message .message-box-left {
  width: 67.778%;
}

#shopify-section-message .message-box-left .message-ttl {
  font-size: 30px;
  font-family: Quicksand;
  font-weight: 100;
  color: #000000;
}

#shopify-section-message .message-box-left .message-ttl2 {
  display: none;
}

#shopify-section-message .message-box-left .message-sub {
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#shopify-section-message .message-box-left .message-sub2 {
  display: none;
}

#shopify-section-message .message-box-left .message-txt {
  border-left: 1px solid #9595a2;
  padding-left: 20px;
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.8;
  margin-bottom: 0;
  color: #000000;
}

#shopify-section-message .message-box-right {
  width: 27.778%;
	margin-top: 64.444px;
}

#shopify-section-message .message-box-right img {
  vertical-align: bottom;
}

#shopify-section-message .icon-frame-top-left {
  position: absolute;
  top: -9px;
  left: -39px;
}

#shopify-section-message .icon-frame-top-right {
  position: absolute;
  top: -9px;
  right: -39px;
}

#shopify-section-message .icon-frame-bottom-left {
  position: absolute;
  bottom: -9px;
  left: -39px;
}

#shopify-section-message .icon-frame-bottom-right {
  position: absolute;
  bottom: -9px;
  right: -39px;
}

@media (max-width: 1023px) {
  #shopify-section-message .inner {
    padding: 0 55px;
  }
  #shopify-section-message .message-box {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  #shopify-section-message {
    padding: 35px 0 0;
  }
  #shopify-section-message .message-section-ttl {
    font-size: 22px;
    margin-bottom: 20px;
  }
  #shopify-section-message .inner {
    padding: 0 38px;
  }
  #shopify-section-message .message-box {
    display: block;
    padding: 40px 0;
    border-top: none;
    border-bottom: none;
    position: relative;
  }
  #shopify-section-message .message-box:before {
    display: block;
    content: "";
    position: absolute;
    left: 4%;
    top: 0;
    background-color: #707070;
    width: 92%;
    height: 1px;
  }
  #shopify-section-message .message-box:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 4%;
    background-color: #707070;
    width: 92%;
    height: 1px;
  }
  #shopify-section-message .message-box-left {
    width: 100%;
    margin-bottom: 20px;
  }
  #shopify-section-message .message-box-left .message-ttl {
    display: none;
  }
  #shopify-section-message .message-box-left .message-sub {
    display: none;
  }
  #shopify-section-message .message-box-left .message-ttl2 {
    display: block;
    text-align: right;
    font-size: 22px;
  }
  #shopify-section-message .message-box-left .message-sub2 {
    display: block;
    text-align: right;
  }
  #shopify-section-message .message-box-left .message-txt {
    border-left: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  #shopify-section-message .message-box-right {
    width: 60%;
    margin: 0 auto;
  }
  #shopify-section-message .message-box-right img {
    width: 100%;
  }
  #shopify-section-message .icon-frame-top-left {
    left: -27px;
  }
  #shopify-section-message .icon-frame-top-right {
    right: -27px;
  }
  #shopify-section-message .icon-frame-bottom-left {
    left: -27px;
  }
  #shopify-section-message .icon-frame-bottom-right {
    right: -27px;
  }
}

/*================ mari-colore-login ================*/
.template-customers-login .main-content {
  padding: 146px 0 160px;
}

.template-customers-login .grid {
  margin-left: 0;
}

.template-customers-login .login-form-grid {
  width: 401px;
  margin: 0 auto;
  padding-left: 0;
}

.template-customers-login h1, .template-customers-login .h1 {
  font-size: 2em;
  margin-bottom: 40px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  color: #000;
}

.template-customers-login form {
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
}

.template-customers-login input {
  margin-bottom: 30px;
  border: 1px solid #9595a2;
  border-radius: 0;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.template-customers-login input[type="submit"] {
  font-size: 12px;
  margin-bottom: 10px;
  border: none;
  background-color: #6b99cf;
}

.template-customers-login input[type="submit"]:hover {
  background-color: #6b99cf;
}

.template-customers-login #RecoverPassword {
  margin-right: 20px;
  transition: 0.3s;
}

.template-customers-login #RecoverPassword:hover {
  color: #6b99cf;
}

.template-customers-login #customer_register_link,
.template-customers-login #RecoverPassword {
  font-size: 12px;
  color: #707070;
}

.template-customers-login #customer_register_link {
  transition: 0.3s;
}

.template-customers-login #customer_register_link:hover {
  color: #6b99cf;
}

.template-customers-login #RecoverPasswordForm h2, .template-customers-login #RecoverPasswordForm .h2 {
  margin-bottom: 40px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
}

.template-customers-login #RecoverPasswordForm p {
  font-size: 10px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
  margin-bottom: 20px;
}

.template-customers-login #RecoverPasswordForm #HideRecoverPasswordLink {
  font-size: 12px;
  color: #707070;
  transition: 0.3s;
}

.template-customers-login #RecoverPasswordForm #HideRecoverPasswordLink:hover {
  color: #6b99cf;
}

.template-customers-login #RecoverPasswordForm input[type="submit"] {
  font-size: 12px;
  margin-bottom: 10px;
  width: 200px;
  padding: 13px 18px;
  border: none;
  background-color: #6b99cf;
}

.template-customers-login #RecoverPasswordForm input[type="submit"]:hover {
  background-color: #6b99cf;
}

.template-customers-login .grid__item {
  float: none;
}

@media (max-width: 767px) {
  .template-customers-login .main-content {
    padding: 160px 0 160px;
  }
  .template-customers-login .login-form-grid {
    width: 90%;
  }
  .template-customers-login .site-footer .breadcrumbs-box {
    border-top: 1px solid #707070;
  }
}

@media (max-width: 767px) {
  .template-customers-login .main-content {
    padding: 180px 0 160px;
  }
}

@media (max-width: 413px) {
  .template-customers-login .login-form-grid {
    width: 97%;
  }
}

/*================ mari-colore-home ================*/
.home .main-content {
  padding-top: 0;
}

.home #shopify-section-collection-new {
  padding-top: 80px;
}

@media (max-width: 767px) {
  .home #shopify-section-collection-new {
    padding-top: 51px;
  }
}

/*================ ★cart ================*/
.sidebar::after {
  background: #ffffff;
}

.product-thumbnail__quantity {
  background-color: #6b99cf;
}

.continue_button {
  background-color: #6b99cf;
}

.btn,
.sp-modal-toggle {
  background-color: #6b99cf;
}

/*================ ★mypage ================*/
.list--inline button {
  background-color: #6b99cf;
  color: #ffffff;
}

.list--inline button:hover {
  background-color: transparent;
  color: #447ec3;
  border-color: #447ec3;
}

.list--inline .address-delete .btn--secondary button:hover {
  background-color: #447ec3;
  color: #ffffff;
}

.form-vertical input,
textarea,
select,
.disclosure__toggle {
  border: 1px solid #eeeeee;
}

.template-customers-account h1, .template-customers-account .h1,
.template-customers-account h2,
.template-customers-account .h2,
.template-customers-account p,
.template-customers-account a,
.template-customers-account span,
.template-customers-account li,
.template-customers-account th,
.template-customers-account td {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.template-customers-account h1, .template-customers-account .h1 {
  font-weight: normal;
}

.template-customers-addresses h1, .template-customers-addresses .h1,
.template-customers-addresses h2,
.template-customers-addresses .h2,
.template-customers-addresses p,
.template-customers-addresses a,
.template-customers-addresses span,
.template-customers-addresses li,
.template-customers-addresses th,
.template-customers-addresses td,
.template-customers-addresses button {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.template-customers-addresses .address-addcancel-box .address-add {
  display: inline-block;
}

.template-customers-addresses .address-addcancel-box .address-cancel {
  display: inline-block;
}

.template-customers-addresses .address-addcancel-box .address-cancel button {
  border: 1px solid #6b99cf;
  padding: 7px 18px 7.5px;
  margin-bottom: 19.44444px;
  margin-left: 5px;
  vertical-align: middle;
  border-radius: 2px;
}

@media (max-width: 750px) {
  .template-customers-addresses .address-addcancel-box .address-cancel button {
    padding: 5px 18px;
    margin-bottom: 19px;
  }
}

.template-customers-addresses h1, .template-customers-addresses .h1 {
  font-weight: normal;
}

.address_box td:nth-child(2n + 1) {
  border-right: 1px solid;
  width: 150px;
  text-align: center;
}

.address_box td:nth-child(2n + 0) {
  padding: 10px 50px;
}

.address_box tr {
  border-bottom: 40px solid #ffffff;
}

.address .list--inline {
  text-align: end;
  text-transform: initial;
  margin-right: 80px;
}

.address .address-delete button {
  background-color: transparent;
  color: #6b99cf;
}

.address .h4 {
  font-size: 30px;
  font-family: Quicksand;
  font-weight: 100;
  text-transform: initial;
  text-align: center;
}

.text-end .btn--secondary {
  border-radius: 3px;
  padding: 5px;
}

.bg_frame {
  padding: 70px 0 35px;
  margin: 0 auto;
  position: relative;
}

.bg_frame:before {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background-color: #707070;
  width: 91%;
  height: 1px;
}

.bg_frame:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: #707070;
  width: 91%;
  height: 1px;
}

.bg_frame .icon-frame-top-left {
  position: absolute;
  top: -8px;
  left: -10px;
}

.bg_frame .icon-frame-top-right {
  position: absolute;
  top: -8px;
  right: -10px;
}

.bg_frame .icon-frame-bottom-left {
  position: absolute;
  bottom: -8px;
  left: -10px;
}

.bg_frame .icon-frame-bottom-right {
  position: absolute;
  bottom: -8px;
  right: -10px;
}

.section_edit {
  border-left: 1px solid;
  margin: 30px 30px 30px 5px;
  padding: 50px;
}

@media (max-width: 1023px) {
  .bg_frame:before {
    width: 83%;
  }
  .bg_frame:after {
    width: 83%;
  }
  .bg_frame .icon-frame-top-left {
    position: absolute;
    top: -8px;
    left: 0px;
  }
  .bg_frame .icon-frame-top-right {
    position: absolute;
    top: -8px;
    right: 0px;
  }
  .bg_frame .icon-frame-bottom-left {
    position: absolute;
    bottom: -8px;
    left: 0px;
  }
  .bg_frame .icon-frame-bottom-right {
    position: absolute;
    bottom: -8px;
    right: 0px;
  }
}

@media (max-width: 767px) {
  .main-content {
    padding-top: 150px;
  }
  .bg_frame {
    padding: 50px 0 35px;
    margin: 0 auto;
  }
  .bg_frame:before {
    width: 79%;
  }
  .bg_frame:after {
    width: 79%;
  }
  .section_edit {
    padding: 30px;
  }
  .section_edit .btn--secondary {
    line-height: 1.1;
    vertical-align: middle;
  }
}

@media (max-width: 413px) {
  .main-content {
    padding-top: 150px;
  }
  .address_box tr {
    border-bottom: 20px solid #ffffff;
  }
  .address_box td:nth-child(2n + 1) {
    border-right: 1px solid;
    width: 100px;
    text-align: center;
  }
  .address_box td:nth-child(2n + 0) {
    padding: 10px 20px;
  }
  .address .list--inline {
    text-align: center;
    margin: 0 auto;
  }
  .bg_frame {
    padding: 93px 0 35px;
  }
  .text-end .form-vertical .btn {
    vertical-align: bottom;
  }
  .section_edit {
    padding: 30px;
  }
  .section_edit .btn--secondary {
    line-height: 1.1;
    vertical-align: middle;
  }
}

.Quicksand_font {
  font-size: 30px;
  font-family: Quicksand;
  font-weight: 100;
  text-transform: initial;
  margin-bottom: 40px;
}

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

#AddressNewButton {
  background-color: #ffffff;
  color: #6b99cf;
  border: 1px solid #6b99cf;
}

/*================ mari-colore-template-product ================*/
.page-id-8 #shopify-section-collection-new {
  padding-top: 90px;
}

.page-id-8 .search-menu-section {
  padding: 40px 0 0;
}

.page-id-8 .shopify-buy-frame {
    margin-bottom: 50px;
 }

.page-id-8 #product-component2 {
  margin-bottom: 0px;
  max-width: 150px !important;
}

.page-id-8 #product-component2 iframe {
   height: 36px !important;
}


#shopify-section-product-template .page-width {
  max-width: 1000px;
  box-sizing: content-box;
}

#shopify-section-product-template .product-single-upper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 27px;
}

#shopify-section-product-template .grid {
  margin-left: 0;
}

#shopify-section-product-template .grid__item {
  padding-left: 0;
  float: none;
  width: auto;
}

#shopify-section-product-template .swiper-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto 0;
  padding-bottom: 30px;
  overflow: hidden !important;
}

#shopify-section-product-template .swiper-slide {
  position: relative;
}

#shopify-section-product-template .swiper-slide:before {
  content: "";
  display: block;
  padding-top: 110.9375%;/*142.83905%*/
}

#shopify-section-product-template .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

#shopify-section-product-template .swiper-container-horizontal > .swiper-pagination-bullets,
#shopify-section-product-template .swiper-pagination-custom,
#shopify-section-product-template .swiper-pagination-fraction {
  bottom: 5px;
}

#shopify-section-product-template .swiper-pagination-bullet-active {
  background: #6b99cf;
}

#shopify-section-product-template .thumbnail .swiper-slide {
  opacity: 0.5;
  transition: 0.3s;
  position: relative;
/*   width: calc(25% - 21px / 4) !important; */
}

#shopify-section-product-template .thumbnail .swiper-slide:hover {
  cursor: pointer;
}

#shopify-section-product-template .thumbnail .swiper-slide:before {
  content: "";
  display: block;
  padding-top: 110.9375%;/*142.83905%*/
}

#shopify-section-product-template .thumbnail .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

#shopify-section-product-template .thumbnail .swiper-slide-active {
  opacity: 1;
}

#shopify-section-product-template .grid__item-left {
  width: 40%;
}

#shopify-section-product-template .grid__item-right {
  color: #000;
  width: 52%;
}

#shopify-section-product-template .original-box {
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 47px 0 36px;
  position: relative;
  margin: 8px 0 15px;
}

#shopify-section-product-template .original-box .original {
  font-size: 14px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  padding-right: 10px;
}

#shopify-section-product-template .campaign {
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
  margin-left: -7px;
	margin-bottom: 20px;
}

#shopify-section-product-template .product-single__title {
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
  color: #000;
  margin-bottom: 16px;
}

#shopify-section-product-template .product-single__title .product-title-sub {
  font-size: 12px;
  display: block;
  margin-bottom: 7px;
}

#shopify-section-product-template .price-item {
  font-size: 16px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
  color: #000;
}

#shopify-section-product-template .price__badge--sold-out {
  color: red;
  border-color: red;
}

#shopify-section-product-template .tag-box {
  text-align: right;
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #6b99cf;
  margin-bottom: 30px;
}

#shopify-section-product-template .tag-box .tag-name {
  margin-left: 20px;
  display: inline-block;
}

#shopify-section-product-template .tag-box .tag-name a {
  color: #6b99cf;
  display: inline-block;
}

#shopify-section-product-template .product-size {
  display: flex;
  justify-content: left;
  margin-bottom: 20px;
}

#shopify-section-product-template .product-size .product-size-ttl {
/*   width: 19%; */
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin: 0 40px 0 0;
  color: #000;
}

#shopify-section-product-template .product-size .product-size-form {
  width: 100%;
}

#shopify-section-product-template .product-size .radio-inline__input_box {
  display: inline-block;
}


#shopify-section-product-template .product-size .radio-inline__input {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

#shopify-section-product-template .product-size .radio-inline__input:focus + .radio-inline__label {
  outline: none !important;
}

#shopify-section-product-template .product-size .radio-inline__label {
  display: inline-block;
  text-align: center;
  width: 30px;
  border-bottom: 1px solid #6b99cf;
  margin-right: 10px;
  transition: all 0.2s;
  color: #6b99cf;
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#shopify-section-product-template .product-size .radio-inline__label:hover {
  cursor: pointer;
}

#shopify-section-product-template .product-size .radio-inline__input:checked + .radio-inline__label {
  background: #6b99cf;
  color: #fff;
}

#shopify-section-product-template .product-size .onesize {
  margin-bottom: 0;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#shopify-section-product-template .product-buy {
  display: flex;
  justify-content: left;
  margin-bottom: 36px;
}

#shopify-section-product-template .product-buy .product-buy-ttl {
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin: 0 60px 0 0;
  color: #000;
}

#shopify-section-product-template .product-buy input[type="radio"] {
  position: absolute;
  opacity: 0;
}

#shopify-section-product-template .product-buy .sealsubs-container {
  padding: 0 !important;
  margin-bottom: 0;
}

#shopify-section-product-template .product-buy .seal-table {
  display: inline-block;
  width: auto;
  border: none;
  padding: 0;
  margin-right: 38px;
}

#shopify-section-product-template .product-buy .seal-table .seal-row:nth-child(1) .seal-col:nth-child(1) {
  display: none;
}

#shopify-section-product-template .product-buy .sls-description {
  display: none;
}

#shopify-section-product-template .product-buy .sls-label-container {
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#shopify-section-product-template .product-buy .sls-label-container label {
  display: inline-block;
}

#shopify-section-product-template .product-buy .sls-label-container label:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #6b99cf;
  display: inline-block;
  width: 8px;
  height: 8px;
  position: relative;
  top: 6px;
  margin-right: 5px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}

#shopify-section-product-template .product-buy .sls-label-container .sls-select-container {
  display: inline-block;
}

#shopify-section-product-template .product-buy .sls-active .sls-label-container label {
  color: #6b99cf;
}

#shopify-section-product-template .product-buy .sls-active .sls-label-container label:before {
  background-color: #6b99cf;
  box-shadow: inset 0 0 0 1px #fff;
}

#shopify-section-product-template .product-buy .sls-active .sls-label-container .sls-select-container {
  color: #6b99cf;
}

#shopify-section-product-template .cart-btn-box {
  margin-bottom: 80px;
}

#shopify-section-product-template .cart-btn-box .cart-btn {
  display: inline-block;
  width: 240px;
  text-align: center;
  color: #6b99cf;
  background-color: transparent;
  border: 1px solid #6b99cf;
  border-radius: 0;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 6px 0 7px;
}

#shopify-section-product-template .cart-btn-box .icon-cart-blue {
  vertical-align: bottom;
}

#shopify-section-product-template .color-variation {
  margin-bottom: 80px;
}

#shopify-section-product-template .color-variation .color-variation-ttl {
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 20px;
}

#shopify-section-product-template .color-variation .color-variation-box {
  display: flex;
  justify-content: flex-start;
}

#shopify-section-product-template .color-variation .color-variation-box .color-variation-item {
  position: relative;
  width: 100%;
}

#shopify-section-product-template .color-variation .color-variation-box .color-variation-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}

#shopify-section-product-template .color-variation .color-variation-box .color-variation-item img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#shopify-section-product-template .description-content .description-concept-box {
  margin-bottom: 37px;
}

#shopify-section-product-template .description-content .description-concept-box .description-concept-ttl {
  display: inline-block;
  font-size: 16px;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 15px;
}

#shopify-section-product-template .description-content .description-concept-box pre {
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  border-left: 1px solid #707070;
  padding-left: 20px;
  line-height: 1.9;
  margin-bottom: 11px;
	white-space: pre-wrap ;
}

#shopify-section-product-template .description-content .description-txt-box .description-txt-ttl {
  display: inline-block;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-bottom: 15px;
}

#shopify-section-product-template .description-content .description-txt-box pre {
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding-left: 20px;
  border-left: 1px solid #707070;
  line-height: 1.9;
  margin-bottom: 11px;
	white-space: pre-wrap ;
}

#shopify-section-product-template .description-imgs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 13px;
}

#shopify-section-product-template .description-imgs .description-img-item {
  width: 49%;
  position: relative;
}

#shopify-section-product-template .description-imgs .description-img-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}

#shopify-section-product-template .description-imgs .description-img-item img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#shopify-section-product-template .description-imgs .description-img-item:nth-child(1) {
  margin-bottom: 10px;
}

#shopify-section-product-template .description-imgs .description-img-item:nth-child(2) {
  margin-bottom: 10px;
}


#shopify-section-product-template .product-single-downer {
  padding-top: 100px;
}

#shopify-section-product-template .product-single-downer .detail-ttl {
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: normal;
  margin-bottom: 40px;
  text-transform: initial;
  text-align: center;
}

#shopify-section-product-template .product-single-downer .detail-box {
  padding: 68px 40px 60px 15px;
  position: relative;
  margin-bottom: 18px;
}

#shopify-section-product-template .product-single-downer .detail-box:before {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background-color: #707070;
  width: 92%;
  height: 1px;
}

#shopify-section-product-template .product-single-downer .detail-box:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: #707070;
  width: 92%;
  height: 1px;
}

#shopify-section-product-template .product-single-downer .detail-box .icon-frame-top-left {
  position: absolute;
  top: -8px;
  left: 0px;
}

#shopify-section-product-template .product-single-downer .detail-box .icon-frame-top-right {
  position: absolute;
  top: -8px;
  right: 0px;
}

#shopify-section-product-template .product-single-downer .detail-box .icon-frame-bottom-left {
  position: absolute;
  bottom: -8px;
  left: 0;
}

#shopify-section-product-template .product-single-downer .detail-box .icon-frame-bottom-right {
  position: absolute;
  bottom: -8px;
  right: 0;
}

#shopify-section-product-template .product-single-downer .table-dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 40px 0;
}

#shopify-section-product-template .product-single-downer .table-dl .table-dt {
  width: 14%;
  text-align: center;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

#shopify-section-product-template .product-single-downer .table-dl .table-dd {
  margin-left: 0;
  width: 86%;
  border-left: 1px solid #707070;
  padding: 5px 0 5px 30px;
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.8;
}

#shopify-section-product-template .product-single-downer .table-dl .table-dd.table-dd-spec li {
  list-style: inside;
}

#shopify-section-product-template .product-single-downer .table-dl .table-dd .br-md {
  display: none;
}

#shopify-section-product-template .product-single-downer .table-dl .table-dd .bluesm {
  color: #6b99cf;
  font-size: 10px;
}

#shopify-section-product-template .product-single-downer .table-inner1 {
  border-collapse: separate;
  border-spacing: 5px 0px;
  margin-bottom: 0;
}

#shopify-section-product-template .product-single-downer .table-inner1 .table-inner1-tr:nth-child(4) .table-inner1-th,
#shopify-section-product-template .product-single-downer .table-inner1 .table-inner1-tr:nth-child(4) .table-inner1-td {
  border-bottom: none;
}

#shopify-section-product-template .product-single-downer .table-inner1 .table-inner1-th {
  width: 131px;
  border: none;
  text-align: center;
  border-bottom: 1px solid #000;
  padding: 4px 25px;
}

#shopify-section-product-template .product-single-downer .table-inner1 .table-inner1-td {
  border: none;
  text-align: center;
  color: #707070;
  border-bottom: 1px solid #707070;
  padding: 4px 25px;
}

#shopify-section-product-template .product-single-downer .table-inner2 {
  border-collapse: separate;
  border-spacing: 0px 10px;
  margin-bottom: 0;
}

#shopify-section-product-template .product-single-downer .table-inner2 .table-inner2-th {
  width: 70px;
  border: none;
  padding: 0;
}

#shopify-section-product-template .product-single-downer .table-inner2 .table-inner2-td {
  border: none;
  padding: 0;
}

#shopify-section-product-template .product-single-downer .table-inner2 .table-inner2-td .br-sm {
  display: none;
}

#shopify-section-product-template .fadeprice {
  display: none !important;
  position: fixed;
  bottom: 35px;
  left: 0;
  z-index: 10;
  background-color: #fafafa;
  padding: 13px 20px 13px;
  width: 100%;
  border-bottom: 1px solid #707070;
}

#shopify-section-product-template .fadeprice .fadeprice-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#shopify-section-product-template .fadeprice .fadeprice-left .campaign {
  font-size: 10px;
  margin-bottom: 5px;
}

#shopify-section-product-template .fadeprice .fadeprice-left .price-item {
  font-size: 18px;
}

#shopify-section-product-template .fadeprice .fadeprice-left .price-item .price-item-tax {
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #6b99cf;
  display: inline-block;
  margin-left: 5px;
  font-weight: normal;
}

#shopify-section-product-template .fadeprice .fadeprice-right .cart-btn {
  width: 175px;
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #6b99cf;
  border: 1px solid #6b99cf;
  border-radius: 0;
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 7px 0 7px;
}

#shopify-section-product-template .fadeprice .fadeprice-right .cart-btn .icon-cart-blue-sm {
  vertical-align: bottom;
}

#shopify-section-product-template .fadeprice .fadeprice-right .cart-btn .icon-cart-blue-sm .cls-1 {
  fill: #6b99cf;
}

#shopify-section-product-template .fadeprice .fadeprice-right .cart-btn .icon-cart-blue-sm .cls-2 {
  stroke: #fff;
}

#shopify-section-product-template .fadeprice .fadeprice-right .cart-btn:hover {
  cursor: pointer;
}

@media (max-width: 1023px) {
  #shopify-section-product-template .product-size .product-size-ttl {
/*     width: 28%; */
    margin: 0 30px 0 0;
  }
  #shopify-section-product-template .product-buy .product-buy-ttl {
    margin: 0 30px 0 0;
    width: 21%;
  }
  #shopify-section-product-template .description-box .description-imgs {
    width: 42%;
    align-items: center;
  }
  #shopify-section-product-template .product-single-downer .detail-box:before {
    width: 88%;
  }
  #shopify-section-product-template .product-single-downer .detail-box:after {
    width: 88%;
  }
  #shopify-section-product-template .product-single-downer .table-dl .table-dt {
    width: 16%;
  }
  #shopify-section-product-template .product-single-downer .table-dl .table-dd {
    margin-left: 0;
    width: 84%;
  }
  #shopify-section-product-template .product-single-downer .table-inner1 .table-inner1-th {
    padding: 4px 10px;
    width: 100px;
  }
  #shopify-section-product-template .product-single-downer .table-inner1 .table-inner1-td {
    padding: 4px 10px;
  }
}

@media (max-width: 767px) {
  #shopify-section-product-template {
    padding-top: 1px;
  }
  #shopify-section-product-template .page-width {
    padding-right: 0;
    padding-left: 0;
  }
  #shopify-section-product-template .product-single-upper {
    display: block;
    margin-bottom: 30px;
  }
  #shopify-section-product-template .grid__item-left {
    margin-bottom:45px;
    width: 100%;
  }
  #shopify-section-product-template .grid__item-right {
    width: 100%;
    padding: 0 15px;
  }
  #shopify-section-product-template .original-box {
    padding: 24px 7px 17px;
    margin: 8px 0 10px;
  }
  #shopify-section-product-template .original-box .original {
    padding-right: 10px;
    padding-left: 4px;
  }
  #shopify-section-product-template .campaign {
    margin-bottom: 15px;
  }
  #shopify-section-product-template .price-item {
    font-weight: bold;
  }
  #shopify-section-product-template .tag-box {
    padding-right: 10px;
    margin-bottom: 30px;
  }
  #shopify-section-product-template .product-size {
    margin-bottom: 31px;
  }
  #shopify-section-product-template .product-size .product-size-ttl {
    margin: 0 40px 0 0px;
/*     width: 27%; */
  }
  #shopify-section-product-template .swiper-container {
    width: auto;
    max-width: 767px;
    height: auto;
    margin: 0 auto 31px;
    padding-bottom: 0;
  }
  #shopify-section-product-template .swiper-container.slider2 {
    overflow: visible !important;
  }
  #shopify-section-product-template .swiper-container.slider2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  #shopify-section-product-template .swiper-pagination-bullet-active {
    background: #6b99cf;
  }
  #shopify-section-product-template .swiper-container-horizontal > .swiper-pagination-bullets,
  #shopify-section-product-template .swiper-pagination-custom,
  #shopify-section-product-template .swiper-pagination-fraction {
    bottom: -27px;
  }
  #shopify-section-product-template .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px;
  }
  #shopify-section-product-template .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  #shopify-section-product-template .swiper-pagination {
    display: block;
  }
 #shopify-section-product-template .thumbnail {
    display: none;
  }
  #shopify-section-product-template .thumbnail .swiper-wrapper {
    padding: 0;
    box-sizing: border-box;
  }
  #shopify-section-product-template .thumbnail .swiper-slide {
/*     width: calc(14.286% - 60px / 7) !important; */
  }
  #shopify-section-product-template .thumbnail .swiper-slide:hover {
    cursor: pointer;
  }
  #shopify-section-product-template .thumbnail .swiper-slide-active {
    opacity: 1;
  }
 #shopify-section-product-template #vue_unit5_twoSlide .thumbnail {
    height: 70px;
    width: 27%;
    overflow-x: hidden;
  }
  #shopify-section-product-template #vue_unit5_threeSlide .thumbnail {
    height: 70px;
    width: 41%;
    overflow-x: hidden;
  }
  #shopify-section-product-template #vue_unit5_fourSlide .thumbnail {
    height: 70px;
    width: 56%;
    overflow-x: hidden;
  }
  #shopify-section-product-template #vue_unit5_fiveSlide .thumbnail {
    height: 70px;
    width: 71%;
    overflow-x: hidden;
  }
  #shopify-section-product-template #vue_unit5_sixSlide .thumbnail {
    height: 70px;
    width: 85.4%;
    overflow-x: hidden;
  }
  #shopify-section-product-template #vue_unit5_sevenSlide .thumbnail {
    height: 70px;
  }
  #shopify-section-product-template .product-buy {
    margin-bottom: 20px;
  }
  #shopify-section-product-template .product-buy .product-buy-ttl {
    margin: 0 34px 0 0px;
  }
  #shopify-section-product-template .product-buy .seal-table:nth-child(2) {
    margin-right: 0px;
  }
  #shopify-section-product-template .cart-btn-box {
    margin-bottom: 30px;
  }
  #shopify-section-product-template .cart-btn-box .cart-btn {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  #shopify-section-product-template .color-variation .color-variation-ttl {
    padding-left: 0px;
    margin-bottom: 15px;
  }

  #shopify-section-product-template .description-imgs {
    display: none;
  }

  #shopify-section-product-template .product-single-middle {
    padding: 0 15px;
  }
  #shopify-section-product-template .product-single-downer {
    padding-top: 30px;
  }
  #shopify-section-product-template .product-single-downer .grid__item {
    padding: 0 15px;
  }
  #shopify-section-product-template .product-single-downer .detail-ttl {
    font-size: 22px;
    margin-bottom: 29px;
  }
  #shopify-section-product-template .product-single-downer .detail-box {
    padding: 5px 15px 5px;
    margin-bottom: 8px;
  }
  #shopify-section-product-template .product-single-downer .detail-box:before {
    width: 81%;
  }
  #shopify-section-product-template .product-single-downer .detail-box:after {
    width: 81%;
  }
  #shopify-section-product-template .product-single-downer .table-dl {
    display: block;
    margin: 30px 0;
  }
  #shopify-section-product-template .product-single-downer .table-dl .table-dt {
    width: 100%;
    font-weight: bold;
    margin-bottom: 18px;
    font-size: 12px;
  }
  #shopify-section-product-template .product-single-downer .table-dl .table-dt.table-dt-size {
    margin-bottom: 15px;
  }
  #shopify-section-product-template .product-single-downer .table-dl .table-dt.table-dt-spec {
    margin-bottom: 10px;
  }
  #shopify-section-product-template .product-single-downer .table-dl .table-dt.table-dt-note {
    margin-top: -5px;
  }
  #shopify-section-product-template .product-single-downer .table-dl .table-dd {
    width: 100%;
    border-left: none;
    padding: 0;
    font-size: 10px;
  }
  #shopify-section-product-template .product-single-downer .table-dl .table-dd.table-dd-ship {
    text-align: center;
  }
  #shopify-section-product-template .product-single-downer .table-dl .table-dd .table-scroll {
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  #shopify-section-product-template .product-single-downer .table-dl .table-dd .br-md {
    display: block;
  }
  #shopify-section-product-template .product-single-downer .table-inner1 .table-inner1-th {
    padding: 4px 25px;
  }
  #shopify-section-product-template .product-single-downer .table-inner1 .table-inner1-td {
    padding: 4px 25px;
  }
  #shopify-section-product-template .product-single-downer .table-inner2 {
    margin-bottom: 0px;
  }
  #shopify-section-product-template .product-single-downer .table-inner2 .table-inner2-th {
    padding: 0;
    border-right: 1px solid #000;
    text-align: center;
    width: 80px;
    padding: 0 15px;
  }
  #shopify-section-product-template .product-single-downer .table-inner2 .table-inner2-td {
    padding-left: 17px;
    font-size: 10px;
  }
}

@media (max-width: 749px) {
  #shopify-section-product-template {
    padding-top: 65px;
  }
}

@media (max-width: 413px) {
  #shopify-section-product-template .product-size .product-size-ttl {
/*     width: 30%; */
  }
  #shopify-section-product-template .product-buy .product-buy-ttl {
    margin: 0 37px 0 0px;
  }
  #shopify-section-product-template .product-single-downer .detail-box:before {
    width: 78%;
  }
  #shopify-section-product-template .product-single-downer .detail-box:after {
    width: 78%;
  }
  #shopify-section-product-template .product-single-downer .table-inner2 .table-inner2-th {
    padding: 0 31px 0 12px;
    text-align: left;
  }
  #shopify-section-product-template .product-single-downer .table-inner2 .table-inner2-tr:nth-child(4) .table-inner2-th {
    padding: 0 0 0 0px;
  }
  #shopify-section-product-template .product-single-downer .table-inner2 .table-inner2-td .br-sm {
    display: block;
  }
  #shopify-section-product-template .fadeprice .fadeprice-right .cart-btn {
    width: 150px;
  }
}

/*================ mari-colore-template-customer-resister ================*/
.template-customers-register .main-content {
  padding-top: 50px;
}

.template-customers-register .form-vertical {
  padding: 100px 0;
}

.template-customers-register .grid__resister {
  margin-left: 0;
}

.template-customers-register .grid__resister .grid__item {
  width: 400px;
  margin: 0 auto;
  float: none;
  padding-left: 0;
}

.template-customers-register h1, .template-customers-register .h1 {
  font-size: 20px;
  margin-bottom: 40px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
  font-weight: normal;
}

.template-customers-register #RegisterForm {
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
}

.template-customers-register input {
  border: 1px solid #9595a2;
  border-radius: 0;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.template-customers-register input[type="submit"] {
  font-size: 12px;
  margin: 10px 0 10px;
  width: 200px;
  border: none;
  border-radius: 0;
  padding: 13px 18px;
  background-color: #6b99cf;
}

.template-customers-register input[type="submit"]:hover {
  background-color: #6b99cf;
}

@media (max-width: 767px) {
  .template-customers-register .main-content {
    padding-top: 35px;
  }
  .template-customers-register .grid__resister {
    margin-left: 0;
  }
  .template-customers-register .grid__resister .grid__item {
    width: 90%;
    padding-left: 0;
  }
  .template-customers-register .site-footer .breadcrumbs-box {
    border-top: 1px solid #707070;
  }
}

@media (max-width: 749px) {
  .template-customers-register .form-vertical {
    padding: 150px 0 100px;
  }
}

@media (max-width: 413px) {
  .template-customers-register .grid__resister .grid__item {
    width: 97%;
  }
}

/*================ mari-colore-template-customers-activate_account ================*/
.template-customers-activate_account .main-content {
  padding-top: 150px;
}

.template-customers-activate_account .section-header {
  margin-bottom: 30px;
}

.template-customers-activate_account .form-vertical {
  padding: 0 0 80px;
}

.template-customers-activate_account .grid__activate {
  margin-left: 0;
}

.template-customers-activate_account .grid__activate .grid__item {
  width: 500px;
  margin: 0 auto;
  float: none;
  padding-left: 0;
}

.template-customers-activate_account h1, .template-customers-activate_account .h1 {
  font-size: 20px;
  margin-bottom: 40px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
  color: #000;
}

.template-customers-activate_account p {
  font-size: 10px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
  margin-bottom: 20px;
}

.template-customers-activate_account .form-vertical {
  width: 400px;
  margin: 0 auto;
}

.template-customers-activate_account input {
  border: 1px solid #9595a2;
  border-radius: 0;
  margin-bottom: 30px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.template-customers-activate_account input.btn-activate {
  font-size: 12px;
  margin: 10px 0 20px;
  width: 200px;
  border: none;
  border-radius: 0;
  padding: 13px 18px;
  background-color: #6b99cf;
}

.template-customers-activate_account input.btn-activate:hover {
  background-color: #6b99cf;
}

.template-customers-activate_account input[name="decline"] {
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #000;
}

@media (max-width: 767px) {
  .template-customers-activate_account .main-content {
    padding-top: 140px;
  }
  .template-customers-activate_account .grid__activate {
    margin-left: 0;
  }
  .template-customers-activate_account .grid__activate .grid__item {
    width: 90%;
    padding-left: 0;
  }
  .template-customers-activate_account .form-vertical {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 749px) {
  .template-customers-activate_account .main-content {
    padding-top: 200px;
  }
}

@media (max-width: 413px) {
  .template-customers-activate_account .grid__activate .grid__item {
    width: 97%;
  }
}

/*================ mari-colore-template-customers-reset_password================*/
.template-customers-reset_password .main-content {
  padding-top: 145px;
}

.template-customers-reset_password .form-vertical {
  padding: 0 0 167px;
}

.template-customers-reset_password .grid__reset {
  margin-left: 0;
}

.template-customers-reset_password .grid__reset .grid__item {
  max-width: 1000px;
  margin: 0 auto;
  float: none;
  padding-left: 0;
}

.template-customers-reset_password h1, .template-customers-reset_password .h1 {
  font-size: 2em;
  margin-bottom: 40px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  color: #000;
}

.template-customers-reset_password p {
  margin-bottom: 30px;
  font-size: 14px;
}

.template-customers-reset_password .input-box {
  width: 400px;
  margin: 0 auto;
  font-size: 14px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.template-customers-reset_password input {
  border: 1px solid #9595a2;
  border-radius: 0;
  margin-bottom: 30px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.template-customers-reset_password input[type="submit"] {
  font-size: 12px;
  display: block;
  margin: 10px auto 20px;
  width: 200px;
  border: none;
  border-radius: 0;
  padding: 13px 18px;
  background-color: #6b99cf;
}

.template-customers-reset_password input[type="submit"]:hover {
  background-color: #6b99cf;
}

@media (max-width: 767px) {
  .template-customers-reset_password .main-content {
    padding-top: 200px;
  }
  .template-customers-reset_password .grid__reset {
    margin-left: 0;
  }
  .template-customers-reset_password .grid__reset .input-box {
    width: 90%;
  }
}

@media (max-width: 413px) {
  .template-customers-reset_password .grid__reset .input-box {
    width: 97%;
  }
}

/*================ mari-colore-template-page.contact.liquid================*/
.page-contact {
  padding-bottom: 100px;
}

.page-contact h1, .page-contact .h1 {
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  margin-bottom: 40px;
  text-transform: initial;
  color: #000;
}

.page-contact div.contact-form {
  padding: 80px 0;
  position: relative;
}

.page-contact div.contact-form:before {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background-color: #707070;
  width: 100%;
  height: 1px;
}

.page-contact div.contact-form:after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: #707070;
  width: 100%;
  height: 1px;
}

.page-contact div.contact-form .icon-frame-top-left {
  position: absolute;
  top: -8px;
  left: -38px;
}

.page-contact div.contact-form .icon-frame-top-right {
  position: absolute;
  top: -8px;
  right: -38px;
}

.page-contact div.contact-form .icon-frame-bottom-left {
  position: absolute;
  bottom: -8px;
  left: -38px;
}

.page-contact div.contact-form .icon-frame-bottom-right {
  position: absolute;
  bottom: -8px;
  right: -38px;
}

.page-contact .submit-box {
  text-align: center;
}

.page-contact input[type="submit"] {
  font-size: 12px;
  margin-top: 40px;
  border: none;
  background-color: #6b99cf;
  border-radius: 0;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.page-contact input[type="submit"]:hover {
  background-color: #6b99cf;
}

@media (max-width: 767px) {
  .page-contact {
    padding-top: 50px;
  }
}

@media (max-width: 750px) {
  .page-contact {
    padding-top: 140px;
  }
  .page-contact div.contact-form {
    width: 90%;
    margin: 0 auto;
  }
  .page-contact div.contact-form:before {
    width: 92%;
  }
  .page-contact div.contact-form:after {
    width: 92%;
  }
  .page-contact div.contact-form .icon-frame-top-left {
    left: -24px;
  }
  .page-contact div.contact-form .icon-frame-top-right {
    right: -24px;
  }
  .page-contact div.contact-form .icon-frame-bottom-left {
    left: -24px;
  }
  .page-contact div.contact-form .icon-frame-bottom-right {
    right: -24px;
  }
}

/*================ mari-colore-template-policy================*/
.page-id-3 h1, .page-id-3 .h1,
.page-id-10 h1,
.page-id-10 .h1 {
  font-size: 18px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  text-transform: initial;
  color: #000;
}

.page-id-3 .shopify-policy__container,
.page-id-10 .shopify-policy__container {
  max-width: 65ch;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-id-3 .shopify-policy__title,
.page-id-10 .shopify-policy__title {
  text-align: center;
}

.page-id-3 .shopify-policy__body .rte p,
.page-id-3 .shopify-policy__body .rte li,
.page-id-10 .shopify-policy__body .rte p,
.page-id-10 .shopify-policy__body .rte li {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 12px;
}

.page-id-3 .shopify-policy__body .rte .privacy-ttl,
.page-id-10 .shopify-policy__body .rte .privacy-ttl {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  margin-top: 80px;
  font-size: 14px;
  text-align: left;
}

.page-id-3 .shopify-policy__body .rte .privacy-name,
.page-id-10 .shopify-policy__body .rte .privacy-name {
  font-size: 10px;
  margin-top: 40px;
}

.page-id-3 table,
.page-id-10 table {
  margin-bottom: 30px;
}

.page-id-3 table td,
.page-id-10 table td {
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.page-id-3 table td.td-line,
.page-id-10 table td.td-line {
  border-right: 1px solid #707070;
  width: 164px;
}

@media (max-width: 767px) {
  .page-id-3 .main-content,
  .page-id-10 .main-content {
    padding: 120px 0 100px;
  }
  .page-id-3 table td.td-line,
  .page-id-10 table td.td-line {
    width: 140px;
  }
  .page-id-3 .site-footer .breadcrumbs-box,
  .page-id-10 .site-footer .breadcrumbs-box {
    border-top: 1px solid #707070;
  }
}

@media (max-width: 750px) {
  .page-id-3 .main-content,
  .page-id-10 .main-content {
    padding: 170px 0 100px;
  }
}

/*================ mari-colore-blog一覧 ================*/
.template-blog h1, .template-blog .h1 {
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  text-transform: initial;
  color: #000;
}

.template-blog .article__title.h3 {
  font-size: 18px;
}

.template-blog .article__date {
  font-size: 10px;
}

.template-blog .rte {
  font-size: 12px;
}

.template-blog .btn--tertiary {
  border-color: transparent;
  color: #fff;
}

@media (max-width: 767px) {
  .template-blog .site-footer .breadcrumbs-box {
    border-top: 1px solid #707070;
  }
}

/*================ mari-colore-blog一覧 ================*/
.template-article .article__date {
  font-size: 10px;
}

.template-article .rte {
  font-size: 12px;
}

.template-article .btn--secondary {
  color: #fff;
}

.template-article .btn--share {
  background-color: #fff;
  border: 1px solid #cfcfcf;
}

.template-article .btn--share:hover {
  border: 1px solid #cfcfcf;
}

/*================ mari-colore-template-page================*/
.page-id-13 .section-header,
.page-id-12 .section-header {
  margin-bottom: 40px;
}

.page-id-13 h1, .page-id-13 .h1,
.page-id-12 h1,
.page-id-12 .h1 {
  font-size: 18px;
  font-family: "Quicksand", sans-serif;
  font-weight: 100;
  text-transform: initial;
  color: #000;
}

.page-id-13 .company-box,
.page-id-12 .company-box {
  max-width: 65ch;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 30px;
}

.page-id-13 .company-table,
.page-id-12 .company-table {
  margin-bottom: 30px;
}

.page-id-13 .company-table td,
.page-id-12 .company-table td {
  font-size: 12px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.page-id-13 .company-table td.td-line,
.page-id-12 .company-table td.td-line {
  border-right: 1px solid #707070;
  width: 164px;
}

@media (max-width: 767px) {
  .page-id-13 .main-content,
  .page-id-12 .main-content {
    padding: 120px 0 100px;
  }
  .page-id-13 .company-box,
  .page-id-12 .company-box {
    padding: 0;
  }
  .page-id-13 .company-table td.td-line,
  .page-id-12 .company-table td.td-line {
    width: 140px;
  }
  .page-id-13 .site-footer .breadcrumbs-box,
  .page-id-12 .site-footer .breadcrumbs-box {
    border-top: 1px solid #707070;
  }
}

@media (max-width: 750px) {
  .page-id-13 .main-content,
  .page-id-12 .main-content {
    padding: 170px 0 100px;
  }
}

/* buybutton */
.shopify-buy-modal-is-active {
  height: 100%;
  overflow: auto;
}

.shopify-buy-frame {
  display: inline-block
}

.shopify-buy-frame iframe {
    width: 100%;
    display: block;
    height: 0;
    overflow: hidden;
  }

.shopify-buy-frame--cart {
  width: 100%;
  max-width: 350px;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 2147483647;
  transform: translateX(100%);
  -webkit-transform: translateX(100%)
}

.shopify-buy-frame--cart iframe {
    height: 100%;
  }

.shopify-buy-frame--cart.is-initialized {
    -webkit-transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }

.shopify-buy-frame--cart.is-active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }

.shopify-buy-frame--product {
  display: block
}

.shopify-buy-frame--product.shopify-buy__layout-horizontal {
    display: block;
    margin-left: auto;

    margin-right: auto
  }

.shopify-buy-frame--product.shopify-buy__layout-horizontal iframe {
      max-width: 100%
    }

@media (min-width: 950px) {

.shopify-buy-frame--product.shopify-buy__layout-horizontal iframe {
        max-width: 950px;
        margin-left: auto;
        margin-right: auto
    }
      }

.shopify-buy-frame--toggle {
  display: inline-block
}

.shopify-buy-frame--toggle:not(.is-sticky) {
    overflow: hidden;
    padding: 5px;
  }

.shopify-buy-frame--toggle.is-sticky {
    display: none;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 2147483645;
  }

.shopify-buy-frame--toggle.is-active.is-sticky {
    display: block;
  }

.is-active .shopify-buy-frame--toggle iframe {
      min-height: 67px;
    }

.shopify-buy-frame--productSet {
  width: 100%;
}

.shopify-buy-frame--modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2147483646;
  display: none;
  -webkit-transition: background 300ms ease;
  transition: background 300ms ease
}

.shopify-buy-frame--modal iframe {
    height: 100%;
    width: 100%;
    max-width: none;
  }

.shopify-buy-frame--modal.is-active {
    background: rgba(0,0,0,0.6);
  }

.shopify-buy-frame--modal.is-block {
    display: block;
  }


