/** Shopify CDN: Minification failed

Line 544:2 Expected identifier but found "*"
Line 665:2 Expected identifier but found "*"
Line 672:2 Expected identifier but found "*"
Line 6229:18 The "-" operator only works if there is whitespace on both sides

**/
@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}
==============================================================================*/
/*================ #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
==============================================================================*/
/*============================================================================
    Generate breakpoint-specific column widths and push classes
        - Default column widths: $grid-breakpoint-has-widths: ($small, $medium-up);
        - Default is no push classes
==============================================================================*/
/*================ Color Variables ================*/
/*================ Sizing Variables ================*/
/*================ Footer Variables ================*/
/*================ Z-Index ================*/
/*================ SVG ================*/
/*================ Drawers ================*/
/*================ Hero Slider ================*/
/*================ Typography ================*/
@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  src: url("//muubio.com/cdn/fonts/roboto/roboto_n4.2019d890f07b1852f56ce63ba45b2db45d852cba.woff2") format("woff2"), url("//muubio.com/cdn/fonts/roboto/roboto_n4.238690e0007583582327135619c5f7971652fa9d.woff") format("woff"); }

@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  src: url("//muubio.com/cdn/fonts/roboto/roboto_n4.2019d890f07b1852f56ce63ba45b2db45d852cba.woff2") format("woff2"), url("//muubio.com/cdn/fonts/roboto/roboto_n4.238690e0007583582327135619c5f7971652fa9d.woff") format("woff"); }

@font-face {
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  src: url("//muubio.com/cdn/fonts/roboto/roboto_n4.2019d890f07b1852f56ce63ba45b2db45d852cba.woff2") format("woff2"), url("//muubio.com/cdn/fonts/roboto/roboto_n4.238690e0007583582327135619c5f7971652fa9d.woff") format("woff"); }

@font-face {
  font-family: 'futura-pt';
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'futura-pt';
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'futura-pt';
  font-weight: normal;
  font-style: normal; }

@-webkit-keyframes zoom-animation {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  50% {
    -webkit-transform: scale3d(1.4, 1.4, 1);
    transform: scale3d(1.4, 1.4, 1); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes zoom-animation {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }

  50% {
    -webkit-transform: scale3d(1.4, 1.4, 1);
    transform: scale3d(1.4, 1.4, 1); }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

/*================ Gift Cards ================*/
/*================ Z-index ================*/
/*================ VENDOR ================*/
/*============================================================================
    Slick Slider 1.6.0

    - If upgrading Slick's styles, use the following variables/functions
        instead of the slick defaults (from slick-theme.scss)
    - This file includes default slick.scss styles (at Slick Slider SCSS)
        and slick-theme.scss (at Slick Slider Theme). Upgrade each area individually.
    - Remove `outline: none` from `.slick-dots li button`
==============================================================================*/
/*================ Slick Slider SCSS ================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/*================ Slick Slider Theme ================*/
.slick-loading .slick-list {
  background: white url(//muubio.com/cdn/shop/t/35/assets/ajax-loader.gif?v=41356863302472015721729519870) center center no-repeat; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  z-index: 10; }
  .slick-prev svg,
  .slick-next svg {
    width: 100%;
    height: 100%;
    color: #181818;
    fill: #181818;
    stroke: #181818; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    background: transparent;
    color: transparent; }
  .slick-prev.slick-disabled,
  .slick-next.slick-disabled {
    opacity: 0.25; }
  @media (min-width: 1025px) {
    .slick-prev.slick-arrow--large,
    .slick-next.slick-arrow--large {
      height: 30px;
      width: 30px; } }

.slick-prev {
  left: 0px; }
  @media (min-width: 1025px) {
    .slick-prev.slick-arrow--large {
      left: -15px; } }
  @media (min-width: 1600px) {
    .slick-prev.slick-arrow--large {
      left: -30px; } }
  @media (min-width: 1920px) {
    .slick-prev.slick-arrow--large {
      left: -60px; } }

.slick-next {
  right: 0px; }
  @media (min-width: 1025px) {
    .slick-next.slick-arrow--large {
      right: -15px; } }
  @media (min-width: 1600px) {
    .slick-next.slick-arrow--large {
      right: -30px; } }
  @media (min-width: 1920px) {
    .slick-next.slick-arrow--large {
      right: -60px; } }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;
  bottom: -30px;
  display: block;
  list-style: none;
  text-align: center;
  position: absolute; }
  .slick-dots li {
    padding: 0;
    width: auto;
    height: auto;
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle; }
    .slick-dots li button {
      width: 8px;
      height: 8px;
      padding: 0;
      opacity: 1;
      font-size: 0;
      border-radius: 50%;
      display: inline-block;
      vertical-align: middle;
      border: 1px solid #bdbdbd;
      background-color: #bdbdbd;
      transition: all 0.3s ease; }
      .slick-dots li button:hover {
        opacity: 1;
        border-color: #8f8f8f;
        background-color: transparent; }
    .slick-dots li.slick-active button {
      border-color: #8f8f8f;
      background-color: transparent; }
  @media (min-width: 551px) {
    .slick-dots li {
      margin: 0 6px; }
      .slick-dots li button {
        width: 10px;
        height: 10px; } }

/*================ GLOBAL ================*/
/*============================================================================
    #Normalize
    Based on normalize.css v3.0.2 | MIT License | git.io/normalize
==============================================================================*/
*,
*::before,
*::after {
  box-sizing: border-box; }

body,
html {
  margin: 0;
  position: relative;
  background-color: white; }

html * {
  outline: none !important; }

body {
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  overflow-x: hidden;
  color: black;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  -wenkit-font-smoothing: subpixel-antialiased; }

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

a {
  position: relative;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.3s ease;
  color: #191919; }
  a:hover {
    outline: none;
    text-decoration: none;
    color: black; }
  a:focus {
    outline: none; }

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

b,
strong {
  font-weight: 700; }

em {
  font-style: italic; }

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1; }

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

td,
th {
  padding: 0; }

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

img {
  transition: all 0.5s ease; }

img.zoomImg {
  transition: none; }

img.lazyload,
img.lazyloading {
  opacity: 0; }

img.lazyloaded {
  opacity: 1; }

img.img--fade-in {
  transition-duration: 0.3; }

.image--hover {
  position: relative;
  overflow: hidden; }
  @media (min-width: 1025px) {
    .image--hover:after {
      content: "";
      width: 100%;
      height: 100%;
      top: 100%;
      right: 0%;
      left: auto;
      z-index: 4;
      transform: none;
      position: absolute;
      transition: all 0.3s ease;
      background-color: rgba(0, 0, 0, 0.5);
      background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%); }
    .image--hover:hover:after {
      top: 0; } }

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

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

.mega-title--large {
  font-size: 24px; }
  @media (min-width: 768px) {
    .mega-title--large {
      font-size: 30px; } }
  @media (min-width: 991px) {
    .mega-title--large {
      font-size: 36px; } }
  @media (min-width: 1025px) {
    .mega-title--large {
      font-size: 48px; } }
  @media (min-width: 1920px) {
    .mega-title--large {
      font-size: 60px; } }

.mega-title--medium {
  font-size: 24px; }
  @media (min-width: 991px) {
    .mega-title--medium {
      font-size: 30px; } }
  @media (min-width: 1025px) {
    .mega-title--medium {
      font-size: 36px; } }
  @media (min-width: 1920px) {
    .mega-title--medium {
      font-size: 48px; } }

.mega-title--small {
  font-size: 20px; }
  @media (min-width: 991px) {
    .mega-title--small {
      font-size: 22px; } }
  @media (min-width: 1025px) {
    .mega-title--small {
      font-size: 26px; } }
  @media (min-width: 1920px) {
    .mega-title--small {
      font-size: 32px; } }

/*============================================================================
    Skip to content button
        - Overrides .visually-hidden when focused
==============================================================================*/
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  background-color: white;
  padding: 10px;
  opacity: 1;
  z-index: 10000;
  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 {
  *zoom: 1; }
  .page::after {
    content: '';
    display: table;
    clear: both; }

.page-width {
  *zoom: 1;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0px 16px; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }

.page-full-width .container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1600px; }
.page-full-width [data-section-type="hero"] .container,
.page-full-width [data-section-type="slideshow"] .container {
  padding-left: 0;
  padding-right: 0; }
@media (min-width: 1025px) {
  .page-full-width .container {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1690px; }
  .page-full-width [data-section-type="hero"] .container,
  .page-full-width [data-section-type="slideshow"] .container {
    padding-left: 30px;
    padding-right: 30px; } }
@media (min-width: 1600px) {
  .page-full-width .container {
    max-width: 1920px;
    padding-left: 75px;
    padding-right: 75px; }
  .page-full-width [data-section-type="hero"] .container,
  .page-full-width [data-section-type="slideshow"] .container {
    padding-left: 75px;
    padding-right: 75px; } }

.page-container {
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1);
  position: relative;
  background-color: white; }
  @media (max-width: 1024px) {
    .page-container {
      margin-bottom: 0 !important; } }
  @media (min-width: 1025px) {
    .page-container {
      z-index: 2; }
      .page-container.page-container--sticky {
        box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1); } }

.main-content {
  display: block; }

.section-header {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 0;
  margin-bottom: 30px;
  color: #181818; }
  .section-header h1, .section-header .h1, .section-header h3, .section-header .h3, .section-header .title {
    margin: 0;
    color: inherit;
    line-height: 1.3;
    position: relative;
    font-size: 1.25em;
    font-weight: 700; }
  .section-header .title--large {
    font-size: 24px; }
  .section-header > p {
    max-width: 800px;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 28px;
    color: #5a5a5a;
    letter-spacing: 0.02rem;
    font-size: 16px; }
  .section-header .title__countdownWrapper + p {
    margin-top: 15px; }
  .section-header > .btn, .shopify-payment-button .section-header > .shopify-payment-button__button--unbranded {
    margin-top: 15px;
    min-width: 120px; }
  .section-header.text-center > p {
    margin-left: auto;
    margin-right: auto; }
  @media (min-width: 768px) {
    .section-header {
      margin-bottom: 40px; }
      .section-header h1, .section-header .h1, .section-header h2, .section-header .h2, .section-header h3, .section-header .h3, .section-header .title {
        font-size: 1.375em; }
      .section-header .title--large {
        font-size: 2.125em; } }
  @media (min-width: 1025px) {
    .section-header {
      margin-bottom: 50px; }
      .section-header h1, .section-header .h1, .section-header h2, .section-header .h2, .section-header h3, .section-header .h3, .section-header .title {
        font-size: 24px; }
      .section-header .title--large {
        font-size: 2.5em; }
      .section-header > p {
        margin-top: 12px; }
      .section-header > .btn, .shopify-payment-button .section-header > .shopify-payment-button__button--unbranded {
        min-width: 165px;
        margin-top: 25px; } }

.title__countdownWrapper {
  margin-top: 12px;
  color: inherit; }
  @media (min-width: 993px) {
    .title__countdownWrapper {
      margin-top: 25px; } }

.title__countdownWrapper > * {
  color: inherit; }

.title__countdown {
  display: table;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse; }

.title__countdown--item {
  width: 25%;
  padding: 8px 5px;
  text-align: center;
  display: table-cell;
  border: 1px solid black; }
  .title__countdown--item .num {
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    /*letter-spacing: 0.02rem;*/ }
  .title__countdown--item .label {
    font-size: 16px;
    line-height: 1;
    display: block;
    text-transform: uppercase;
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    /*letter-spacing: 0.02rem;*/ }
  @media (min-width: 768px) {
    .title__countdown--item .num {
      font-size: 30px; }
    .title__countdown--item .label {
      font-size: 14px; } }

.section-header.overlay--dark {
  color: #ffffff; }
  .section-header.overlay--dark h1, .section-header.overlay--dark .h1, .section-header.overlay--dark h3, .section-header.overlay--dark .h3, .section-header.overlay--dark .title, .section-header.overlay--dark > p {
    color: inherit; }
  .section-header.overlay--dark .title__countdown--item {
    border-color: #ffffff; }

.shopify-challenge__container {
  padding: 50px 0; }
  @media (min-width: 1025px) {
    .shopify-challenge__container {
      min-height: calc(100vh - 123px);
      padding: 100px 0; } }

.shopify-challenge__button {
  min-width: 120px; }
  @media (min-width: 1025px) {
    .shopify-challenge__button {
      min-width: 160px; } }

/*================ Typography ================*/
blockquote {
  font-size: 1.125em;
  font-style: normal;
  text-align: center;
  padding: 0 30px;
  margin: 0; }
  .rte blockquote {
    border-color: #ebebeb;
    border-width: 1px 0;
    border-style: solid;
    padding: 30px 0;
    margin-bottom: 27.5px; }
  blockquote p + cite {
    margin-top: 27.5px; }
  blockquote cite {
    display: block;
    font-size: 0.85em;
    font-weight: 400; }
    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: 16px;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%; }

/*================ Headings ================*/
h1, .h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-wrap: break-word;
  color: #181818; }
  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;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    text-decoration: none; }

h1, .h1 {
  font-size: 1.5em; }
  @media only screen and (max-width: 767px) {
    h1, .h1 {
      font-size: 1.25em; } }

h2, .h2 {
  font-size: 1.25em; }
  @media only screen and (max-width: 767px) {
    h2, .h2 {
      font-size: 1em; } }

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

h4, .h4 {
  font-size: 0.625em; }

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

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

/*================ RTE headings ================*/
.rte {
  color: black;
  margin-bottom: 35px; }
  .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-bottom: 20px; }
  .rte img {
    height: auto; }
  .rte table {
    table-layout: fixed; }
  .rte ul,
  .rte ol {
    margin: 0 0 20px 15px; }
    .rte ul.list--inline,
    .rte ol.list--inline {
      margin-left: 0; }
    .rte ul.list-unstyled,
    .rte ol.list-unstyled {
      list-style: none;
      padding-left: 0;
      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 li {
    padding: 5px 0;
    list-style: inherit; }
    .rte li:last-child {
      margin-bottom: 0; }
  .rte a:not(.btn) {
    border-bottom: 1px solid currentColor; }
  .rte p {
    margin-bottom: 20px; }
  .rte b, .rte strong {
    color: #181818; }
  .rte blockquote {
    font-size: 16px;
    padding: 10px 15px;
    margin-bottom: 2.25rem;
    background-color: #f7f7f7;
    border-radius: 3px;
    font-style: normal;
    text-align: left;
    border: none; }
  .rte .halo-row[data-slick-pc] .img-wrap {
    max-width: 250px;
    display: inline-block;
    padding-bottom: 0;
    border: none; }
  .rte .slick-slider .slick-dots {
    margin: 0; }
  .rte .modal-title {
    margin-bottom: 0; }
  .rte .custom-description {
    display: block;
    position: relative; }
    .rte .custom-description > .item {
      display: block;
      margin-bottom: 30px; }
      .rte .custom-description > .item a > img {
        width: 100%; }
  @media (min-width: 768px) {
    .rte blockquote {
      padding: 15px 30px; }
    .rte .halo-row[data-slick-pc] .img-wrap {
      max-width: 350px; } }
  @media (min-width: 1025px) {
    .rte .custom-description {
      display: flex;
      flex-wrap: nowrap;
      justify-content: flex-start;
      align-items: center;
      align-content: center;
      margin-left: -15px;
      margin-right: -15px;
      margin-bottom: 0; }
      .rte .custom-description > .item {
        display: inline-block;
        vertical-align: top;
        width: 50%;
        padding-left: 15px;
        padding-right: 15px; } }

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

.icons-svg-sprite {
  display: none; }

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

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

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

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

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

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

/*================ #Icons ================*/
.close {
  opacity: 1;
  float: none;
  font-weight: 400;
  text-shadow: none;
  color: #181818; }
  .close .icon {
    vertical-align: top;
    display: inline-block; }
  .close:hover, .close:focus {
    opacity: 1; }

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  fill: currentColor; }
  .no-svg .icon {
    display: none; }

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: 767px) {
    .payment-icons {
      line-height: 40px; } }
  .payment-icons .icon {
    width: 38px;
    height: 24px;
    fill: inherit; }

/*================ Social Icons ================*/
.social-icons {
  font-size: 0;
  display: block;
  position: relative; }

.social-icon {
  display: inline-block;
  vertical-align: top; }

.social-icons .icon {
  width: 30px;
  height: 30px;
  padding: 7px;
  font-size: 16px; }
  @media only screen and (min-width: 768px) {
    .social-icons .icon {
      width: 40px;
      height: 40px;
      padding: 12px; } }
  .social-icons .icon.icon--wide {
    width: 40px; }

/*================ Loading Icons ================*/
.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 ================*/
.icon-error {
  fill: #d20000;
  width: 0.875em;
  height: 0.875em;
  margin-top: 0.1em;
  flex-shrink: 0; }

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

/*================ Buttons ================*/
.btn, .shopify-payment-button .shopify-payment-button__button--unbranded,
.spr-summary-actions-newreview {
  -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;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 0px;
  padding: 0 15px;
  height: 40px;
  line-height: 36px;
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: white;
  background-color: #3c86a5;
  border: 2px solid #3c86a5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
  .btn .icon-arrow-right, .shopify-payment-button .shopify-payment-button__button--unbranded .icon-arrow-right,
  .btn .icon-arrow-left,
  .shopify-payment-button .shopify-payment-button__button--unbranded .icon-arrow-left,
  .spr-summary-actions-newreview .icon-arrow-right,
  .spr-summary-actions-newreview .icon-arrow-left {
    height: 9px; }
  .btn:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus,
  .spr-summary-actions-newreview:focus {
    box-shadow: none; }
  .btn[disabled], .shopify-payment-button [disabled].shopify-payment-button__button--unbranded,
  .spr-summary-actions-newreview[disabled] {
    cursor: default;
    opacity: 0.5;
    pointer-events: none; }
  @media (min-width: 1025px) {
    .btn, .shopify-payment-button .shopify-payment-button__button--unbranded,
    .spr-summary-actions-newreview {
      height: 44px;
      line-height: 40px;
      padding: 0 30px; } }

.btn--primary:hover,
.btn-primary:hover {
  outline: none;
  color: white;
  border-color: #2e6880;
  background-color: #2e6880; }

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  outline: none;
  color: white;
  border-color: #2e6880;
  background-color: #2e6880; }

.login-form__content .btn--secondary, .login-form__content .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .login-form__content .shopify-payment-button__button--unbranded {
  border: 1px solid #d2d2d2; }
  .login-form__content .btn--secondary:hover, .login-form__content .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .shopify-payment-button .login-form__content .shopify-payment-button__button--unbranded:hover {
    border-color: #e6e6e6; }

.btn--secondary, .shopify-payment-button .shopify-payment-button__button--unbranded,
.spr-summary-actions-newreview {
  color: #191919;
  background-color: white;
  border-color: #d2d2d2; }
  .btn--secondary:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:hover,
  .spr-summary-actions-newreview:hover {
    color: #191919;
    border-color: #e6e6e6;
    background-color: #e6e6e6; }

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

@media (min-width: 1025px) {
  .btn--large {
    min-width: 200px;
    padding-left: 40px;
    padding-right: 40px; } }

.btn--tertiary {
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  height: auto;
  line-height: 1;
  padding-bottom: 5px;
  background-color: transparent;
  color: #181818;
  border-bottom: 1px solid #181818; }
  .btn--tertiary .text {
    display: inline-block;
    vertical-align: top; }
  .btn--tertiary .icon {
    width: 11px;
    height: 11px;
    position: relative;
    padding-left: 1px;
    padding-right: 1px;
    display: inline-block;
    vertical-align: top; }
  .btn--tertiary:hover {
    color: #181818; }
    .btn--tertiary:hover .text {
      text-decoration: underline;
      text-underline-position: under; }

.btn--checkout {
  /*color: #ffffff;
  border-color: #ef9ba6;
  background-color: #ef9ba6;*/
  color: white !important;
  background-color: #3c86a5 !important;
  border-color: #3c86a5 !important; }
  .btn--checkout:hover, .btn--checkout:focus {
    /*color: #ffffff;
    border-color: #ef9ba6;
    background-color: #ef9ba6;*/
    color: white !important;
    background-color: #2e6880 !important;
    border-color: #2e6880 !important; }
  .btn--checkout.disabled {
    cursor: none;
    pointer-events: none; }

/*================ Button variations ================*/
@media only screen and (max-width: 767px) {
  .btn--small-wide {
    padding-left: 50px;
    padding-right: 50px; } }
.btn--link {
  background-color: transparent;
  border: 0;
  margin: 0;
  text-align: left; }
  .btn--link:not([disabled]):hover, .btn--link:focus {
    background-color: transparent; }
  .btn--link .icon {
    vertical-align: middle; }

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

/*================ #Tables ================*/
table {
  margin-bottom: 27.5px; }
  table a {
    border-bottom: 1px solid currentColor; }

th {
  font-family: "futura-pt", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #181818; }

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

tbody th,
tfoot th {
  font-weight: normal; }

/*============================================================================
    Responsive tables, defined with .responsive-table on table element.
==============================================================================*/
@media only screen and (max-width: 767px) {
  .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: 16px;
    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;
      border-bottom: 1px solid #ebebeb; } }
/*================ Forms ================*/
form {
  margin: 0; }

fieldset {
  border: 1px solid #cbcbcb;
  margin: 0 0 55px;
  padding: 27.5px; }

legend {
  border: 0;
  padding: 0; }

button {
  cursor: pointer; }

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

label {
  display: block;
  margin-bottom: 5px;
  color: #181818;
  font-weight: 700; }
  [type="radio"] + label, [type="checkbox"] + label {
    display: inline-block;
    margin-bottom: 0; }
  label[for] {
    cursor: pointer; }

.form-label,
.spr-form-label {
  font-weight: 400;
  color: #181818;
  font-size: 16px;
  font-family: "futura-pt", sans-serif; }
  .form-label em,
  .spr-form-label em {
    color: #181818; }

input,
textarea,
select,
.form-control {
  color: #3e3e3e;
  border: 1px solid #cbcbcb;
  background-color: white;
  max-width: 100%;
  height: 36px;
  line-height: 22px;
  border-radius: 0px;
  font-size: 16px;
  padding-top: 0;
  padding-bottom: 0;
  outline: none; }
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder,
  .form-control::-webkit-input-placeholder {
    color: #8b8b8b;
    left: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: all 0.3s ease; }
  input::-moz-placeholder,
  textarea::-moz-placeholder,
  select::-moz-placeholder,
  .form-control::-moz-placeholder {
    color: #8b8b8b;
    left: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: all 0.3s ease; }
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder,
  .form-control:-ms-input-placeholder {
    color: #8b8b8b;
    left: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: all 0.3s ease; }
  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder,
  select::-ms-input-placeholder,
  .form-control::-ms-input-placeholder {
    color: #8b8b8b;
    left: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: all 0.3s ease; }
  input:focus,
  textarea:focus,
  select:focus,
  .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #b2b2b2; }
    input:focus::-webkit-input-placeholder,
    textarea:focus::-webkit-input-placeholder,
    select:focus::-webkit-input-placeholder,
    .form-control:focus::-webkit-input-placeholder {
      left: 5%;
      opacity: 0;
      visibility: hidden; }
    input:focus::-moz-placeholder,
    textarea:focus::-moz-placeholder,
    select:focus::-moz-placeholder,
    .form-control:focus::-moz-placeholder {
      left: 5%;
      opacity: 0;
      visibility: hidden; }
    input:focus:-ms-input-placeholder,
    textarea:focus:-ms-input-placeholder,
    select:focus:-ms-input-placeholder,
    .form-control:focus:-ms-input-placeholder {
      left: 5%;
      opacity: 0;
      visibility: hidden; }
    input:focus:-moz-placeholder,
    textarea:focus:-moz-placeholder,
    select:focus:-moz-placeholder,
    .form-control:focus:-moz-placeholder {
      left: 5%;
      opacity: 0;
      visibility: hidden; }
  input[disabled],
  textarea[disabled],
  select[disabled],
  .form-control[disabled] {
    cursor: default;
    background-color: #f4f4f4;
    border-color: #f4f4f4; }
  input.input--error,
  textarea.input--error,
  select.input--error,
  .form-control.input--error {
    border-color: #d20000;
    background-color: #fff8f8;
    color: #d20000; }
    input.input--error::-webkit-input-placeholder,
    textarea.input--error::-webkit-input-placeholder,
    select.input--error::-webkit-input-placeholder,
    .form-control.input--error::-webkit-input-placeholder {
      color: #d20000;
      opacity: 0.5; }
    input.input--error::-moz-placeholder,
    textarea.input--error::-moz-placeholder,
    select.input--error::-moz-placeholder,
    .form-control.input--error::-moz-placeholder {
      color: #d20000;
      opacity: 0.5; }
    input.input--error:-ms-input-placeholder,
    textarea.input--error:-ms-input-placeholder,
    select.input--error:-ms-input-placeholder,
    .form-control.input--error:-ms-input-placeholder {
      color: #d20000;
      opacity: 0.5; }
    input.input--error::-ms-input-placeholder,
    textarea.input--error::-ms-input-placeholder,
    select.input--error::-ms-input-placeholder,
    .form-control.input--error::-ms-input-placeholder {
      color: #d20000;
      opacity: 1; }
  input.hidden-placeholder::-webkit-input-placeholder,
  textarea.hidden-placeholder::-webkit-input-placeholder,
  select.hidden-placeholder::-webkit-input-placeholder,
  .form-control.hidden-placeholder::-webkit-input-placeholder {
    color: transparent; }
  input.hidden-placeholder::-moz-placeholder,
  textarea.hidden-placeholder::-moz-placeholder,
  select.hidden-placeholder::-moz-placeholder,
  .form-control.hidden-placeholder::-moz-placeholder {
    color: transparent; }
  input.hidden-placeholder:-ms-input-placeholder,
  textarea.hidden-placeholder:-ms-input-placeholder,
  select.hidden-placeholder:-ms-input-placeholder,
  .form-control.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,
  .form-control.hidden-placeholder::-ms-input-placeholder {
    opacity: 1; }

.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

select.form-control:not([size]):not([multiple]) {
  height: 36px;
  line-height: 36px; }

textarea,
textarea.form-control {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 22px;
  min-height: 100px; }
  textarea:focus::-webkit-input-placeholder,
  textarea.form-control:focus::-webkit-input-placeholder {
    left: 0; }
  textarea:focus::-moz-placeholder,
  textarea.form-control:focus::-moz-placeholder {
    left: 0; }
  textarea:focus:-ms-input-placeholder,
  textarea.form-control:focus:-ms-input-placeholder {
    left: 0; }
  textarea:focus:-moz-placeholder,
  textarea.form-control:focus:-moz-placeholder {
    left: 0; }

.form-field {
  margin-bottom: 15px; }

/*================ Error styles ================*/
.input-error-message {
  display: flex;
  line-height: 1.3;
  color: black;
  margin-bottom: 15px; }
  .input-error-message .icon {
    width: 1em;
    height: 1em;
    margin-right: 0.625em; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(//muubio.com/cdn/shop/t/35/assets/ico-select.svg?v=116050699476331769831729519870);
  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: 768px) {
    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: 16px; }

optgroup {
  font-weight: 700; }

option {
  background-color: white; }

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

/*================ Vertical forms ================*/
.form-vertical input,
.form-vertical select,
.form-vertical textarea {
  display: block;
  width: 100%;
  margin-bottom: 20px; }
  .form-vertical input.input--error, .form-vertical input[aria-describedby="RegisterForm-email-error"], .form-vertical input[aria-describedby="RegisterForm-password-error"],
  .form-vertical select.input--error,
  .form-vertical select[aria-describedby="RegisterForm-email-error"],
  .form-vertical select[aria-describedby="RegisterForm-password-error"],
  .form-vertical textarea.input--error,
  .form-vertical textarea[aria-describedby="RegisterForm-email-error"],
  .form-vertical textarea[aria-describedby="RegisterForm-password-error"] {
    margin-bottom: 10px; }
.form-vertical [type="radio"],
.form-vertical [type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 5px;
  margin-bottom: 0;
  vertical-align: middle; }
  .form-vertical [type="radio"] + label,
  .form-vertical [type="checkbox"] + label {
    text-transform: lowercase; }
.form-vertical [type="submit"],
.form-vertical .btn,
.form-vertical .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .form-vertical .shopify-payment-button__button--unbranded {
  display: inline-block;
  width: auto; }
.form-vertical .input-error-message {
  margin-bottom: 20px; }
.form-vertical .button-group {
  margin-top: 30px; }

/*================ Single field forms ================*/
.form-single-field {
  margin: 0 auto;
  max-width: 35rem; }
  .form-single-field .input--error {
    margin-bottom: 0; }
  .form-single-field .input-group__field {
    background-color: transparent; }

@media (min-width: 360px) {
  .page-search .form-single-field .input-group__btn {
    margin-left: 15px; } }

/*================ Form feedback messages ================*/
.note,
.form-message {
  padding: 8px;
  margin: 0 0 27.5px; }
  @media only screen and (min-width: 768px) {
    .note,
    .form-message {
      padding: 10px; } }

.note {
  border: 1px solid #cbcbcb; }

.form-message--success {
  border: 1px solid #1f873d;
  background-color: #f8fff9;
  color: #1f873d;
  display: block;
  width: 100%; }

.form-message--error {
  color: #651818;
  border: 1px solid #d20000;
  background-color: #fff8f8;
  padding: 1rem 1.3rem;
  text-align: left;
  width: 100%; }
  .form-message--error li {
    list-style-type: disc;
    list-style-position: inside; }
  .form-message--error .form-message__title {
    font-size: 1em; }
  .form-message--error .form-message__link, .form-message--error a {
    display: inline-block;
    text-decoration: underline;
    text-decoration-skip-ink: auto;
    color: #651818; }
    .form-message--error .form-message__link:hover, .form-message--error .form-message__link:focus, .form-message--error a:hover, .form-message--error a:focus {
      text-decoration: none;
      color: #651818; }

/*================ 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--error {
  margin-bottom: 11.66667px; }

.input-group__field,
.input-group__field input,
.input-group__btn .btn,
.input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
  min-height: 42px;
  height: auto;
  padding-top: 0;
  padding-bottom: 0; }
  @media only screen and (min-width: 768px) {
    .input-group__field,
    .input-group__field input,
    .input-group__btn .btn,
    .input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded,
    .shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
      min-height: 50px;
      height: auto; } }

.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: 0px 0 0 0px;
  text-align: left; }
  .input-group__field input {
    width: 100%; }
  .form-vertical .input-group__field {
    margin: 0; }

.input-group__field--small {
  min-height: 40px;
  margin-bottom: 0;
  -ms-flex-preferred-size: calc(100% - 40px);
  -webkit-flex-basis: calc(100% - 40px);
  -moz-flex-basis: calc(100% - 40px);
  flex-basis: calc(100% - 40px); }

.input-group__btn {
  flex-grow: 1; }
  .input-group__btn .btn, .input-group__btn .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .input-group__btn .shopify-payment-button__button--unbranded {
    width: 100%;
    border-radius: 0 0px 0px 0; }

.input-group__btn--small .btn, .input-group__btn--small .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .input-group__btn--small .shopify-payment-button__button--unbranded {
  padding: 12px;
  width: 40px;
  min-height: 40px; }

.input-group__btn--small .btn .icon, .input-group__btn--small .shopify-payment-button .shopify-payment-button__button--unbranded .icon, .shopify-payment-button .input-group__btn--small .shopify-payment-button__button--unbranded .icon {
  width: 14px;
  height: 14px;
  line-height: 14px; }

hr {
  margin: 20px 0;
  border: 0;
  border-bottom: 1px solid #ebebeb; }

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

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

.border-bottom {
  border-bottom: 1px solid #ebebeb; }

.border-top {
  border-top: 1px solid #ebebeb; }

.empty-page-content {
  padding: 30px 0; }
  .empty-page-content .page-404 {
    margin: 0;
    line-height: 1;
    font-weight: 700;
    font-size: 100px; }
  .empty-page-content .page-heading {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px; }
  .empty-page-content .button-group {
    margin-top: 20px; }
  @media (min-width: 551px) {
    .empty-page-content .page-404 {
      font-size: 150px; } }
  @media (min-width: 768px) {
    .empty-page-content .page-404 {
      font-size: 200px; }
    .empty-page-content .page-heading {
      font-size: 40px;
      margin-bottom: 15px; }
    .empty-page-content .button-group {
      margin-top: 30px; } }
  @media (min-width: 1025px) {
    .empty-page-content {
      padding: 100px 0 0 0;
      min-height: calc(100vh - 175px); } }

@-webkit-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-moz-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }

  100% {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

@-moz-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

@-ms-keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

@keyframes placeholder-background-loading {
  0% {
    opacity: 0.02; }

  50% {
    opacity: 0.05; }

  100% {
    opacity: 0.02; } }

.drawer {
  display: none;
  position: absolute;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 9;
  background-color: white;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .drawer input[type="text"],
  .drawer textarea {
    background-color: white; }

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

.drawer--top {
  width: 100%; }
  .js-drawer-open-top .drawer--top {
    -ms-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    display: block; }

.drawer-page-content::after {
  visibility: hidden;
  opacity: 0;
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 8;
  transition: all 0.45s cubic-bezier(0.29, 0.63, 0.44, 1); }
  .js-drawer-open .drawer-page-content::after {
    visibility: visible;
    opacity: 1; }

.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: 1.125em; }
  .drawer__close-button:active, .drawer__close-button:focus {
    background-color: rgba(0, 0, 0, 0.6); }

/*================ Index sections ================*/
.index-section--flush + .index-section--flush {
  margin-top: -70px; }

@media only screen and (min-width: 768px) {
  [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: 768px) {
  [class*="index-section--flush"]:first-child {
    margin-top: -55px; } }

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

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

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

.placeholder-svg {
  display: block;
  fill: rgba(0, 0, 0, 0.35);
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2); }

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

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

.recommended_size {
  top: 5px;
  left: 50%;
  z-index: 2;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  font-family: "futura-pt", sans-serif;
  transform: translateX(-50%);
  position: absolute; }

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

/*================ TEMPLATES ================*/
/*============= Templates | Password =============*/
.password-page {
  display: table;
  height: 100%;
  width: 100%;
  color: black;
  background-color: white;
  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 {
  text-align: right;
  padding: 0 15px; }
  @media (min-width: 768px) {
    .password-login {
      padding: 0 30px; } }

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

.password-content {
  text-align: center; }
  .password-content .site-header__logo-link {
    font-weight: 700;
    text-transform: uppercase; }

.password-content--rte {
  margin-bottom: 35px; }
  .password-content--rte > .h1, .password-content--rte > .h2, .password-content--rte > .h3 {
    text-transform: uppercase; }

.password-content__title {
  display: block;
  font-weight: 700;
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 40px;
  text-transform: uppercase; }
  @media (min-width: 768px) {
    .password-content__title {
      font-size: 40px;
      margin-bottom: 82.5px; } }

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

.password-main__inner {
  display: table-cell;
  vertical-align: middle;
  padding: 30px 15px; }
  @media (min-width: 768px) {
    .password-main__inner {
      padding: 27.5px 55px; } }

.password-message {
  max-width: 500px;
  margin: 82.5px auto 27.5px; }

.password-powered-by {
  margin-top: 82.5px; }

.password-social-sharing {
  margin-top: 82.5px; }
  .password-social-sharing > .h1, .password-social-sharing > .h2, .password-social-sharing > .h3 {
    text-transform: uppercase; }

.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;
  font-size: 0.9375em; }

/*================ Add to cart form ================*/
.product-form {
  width: auto;
  position: relative; }

.product-form__item {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  font-size: 16px;
  font-family: "futura-pt", sans-serif; }
  .product-form__item label {
    display: block;
    font-weight: 400;
    line-height: 22px;
    color: #181818; }
    .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 .small {
    font-size: 100%; }

.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-image .product-form__item--payment-button, .product-single--full-image .product-form__item--payment-button {
      display: inline-flex;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -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%;
  font-weight: 400;
  font-size: 16px;
  color: #181818; }
  .product-form__input.input--error {
    margin-bottom: 0; }
  .product-form__input.single-option-selector {
    max-width: 300px; }

.product-form__item--submit {
  display: block; }
  .product-form__item--submit .btn, .product-form__item--submit .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-form__item--submit .shopify-payment-button__button--unbranded {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 40px;
    margin-bottom: 10px; }

.product-form__input--quantity {
  max-width: 135px;
  border-color: #f5f5f5;
  background-color: #f5f5f5; }

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

/*.product-form__controls-group ~ .product-form__error-message-wrapper {
    margin-bottom: 0;
}*/
.product-form__error-message-wrapper--has-payment-button {
  padding: 0 0 0.5rem 0; }

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

.product-form__error-message {
  margin-left: 0.5rem;
  font-style: italic;
  color: black; }

.product-single--small-image .shopify-payment-button, .product-single--full-image .shopify-payment-button {
  -webkit-flex: 50%;
  -moz-flex: 50%;
  -ms-flex: 50%;
  flex: 50%; }
.shopify-payment-button .shopify-payment-button__button--unbranded {
  border: 1px solid; }
  .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .shopify-payment-button .shopify-payment-button__button--unbranded:focus {
    color: white !important;
    background-color: #2e6880 !important;
    border-color: #2e6880 !important; }
.shopify-payment-button .shopify-payment-button__button--branded {
  border-radius: 0px;
  overflow: hidden; }
.shopify-payment-button .shopify-payment-button__more-options {
  margin: 16px 0 10px;
  font-size: 0.875em;
  text-decoration: underline; }
  .shopify-payment-button .shopify-payment-button__more-options.shopify-payment-button__button--hidden {
    display: none; }
  .shopify-payment-button .shopify-payment-button__more-options:hover, .shopify-payment-button .shopify-payment-button__more-options:focus {
    opacity: 0.6; }
.shopify-payment-button.disabled {
  cursor: none;
  opacity: 0.7;
  pointer-events: none; }

@media only screen and (min-width: 768px) {
  .product-form__cart-submit--small {
    max-width: 300px; } }
.product-single__description {
  margin-top: 30px; }

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

.btn--addToCart {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.btn--wishlist {
  width: 44px;
  height: 44px;
  padding: 11px 12px 13px 12px;
  line-height: 20px;
  display: inline-block;
  border-radius: 50%;
  background-color: #fafafa; }
  .btn--wishlist.wishlist-added {
    background-color: #fbdee3; }

/*================ Template | Collections ================*/
.collection-hero {
  position: relative; }

.collection-hero .section-header {
  top: 50%;
  left: 50%;
  z-index: 5;
  padding-left: 15px;
  padding-right: 15px;
  color: #ffffff;
  position: absolute;
  transform: translate(-50%, -50%); }

.collection-hero__image {
  display: block;
  position: relative; }

.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 {
    fill: #3e3e3e;
    width: calc(10em / 16);
    height: calc(10em / 16);
    right: 1rem; }

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

/*================ Cart page ================*/
.cart__product-information {
  display: flex; }

.cart__image {
  display: block;
  margin: 0; }

.cart__product-title {
  border-bottom: none;
  font-family: "futura-pt", sans-serif;
  color: #181818;
  font-weight: 500; }
  .cart__product-title:not([disabled]):hover, .cart__product-title:focus {
    color: #181818; }

.product-details-wrapper {
  margin-top: 5px;
  display: block;
  font-size: 0.9rem; }
  .product-details-wrapper .product-details {
    margin: 0;
    display: inline-block;
    vertical-align: top; }
    .product-details-wrapper .product-details.hide + .product-details__edit {
      display: none; }

.product-details {
  display: block;
  margin-top: 5px; }

.product-details__item {
  vertical-align: top;
  display: inline-block; }
  .product-details__item + .product-details__item:not(.product-details__item--last):before {
    content: "/";
    font-size: 14px;
    text-transform: none; }

.product-details__edit {
  border: none;
  color: #f1a5b0;
  display: inline-block;
  vertical-align: top;
  margin-left: 15px; }
  .product-details__edit .icon {
    top: -3px;
    width: 16px;
    height: 16px;
    position: relative; }
  .product-details__edit:hover {
    color: #f1a5b0; }

.product-details-price {
  display: block;
  margin-top: 10px; }
  .product-details-price dl {
    margin-bottom: 0; }
  .product-details-price dd:last-of-type {
    margin-bottom: 0; }

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

.product-details__item-label {
  font-weight: 700; }

.cart__qty {
  margin-top: 0.9375em; }
  @media only screen and (min-width: 768px) {
    .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; }

.cart__qty-input,
.product-form__input--quantity {
  text-align: center;
  width: 60px;
  background-color: #ffffff;
  border-color: #cbcbcb;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 16px; }
  .cart__qty-input:focus,
  .product-form__input--quantity:focus {
    border-color: #cbcbcb; }
  @media (min-width: 768px) {
    .cart__qty-input,
    .product-form__input--quantity {
      width: 100px; } }
  @media (min-width: 1025px) {
    .cart__qty-input,
    .product-form__input--quantity {
      width: 135px;
      padding-left: 10px;
      padding-right: 10px; } }

.product-form__input--quantity {
  width: 135px; }

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

.cart__qty-error-message-wrapper .icon {
  width: 15px; }

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

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

.cart__qty-error-message,
.cart__error-message {
  font-style: italic;
  color: black;
  vertical-align: middle; }

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

.cart__removed-product-details {
  font-weight: 700; }

@media only screen and (max-width: 767px) {
  .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: 0.8125em;
    margin-right: 5px; } }
.cart--no-cookies .cart__continue-btn {
  display: none; }

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

.cookie-message {
  display: none;
  margin-top: 15px; }
  .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; }

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

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

.order-table {
  border: 1px solid #ebebeb; }
  .order-table a {
    border-bottom: none;
    color: #181818; }
  .order-table dl, .order-table dd {
    margin-bottom: 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 #ebebeb; }
  .order-table thead {
    border-bottom: 1px solid black; }
  .order-table tfoot {
    border-top: 1px solid black; }
    .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 black;
      font-weight: 700;
      padding-top: 1.25em;
      padding-bottom: 1.25em;
      text-transform: uppercase; }
  @media only screen and (min-width: 768px) {
    .order-table thead th {
      font-size: 16px;
      padding-top: 1.25em;
      padding-bottom: 1.25em; }
    .order-table tbody tr th, .order-table tbody tr td {
      font-size: 16px;
      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: 767px) {
    .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; }
      .order-table tbody th::before,
      .order-table tbody td::before {
        font-weight: 700;
        text-transform: uppercase;
        color: #181818;
        font-family: "futura-pt", sans-serif; }
      .order-table tfoot th::before,
      .order-table tfoot td::before {
        font-weight: 700;
        text-transform: uppercase;
        color: #181818;
        font-family: "futura-pt", sans-serif; }
      .order-table tfoot .small--hide {
        display: none; } }

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

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

.order-discount--title {
  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: 767px) {
  .order-discount-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%; } }

.order-discount-card-wrapper {
  display: flex;
  justify-content: flex-end;
  font-style: italic;
  color: #e13f3f;
  margin-bottom: 5px; }

.order-discount--cart {
  font-size: 16px;
  padding-right: 0; }
  .order-discount--cart .icon {
    width: 14px;
    height: 14px;
    margin-right: 5px; }

.order-discount--cart-total {
  padding-left: 20px; }

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

/*============================================================================
    Blog article grid
==============================================================================*/
.cart-popup-wrapper {
  display: block;
  position: fixed;
  width: 100%;
  z-index: 1051;
  top: 0;
  right: 0;
  left: 0;
  background-color: #ffffff;
  transform: translateY(0%);
  transition: all 0.3s ease;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); }
  @media only screen and (min-width: 768px) {
    .cart-popup-wrapper {
      top: 15px;
      right: 15px;
      left: auto;
      width: 470px; } }
  @media (min-width: 1025px) {
    .cart-popup-wrapper {
      top: 10%;
      right: 60px; } }

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

.cart-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  font-size: 30px;
  border: none;
  line-height: 0;
  padding: 0;
  z-index: 10;
  background-color: transparent; }

.cart-popup-item {
  margin: 0;
  font-size: 0;
  display: block; }

.cart-popup-item__image-wrapper {
  position: relative;
  width: 90px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  font-size: 16px; }

.cart-popup-item__image {
  display: block;
  margin: 0 auto;
  width: 100%; }

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

.cart-popup-item__description {
  display: inline-block;
  color: black;
  width: calc(100% - 90px);
  padding: 10px 30px 10px 15px;
  font-size: 16px; }

.cart-popup-item__title {
  margin: 0;
  display: block;
  font-weight: 500;
  color: #181818;
  font-family: "futura-pt", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.cart-popup-item__description .product-details {
  display: none; }

.cart-popup_button {
  display: block;
  margin-top: 10px; }
  .cart-popup_button .text-link {
    font-size: 14px;
    font-weight: 500;
    font-family: "futura-pt", sans-serif;
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 5px;
    color: black;
    border-bottom: 1px solid black; }
    .cart-popup_button .text-link:last-child {
      margin-right: 0; }

.sidebar {
  margin-top: 40px; }

.sidebar__list {
  list-style: none;
  margin-bottom: 55px; }
  .sidebar__list li {
    margin-bottom: 10px; }

.pagination-wrapper {
  display: block; }

.pagination-wrapper .pagination {
  vertical-align: top;
  display: inline-block; }

.pagination {
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
  font-size: 1em;
  line-height: 28px;
  text-transform: uppercase;
  color: #181818;
  font-family: "futura-pt", sans-serif; }

.pagination__item {
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px;
  line-height: inherit; }

.pagination__item .btn, .pagination__item .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .pagination__item .shopify-payment-button__button--unbranded {
  font-weight: 500;
  line-height: inherit;
  border-bottom: none;
  padding-bottom: 0;
  text-transform: uppercase; }

.pagination__item .btn .text, .pagination__item .shopify-payment-button .shopify-payment-button__button--unbranded .text, .shopify-payment-button .pagination__item .shopify-payment-button__button--unbranded .text {
  text-decoration: underline;
  text-underline-position: under; }

.pagination__item .btn .icon, .pagination__item .shopify-payment-button .shopify-payment-button__button--unbranded .icon, .shopify-payment-button .pagination__item .shopify-payment-button__button--unbranded .icon {
  margin: 0 8px;
  padding: 0;
  vertical-align: middle; }

.pagination__item--first {
  margin-left: 0; }

.pagination__item--last {
  margin-right: 0; }

.pagination__link {
  padding-left: 2px;
  padding-right: 2px;
  line-height: inherit;
  display: inline-block; }

.pagination__link--current {
  text-decoration: underline;
  text-underline-position: under;
  pointer-events: none; }

.pagination__text {
  padding: 0 27.5px; }

.btn--share {
  background-color: transparent;
  border-color: #ebebeb;
  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; }
  .btn--share .icon-facebook {
    fill: #3b5998; }
  .btn--share .icon-twitter {
    fill: #00aced; }
  .btn--share .icon-pinterest {
    fill: #cb2027; }

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

/*============================================================================
    The search submit button has pointer-events: none which also
    effects the :hover style. This forces the style to be applied.
==============================================================================*/
/*================ Modals ================*/
.modal {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  display: none;
  overflow: hidden;
  position: fixed;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5); }
  .modal.modal--is-active .modal-dialog {
    transition-delay: 0.3s;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }

#LoginModal {
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9); }
  #LoginModal .modal__inner {
    height: auto;
    max-width: 40rem;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  #LoginModal .password-modal__content {
    padding: 30px 15px;
    position: relative;
    background-color: #ffffff; }
  #LoginModal .form-single-field + .password-content {
    margin-top: 15px; }
  @media (min-width: 1025px) {
    #LoginModal .password-modal__content {
      padding: 50px 30px;
      background-color: #ffffff; } }

#loading-modal {
  background-color: transparent; }
  #loading-modal .loading-modal-content {
    width: 100%;
    text-align: center;
    padding-bottom: 100px; }
    #loading-modal .loading-modal-content .loading {
      width: 150px;
      height: 150px; }

.modal--is-active {
  opacity: 1;
  display: block;
  overflow: visible; }

.modal.modal--is-active {
  opacity: 1;
  display: flex;
  overflow: visible;
  align-items: center;
  justify-content: center; }

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

.modal__close {
  border: 0;
  padding: 6px 9px;
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2; }
  .modal__close .icon {
    font-size: 1.25em; }

.modal-content {
  border: none;
  border-radius: 0;
  background-clip: initial; }

.modal-header {
  padding-left: 15px;
  padding-right: 15px; }
  .modal-header .close {
    padding: 0;
    font-size: 30px;
    line-height: 22px;
    margin: 0; }
  @media (min-height: 768px) {
    .modal-header {
      padding-left: 30px;
      padding-right: 30px; } }
  @media (min-width: 1400px) {
    .modal-header {
      padding-left: 50px;
      padding-right: 50px; } }

.modal-header.text-center {
  display: block;
  position: relative; }

.modal-header.text-center .close {
  top: 17px;
  right: 14px;
  position: absolute; }

.modal-body {
  max-height: 80vh;
  overflow: auto;
  padding: 15px; }
  .modal-body::-webkit-scrollbar-track {
    background-color: #f4f4f4; }
  .modal-body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f4f4f4; }
  .modal-body::-webkit-scrollbar-thumb {
    background-color: #000000; }
  @media (min-height: 768px) {
    .modal-body {
      padding: 30px; } }
  @media (min-width: 1025px) {
    .modal-body {
      max-height: 620px; } }
  @media (min-width: 1400px) {
    .modal-body {
      padding: 50px;
      max-height: 735px; } }

.modal-body.padding-0 {
  padding: 0; }

.modal-title {
  margin-bottom: 0;
  font-weight: 700; }

@media (min-width: 551px) {
  .modal-footer .btn, .modal-footer .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .modal-footer .shopify-payment-button__button--unbranded {
    min-width: 130px; } }

@media (min-width: 768px) {
  .modal-dialog.modal-lg {
    max-width: 700px; } }
@media (min-width: 1025px) {
  .modal-dialog.modal-lg {
    max-width: 970px; } }

.modal-open .page-container {
  z-index: auto; }

.modal-open .modal {
  opacity: 1;
  background-color: transparent; }

.modal-open .modal.fade {
  opacity: 1 !important; }

.filters-toolbar__input-title .title {
  font-size: 16px; }

.filters-toolbar__input-title .icon {
  color: #181818;
  fill: #181818;
  stroke: #181818; }

.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__regular {
  display: block; }

.price--on-sale .price__regular, .price--on-sale .price__availability {
  display: none; }
.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: #969696; }
.price--on-sale .price-item--sale {
  color: #181818; }

.price__availability {
  display: none; }

.price--sold-out .price__availability {
  display: block; }
.price--sold-out .price__regular, .price--sold-out .price__sale, .price--sold-out .price__unit {
  display: none; }

.price__sale {
  display: none; }
  .price--on-sale .price__sale {
    display: flex; }

.price__vendor {
  color: black;
  font-size: 0.9em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px 0 10px;
  width: 100%;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }

.price__unit {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%;
  display: none; }
  .price--unit-available .price__unit {
    display: block; }

.price-item {
  font-weight: 400;
  color: #787878; }

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

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

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

.logo-bar {
  display: inline-block;
  vertical-align: top;
  position: relative; }

.logo__image .recommended_size {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.logo__link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  position: absolute;
  display: inline-block; }

/*================ Quote slider ================*/
.quote-icon {
  display: block;
  margin: 0 auto 20px;
  color: #181818; }
  .quote-icon svg {
    fill: #181818;
    stroke: #181818; }

.quotes-slider__text {
  display: block;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  color: #181818;
  font-size: 1.10938em;
  font-weight: 400;
  font-style: normal;
  padding: 0 8px; }
  .quotes-slider__text cite {
    font-size: 0.88889em;
    font-style: normal;
    color: #999999;
    text-decoration: underline;
    text-underline-position: under; }
    .quotes-slider__text cite:before {
      content: none; }
  .quotes-slider__text p {
    color: #181818;
    margin-bottom: 15px; }
    .quotes-slider__text p + cite {
      margin-top: 0; }
  @media (min-width: 1025px) {
    .quotes-slider__text {
      padding: 0 15px; }
      .quotes-slider__text p {
        margin-bottom: 25px; } }

.quote-content {
  display: block; }

.quote-author {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center; }

.quote-author img {
  margin-right: 15px; }

/*================ Quote slider ================*/
.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;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }
  @media only screen and (min-width: 768px) {
    .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;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.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: 768px) {
    .map-section__error {
      position: absolute;
      margin: 0 2rem;
      top: 50%;
      -ms-transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); } }

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

.map-section__content {
  position: relative;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 35px;
  width: 100%;
  text-align: center;
  z-index: 3;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: center;
  -ms-align-content: center;
  align-content: center; }
  .map-section__content > * {
    width: 100%; }
  @media only screen and (min-width: 768px) {
    .map-section__content {
      background-color: white;
      margin: 55px 0;
      min-height: 300px;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.15); } }
  .map-section--load-error .map-section__content {
    position: static;
    transform: translateY(0); }
  .map-section__content .title {
    font-size: 22px;
    text-transform: uppercase; }

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

.map-section__container {
  max-width: none;
  width: 100%;
  height: 55vh;
  left: 0; }
  @media only screen and (min-width: 768px) {
    .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;
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  flex-basis: 100%; }
  @media only screen and (min-width: 768px) {
    .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: 768px) {
    .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; }

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

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

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

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

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

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

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

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

.newsletter-section {
  padding-top: 55px; }

.index-section--newsletter-background {
  background-color: rgba(0, 0, 0, 0.05); }

.rich-text {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #181818; }
  .rich-text.rich-text-full {
    max-width: 100%; }
  @media (min-width: 768px) {
    .rich-text {
      max-width: 80%; } }
  @media (min-width: 1025px) {
    .rich-text {
      max-width: 60%; } }

.rich-text__heading .title {
  font-size: inherit;
  color: inherit;
  margin: 0; }

.rich-text__heading--large {
  font-size: 36px; }

.rich-text__heading--medium {
  font-size: 24px; }

.rich-text__heading--small {
  font-size: 18px; }

.rich-text__text p {
  color: inherit; }
  .rich-text__text p:last-child {
    margin-bottom: 0; }

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

.rich-text__text--medium {
  font-size: 16px; }

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

.rich-text__heading + .rich-text__text {
  margin-top: 17.5px; }

/*================ Currency selector ================*/
@media only screen and (max-width: 767px) {
  .currency-selector {
    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;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 12px 17px 12px 30px; } }

.currency-selector__label {
  font-size: 0.75em;
  margin-bottom: 0;
  text-transform: uppercase; }

.currency-selector__input-wrapper {
  margin-top: 4px; }
  @media only screen and (max-width: 767px) {
    .currency-selector__input-wrapper {
      margin-top: 0;
      width: 100%; } }
  .currency-selector__input-wrapper .icon {
    left: auto;
    height: 10px;
    margin: 0;
    width: 12px; }
    @media only screen and (min-width: 768px) {
      .currency-selector__input-wrapper .icon {
        height: calc(8em / 16);
        right: 5px;
        width: calc(8em / 16); } }

.currency-selector__dropdown {
  border: none;
  padding-left: 8px;
  padding-right: 17px; }
  @media only screen and (max-width: 767px) {
    .currency-selector__dropdown {
      font-size: 0.75em;
      font-weight: 700;
      width: 100%; } }

/*================ Product Card ================*/
[data-slick-pc] .product-card {
  width: 220px; }
[data-slick-pc].slick-slider .product-card {
  width: 100%; }
@media (min-width: 768px) {
  [data-slick-pc] .product-card {
    width: 250px; } }
@media (min-width: 1025px) {
  [data-slick-pc] .product-card {
    width: auto; } }

.product-card {
  position: relative;
  font-size: 16px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%; }
  .product-card:hover .product-card_compare {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; }
  .product-card:hover .product-card__button--wrapper {
    z-index: 3;
    bottom: auto;
    height: auto;
    opacity: 1;
    overflow: visible;
    transition: all 0.3s ease, z-index 1.5s ease; }
  @media (min-width: 1025px) {
    .product-card:hover .product-card__switchImage .product-card__img {
      opacity: 0;
      visibility: hidden; }
    .product-card:hover .product-card__switchImage .product-card__img--2 {
      opacity: 1;
      visibility: visible; } }
  .halo-section-background-gray .product-card {
    background-color: #ffe4c5; }

.product-card--2 {
  display: table;
  width: 100%; }
  .product-card--2 .product-card__image {
    display: table-cell;
    vertical-align: top;
    width: 80px; }
  .product-card--2 .product-card__content {
    display: table-cell;
    vertical-align: top;
    padding: 0 0 0 4px;
    width: 90%; }
  .product-card--2 .product-card__title--variant {
    padding-right: 0; }
  .product-card--2 .product-card__variant--item label {
    width: 16px;
    height: 16px;
    line-height: 16px; }
  .product-card--2 .product-card__variant--item--last a {
    height: 16px;
    line-height: 16px; }
  .product-card--2 .product-card__button {
    width: 120px;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: block;
    margin-top: 20px;
    position: relative; }
  @media (min-width: 551px) {
    .product-card--2 .product-card__image {
      width: 90px; }
    .product-card--2 .product-card__content {
      width: 90%; } }
  @media (min-width: 1025px) {
    .product-card--2 .product-card__image {
      width: 100px; }
    .product-card--2 .product-card__content {
      padding: 8px 0 0 20px;
      width: 90%; } }

.product-card--3 {
  width: auto; }
  .product-card--3 .product-card_wishlist {
    top: 15px;
    right: 15px;
    margin: 0;
    z-index: 10;
    position: absolute; }
  .product-card--3 .product-card__image {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto; }
  .product-card--3 .product-card__button--wrapper {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: block;
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    position: relative;
    margin-top: 20px; }

.product-card--4 {
  width: 280px;
  display: table; }
  .product-card--4 .product-card__image,
  .product-card--4 .product-card__content--wrapper {
    display: table-cell;
    vertical-align: top; }
  .product-card--4 .product-card__image {
    width: 80px; }
  .product-card--4 .product-card__content {
    padding: 0; }
  .product-card--4 .product-card__content--wrapper {
    width: calc(100% - 80px);
    padding: 10px; }
  .product-card--4 .product-card__button--wrapper {
    display: none; }
  .product-card--4 .product-card__variant {
    margin-bottom: 0; }
    .product-card--4 .product-card__variant + .product-card__variant {
      display: none; }
  @media (min-width: 768px) {
    .product-card--4 {
      width: 215px;
      display: block; }
      .product-card--4 .product-card__image,
      .product-card--4 .product-card__content--wrapper {
        padding: 0;
        width: 100%;
        display: block; }
      .product-card--4 .product-card__content {
        padding: 15px 20px; }
      .product-card--4 .product-card__button--wrapper {
        z-index: 3;
        bottom: auto;
        height: auto;
        opacity: 1;
        display: block;
        overflow: visible; }
      .product-card--4 .product-card__title a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical; }
      .product-card--4 .product-card__variant {
        margin-bottom: 18px; }
        .product-card--4 .product-card__variant + .product-card__variant {
          display: block;
          margin-bottom: 0; } }

.product_badges {
  top: 10px;
  left: 10px;
  z-index: 5;
  display: flex;
  position: absolute !important;
  flex-direction: column;
  align-items: flex-start; }
  .product_badges .badge {
    min-width: 40px;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    padding: 2px 6px;
    border-radius: 0;
    font-family: "futura-pt", sans-serif;
    color: #fff;
    background-color: #da0000; }
  .product_badges .new-badge {
    color: #da0000;
    background-color: #fff; }
  .product_badges .soldOut-badge {
    color: #ffffff;
    background-color: #c6c6c6; }
  .product_badges .sale-badge {
    color: #fff;
    background-color: #da0000;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 0px solid #6a6a6a; }
  .product_badges [data-label-sale] {
    text-transform: lowercase; }

.product-card__image {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 1; }
  @media (min-width: 1025px) {
    .product-card__image:hover .product-card_quickview {
      opacity: 1;
      visibility: visible;
      pointer-events: auto; }
    .product-card__image:hover .product-card__button {
      bottom: 0; } }

.product-card__link {
  display: block;
  position: relative; }
  .product-card__link img {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    object-fit: cover;
    max-height: 100%;
    position: absolute;
    transition: all 0.3s ease; }
  .product-card__link .placeholder-svg {
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    position: absolute; }
  .product-card__link .product-card__img {
    display: inline-block; }
  .product-card__link .product-card__img--2 {
    display: none; }
  .product-card__link:before {
    content: "";
    display: block;
    padding-bottom: 100%; }

@media (min-width: 1025px) {
  .product-card__switchImage .product-card__img {
    opacity: 1;
    display: inline-block;
    visibility: visible;
    object-fit: contain; }
  .product-card__switchImage .product-card__img--2 {
    display: block;
    opacity: 0;
    visibility: hidden; } }

.product-card__content--wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center; }

.product-card__content {
  width: 90%;
  z-index: 2;
  display: block;
  padding-top: 0px;
  position: relative;
  background-color: white; }
  .halo-section-background-gray .product-card__content {
    background-color: #ffe4c5; }
  @media (min-width: 1025px) {
    .product-card__content {
      padding-top: 20px; } }

.product-card__vendor,
.product-edit__vendor {
  line-height: 1;
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
  color: #787878; }
  .product-card__vendor a,
  .product-edit__vendor a {
    color: inherit;
    font-size: inherit;
    display: inline-block; }

.product-card__title,
.product-edit__title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 8px;
  text-transform: lowercase;
  text-align: center;
  font-family: "futura-pt", sans-serif;
  color: #181818; }
  .product-card__title a,
  .product-edit__title a {
    color: inherit;
    overflow: hidden;
    font-size: inherit;
    font-weight: inherit;
    white-space: normal;
    display: -webkit-flex;
    /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6, BB7 */
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical; }
  .product-card__title:hover,
  .product-edit__title:hover {
    color: black; }

.product-card__title--variant {
  position: relative; }

.product-card__reviews {
  display: block;
  line-height: 1;
  margin: 0 0 13px 0;
  min-height: 17px;
  position: relative; }
  .product-card__reviews .spr-badge-caption {
    display: none; }

.product-card__error-message {
  font-size: 12px;
  margin-bottom: 0;
  padding: 0;
  line-height: 20px; }

.product-card__description {
  display: none; }

.spr-icon {
  margin-right: 1px; }
  .spr-icon.spr-icon-star, .spr-icon.spr-icon-star-empty {
    font-size: 18px !important;
    width: 16px;
    height: 16px;
    line-height: 16px; }
    .spr-icon.spr-icon-star:before, .spr-icon.spr-icon-star-empty:before {
      font-size: 18px !important;
      width: 16px;
      height: 16px;
      line-height: 16px;
      content: "\2605"; }

.spr-icon-star {
  color: #3c86a5; }

.spr-icon-star-empty {
  opacity: 1 !important;
  color: #e4e4e4; }

.spr-icon-star-empty.spr-icon-star-hover:before {
  content: "\2605" !important; }

.spr-form-review-rating a {
  line-height: 1; }

.product-card__price {
  line-height: 1;
  position: relative;
  margin: 0 0 15px;
  visibility: visible; }
  .product-card__price .price-item {
    line-height: 1;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #787878; }
    .product-card__price .price-item + .price-item {
      margin-left: 2px; }
  .product-card__price.price--on-sale .price-item--regular {
    text-decoration: line-through;
    color: #969696; }
  .product-card__price.price--on-sale .price-item--sale {
    color: #181818; }

.product-card_compare {
  display: none; }
  .product-card_compare input {
    display: none; }
    .product-card_compare input:not(:checked) + label:after {
      opacity: 0;
      transform: scale(0) rotate(-45deg); }
    .product-card_compare input:checked + label:after {
      opacity: 1;
      transform: scale(1) rotate(-45deg); }
  .product-card_compare label {
    font-weight: 400;
    padding-left: 20px;
    position: relative;
    color: black; }
    .product-card_compare label:before {
      content: "";
      left: 0;
      top: 1px;
      width: 13px;
      height: 13px;
      position: absolute;
      border: 1px solid #dbdbdb;
      background-color: #ffffff; }
    .product-card_compare label:after {
      content: '';
      width: 9px;
      height: 5px;
      position: absolute;
      top: 4px;
      left: 2px;
      border: 2px solid #000000;
      border-top: none;
      border-right: none;
      background: rgba(255, 255, 255, 0);
      transform: rotate(-45deg);
      transition: all 0.1s; }
    .product-card_compare label > span {
      position: relative; }
      .product-card_compare label > span:before {
        content: "";
        bottom: -1px;
        left: 0;
        width: 0;
        height: 1px;
        position: absolute;
        background-color: black;
        transition: all 0.3s ease; }
    .product-card_compare label:hover > span:before {
      width: 100%; }
  .product-card_compare.compare-added input + label:after {
    opacity: 1;
    transform: scale(1) rotate(-45deg); }
  @media (min-width: 1025px) {
    .product-card_compare {
      opacity: 0;
      right: 0;
      top: 50%;
      line-height: 1;
      display: block;
      visibility: hidden;
      position: absolute;
      pointer-events: none;
      transform: translateY(-50%);
      transition: all 0.3s ease; }
      .product-card_compare:before {
        content: "";
        bottom: -4px;
        right: 0;
        left: auto;
        opacity: 0;
        height: 1px;
        position: absolute;
        display: inline-block;
        width: calc(100% - 21px);
        background-color: black;
        transition: all 0.3s ease; }
      .product-card_compare:hover:before {
        opacity: 1; } }

.product-card__variant {
  display: block;
  font-size: 0;
  line-height: 1;
  margin-bottom: 18px; }
  .product-card__variant:last-child {
    margin-bottom: 7px; }

.product-card__variant__label {
  display: none;
  font-weight: 400;
  font-size: 16px;
  color: #181818;
  margin-bottom: 12px; }

.product-card__variant--size {
  font-size: 12px;
  text-transform: uppercase; }

.product-card__variant--item {
  font-size: 0;
  margin-right: 8px;
  vertical-align: top;
  display: inline-block; }

.product-card__variant--item--last {
  font-size: 16px; }

.product-card__variant--item label {
  width: 22px;
  height: 22px;
  margin: 0;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.product-card__variant--item label.active {
  box-shadow: 0 0 0px 2px rgba(0, 0, 0, 0.8); }

.product-card__variant--item.white label {
  border: 1px solid #dadada; }

.product-card__variant--item--last a {
  line-height: 22px;
  height: 22px;
  color: black; }

.product-card__button--wrapper {
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 3;
  display: block;
  position: absolute;
  transition: all 0.3s ease; }
  .product-card__button--wrapper.is-open {
    height: auto;
    z-index: 3;
    bottom: auto;
    opacity: 1;
    overflow: visible; }
  @media (min-width: 1025px) {
    .product-card__button--wrapper {
      z-index: 1;
      bottom: auto;
      height: 45px;
      opacity: 1;
      overflow: hidden;
      transition: all 0.3s ease, z-index 0s ease; } }

.product-card_wishlist {
  display: block;
  text-align: center;
  width: 30px;
  height: 30px;
  padding: 5px;
  margin-left: auto;
  margin-right: 15px;
  margin-bottom: 15px;
  line-height: 20px;
  border-radius: 50%;
  background-color: #ffffff; }
  .product-card_wishlist.wishlist-added {
    background-color: #62a9c6; }
    .product-card_wishlist.wishlist-added .text,
    .product-card_wishlist.wishlist-added .icon {
      background-color: #62a9c6; }
  .product-card_wishlist .text {
    display: none;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 400;
    width: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    right: calc(100% - 25px);
    height: 30px;
    background-color: #ffffff;
    line-height: 30px;
    position: absolute;
    top: 50%;
    padding: 0 30px 0 15px;
    border-radius: 15px;
    transform: translateY(-50%);
    transition: all 0.3s ease; }
  .product-card_wishlist .icon {
    width: 20px;
    height: 20px;
    line-height: 20px;
    vertical-align: top;
    position: relative;
    z-index: 5;
    background-color: #ffffff; }
  @media (min-width: 1025px) {
    .product-card_wishlist .text {
      display: inline-block; }
    .product-card_wishlist:hover .text {
      width: auto;
      opacity: 1;
      visibility: visible;
      transition: all 0s ease; } }

.product-card_quickview {
  display: none; }
  @media (min-width: 1025px) {
    .product-card_quickview {
      display: block;
      font-size: 14px;
      line-height: 30px;
      font-weight: 400;
      text-align: center;
      background-color: rgba(255, 255, 255, 0.8); } }

.product-card__button {
  display: block;
  position: relative;
  transition: all 0.3s ease; }

.product-card__btn {
  margin: 0;
  width: 100%;
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  padding: 8px 10px;
  text-align: center;
  white-space: nowrap;
  font-family: "futura-pt", sans-serif;
  color: white;
  border: 1px solid #3c86a5;
  background-color: #3c86a5;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }
  .product-card__btn span {
    position: relative; }
  .product-card__btn .icon:not(.icon-spinner) {
    top: 3px;
    left: -20px;
    width: 11px;
    height: 11px;
    position: absolute; }
  .product-card__btn [data-loader] {
    width: 20px;
    height: 20px; }
  .product-card__btn [data-loader]:not(.hide) + [data-add-to-cart-text] {
    display: none; }
  .product-card__btn [data-add-to-cart-text].hide + [data-loader] {
    display: inline-block !important; }
  .product-card__btn:hover {
    color: white;
    border-color: #2e6880;
    background-color: #2e6880; }
  .product-card__btn.product-card__btn-soldOut {
    border-color: white;
    background-color: white; }
  @media (min-width: 1025px) {
    .product-card__btn {
      padding: 10px; } }

.product-card__btn--plus > span {
  position: relative; }
  .product-card__btn--plus > span:before {
    top: 8px;
    content: "";
    width: 11px;
    height: 1px;
    line-height: 22px;
    right: calc(100% + 8px);
    display: block;
    position: absolute;
    background-color: white; }
  .product-card__btn--plus > span:after {
    top: 50%;
    content: "";
    width: 1px;
    height: 11px;
    line-height: 22px;
    right: calc(100% + 13px);
    display: block;
    position: absolute;
    background-color: white;
    transform: translateY(-50%); }

.product-card__variant--popup {
  top: calc(100% - 40px);
  left: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  height: 0;
  opacity: 0;
  display: block;
  overflow: hidden;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease; }
  .is-open .product-card__variant--popup {
    height: calc(100% + 56px);
    opacity: 1;
    overflow: visible; }
  .product-card__variant--popup .close {
    top: 0;
    right: 0;
    z-index: 6;
    opacity: 1;
    float: none;
    padding: 0 10px;
    font-size: 28px;
    font-weight: 400;
    line-height: 38px;
    position: absolute;
    color: #ffffff; }
  @media (min-width: 1025px) {
    .product-card__variant--popup {
      top: calc(100% - 44px); }
      .is-open .product-card__variant--popup {
        height: calc(100% + 60px); }
      .product-card__variant--popup .close {
        line-height: 42px; } }

.product-card__variant--popup--content {
  width: 100%;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  max-height: 100%; }
  .product-card__variant--popup--content .product-card__button2 {
    z-index: 6;
    display: block;
    transition: all 0.3s ease; }
  .product-card__variant--popup--content .product-form__variants {
    width: 100%; }

.product-card__Select {
  width: 100%;
  display: block;
  overflow: auto;
  min-height: 200px;
  padding: 10px 0 0 0;
  background-color: white; }
  .product-card__Select::-webkit-scrollbar-track {
    background-color: #f5f5f5; }
  .product-card__Select::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #f5f5f5; }
  .product-card__Select::-webkit-scrollbar-thumb {
    background-color: #a6a6a6; }
  .product-card__Select a {
    display: flex;
    padding: 5px 10px;
    line-height: 20px;
    justify-content: space-between; }
  .product-card__Select .active {
    background-color: #f5f5f5; }
  .product-card__Select [disabled="disabled"] {
    opacity: 0.5;
    pointer-events: none; }
  .product-card__Select .text {
    text-align: left;
    padding-right: 10px; }

.collection-grid-item__overlay {
  display: block;
  position: relative; }
  .collection-grid-item__overlay:before {
    content: "";
    display: block;
    padding-bottom: 100%; }

.collection-grid-item__title {
  color: #181818; }

.collection-grid-item__product {
  color: #787878; }

.next-prev-icons span,
.product-addmore-button {
  font-family: "futura-pt", sans-serif; }

.tab-horizontal .tab a,
.tab-content .toggle-title,
.ask-form-wrapper .des strong,
.ask-form-wrapper .custom-radio label,
.compare-modal-wrapper .compare-header,
.azbrandstable a {
  color: #181818;
  font-family: "futura-pt", sans-serif; }

.tab-horizontal .tab a:after {
  background-color: #181818; }

.padding-top-10 {
  padding-top: 10px; }

.padding-bottom-10 {
  padding-bottom: 10px; }

.padding-top-20 {
  padding-top: 20px; }

.padding-bottom-20 {
  padding-bottom: 20px; }

.padding-top-30, .padding-top-40 {
  padding-top: 30px; }

.padding-bottom-30, .padding-bottom-40 {
  padding-bottom: 30px; }

.padding-top-50, .padding-top-60, .padding-top-70 {
  padding-top: 40px; }

.padding-bottom-50, .padding-bottom-60, .padding-bottom-70 {
  padding-bottom: 40px; }

.padding-top-100, .padding-top-80, .padding-top-90 {
  padding-top: 50px; }

.padding-bottom-100, .padding-bottom-80, .padding-bottom-90 {
  padding-bottom: 50px; }

.halo-section-background-gray {
  background-color: #ffe4c5; }

.halo-section-border-top {
  border-top: 1px solid #e2e4e8; }

.halo-section-border-bottom {
  border-bottom: 1px solid #e2e4e8; }

.page {
  margin: 0 auto;
  position: relative;
  padding-top: 30px;
  padding-bottom: 50px; }

.page-content {
  width: 100%;
  float: left;
  padding: 0;
  position: relative; }

.page-sidebar {
  top: 0;
  left: -101%;
  bottom: 0;
  width: 337px;
  height: 100%;
  z-index: 102;
  position: fixed;
  max-width: calc(100% - 44px);
  transition: all .5s ease;
  background-color: #fff;
  box-shadow: rgba(50, 50, 50, 0.2) 0 0 10px 0; }

.page-sidebar.is-open {
  left: 0; }

.page-sidebar__close {
  display: block;
  text-align: right;
  opacity: .6;
  font-weight: 700;
  padding: 13px 20px 12px 20px;
  text-transform: uppercase;
  color: #181818;
  font-family: "futura-pt", sans-serif;
  background-color: #f5f5f5;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15); }

.page-sidebar__close .close {
  float: none;
  color: inherit;
  opacity: 1;
  font-size: 16px;
  line-height: 22px;
  text-shadow: none;
  display: inline-block; }

.page-sidebar__close .icon {
  width: auto;
  height: auto;
  font-size: 22px;
  line-height: 22px;
  margin-top: -1px;
  font-weight: 400;
  display: inline-block;
  vertical-align: top;
  font-family: "futura-pt", sans-serif; }

.page-sidebar__content {
  display: block;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 20px 20px 100px 20px; }

.sidebar_mobile_wrapper {
  display: block;
  position: relative;
  margin-bottom: 30px; }

.sidebar_mobile {
  z-index: 2;
  cursor: pointer;
  position: relative;
  display: inline-block;
  pointer-events: auto;
  cursor: pointer; }

.sidebar_mobile > .text {
  margin: 2px 0 0 0;
  font-size: 16px;
  padding-right: 10px;
  min-width: 70px;
  font-weight: 700;
  color: #181818;
  vertical-align: middle;
  font-family: "futura-pt", sans-serif;
  pointer-events: none; }

.sidebar_mobile .icon {
  width: 36px;
  height: 36px;
  padding: 10px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #cecece;
  border-radius: 3px;
  fill: #181818;
  pointer-events: none; }

.breadcrumb-wrapper {
  padding: 15px 0;
  color: #999999;
  background-color: white; }

.breadcrumb-wrapper.border-tops {
  border: none;
  border-top: 1px solid #f5f5f5; }

.breadcrumb-wrapper.border-bottoms {
  border: none;
  border-bottom: 1px solid #f5f5f5; }

.breadcrumb {
  font-size: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  vertical-align: top;
  display: inline-block;
  background-color: transparent; }

.breadcrumb__item {
  padding: 5px 0;
  line-height: 1;
  vertical-align: top;
  display: inline-block;
  font-size: 16px;
  color: #999999; }

.breadcrumb__item .icon {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px; }

.breadcrumb__item a, .breadcrumb__item span {
  color: inherit;
  font-size: inherit; }

.halo-row {
  font-size: 0;
  display: block;
  overflow: auto;
  white-space: nowrap;
  margin: 0 -15px;
  padding: 0 0 0 15px; }

[data-section-type=product-list] .halo-row {
  padding: 0 0 0 15px; }

.halo-row__item {
  padding: 0;
  margin-right: 15px;
  margin-bottom: 0;
  white-space: normal;
  vertical-align: top;
  display: inline-block;
  font-size: 16px; }

.halo-row[data-slick] {
  overflow: hidden; }

.halo-row[data-slick-pc] {
  overflow-x: auto;
  overflow-y: hidden; }

.halo-row.slick-slider {
  padding: 0;
  margin-left: -8px;
  margin-right: -8px;
  overflow: visible; }

.halo-row.slick-slider .slick-track {
  margin-left: auto;
  margin-right: auto; }

.halo-row.slick-slider .halo-row__item {
  margin: 0;
  padding: 0 8px; }

.halo-row__item--full {
  width: 100%; }

.halo-column {
  font-size: 0;
  margin: 0 -8px;
  list-style: none;
  text-align: center;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center; }

.halo-column__item {
  padding: 0 8px;
  margin: 0 0 16px 0;
  white-space: normal;
  vertical-align: top;
  display: inline-block;
  font-size: 16px; }

.halo-column__item--full {
  width: 100%; }

@media (max-width: 1025px) {
  .halo-column.halo-row--mobile {
    font-size: 0;
    display: block;
    overflow: auto;
    white-space: nowrap;
    margin: 0 -15px;
    padding: 0 0 0 15px; }

  .halo-column.halo-row--mobile .halo-column__item {
    padding: 0;
    width: auto;
    margin-right: 15px;
    margin-bottom: 2px;
    white-space: normal;
    vertical-align: top;
    display: inline-block;
    font-size: 16px; } }
.site-header {
  z-index: 50;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  color: #505050;
  background-color: white; }

.header-PC {
  display: none; }

.header-mobile {
  display: block; }

.header-sticky.is-sticky {
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  position: fixed;
  display: block;
  transform: none;
  animation-name: fadeInDown;
  animation-duration: .5s;
  animation-fill-mode: both;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15); }

.header-middle {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  color: #505050;
  background-color: white; }

.header-middle__left, .header-middle__right {
  flex-shrink: 0;
  width: calc(50% - 125px); }

.header-middle__left {
  text-align: left; }

.header-middle__center {
  width: 250px;
  text-align: center; }

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

.header-middle__center .logo-wrapper {
  padding: 21px 0 19px; }

.header-middle__item {
  vertical-align: middle;
  display: inline-block; }

.header-middle__item + .header-middle__item {
  margin-left: 20px; }

.header-middle__item--language + .header-middle__item--currency {
  position: relative;
  margin-left: 5px;
  padding-left: 15px; }

.header-middle__item--language + .header-middle__item--currency:before {
  left: 0;
  top: 50%;
  width: 1px;
  height: 20px;
  content: "";
  position: absolute;
  background-color: black;
  transform: translateY(-50%); }

.header-middle__item--cart {
  position: relative; }

.header-middle__item--cart .navUser-action .icon {
  position: relative;
  top: -3px; }

.header-middle__item--cart .countPill {
  position: relative;
  top: auto;
  right: auto;
  font-size: inherit;
  display: inline-block;
  vertical-align: middle; }

.header-middle__item--account {
  position: relative; }

.header-middle .site-nav {
  display: inline-block;
  vertical-align: middle;
  width: auto; }

.header-middle .site-nav + .header-middle__item {
  margin-left: 20px; }

.logo_text {
  line-height: 1;
  text-transform: uppercase;
  color: #505050;
  font-size: 28px;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle; }

.logo_text:hover {
  color: #505050; }

.site-header__logo-image {
  display: inline-block; }

.site-nav {
  width: 100%;
  font-size: 0; }

.site-nav .icon-dropdown {
  display: none; }

.site-nav .menu-mb-title {
  display: none; }

.site-nav .icon-label {
  right: -15px;
  top: -20px;
  margin: 0;
  line-height: 1;
  font-size: 11px;
  font-weight: 400;
  padding: 0 8px;
  line-height: 16px;
  height: 16px;
  border-radius: 8px;
  text-align: center;
  font-family: "futura-pt", sans-serif;
  position: absolute; }

.site-nav .menu-lv-1--last .icon-label {
  top: auto;
  left: auto;
  right: auto;
  display: inline-block;
  vertical-align: top;
  margin-left: 15px; }

.site-nav .icon-label.label_1 {
  color: white;
  background-color: #d95949; }

.site-nav .icon-label.label_2 {
  color: white;
  background-color: #f4ae4d; }

.site-nav .icon-label.label_3 {
  color: white;
  background-color: #41aed6; }

.site-nav > .menu-lv-1 {
  margin-right: 30px;
  display: inline-block;
  vertical-align: middle; }

.site-nav > .menu-lv-1:last-child {
  margin-right: 0; }

.site-nav > .menu-lv-1 > .nav-action {
  margin: 0;
  padding: 11px 0 9px 0;
  font-family: "futura-pt", sans-serif;
  color: #505050;
  font-weight: 500;
  font-size: 16px; }

.site-nav > .menu-lv-1 > .nav-action a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit; }

.site-nav > .menu-lv-1 > .nav-action a:before {
  left: 0;
  bottom: -3px;
  content: "";
  z-index: 2;
  width: 0;
  height: 1px;
  position: absolute;
  transition: all .3s ease;
  background-color: #505050; }

.site-nav > .menu-lv-1:hover > .nav-action a:before {
  width: 100%; }

.site-nav > .menu-lv-1:hover > .nav-action {
  color: #505050; }

.navUser-action {
  cursor: pointer;
  color: #505050;
  pointer-events: auto; }

.navUser-action .icon {
  width: 25px;
  height: 25px;
  color: #505050;
  fill: #505050; }

.navUser-action .icon:hover, .navUser-action:hover .icon {
  color: #505050;
  fill: #505050; }

.countPill {
  top: -8px;
  right: -10px;
  height: 22px;
  width: 22px;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  color: #3c86a5;
  background-color: white; }

.site-nav .nav-title-mobile {
  display: none; }

.site-nav .menu-lv-1--last .menu-lv-1 > .nav-action, .site-nav .menu-lv-2 > .nav-action, .site-nav .menu-lv-3 > .nav-action {
  margin: 0;
  width: 100%;
  color: inherit;
  font-size: 16px;
  font-weight: 400;
  vertical-align: top;
  display: inline-block;
  padding: 5px 20px 5px;
  transition: all .3s ease; }

.site-nav .menu-lv-1--last .menu-lv-1 > .nav-action a, .site-nav .menu-lv-2 > .nav-action a, .site-nav .menu-lv-3 > .nav-action a, .site-nav .menu-lv-3 > .nav-action span.text {
  color: #3c86a5;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  transition: none;
  position: relative;
  transition: all .3s ease; }

.site-nav .menu-lv-1--last .menu-lv-1 > .nav-action a:before, .site-nav .menu-lv-2 > .nav-action a:before, .site-nav .menu-lv-3 > .nav-action a:before, .site-nav .menu-lv-3 > .nav-action span.text:before {
  content: "";
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  display: block;
  position: absolute;
  transition: all .3s ease;
  background-color: #3c86a5; }

.site-nav .menu-lv-1--last .menu-lv-1 > .nav-action:hover, .site-nav .menu-lv-2 > .nav-action:hover, .site-nav .menu-lv-3 > .nav-action:hover {
  color: #3c86a5; }

.site-nav .menu-lv-1--last .menu-lv-1 > .nav-action:hover a, .site-nav .menu-lv-2 > .nav-action:hover a, .site-nav .menu-lv-3 > .nav-action:hover a, .site-nav .menu-lv-3 > .nav-action:hover span.text {
  color: #3c86a5; }

.site-nav .menu-lv-1--last .menu-lv-1 > .nav-action:hover a:before, .site-nav .menu-lv-2 > .nav-action:hover a:before, .site-nav .menu-lv-3 > .nav-action:hover a:before, .site-nav .menu-lv-3 > .nav-action:hover span.text:before {
  width: 100%; }

.site-nav > .menu-lv-1.dropdown:hover > .dropdown-menu-mobile {
  top: auto;
  opacity: 1;
  display: block;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0); }

.site-nav .no-mega-menu .dropdown-menu-mobile {
  left: 0;
  opacity: 0;
  z-index: 10;
  padding: 15px 0;
  min-width: 250px;
  font-weight: 400;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  color: #3c86a5;
  font-family: "futura-pt", sans-serif;
  background-color: white;
  transition: all .3s ease;
  transform: translate3d(0, 50px, 0);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px; }

.site-nav .no-mega-menu .dropdown-menu-mobile .dropdown-menu-mobile {
  left: calc(100% - 40px); }

.site-nav .no-mega-menu .menu-lv-2.dropdown:hover > .dropdown-menu-mobile, .site-nav .no-mega-menu .menu-lv-3.dropdown:hover > .dropdown-menu-mobile {
  top: 0;
  opacity: 1;
  display: block;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0); }

.site-nav .no-mega-menu .menu-lv-2 .icon-dropdown, .site-nav .no-mega-menu .menu-lv-3 .icon-dropdown {
  width: auto;
  height: auto;
  line-height: 10px;
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 20px;
  display: none;
  transform: translateY(-50%);
  transition: all .3s ease; }

.site-nav .mega-menu {
  position: static; }

.site-nav .mega-menu .dropdown-menu-mobile {
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 70vh;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 10;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  transition: all .3s ease;
  color: #3c86a5;
  font-family: "futura-pt", sans-serif;
  background-color: white;
  transform: translate3d(0, 50px, 0);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); }

.site-nav .mega-menu.menu-lv-1:hover .dropdown-menu-mobile {
  pointer-events: auto; }

.site-nav .mega-menu .menu-lv-2 > .nav-action {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  color: #3c86a5;
  font-weight: 500;
  font-size: 16px;
  font-family: "futura-pt", sans-serif; }

.site-nav .mega-menu .menu-lv-2 > .nav-action a {
  color: inherit; }

.site-nav .mega-menu .menu-lv-3 > .nav-action {
  padding-top: 5px;
  padding-bottom: 4px;
  padding-left: 0;
  padding-right: 0; }

.site-nav .mega-menu .site-nav-dropdown-child {
  padding: 0;
  float: none;
  width: auto;
  font-size: 0;
  list-style: none;
  margin: 0 -15px; }

.site-nav .mega-menu .site-nav-dropdown-child .site-nav-dropdown {
  margin: 0; }

.site-nav .mega-menu .site-nav-dropdown-child.column-2 {
  column-count: 2;
  -webkit-column-count: 2; }

.site-nav .mega-menu .site-nav-dropdown-child.column-3 {
  column-count: 3;
  -webkit-column-count: 3; }

.site-nav .mega-menu .site-nav-dropdown-child.column-4 {
  column-count: 4;
  -webkit-column-count: 4; }

.site-nav .mega-menu .site-nav-dropdown-child.column-5 {
  column-count: 5;
  -webkit-column-count: 5; }

.site-nav .mega-menu .site-nav-dropdown-child > .menu-lv-2 {
  padding: 0 15px 10px;
  break-inside: avoid-column;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid; }

.site-nav .mega-menu .dropdown-menu-mobile .dropdown-menu-mobile {
  padding: 0;
  margin: 0;
  left: auto;
  right: auto;
  opacity: 1;
  display: block;
  transform: none;
  box-shadow: none;
  max-height: none;
  border-radius: 0;
  visibility: visible;
  pointer-events: none;
  position: relative;
  background-color: transparent; }

.site-nav .dropdown-megamenu.style_1 {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start; }

.site-nav .dropdown-megamenu .dropdown-megamenu-right {
  position: relative;
  display: inline-block;
  vertical-align: top; }

.site-nav .dropdown-megamenu .dropdown-megamenu-right a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: inline-block; }

.site-nav .dropdown-megamenu.style_1 .dropdown-megamenu-left {
  width: 77%;
  display: flex;
  align-items: flex-start;
  padding: 30px 15px 30px 30px; }

.site-nav .dropdown-megamenu.style_1 .dropdown-megamenu-left--item {
  display: inline-block;
  vertical-align: top;
  width: 60%; }

.site-nav .dropdown-megamenu.style_1 .dropdown-megamenu-left--item:last-child {
  padding-left: 40px;
  width: 40%; }

.site-nav .dropdown-megamenu.style_1 .dropdown-megamenu-right {
  width: 23%; }

.dropdown-megamenu h3.title, .dropdown-megamenu .title.h3 {
  font-size: 16px;
  color: #3c86a5;
  padding-top: 5px;
  font-weight: 500;
  margin-bottom: 22px; }

.dropdown-megamenu--carousel {
  display: block;
  font-size: 0;
  margin: 0 -15px;
  max-height: 190px; }

.dropdown-megamenu--carousel:not(.slick-slider) {
  white-space: nowrap;
  overflow: hidden; }

.dropdown-megamenu--carousel > .items {
  width: 50%;
  padding: 0 15px;
  font-size: 12px;
  display: inline-block;
  vertical-align: top; }

.dropdown-megamenu--carousel .slick-slide {
  padding: 0 15px;
  font-size: 16px; }

.dropdown-megamenu--carousel .slick-dots {
  bottom: -40px; }

.dropdown-megamenu--carousel .slick-next, .dropdown-megamenu--carousel .slick-prev {
  right: 15px;
  top: auto;
  bottom: -40px;
  width: 30px;
  height: 30px;
  transform: none;
  color: #3c86a5; }

.dropdown-megamenu--carousel .slick-next svg, .dropdown-megamenu--carousel .slick-prev svg {
  color: #3c86a5;
  fill: #3c86a5;
  stroke: #3c86a5; }

.dropdown-megamenu--carousel .slick-prev {
  left: 15px; }

.site-nav .dropdown-megamenu--carousel .product-card__btn, .site-nav .dropdown-megamenu--carousel .product-card__btn:hover {
  width: auto;
  border: none;
  display: inline-block;
  padding: 0 0 0 17px;
  color: #3c86a5;
  background-color: transparent; }

.site-nav .dropdown-megamenu--carousel .product-card__btn--plus > span:after, .site-nav .dropdown-megamenu--carousel .product-card__btn--plus > span:before {
  background-color: #3c86a5; }

.site-nav .dropdown-megamenu--carousel .product-card--2 .product-card__image {
  width: 80px;
  min-width: 80px; }

.site-nav .dropdown-megamenu--carousel .product-card--2 .product-card__content {
  top: -5px;
  padding-top: 0;
  position: relative;
  width: calc(100% - 80px); }

.site-nav .dropdown-megamenu--carousel .product-card--2 .product-card__title {
  margin-bottom: 12px; }

.site-nav .dropdown-megamenu--carousel .product-card--2 .product-card__title a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical; }

.site-nav .dropdown-megamenu--carousel .product-card--2 .product-card__price {
  margin-bottom: 12px; }

.site-nav .dropdown-megamenu--carousel .product-card--2 .product-card__button {
  width: auto;
  line-height: 22px;
  margin-top: 12px; }

.site-nav .dropdown-megamenu--carousel .product-card--2 .product-card__btn {
  overflow: visible; }

.site-nav .mega-menu.style_2 {
  position: relative; }

.site-nav .mega-menu.style_2 > .dropdown-menu-mobile {
  width: 640px; }

.site-nav .dropdown-megamenu.style_2 {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start; }

.site-nav .dropdown-megamenu.style_2 .dropdown-megamenu-left {
  padding: 30px;
  width: 50%; }

.site-nav .dropdown-megamenu.style_2 .dropdown-megamenu-right {
  width: 50%; }

.site-nav .mega-menu.style_3 {
  position: relative; }

.site-nav .mega-menu.style_3 > .dropdown-menu-mobile {
  width: 1010px; }

.site-nav .dropdown-megamenu.style_3 {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start; }

.site-nav .dropdown-megamenu.style_3 .dropdown-megamenu-left {
  padding: 30px;
  width: 68%; }

.site-nav .dropdown-megamenu.style_3 .dropdown-megamenu-right {
  width: 32%; }

.site-nav .dropdown-megamenu.style_4 .dropdown-megamenu-left, .site-nav .dropdown-megamenu.style_4 .dropdown-megamenu-right {
  display: block;
  width: 100%; }

.site-nav .dropdown-megamenu.style_4 .dropdown-megamenu-right a {
  position: relative;
  display: block; }

.dropdown-megamenu__breadcrumb {
  display: block;
  padding: 20px;
  text-align: center;
  font-size: 16px; }

.dropdown-megamenu__breadcrumb a {
  color: #3c86a5;
  display: block;
  text-decoration: underline;
  text-underline-position: under; }

.dropdown-megamenu__img--column {
  font-size: 0;
  position: relative;
  display: block;
  white-space: nowrap; }

.dropdown-megamenu__img--column > li {
  width: 25%;
  position: relative;
  vertical-align: top;
  display: inline-block;
  font-size: 16px; }

.dropdown-megamenu__img--column .dropdown-megamenu__img {
  position: relative;
  width: 100%;
  height: auto; }

.dropdown-megamenu__img--column .image--hover > a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  position: absolute; }

.dropdown-megamenu__img {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute; }

.site-nav > .menu-lv-1--last .style_1 .dropdown-megamenu-left, .site-nav > .menu-lv-1--last .style_2 .dropdown-megamenu-left, .site-nav > .menu-lv-1--last .style_3 .dropdown-megamenu-left {
  width: 100% !important;
  padding: 0 !important; }

.site-nav > .menu-lv-1--last .style_1 .dropdown-megamenu-left--item {
  display: block;
  width: 100% !important; }

.site-nav > .menu-lv-1--last .style_1 .dropdown-megamenu-left--item--productList {
  display: none; }

.site-nav > .menu-lv-1--last .style_1 .dropdown-megamenu-right, .site-nav > .menu-lv-1--last .style_2 .dropdown-megamenu-right, .site-nav > .menu-lv-1--last .style_3 .dropdown-megamenu-right {
  display: none; }

.site-nav > .menu-lv-1--last .style_4 .dropdown-menu-mobile {
  padding-top: 0;
  padding-bottom: 0; }

.site-nav > .menu-lv-1--last .style_4 .dropdown-megamenu__img--column {
  white-space: normal; }

.site-nav > .menu-lv-1--last .style_4 .dropdown-megamenu__img--column > li {
  display: block;
  width: 100%; }

.site-nav > .menu-lv-1--last .style_4 .dropdown-megamenu__breadcrumb {
  padding: 10px 15px; }

#navigation-mobile {
  color: #3c86a5;
  background-color: white; }

#navigation-mobile .popup-sidebar__wrapper {
  overflow: auto;
  height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 70px; }

#navigation-mobile .close_menu {
  top: 0;
  right: -44px;
  width: 44px;
  height: 44px;
  z-index: 10;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  position: absolute;
  text-align: center;
  pointer-events: auto;
  color: white;
  background-color: #3c86a5; }

#navigation-mobile .close_menu a {
  color: inherit; }

.site-nav-mobile {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  color: #3c86a5;
  background-color: white; }

.site-nav-mobile.two .nav-action.nav-action--end svg.icon {
  position: relative;
  top: -2px; }

.site-nav-mobile .icon-dropdown {
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  position: absolute;
  transform: none;
  pointer-events: none; }

.site-nav-mobile .menu-lv-1, .site-nav-mobile .menu-lv-2, .site-nav-mobile .menu-lv-3 {
  display: block;
  position: relative;
  transition: all .3s ease;
  border-bottom: 1px solid #dedede; }

.site-nav-mobile .menu-lv-1 > .nav-action, .site-nav-mobile .menu-lv-2 > .nav-action, .site-nav-mobile .menu-lv-3 > .nav-action {
  margin: 0;
  cursor: pointer;
  display: block;
  position: static;
  color: #3c86a5;
  font-weight: 500;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  line-height: 22px; }

.site-nav-mobile .menu-lv-1 > .nav-action a, .site-nav-mobile .menu-lv-2 > .nav-action a, .site-nav-mobile .menu-lv-3 > .nav-action {
  color: #3c86a5;
  padding: 12px 20px 10px;
  display: inline-block; }

.site-nav-mobile .menu-lv-1 > .nav-action a[href='#'], .site-nav-mobile .menu-lv-2 > .nav-action a[href='#'], .site-nav-mobile .menu-lv-3 > .nav-action[href='#'] {
  pointer-events: none; }

.site-nav-mobile .menu-lv-1 > .nav-action.nav-action--end a, .site-nav-mobile .menu-lv-2 > .nav-action.nav-action--end a, .site-nav-mobile .menu-lv-3 > .nav-action.nav-action--end {
  width: 100%; }

.site-nav-mobile .dropdown-menu-mobile {
  top: 0;
  right: 100%;
  left: auto;
  padding: 0;
  margin: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: all .3s ease;
  transform: none;
  box-shadow: none;
  position: absolute;
  cursor: pointer;
  color: #3c86a5;
  background-color: white; }

.site-nav-mobile .dropdown-menu-mobile .dropdown-megamenu-right {
  position: relative; }

.site-nav-mobile .dropdown-menu-mobile .dropdown-megamenu-right a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  z-index: 2; }

.site-nav-mobile .is-open > .dropdown-menu-mobile {
  right: 0;
  display: block;
  position: relative; }

.site-nav-mobile .is-open > .nav-action {
  display: none !important; }

.site-nav-mobile .nav-title-mobile {
  text-align: center;
  display: block;
  position: static;
  line-height: 22px;
  padding: 12px 30px 10px 30px;
  text-transform: uppercase;
  color: #3c86a5;
  font-weight: 500;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #f7f7f7;
  border-bottom: 1px solid #dedede; }

.site-nav-mobile .site-nav-dropdown {
  background-color: white; }

.site-nav-mobile .nav-title-mobile .icon-dropdown {
  left: 0;
  right: auto; }

.site-nav-mobile .is-hidden {
  display: none !important; }

.site-nav-mobile .menu-lv-1.is-open, .site-nav-mobile .menu-lv-2.is-open, .site-nav-mobile .menu-lv-3.is-open {
  border: none; }

.site-nav-mobile .dropdown-megamenu h3.title, .site-nav-mobile .dropdown-megamenu .title.h3 {
  color: #3c86a5; }

.site-nav-mobile .style_1 .dropdown-megamenu-left--item:last-child {
  padding: 12px 20px 10px; }

.site-nav-mobile .style_1 .dropdown-megamenu-left--item--productList {
  margin-bottom: 30px; }

.site-nav-mobile .style_1 .dropdown-megamenu-right .dropdown-megamenu__img, .site-nav-mobile .style_2 .dropdown-megamenu-right .dropdown-megamenu__img, .site-nav-mobile .style_3 .dropdown-megamenu-right .dropdown-megamenu__img {
  display: block;
  width: 100%;
  height: auto;
  position: relative; }

.site-nav-mobile .dropdown-megamenu__img--column {
  display: block;
  white-space: normal; }

.site-nav-mobile .dropdown-megamenu__img--column > li {
  width: 100%;
  display: block; }

.site-nav-mobile .currency-menu, .site-nav-mobile .lang-menu {
  margin: 0;
  padding: 0;
  width: 100%;
  top: auto !important;
  display: block;
  float: none;
  border: none;
  border-radius: 0;
  line-height: 22px;
  position: relative !important;
  color: #3c86a5;
  font-weight: 500;
  font-size: 0;
  font-family: "futura-pt", sans-serif;
  border-top: 1px solid #dedede;
  transform: none !important; }

.site-nav-mobile .currency-menu .dropdown-divider, .site-nav-mobile .lang-menu .dropdown-divider {
  margin: 0;
  border-color: #dedede; }

.site-nav-mobile .currency-menu .icon-arrow, .site-nav-mobile .lang-menu .icon-arrow {
  display: none; }

.site-nav-mobile .currency-menu .flag, .site-nav-mobile .lang-menu .flag {
  font-size: 0;
  margin-right: 7px; }

.site-nav-mobile .currency-menu .dropdown-item, .site-nav-mobile .lang-menu .dropdown-item {
  width: 50%;
  padding: 12px 20px 10px;
  font-size: 0;
  color: #3c86a5;
  vertical-align: top;
  display: inline-block;
  white-space: nowrap;
  text-transform: uppercase; }

.site-nav-mobile .currency-menu .dropdown-item span, .site-nav-mobile .lang-menu .dropdown-item span {
  display: inline-block;
  vertical-align: top;
  font-size: 16px; }

.site-nav-mobile .currency-menu .dropdown-item .icon, .site-nav-mobile .lang-menu .dropdown-item .icon {
  margin-right: 7px; }

.site-nav-mobile .currency-menu .dropdown-item.dropdown-item--full, .site-nav-mobile .lang-menu .dropdown-item.dropdown-item--full {
  width: 100%;
  pointer-events: none;
  padding: 12px 20px 10px;
  background-color: #f3f3f3;
  font-weight: 500;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  color: #3c86a5; }

.site-nav-mobile .currency-menu .dropdown-item.active, .site-nav-mobile .currency-menu .dropdown-item:active, .site-nav-mobile .lang-menu .dropdown-item.active, .site-nav-mobile .lang-menu .dropdown-item:active {
  color: #3c86a5;
  background-color: white; }

.site-nav-mobile .currency-menu .dropdown-item.active .text, .site-nav-mobile .currency-menu .dropdown-item:active .text, .site-nav-mobile .lang-menu .dropdown-item.active .text, .site-nav-mobile .lang-menu .dropdown-item:active .text {
  text-decoration: underline;
  text-underline-position: under; }

.search-form-wrapper {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 19;
  display: none;
  position: fixed;
  background-color: #fff;
  transition: all .3s ease; }

.search-form-wrapper .search-form {
  top: 105px;
  left: 50%;
  width: 100%;
  max-width: 880px;
  z-index: 10;
  padding: 0 15px;
  position: absolute;
  transform: translateX(-50%); }

.search-form-wrapper.custom .search-form {
  top: 70px; }

.search-bar {
  height: 40px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #191919;
  background-color: transparent; }

.search-bar input {
  border: none;
  padding: 0;
  height: 40px;
  border-radius: 0;
  width: calc(100% - 40px);
  color: #191919;
  border-bottom: 1px solid #191919; }

.search-bar input::-webkit-input-placeholder {
  color: #666666; }

.search-bar input::-moz-placeholder {
  color: #666666; }

.search-bar input:-ms-input-placeholder {
  color: #666666; }

.search-bar input::-ms-input-placeholder {
  color: #666666; }

.search-bar button {
  border: none;
  padding: 0 8px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  box-shadow: none;
  color: #191919;
  background-color: transparent; }

.search-bar button .icon {
  width: 100%;
  height: 100%; }

.search-form {
  position: relative; }

.search-form--close {
  position: absolute;
  right: 10%;
  top: 18%;
  display: block;
  z-index: 5;
  cursor: pointer;
  pointer-events: auto;
  font-size: 50px;
  line-height: 30px;
  display: none;
  color: #191919; }

.search-form__results {
  right: 0;
  z-index: 5;
  left: 0;
  top: calc(100% + 15px);
  width: 100%;
  line-height: 22px;
  white-space: normal;
  padding: 15px;
  position: absolute;
  color: black;
  background-color: white;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400; }

.search-form__results.is-open {
  display: block; }

.search-form__results-wrapper {
  max-height: calc(100vh - 200px);
  overflow-x: hidden;
  overflow-y: auto; }

.search-form__results-wrapper::-webkit-scrollbar-track {
  background-color: #fafafa; }

.search-form__results-wrapper::-webkit-scrollbar {
  width: 0;
  background-color: #fafafa; }

.search-form__results-wrapper::-webkit-scrollbar-thumb {
  background-color: #e6e6e6; }

.search-form__product-title, .search-form__trending-title {
  font-size: 20px;
  margin-bottom: 15px; }

.search-form__tag-item {
  vertical-align: top;
  display: inline-block;
  margin: 0 10px 10px 0; }

.search-form__tag-item .highlight {
  display: block;
  color: #868686;
  background-color: #f7f7f7;
  padding: 7px 12px 5px;
  cursor: pointer;
  pointer-events: auto; }

.search-form__tag-item .highlight .icon {
  pointer-events: none;
  margin-right: 4px;
  width: 14px;
  height: 14px;
  margin-top: -2px; }

.search-form__products .halo-row {
  padding-bottom: 40px; }

.search-form__product .product-card {
  width: 180px; }

.login-form {
  width: 100%;
  z-index: 5;
  padding: 0;
  line-height: 22px;
  text-align: left;
  white-space: normal;
  color: black;
  background-color: white;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400; }

.login-form__header {
  color: black;
  position: relative;
  background-color: #f3f3f3;
  padding: 16px 20px 14px 20px; }

.login-form__header .title {
  color: inherit;
  line-height: 1;
  margin-bottom: 0; }

.login-form__close {
  top: 50%;
  opacity: 1;
  right: 20px;
  color: black;
  font-size: 24px;
  font-weight: 400;
  line-height: 22px;
  position: absolute;
  transform: translateY(-50%); }

.login-form__close:hover {
  color: black; }

.login-form__close svg {
  width: 12px;
  height: 12px; }

.login-form__close[data-close-login-form-pc] {
  display: none; }

.login-form__close[data-close-login-form] {
  display: block; }

.login-form__content {
  padding: 20px; }

.login-form__content .btn, .login-form__content .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .login-form__content .shopify-payment-button__button--unbranded {
  display: block;
  width: 100%; }

.login-form__content .forgot-password {
  margin: 18px 0;
  color: black;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%; }

.login-form__content .forgot-password:before {
  content: "";
  width: 0;
  left: 0;
  bottom: 0;
  height: 1px;
  position: absolute;
  background-color: #4563b3;
  transition: all .3s ease; }

.login-form__content .forgot-password:hover {
  color: #4563b3; }

.login-form__content .forgot-password:hover:before {
  width: 100%; }

.bg-danger {
  background-color: #ef9ba6 !important; }

.cart__progress_bar {
  display: block;
  margin-bottom: 25px; }

.cart__progress_bar .progress {
  border-radius: 0; }

.progress_bar_shipping {
  margin-bottom: 8px; }

.progress_bar_shipping.success {
  display: none; }

.progress_bar_shipping.success + .progress_bar_shipping_message {
  color: #406f8c;
  background-color: #eaf4f9;
  padding-top: 10px;
  padding-bottom: 9px;
  padding-left: 15px;
  padding-right: 15px; }

.cart-quickview_header--no-item {
  background-color: #B6D5D8; }

.cart-quickview_header--no-item ~ .cart-quickview__progress_bar:not(.hide), .cart-quickview_header--no-item ~ .cart-quickview_header .item {
  display: none; }

.cart-quickview__progress_bar .progress_bar_shipping .percent {
  display: none; }

.cart-quickview__progress_bar .progress_bar_shipping, .cart-quickview__progress_bar .progress_bar_shipping_message {
  padding-left: 20px;
  padding-right: 20px; }

.cart-quickview__progress_bar .success + .progress_bar_shipping_message {
  text-align: center; }

.cart-quickview__close {
  top: 32px;
  right: 32px;
  color: #787878;
  font-size: 24px;
  font-weight: 400;
  line-height: 22px;
  position: absolute;
  transform: translateY(-50%); }

.cart-quickview__close:hover {
  color: black; }

.cart-quickview_content {
  padding: 0 20px 20px 20px;
  overflow: auto;
  max-height: calc(100vh - 150px); }

.cart-quickview_content::-webkit-scrollbar-track {
  background-color: #fafafa; }

.cart-quickview_content::-webkit-scrollbar {
  width: 0;
  background-color: #fafafa; }

.cart-quickview_content::-webkit-scrollbar-thumb {
  background-color: #e6e6e6; }

.cart-quickview__table {
  width: 100%;
  display: block;
  font-size: 16px; }

.cart-quickview__table td {
  padding-left: 0;
  padding-right: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  border: none; }

.cart-quickview__table .cart__product-information {
  font-size: 0;
  display: flex; }

.cart-quickview__table .cart__image-wrapper {
  padding: 0;
  width: 30%;
  vertical-align: top;
  display: inline-block;
  font-size: 16px; }

.cart-quickview__table .cart__content-wrapper {
  position: relative;
  vertical-align: top;
  display: inline-block;
  width: 100%;
  font-size: 16px; }

.cart-quickview__table .list-view-item__title {
  display: block;
  line-height: 22px; }

.cart-quickview__table .list-view-item__title .cart__product-title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis; }

.cart-quickview__table .product-details-price {
  margin-top: 5px; }

.cart-quickview__table .cart__qty {
  margin-top: 5px;
  padding-top: 0;
  position: relative;
  vertical-align: top;
  display: inline-block;
  border: 1px solid #090F1B; }

.cart-quickview__table .cart__qty-label2 {
  display: inline-block;
  margin: 0 10px 0 0; }

.cart-quickview__table .cart__qty-input {
  width: 100px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: left; }

.cart-quickview__table .cart__remove {
  margin: 0;
  top: 16px;
  right: 0;
  font-size: 30px;
  line-height: 20px;
  position: absolute; }

.cart-quickview__table .cart__remove a {
  display: inline-block;
  vertical-align: top;
  line-height: 20px; }

.cart-total {
  padding-top: 22px;
  margin-bottom: 30px;
  border-top: 1px solid #ebebeb; }

.cart-subtotal, .cart-total {
  width: 100%;
  display: flex;
  justify-content: space-between; }

.cart-subtotal__title, .cart-total__title {
  font-size: 18px;
  font-weight: 400;
  color: #090F1B;
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase; }

.cart-subtotal__price, .cart-total__price {
  font-size: 16px;
  font-weight: 700;
  color: black; }

.cart-total__price {
  font-size: 20px; }

.cart-quickview__footer .cart-subtotal {
  border-bottom: none;
  margin-bottom: 0px;
  padding-bottom: 0; }

.cart-quickview__footer .cart-subtotal__price {
  font-size: 16px;
  font-weight: 400;
  color: inherit; }

.cart-quickview__footer {
  padding-bottom: 50px; }

.cart-quickview__footer .cart__buttons-container {
  display: block;
  margin-top: 16px; }

.cart-quickview__footer .cart__submit-controls {
  font-size: 0; }

.cart-quickview__footer .product__terms-conditions {
  line-height: 1; }

.cart-quickview__footer .cart__submit-controls .btn, .cart-quickview__footer .cart__submit-controls .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .cart-quickview__footer .cart__submit-controls .shopify-payment-button__button--unbranded {
  width: 100%;
  margin-left: 7px; }

.cart-quickview__footer .cart__submit-controls .cart__submit {
  margin-left: 0;
  margin-right: 7px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #174D67 !important;
  border: none;
  font-size: 18px;
  font-weight: 500; }

.cart-quickview_product {
  display: block;
  padding-bottom: 30px; }

.cart-quickview_product--header {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px; }

.cart-quickview_product--title {
  margin: 0;
  z-index: 2;
  font-size: 20px;
  line-height: 28px;
  padding: 0 25px;
  vertical-align: top;
  display: inline-block;
  background-color: #fff; }

.cart-quickview_product--title:before {
  top: calc(50% - 1px);
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  z-index: -1;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background-color: #ebebeb; }

.cart-quickview_product .slick-arrow {
  top: auto;
  bottom: -34px;
  width: 30px;
  height: 30px;
  transform: none; }

.cart-quickview_product .slick-prev {
  left: 15px; }

.cart-quickview_product .slick-next {
  right: 15px; }

.cart-quickview_product .slick-slider .halo-column__item {
  margin-bottom: 20px; }

.announcement-bar {
  z-index: 20;
  position: relative;
  color: #ffa3ad;
  background-color: white; }

.announcement-bar .rte {
  position: relative; }

.announcement-bar .rte .close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: 0; }

.announcement-bar__message {
  max-width: 100%;
  padding: 10px 0;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
  font-size: 0.875em;
  color: #ffa3ad; }

.announcement-bar__message strong {
  font-weight: 500; }

.open_menu_pc .announcement-bar {
  z-index: 99; }

.header-mobile {
  height: 50px;
  padding: 0 15px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  color: #505050;
  background-color: white; }

.header-mobile__item {
  display: inline-block;
  vertical-align: middle;
  min-width: 85px;
  width: 35%; }

.header-mobile__item.text-center {
  width: 30%; }

.item__mobile--logo {
  width: 100%; }

.item__mobile--cart {
  padding-right: 10px; }

.item__mobile--cart .countPill {
  color: white;
  background-color: #3c86a5; }

.header-mobile__item .item__mobile {
  display: inline-block;
  vertical-align: middle; }

.header-mobile__item .item__mobile + .item__mobile {
  margin-left: 15px; }

.header-mobile__item .site-header__logo-image {
  width: 100% !important; }

.header-mobile__item .site-header__logo-image img {
  max-height: 28px; }

.mobileMenu-toggle {
  width: 30px;
  height: 30px;
  font-size: 0;
  overflow: hidden;
  position: relative;
  display: block;
  z-index: 1;
  outline: 0;
  box-shadow: none; }

.mobileMenu-toggle__Icon, .mobileMenu-toggle__Icon::after, .mobileMenu-toggle__Icon::before {
  background-color: #505050;
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  transform: rotate(0);
  transition: transform .1s ease-in,top .1s ease-in 150ms,bottom .1s ease-in 150ms; }

.mobileMenu-toggle__Icon {
  top: 50%;
  width: calc(100%);
  transform: translateY(-50%);
  transition: background-color 10ms ease-in .1s; }

.mobileMenu-toggle__Icon::before {
  top: -10px; }

.mobileMenu-toggle__Icon::after {
  bottom: -10px; }

.mobileMenu-toggle.is-open .mobileMenu-toggle__Icon {
  background-color: transparent;
  transition-delay: .1s; }

.mobileMenu-toggle.is-open .mobileMenu-toggle__Icon::after, .mobileMenu-toggle.is-open .mobileMenu-toggle__Icon::before {
  bottom: auto;
  top: auto;
  transition: transform .1s ease-in 150ms,top .1s ease-in,bottom .1s ease-in; }

.mobileMenu-toggle.is-open .mobileMenu-toggle__Icon::before {
  top: 0;
  transform: rotate(45deg); }

.mobileMenu-toggle.is-open .mobileMenu-toggle__Icon::after {
  bottom: 0;
  transform: rotate(-45deg); }

.navUser-action[data-search-popup] .icon-close {
  width: 20px;
  height: 20px;
  display: none; }

.navUser-action[data-search-popup].is-open .icon-search {
  display: none; }

.navUser-action[data-search-popup].is-open .icon-close {
  display: inline-block; }

.navUser-action[data-search-popup] + .search-form-wrapper {
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  position: absolute;
  transition: all .3s ease;
  opacity: 0;
  pointer-events: none;
  visibility: hidden; }

.popup-sidebar {
  top: 0;
  bottom: 0;
  padding: 0;
  height: 100vh;
  z-index: 102;
  position: fixed;
  width: calc(100%-45px);
  transition: all .5s ease,z-index 0s ease;
  box-shadow: rgba(50, 50, 50, 0.2) 0 0 2px 0;
  color: black;
  background-color: white;
  font-size: 16px;
  font-family: "futura-pt", sans-serif;
  font-weight: 400; }

#before-you-leave.popup-sidebar, #cart-mobile.popup-sidebar {
  max-width: 550px; }

.popup-sidebar--left {
  left: -101%; }

.popup-sidebar--right {
  right: -101%; }

.open_account #login-form-mobile.popup-sidebar--left, .open_beforeYouLeave #before-you-leave.popup-sidebar--left, .open_cart #cart-mobile.popup-sidebar--left, .open_menu #navigation-mobile.popup-sidebar--left {
  left: 0; }

.open_account #login-form-mobile.popup-sidebar--right, .open_beforeYouLeave #before-you-leave.popup-sidebar--right, .open_cart #cart-mobile.popup-sidebar--right, .open_menu #navigation-mobile.popup-sidebar--right {
  right: 0; }

#login-form-mobile .login-form {
  display: block !important; }

.open_menu, .open_search {
  overflow: hidden; }

.open_account .overlay_background, .open_beforeYouLeave .overlay_background, .open_cart .overlay_background, .open_menu .overlay_background, .open_sidebar .overlay_background, .popup_productQuickview .overlay_background {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  visibility: visible; }

.overlay_background {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  content: "";
  z-index: 101;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  transition: opacity .5s ease;
  background-color: rgba(0, 0, 0, 0.5); }

.open_beforeYouLeave.open_search #before-you-leave {
  z-index: 18; }

.open_beforeYouLeave.open_search .overlay_background {
  z-index: 17; }

.open_menu_pc .overlay_background {
  opacity: 1;
  visibility: visible;
  z-index: 80; }

.site-footer__top {
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: #3c86a5;
  font-family: "futura-pt", sans-serif;
  background-color: white; }

.site-footer__top * {
  color: inherit;
  font-size: inherit;
  text-align: left; }

.site-footer__middle {
  padding: 50px 15px 35px 15px;
  color: #3c86a5;
  background-color: white; }

.site-footer__middle p, .site-footer__middle span {
  color: #3c86a5; }

.footer-logo {
  display: block; }

.footer-logo__item {
  display: block;
  margin-bottom: 10px; }

.footer-logo__item a {
  display: inline-block;
  vertical-align: top; }

.footer-logo__item a > img {
  width: 100%;
  display: block; }

.footer-logo__item p a {
  color: #3c86a5;
  text-decoration: underline;
  text-underline-position: under; }

.footer-logo .social-icons {
  margin-top: 20px;
  margin-left: -7px; }

.footer-logo .social-icons .icon {
  width: 30px;
  height: 30px;
  padding: 7px;
  font-size: 16px; }

.footer-row {
  font-size: 0;
  margin: 0 -8px;
  display: block; }

.footer-row__item {
  display: block;
  margin-bottom: 20px;
  font-size: 16px; }

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
  pointer-events: auto;
  color: #3c86a5; }

.footer-description {
  color: #3c86a5; }

.site-footer__middle .social-icons .icon {
  color: #3c86a5;
  fill: #3c86a5; }

.footer-row__item--mobile .footer-heading {
  border-bottom: 1px solid #3c86a5; }

.footer-row__item--mobile .footer-heading:after, .footer-row__item--mobile .footer-heading:before {
  background-color: #3c86a5; }

.footer-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: 20px; }

.footer-list li {
  display: block;
  margin-bottom: 10px; }

.footer-list li.last {
  margin-bottom: 0; }

.footer-list a {
  color: #3c86a5; }

.footer-list a:hover {
  color: #21495a; }

.footer-list a:before {
  background-color: #21495a; }

.footer-newsletter {
  display: block;
  margin-bottom: 0; }

.footer-newsletter .footer-heading {
  margin: 0 0 20px 0; }

.footer-newsletter .input-group__field {
  flex-basis: 12rem;
  background-color: transparent;
  border-color: #3c86a5; }

.footer--language--currency {
  display: none;
  position: relative; }

.footer--language--currency .footer__item {
  display: inline-block;
  vertical-align: top; }

.footer--language--currency--custom .currency-dropdown, .footer--language--currency--custom .language-dropdown {
  position: static; }

.footer--language--currency--custom .footer__item + .footer__item:before {
  content: "/";
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.footer--language--currency--custom .language-dropdown .dropdown-label .icon-arrow {
  display: none; }

.footer--language--currency--custom .footer__item .currency-dropdown {
  display: inline-block;
  vertical-align: middle; }

.footer--language--currency--custom .currency-dropdown .dropdown-label .icon:not(.icon-arrow) {
  display: none; }

.footer--language--currency--custom .currency-dropdown .dropdown-menu, .footer--language--currency--custom .language-dropdown .dropdown-menu {
  width: 150px;
  min-width: 150px;
  top: 50% !important;
  left: -30px;
  position: absolute;
  transform: translateY(-50%) !important; }

.footer--language--currency--custom .currency-dropdown .dropdown-menu {
  left: 118px !important;
  border-left: none; }

.footer--language--currency--custom .currency-dropdown .dropdown-item, .footer--language--currency--custom .language-dropdown .dropdown-item {
  width: 100%;
  display: block;
  padding: 3px 1.5rem !important; }

.footer--language--currency--custom .currency-dropdown .dropdown-menu, .footer--language--currency--custom .language-dropdown .dropdown-menu {
  display: none; }

.footer--language--currency--custom.show .currency-dropdown .dropdown-menu, .footer--language--currency--custom.show .language-dropdown .dropdown-menu {
  display: block; }

.site-footer__bottom {
  padding: 20px 0 5px;
  color: #3c86a5;
  background-color: white; }

.site-footer__bottom .container {
  display: block; }

.site-footer__bottom__item {
  text-align: center;
  margin-bottom: 15px; }

.footer-copyright, .footer-copyright * {
  color: inherit; }

.footer-copyright a {
  text-decoration: underline;
  text-underline-position: under; }

.payment-methods {
  padding: 0;
  margin: 0;
  font-size: 0;
  line-height: 1;
  display: block;
  list-style: none; }

.payment-methods--item {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 10px; }

.payment-methods--item + .payment-methods--item {
  margin-left: 10px; }

.payment-methods--item .icon, .payment-methods--item svg {
  width: 40px;
  height: 30px;
  border-radius: 5px; }

.sidebarBlock {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e6e6e6; }

.sidebarBlock:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none; }

.sidebarBlock.search {
  border-bottom: 0; }

.sidebarBlock.image {
  padding-bottom: 40px; }

.sidebarBlock.show_clear .sidebarBlock__heading .clear {
  display: block; }

.sidebarBlock__heading {
  margin: 0 0 20px 0;
  font-size: 20px;
  line-height: 20px;
  font-family: "futura-pt", sans-serif;
  font-weight: 700; }

.sidebarBlock__heading .clear {
  float: right;
  display: none;
  font-weight: 400;
  color: black;
  font-size: 16px;
  text-decoration: underline;
  text-underline-position: under; }

.widget-form {
  font-size: 0;
  display: flex; }

.widget-form__input {
  border: none;
  padding: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #181818; }

.widget-form__btn {
  border: none;
  height: 40px;
  line-height: 28px;
  vertical-align: top;
  padding: 7px 0 7px 5px;
  color: #181818;
  background-color: transparent; }

.widget-form__btn .icon {
  width: 26px;
  height: 26px;
  color: #181818;
  fill: #181818; }

.widget-img {
  display: block;
  position: relative; }

.widget-img img {
  display: inline-block;
  vertical-align: top; }

.collection-list {
  margin: 0;
  padding: 0;
  display: block;
  background-color: #fff; }

.collection-list__item {
  display: block;
  width: 100%;
  margin-bottom: 8px; }

.collection-list__item.is-clicked > .collection-list__action--wrapper > .icon-dropdown {
  transform: rotate(90deg); }

.collection-list__item .icon-dropdown {
  right: 0;
  width: 22px;
  height: 22px;
  padding: 0 6px;
  line-height: 22px;
  position: absolute;
  transition: all .3s ease; }

.collection-list__action--wrapper {
  cursor: pointer;
  margin-bottom: 0; }

.collection-list__action {
  position: relative;
  display: inline-block;
  vertical-align: top; }

.collection-list__action:before {
  background-color: black; }

.collection-list__action--end {
  display: block; }

.collection-list .collection-list {
  margin: 0;
  display: none;
  list-style: none;
  overflow: hidden;
  padding-top: 10px;
  padding-left: 15px;
  padding-bottom: 0; }

.collection-list .collection-list .collection-list {
  padding-top: 10px;
  padding-bottom: 0; }

.recentposts-list {
  margin: 0 0 10px 0; }

.recentposts-list > .item {
  padding: 0;
  margin-bottom: 20px; }

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

.recentpost {
  text-align: left;
  position: relative;
  display: block; }

.recentpost .title {
  margin: 0;
  font-weight: 500;
  font-size: 16px; }

.recentpost .title a {
  color: inherit; }

.recentpost .date {
  margin: 0 0 5px 0;
  color: black; }

.sidebarBlock .product-card--2 .product-card__image {
  width: 70px; }

.sidebarBlock .product-card--2 .product-card__content {
  width: calc(100% - 70px);
  padding-top: 0; }

.sidebarBlock .product-card--2 .product-card__button {
  display: none; }

.widget-column {
  display: block; }

.widget-column__item {
  margin-bottom: 20px;
  display: block; }

.widget-column__item:last-child {
  margin-bottom: 0; }

.refined {
  margin: 0 -4px;
  display: flex;
  flex-wrap: wrap; }

.refined li {
  margin-bottom: 5px;
  padding-left: 4px;
  padding-right: 4px; }

.refined li input[type=checkbox] {
  vertical-align: top;
  margin-right: 10px;
  display: none; }

.refined li a {
  color: #181818;
  background-color: #efefef;
  padding: 4px 10px;
  line-height: 22px;
  display: inline-block;
  border-radius: 3px;
  text-transform: capitalize; }

.refined li a > span {
  color: inherit;
  position: relative;
  vertical-align: middle; }

.filter-text .list-tags {
  margin: 0;
  display: block; }

.filter-text .list-tags li {
  margin: 0;
  display: block;
  width: 100%; }

.filter-text .list-tags label {
  font-weight: 400;
  font-size: 16px;
  color: black;
  line-height: 20px; }

.filter-text .list-tags li input[type=checkbox] {
  display: none; }

.filter-text .list-tags li input[type=checkbox] + label {
  padding-left: 26px;
  cursor: pointer;
  margin-bottom: 12px;
  position: relative; }

.filter-text .list-tags li input[type=checkbox] + label:before {
  position: absolute;
  content: "";
  top: 3px;
  left: 0;
  border: 1px solid #d0d0d0;
  width: 14px;
  height: 14px;
  background-color: #fff; }

.filter-text .list-tags li input[type=checkbox] + label:after {
  content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 6px;
  left: 3px;
  border: 2px solid #232323;
  border-top: none;
  border-right: none;
  background: rgba(255, 255, 255, 0);
  transform: rotate(-45deg);
  transition: all .2s ease; }

.filter-text .list-tags li input[type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0) rotate(-45deg); }

.filter-text .list-tags li input[type=checkbox] + label:hover:after, .filter-text .list-tags li input[type=checkbox]:checked + label:after {
  opacity: 1;
  transform: scale(1) rotate(-45deg); }

.filter-text .list-tags li input[type=checkbox]:checked + label {
  color: #181818; }

.filter-color .list-tags {
  margin: 0;
  font-size: 0;
  display: block; }

.filter-color .list-tags li {
  line-height: 1;
  margin: 0 15px 15px 0;
  display: inline-block;
  vertical-align: top; }

.filter-color .list-tags label {
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  position: relative; }

.filter-color .list-tags label span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-block; }

.filter-color .list-tags label[for=white] span {
  border: 1px solid #dadada; }

.filter-color .list-tags li input[type=checkbox] {
  display: none; }

.filter-color .list-tags li input[type=checkbox]:checked + label span {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15); }

[data-section-type=hero], [data-section-type=slideshow] {
  position: relative; }

.hero, .slideshow {
  margin-bottom: 0 !important;
  overflow: hidden;
  white-space: nowrap;
  position: relative; }

.slideshow__item {
  white-space: normal;
  position: relative;
  display: inline-block;
  width: 100%; }

.slideshow .slick-arrow {
  display: none !important; }

.slideshow .slick-dots {
  bottom: 20px; }

.slideshow .slick-dots li {
  margin: 0 4px; }

.slideshow .slick-dots li button {
  width: 32px;
  height: 3px;
  border-radius: 0;
  background-color: #191919;
  border-color: #191919;
  opacity: .2; }

.slideshow .slick-dots li.slick-active button {
  opacity: 1; }

.slideshow .slick-slide .slideshow__subheading {
  visibility: hidden;
  animation-delay: 0s;
  animation-name: fadeOutDown; }

.slideshow .slick-slide .slideshow__heading {
  visibility: hidden;
  animation-delay: 0s;
  animation-name: fadeOutDown; }

.slideshow .slick-slide .slideshow__countdownWrapper {
  visibility: hidden;
  animation-delay: 0s;
  animation-name: fadeOutDown; }

.slideshow .slick-slide .slideshow__text {
  visibility: hidden;
  animation-delay: 0s;
  animation-name: fadeOutDown; }

.slideshow .slick-slide .slideshow__button {
  visibility: hidden;
  animation-delay: 0s;
  animation-name: fadeOutDown; }

.slideshow .slick-current .slideshow__subheading {
  visibility: visible;
  animation-delay: .1s;
  animation-name: fadeInUp; }

.slideshow .slick-current .slideshow__heading {
  visibility: visible;
  animation-delay: .1s;
  animation-name: fadeInUp; }

.slideshow .slick-current .slideshow__countdownWrapper {
  visibility: visible;
  animation-delay: .1s;
  animation-name: fadeInUp; }

.slideshow .slick-current .slideshow__text {
  visibility: visible;
  animation-delay: .3s;
  animation-name: fadeInUp; }

.slideshow .slick-current .slideshow__button {
  visibility: visible;
  animation-delay: .5s;
  animation-name: fadeInUp; }

.slideshow.slick-dotted {
  margin-bottom: 0; }

.hero--small .hero__image, .slideshow--small .slideshow__image {
  height: 240px; }

.hero--medium .hero__image, .slideshow--medium .slideshow__image {
  height: 260px; }

.hero--large .hero__image, .slideshow--large .slideshow__image {
  height: 280px; }

.hero .hero__image--mobile, .slideshow .slideshow__image--mobile {
  height: auto; }

.hero__image, .slideshow__image {
  overflow: hidden;
  position: relative; }

.hero__image > a, .slideshow__image > a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  position: absolute; }

.hero__image--background, .slideshow__image--background {
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  position: absolute;
  transform: translate(-50%, -50%); }

.hero__image--backgroundMobile, .slideshow__image--backgroundMobile {
  width: 100%;
  display: block;
  position: relative; }

.hero__image--backgroundMobile + .hero__image--background, .slideshow__image--backgroundMobile + .slideshow__image--background {
  display: none; }

.hero__image:after, .slideshow__image:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  position: absolute; }

.slideshow__video--wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative; }

.slideshow__video--wrapper .video {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1; }

.hero__content, .slideshow__content {
  top: 50%;
  z-index: 3;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 15px;
  white-space: normal;
  color: #181818;
  position: absolute;
  transform: translateY(-50%); }

.hero__content.content--left, .slideshow__content.content--left {
  left: 50%;
  transform: translate(-50%, -50%); }

.hero__content.content--right, .slideshow__content.content--right {
  right: 50%;
  transform: translate(-50%, -50%); }

.hero__content.content--middle, .slideshow__content.content--middle {
  left: 50%;
  transform: translate(-50%, -50%); }

.hero__content > div:last-child, .slideshow__content > div:last-child {
  margin-bottom: 0; }

.hero__subheading, .slideshow__subheading {
  font-family: "futura-pt", sans-serif;
  margin-bottom: 15px;
  position: relative;
  color: black;
  font-size: 16px;
  font-weight: 700; }

.hero__heading, .slideshow__heading {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  color: inherit; }

.hero__text, .slideshow__text {
  color: black;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: .02rem; }

.hero__text *, .slideshow__text * {
  color: inherit; }

.hero__text a, .slideshow__text a {
  color: #181818;
  line-height: inherit;
  display: inline-block;
  position: relative; }

.hero__text a:before, .slideshow__text a:before {
  left: 0;
  bottom: -2px;
  content: '';
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  background-color: #181818; }

.hero__text a:hover, .slideshow__text a:hover {
  color: #181818; }

.hero__countdownWrapper, .slideshow__countdownWrapper {
  margin-bottom: 25px;
  letter-spacing: .02rem;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  display: block; }

.hero__countdownWrapper > *, .slideshow__countdownWrapper > * {
  color: inherit; }

.hero__countdown, .slideshow__countdown {
  display: inline-block;
  border-bottom: 1px solid #ebebeb; }

.slideshow__button {
  min-width: 160px; }

.hero__button {
  min-width: 160px; }

.hero__points-popup {
  position: absolute;
  z-index: 10;
  pointer-events: auto; }

.hero__points-popup .point {
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  background-color: #000; }

.hero__points-popup .point:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 50%;
  opacity: .3;
  background-color: #000;
  -webkit-animation: zoom-animation 1.4s ease-in-out infinite;
  animation: zoom-animation 1.4s ease-in-out infinite; }

.hero__points-popup .custom-product-card {
  display: none; }

.hero__popup {
  position: relative;
  display: none; }

.hero__popup.is-open {
  z-index: 21;
  display: block;
  position: absolute; }

.hero__popup .close {
  top: 0;
  right: 0;
  float: none;
  color: #000;
  font-size: 30px;
  font-weight: 400;
  line-height: 22px;
  position: absolute;
  text-shadow: none;
  opacity: 1;
  z-index: 10; }

.custom-product-card {
  position: relative;
  max-width: 300px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1); }

.overlay--light .hero__image, .overlay--light .slideshow__image {
  color: #181818; }

.overlay--light .hero__image:after, .overlay--light .slideshow__image:after {
  background-color: rgba(255, 255, 255, 0.3); }

.overlay--dark .hero__image, .overlay--dark .slideshow__image {
  color: #fff; }

.overlay--dark .hero__image:after, .overlay--dark .slideshow__image:after {
  background-color: rgba(30, 30, 30, 0.05); }

.overlay--dark .hero__content, .overlay--dark .slideshow__content {
  color: #fff; }

.overlay--dark .hero__subheading, .overlay--dark .hero__text, .overlay--dark .hero__text a, .overlay--dark .slideshow__subheading, .overlay--dark .slideshow__text, .overlay--dark .slideshow__text a {
  color: inherit; }

.overlay--dark .hero__text a:before, .overlay--dark .slideshow__text a:before {
  background-color: #fff; }

.overlay--dark .hero__content .btn--secondary, .overlay--dark .hero__content .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .overlay--dark .hero__content .shopify-payment-button__button--unbranded, .overlay--dark .slideshow__content .btn--secondary, .overlay--dark .slideshow__content .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .overlay--dark .slideshow__content .shopify-payment-button__button--unbranded {
  color: #fff;
  border-color: #fff;
  background-color: transparent; }

.overlay--dark .hero__content .btn--secondary:hover, .overlay--dark .hero__content .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .shopify-payment-button .overlay--dark .hero__content .shopify-payment-button__button--unbranded:hover, .overlay--dark .slideshow__content .btn--secondary:hover, .overlay--dark .slideshow__content .shopify-payment-button .shopify-payment-button__button--unbranded:hover, .shopify-payment-button .overlay--dark .slideshow__content .shopify-payment-button__button--unbranded:hover {
  color: #191919;
  border-color: #fff;
  background-color: #fff; }

.overlay--dark .hero__countdown, .overlay--dark .slideshow__countdown {
  border-bottom: 1px solid #fff; }

.overlay--dark.slideshow .slick-arrow svg {
  color: #fff;
  fill: #fff;
  stroke: #fff; }

.overlay--dark.slideshow .slick-dots li button {
  background-color: #fff;
  border-color: #fff;
  opacity: .2; }

.overlay--dark.slideshow .slick-dots li button:hover, .overlay--dark.slideshow .slick-dots li.slick-active button {
  opacity: 1; }

.hero--2 .hero__image_item {
  display: block;
  width: 100%;
  position: relative; }

.hero--2 .hero__image_item + .hero__image_item {
  margin-top: 15px; }

.hero--2 .hero__image {
  display: block; }

.hero--2 .hero__image, .hero--2.hero--medium .hero__image {
  height: auto; }

.hero--2 .hero__content {
  padding: 30px 15px;
  width: calc(100% - 30px); }

.hero--2 .hero__image .hero__image--background, .hero--2.hero--medium .hero__image .hero__image--background {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  transform: none;
  min-height: 0; }

.hero--2.overlay--light .hero__image:after {
  content: none; }

.hero--2.overlay--light .hero__content {
  background-color: #fff; }

.hero--2.overlay--dark .hero__content {
  background-color: #000; }

[data-section-type=icon-with-text] .halo-row__item {
  border-left: 1px solid #ebebeb; }

[data-section-type=icon-with-text] .halo-row__item:first-child {
  border-left: none; }

.icon-with-text {
  font-size: 0;
  max-width: 300px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  position: relative; }

.icon-with-text__icon {
  width: 40px;
  vertical-align: middle;
  display: inline-block; }

.icon-with-text__icon .icon, .icon-with-text__icon svg {
  font-size: 30px;
  width: 40px;
  height: 40px;
  line-height: 40px; }

.icon-with-text__content {
  font-size: 14px;
  padding-left: 20px;
  vertical-align: middle;
  display: inline-block; }

.icon-with-text__content .title {
  font-size: 20px;
  margin: 0 0 5px;
  color: #181818;
  font-family: "futura-pt", sans-serif;
  font-weight: 700; }

.icon-with-text__content .description {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 14px;
  color: black; }

.halo-column-image-with-text {
  display: block;
  font-size: 0;
  position: relative;
  margin-left: -15px;
  margin-right: -15px; }

.halo-column-image-with-text__item {
  padding: 0 15px;
  width: 100%;
  margin-top: 20px;
  vertical-align: top;
  display: inline-block; }

.halo-column-image-with-text__item:first-child {
  margin-top: 0; }

.image-with-text {
  font-size: 16px;
  display: block;
  max-width: 400px;
  position: relative; }

.image-with-text.text-center {
  margin-left: auto;
  margin-right: auto; }

.image-with-text__image {
  display: block;
  position: relative; }

.image-with-text__image > a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: block;
  position: absolute; }

.image-with-text__image > img {
  width: 100%; }

.image-with-text__content {
  display: block;
  padding: 20px 15px 15px; }

.image-with-text__content .title {
  font-size: 20px;
  margin: 0 0 10px;
  color: #181818;
  font-family: "futura-pt", sans-serif;
  font-weight: 700; }

.image-with-text__content .link {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #191919;
  font-family: "futura-pt", sans-serif; }

.image-with-text__content .link:before {
  left: 0;
  bottom: 0;
  content: '';
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  background-color: #191919; }

.image-with-text-2__image {
  display: block;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.image-with-text-2__image:before {
  content: "";
  display: block;
  padding-top: 95%;
  position: relative; }

.image-with-text-2__content {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 30px 15px 10px 15px; }

.image-with-text-2__content .section-header {
  margin: 0;
  padding: 0;
  max-width: 520px; }

.image-with-text-2__content .section-header > .subtitle {
  font-weight: 500;
  font-size: 16px;
  color: black;
  display: inline-block;
  border-bottom: 1px solid black;
  padding-bottom: 5px;
  margin: 0 0 15px 0; }

.image-with-text-2__content .section-header > p {
  margin-top: 15px; }

.halo-column-image-with-text-overlay {
  font-size: 0;
  display: block;
  position: relative;
  overflow: auto;
  white-space: nowrap;
  padding-left: 15px;
  padding-bottom: 5px; }

.halo-column-image-with-text-overlay__item {
  display: inline-block;
  vertical-align: top;
  font-size: 16px; }

.halo-column-image-with-text-overlay__item .image-with-text-overlay {
  vertical-align: top;
  display: inline-block;
  margin-right: 15px; }

.halo-column-image-with-text-overlay .section-footer {
  display: none; }

.halo-column-image-with-text-overlay .section-footer .link {
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  color: #181818;
  border-bottom: 1px solid #181818; }

.image-with-text-overlay {
  font-size: 16px;
  width: 300px;
  display: block;
  vertical-align: top;
  position: relative; }

.image-with-text-overlay__image {
  position: relative;
  display: block;
  overflow: hidden; }

.image-with-text-overlay__image:before {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 150%; }

.image-with-text-overlay__image > a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: block;
  position: absolute; }

.image-with-text-overlay__image > img {
  top: 50%;
  left: 50%;
  z-index: 1;
  width: auto;
  max-width: none;
  height: 100%;
  position: absolute;
  transform: translate(-50%, -50%); }

.image-with-text-overlay__image > .placeholder-svg {
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  z-index: 1;
  max-width: none;
  position: absolute;
  transform: translate(-50%, -50%); }

.image-with-text-overlay__content {
  left: 0;
  top: 50%;
  z-index: 6;
  width: 100%;
  padding: 15px;
  position: absolute;
  transform: translateY(-50%); }

.image-with-text-overlay__content .title {
  font-size: 20px;
  margin: 0 0 15px;
  color: #181818;
  font-family: "futura-pt", sans-serif;
  font-weight: 700; }

.image-with-text-overlay__content .link {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #191919;
  font-family: "futura-pt", sans-serif; }

.image-with-text-overlay__content .link:before {
  left: 0;
  bottom: -3px;
  content: '';
  height: 1px;
  width: 100%;
  display: block;
  position: absolute;
  background-color: #191919; }

.overlay--light {
  color: #fff; }

.overlay--light .image-with-text-overlay__content .link, .overlay--light .image-with-text-overlay__content .title, .overlay--light .recommended_size {
  color: #fff; }

.overlay--light .image-with-text-overlay__content .link:before {
  background-color: #fff; }

.instagram {
  font-size: 0;
  position: relative; }

.instagram::after {
  content: '';
  display: table;
  clear: both; }

.instagram__item {
  width: 50%;
  vertical-align: top;
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-size: 16px; }

.instagram_icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transition: all .3s ease;
  transform: translate(-50%, -50%); }

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

.instagram__item--bg {
  background-color: #000; }

.instagram__item:before {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 100%; }

.instagram__item img {
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  max-width: none;
  position: absolute;
  display: inline-block;
  transform: translate(-50%, -50%); }

.instagram-load-more {
  margin-top: 20px; }

.instagram__item2 {
  position: relative;
  display: block; }

[data-slick-pc] .featured-blog {
  width: 290px; }

.slick-slider .featured-blog {
  width: 100%; }

.featured-blog-layout-custom {
  font-size: 0;
  display: block;
  position: relative; }

.featured-blog-layout-custom__item {
  width: 100%;
  vertical-align: top;
  display: inline-block;
  font-size: 16px; }

.featured-blog-layout-custom__item + .featured-blog-layout-custom__item {
  padding-top: 40px; }

.featured-blog {
  position: relative; }

.featured-blog--small {
  margin-bottom: 30px; }

.featured-blog--small .featured-blog__content {
  padding-top: 0; }

.featured-blog--small .featured-blog__excerpt {
  margin-bottom: 0; }

.featured-blog__image, .featured-blog__link {
  display: block;
  position: relative; }

.featured-blog__link:before {
  content: "";
  display: block;
  position: relative;
  padding-bottom: 75%; }

.featured-blog__link img {
  position: absolute;
  height: 100%;
  width: auto;
  max-width: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.featured-blog__content {
  z-index: 5;
  display: block;
  position: relative;
  padding-top: 20px;
  padding-bottom: 0; }

.featured-blog__title {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 5px 0;
  color: #181818;
  font-family: "futura-pt", sans-serif;
  font-weight: 700; }

.featured-blog__meta {
  margin: 0 0 5px 0; }

.featured-blog__meta--item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  font-size: 16px;
  color: black;
  font-family: "futura-pt", sans-serif; }

.featured-blog__meta--item + .featured-blog__meta--item:before {
  content: "-";
  display: inline-block;
  margin: 0 5px 0 5px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  color: inherit; }

.featured-blog__excerpt {
  margin-top: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical; }

.featured-blog__excerpt span {
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical; }

.featured-blog__button .btn, .featured-blog__button .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .featured-blog__button .shopify-payment-button__button--unbranded {
  min-width: 120px; }

.featured-blog-viewAll {
  font-weight: 500;
  text-decoration: underline;
  text-underline-position: under; }

.article__meta {
  color: #acacac; }

.swatch {
  font-size: 0;
  margin-bottom: 15px; }

.swatch .form-label {
  font-weight: 400;
  font-size: 16px; }

.swatch .form-label span {
  font-weight: 400;
  color: black; }

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

.swatch .soldout {
  opacity: .7;
  pointer-events: none; }

.swatch .swatch-element {
  display: inline-block;
  margin: 0 7px 7px 0;
  position: relative;
  vertical-align: top;
  overflow: hidden;
  font-size: 16px; }

.swatch .swatch-element label {
  margin: 0;
  height: 34px;
  min-width: 34px;
  line-height: 34px;
  padding: 0 8px;
  color: #323232;
  cursor: pointer;
  border-radius: 17px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #dadada; }

.swatch .swatch-element label:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  border-radius: 17px;
  border: 3px solid #dadada;
  background-color: rgba(255, 255, 255, 0); }

.swatch .swatch-element input:checked + label:after {
  opacity: 1;
  visibility: visible; }

.swatch .swatch-element.color label:after {
  opacity: 1;
  visibility: visible;
  border: 3px solid #fff; }

.swatch .swatch-element.color label {
  font-size: 0;
  padding: 0;
  width: 34px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat; }

.swatch .swatch-element.color label img {
  width: 100%;
  height: calc(100% - 4px);
  border-radius: 50%;
  object-fit: contain; }

.swatch .swatch-element.color input:checked + label:after {
  border: 3px solid #dadada; }

.swatch .swatch-element.soldout label {
  cursor: no-drop; }

.swatch .swatch-element.soldout label:before {
  content: "";
  top: 16px;
  left: -7px;
  height: 1px;
  opacity: 1;
  z-index: 5;
  border: none;
  position: absolute;
  visibility: visible;
  width: calc(140% - 1px);
  background-color: #ecab9c;
  transform: rotate(-45deg); }

.swatch .swatch-element:hover .tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; }

.product__meta--item label {
  color: #181818;
  font-family: "futura-pt", sans-serif; }

.product__countdown .countdown {
  color: #181818; }

.product__price .product-card__price .price-item {
  color: #181818; }

.product__price .product-card__price .product__customers-view label, .product__terms-conditions {
  display: inline-block;
  vertical-align: top;
  position: relative;
  color: black;
  font-size: 16px; }

.product__terms-conditions {
  margin-bottom: 20px;
  max-width: 100%; }

.product__terms-conditions:before {
  content: "";
  left: 22px;
  bottom: 2px;
  width: 0;
  height: 1px;
  position: absolute;
  transition: all .3s ease;
  background-color: #3c86a5; }

.product__terms-conditions .title {
  position: relative;
  font-weight: 400;
  line-height: 22px;
  font-family: "futura-pt", sans-serif;
  text-transform: none;
  color: black;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%; }

.product__terms-conditions .title:before {
  top: 3px;
  border-radius: 0;
  margin-right: 3px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background-color: #fff;
  border: 1px solid #ccc;
  height: 15px;
  width: 15px;
  content: "";
  transition: all .3s ease; }

.product__terms-conditions .title:after {
  content: "";
  display: block;
  position: absolute;
  transition: all 50ms ease-out;
  height: 14px;
  width: 14px;
  left: 1px;
  top: 3px;
  opacity: 0;
  transform: scale(0);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='rgba(51, 51, 51, 1)' /%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
  color: #333;
  font-size: 14px;
  line-height: 1;
  text-align: center; }

.product__terms-conditions input[type=checkbox] {
  min-height: 0;
  display: inline;
  line-height: 22px;
  vertical-align: middle;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  display: none; }

.product__terms-conditions input[type=checkbox]:checked + .title:after {
  opacity: 1;
  transform: scale(1); }

.product__terms-conditions:hover .title {
  color: #3c86a5; }

.product__terms-conditions:hover:before {
  width: calc(100% - 22px); }

.product-single__photos .product-single__media iframe, .product-single__photos .product-single__media model-viewer, .product-single__photos .product-single__media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; }

.product-single__photos .product-single__media video + .zoomImg {
  display: none !important; }

.product-single__thumbnails .product-single__media {
  display: block;
  width: 100%;
  position: relative; }

.product-single__thumbnails .product-single__media iframe, .product-single__thumbnails .product-single__media img, .product-single__thumbnails .product-single__media model-viewer, .product-single__thumbnails .product-single__media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: cover; }

.product-single__thumbnails .product-single__media .product-single__thumbnail--icon {
  width: 28px;
  height: 28px;
  background: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 4px; }

.product-single__thumbnails .product-single__media .product-single__thumbnail--icon svg {
  width: 100%;
  height: 100%; }

.gdpr {
  font-size: 16px;
  padding: 15px;
  left: 0;
  bottom: 0;
  z-index: 11;
  right: auto;
  width: 100%;
  position: fixed;
  color: black;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

.gdpr--right {
  left: auto;
  right: 0; }

.gdpr .rte {
  margin-bottom: 0;
  position: relative; }

.gdpr .rte p {
  margin-bottom: 15px; }

.gdpr .close {
  border-bottom: none !important;
  font-weight: 500;
  display: inline-block;
  font-size: 16px; }

.someone-purchased-modal {
  left: 0;
  bottom: 0;
  z-index: 12;
  right: auto;
  position: fixed; }

.someone-purchased-modal--right {
  left: auto;
  right: 0; }

.gdpr + .someone-purchased-modal {
  bottom: 130px; }

.product-notification {
  display: block;
  width: 100%;
  max-width: 470px;
  z-index: 10;
  opacity: 0;
  overflow: hidden;
  border-radius: 0;
  position: relative;
  animation-duration: 1s;
  transition: all 1s ease;
  color: #787878;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

.product-notification.active {
  opacity: 1;
  visibility: visible; }

.product-notification .close {
  top: 5px;
  right: 5px;
  font-size: 30px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  position: absolute;
  color: #787878; }

.product-suggest {
  width: 100%;
  font-size: 0;
  vertical-align: top;
  display: inline-block; }

.product-suggest .product-image {
  width: 80px;
  height: 100px;
  font-size: 16px;
  position: relative;
  display: inline-block;
  vertical-align: middle; }

.product-suggest .product-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%); }

.product-suggest .column-right {
  width: calc(100% - 80px);
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  padding: 10px 35px 10px 20px; }

.product-suggest .text {
  margin-bottom: 0;
  display: inline;
  color: #787878; }

.product-suggest .product-name {
  display: inline;
  font-weight: 500;
  font-family: "futura-pt", sans-serif;
  color: #191919; }

.product-suggest .info-ago {
  margin-top: 8px;
  color: #787878; }

.product-suggest .time-text {
  font-size: 0.875em; }

.cart-edit-modal {
  text-align: left;
  width: 100%;
  padding: 0;
  height: auto;
  margin: 0 auto;
  min-height: 100px;
  max-height: 90vh;
  overflow-y: auto;
  max-width: 770px;
  position: relative;
  pointer-events: auto;
  font-size: 16px;
  color: black;
  background-color: white; }

.cart-edit-modal .close {
  top: 5px;
  right: 5px;
  z-index: 5;
  width: 30px;
  height: 30px;
  font-size: 30px;
  line-height: 30px;
  position: absolute;
  color: black; }

.cart-edit-modal form {
  min-width: 700px; }

.cart-edit-modal .product-form__error-message-wrapper {
  margin: 0 0 15px 0;
  padding: 0 15px; }

.cart-edit-option-selector option[disabled=disabled] {
  opacity: .5; }

.product-edit-wrapper {
  display: block;
  padding: 20px; }

.product-edit {
  display: table; }

.product-edit__content, .product-edit__image {
  display: table-cell;
  vertical-align: middle; }

.product-edit__image {
  width: 80px; }

.product-edit__content {
  padding-left: 20px; }

.product-edit-button .btn, .product-edit-button .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .product-edit-button .shopify-payment-button__button--unbranded {
  width: 100%;
  display: block; }

.product-edit-option table {
  margin-bottom: 20px; }

.product-add-more {
  padding: 0 15px 20px 15px; }

[data-cart-edit-head] th {
  border: none;
  font-weight: 400;
  padding: 10px 7px;
  color: black;
  background-color: #f5f5f5; }

[data-cart-edit-head] th:first-child {
  padding-left: 30px; }

[data-cart-edit-body] tr {
  border-bottom: 1px solid #ebebeb; }

[data-cart-edit-body] td {
  border: none;
  padding: 15px 7px; }

[data-cart-edit-body] td:first-child {
  padding-left: 30px; }

[data-cart-edit-body] .price-item {
  font-weight: 400; }

.cart-edit__qty {
  position: relative;
  width: 150px;
  display: inline-block; }

.cart-edit__qty [data-qtt-editcart] {
  border: none;
  width: 36px;
  height: 36px;
  line-height: 36px;
  position: absolute;
  top: 0; }

.cart-edit__qty .minus[data-qtt-editcart] {
  left: 0;
  border-right: 1px solid #cbcbcb; }

.cart-edit__qty .plus[data-qtt-editcart] {
  right: 0;
  border-left: 1px solid #cbcbcb; }

.cart-edit__qty [data-qtt-editcart] .icon {
  width: 100%;
  height: 100%;
  padding: 12px; }

.cart-edit__qty .cart__qty-input {
  width: 150px;
  padding: 0 36px;
  border: 1px solid #cbcbcb; }

.cart-edit__remove .cart__remove {
  margin: 0;
  font-size: 30px; }

.cart-edit__remove .cart__remove a {
  top: -3px;
  border: none;
  text-decoration: none;
  position: relative; }

.product-addmore-button {
  font-weight: 400;
  line-height: 20px;
  position: relative;
  margin-left: 20px;
  color: #191919; }

.product-addmore-button:before {
  top: 8px;
  content: "";
  width: 9px;
  height: 1px;
  right: calc(100% + 6px);
  display: block;
  position: absolute;
  background-color: black; }

.product-addmore-button:after {
  top: 50%;
  content: "";
  width: 1px;
  height: 9px;
  right: calc(100% + 10px);
  display: block;
  position: absolute;
  background-color: black;
  transform: translateY(-50%); }

.product-addmore-button:hover {
  color: black; }

.modal-newsletter {
  text-align: left;
  width: 100%;
  padding: 0;
  height: auto;
  margin: 0 auto;
  max-height: 90vh;
  overflow-y: auto;
  max-width: 930px;
  position: relative;
  pointer-events: auto;
  font-size: 16px;
  color: black;
  background-color: white;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1); }

.newsletter--content {
  width: 100%;
  padding: 30px 15px; }

.modal-newsletter--full .newsletter--content {
  width: 100%; }

.newsletter--image {
  display: none; }

.newsletter--subheading {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 10px 0;
  text-transform: capitalize; }

.newsletter--heading {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px 0;
  color: #181818;
  text-transform: none; }

.newsletter--message {
  display: inline-block;
  margin-bottom: 0;
  color: #181818; }

.newsletter--form {
  margin-top: 20px;
  margin-bottom: 20px; }

.newsletter--form .input-group {
  display: block; }

.newsletter--form .newsletter__input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 0 15px 0;
  background-color: #fff;
  border-color: #181818; }

.newsletter--form .btn, .newsletter--form .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .newsletter--form .shopify-payment-button__button--unbranded {
  width: 100%;
  display: block;
  min-width: 120px;
  padding: 0 25px;
  height: 40px;
  line-height: 40px; }

.newsletter--content .social_list {
  margin-top: 20px; }

.newsletter--content .social-icons .icon {
  color: #181818;
  fill: #181818; }

.newsletter--showAgain {
  margin-top: 15px;
  line-height: 20px; }

.newsletter--showAgain #dismiss {
  display: none; }

.newsletter--showAgain #dismiss + label {
  font-weight: 400;
  padding-left: 23px;
  position: relative;
  color: black; }

.newsletter--showAgain #dismiss + label:before {
  content: "";
  left: 0;
  top: 3px;
  width: 13px;
  height: 13px;
  position: absolute;
  border: 1px solid #dbdbdb;
  background-color: #fff; }

.newsletter--showAgain #dismiss + label:after {
  content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 6px;
  left: 2px;
  border: 2px solid #232323;
  border-top: none;
  border-right: none;
  background: rgba(255, 255, 255, 0);
  transform: rotate(-45deg);
  transition: all .1s; }

.newsletter--showAgain #dismiss:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0) rotate(-45deg); }

.newsletter--showAgain #dismiss:checked + label:after {
  opacity: 1;
  transform: scale(1) rotate(-45deg); }

.modal-newsletter .close {
  top: 5px;
  right: 5px;
  z-index: 5;
  width: 30px;
  height: 30px;
  font-size: 40px;
  line-height: 30px;
  position: absolute;
  color: #181818; }

[data-section-type=newsletter] {
  font-size: 0; }

[data-section-type=newsletter] .form-single-field {
  font-size: 16px; }

[data-section-type=newsletter] .input-group__field {
  border-color: #181818; }

.before-you-leave__wrapper {
  overflow: auto;
  max-height: 100vh; }

.before-you-leave__wrapper::-webkit-scrollbar-track {
  background-color: #fafafa; }

.before-you-leave__wrapper::-webkit-scrollbar {
  width: 0;
  background-color: #fafafa; }

.before-you-leave__wrapper::-webkit-scrollbar-thumb {
  background-color: #e6e6e6; }

.before-you-leave__header {
  padding: 19px 20px 19px; }

.before-you-leave__header--text svg {
  width: 160px;
  display: inline-block;
  vertical-align: middle; }

.before-you-leave__bg {
  padding: 30px 20px 20px 20px;
  color: #fff;
  position: relative;
  background-color: #989898;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

.before-you-leave__bg .rte {
  z-index: 2;
  position: relative; }

.before-you-leave__bg .rte, .before-you-leave__bg a, .before-you-leave__bg p {
  color: inherit; }

.before-you-leave__img {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute; }

.before-you-leave__bg .rte strong {
  font-size: 24px;
  font-weight: 700;
  color: inherit;
  text-transform: uppercase;
  font-family: "futura-pt", sans-serif; }

.before-you-leave__bg .rte p:first-child strong {
  font-size: 32px;
  text-transform: none; }

.before-you-leave__bg .rte a:not(.btn) {
  padding-bottom: 2px;
  margin-bottom: 5px;
  display: inline-block;
  border-bottom: 2px solid #fff; }

.before-you-leave__bg .btn, .before-you-leave__bg .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .before-you-leave__bg .shopify-payment-button__button--unbranded {
  width: 100%;
  z-index: 2;
  position: relative; }

.before-you-leave__content--title {
  padding: 18px 20px;
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb; }

.before-you-leave__content--title .title {
  margin-bottom: 0; }

.before-you-leave__content--title .count {
  width: 20px;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  margin-left: 5px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  background-color: #f08584;
  position: relative;
  top: -2px; }

.before-you-leave__content--title .search:not(.open_search) .icon-search {
  display: block; }

.before-you-leave__content--title .search:not(.open_search) .icon-close {
  display: none; }

.before-you-leave__content--title .search.open_search .icon-search {
  display: none; }

.before-you-leave__content--title .search.open_search .icon-close {
  display: block; }

.before-you-leave__content--title .search-form-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 10; }

.before-you-leave__content--title .search-bar {
  width: 100%;
  color: black;
  background-color: #fff; }

.before-you-leave__content--title .search-bar button {
  color: black; }

.before-you-leave__content--title .search-bar input {
  color: black;
  background-color: #fff;
  width: calc(100% - 34px); }

.before-you-leave__content--title .search-form__results {
  top: 100%;
  width: 100%; }

.before-you-leave__content--product {
  z-index: 1;
  position: relative;
  padding: 20px 20px 50px 20px; }

.before-you-leave__content--product .product-card--2 .product-card__title {
  margin-bottom: 10px; }

.before-you-leave__content--product .product-card--2 .product-card__btn {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  color: #191919;
  border: 1px solid #d2d2d2;
  background-color: #fff; }

.before-you-leave__content--product .product-card__btn--plus > span:after, .before-you-leave__content--product .product-card__btn--plus > span:before {
  background-color: #191919; }

.before-you-leave__content--product .product-card--2 .product-card__btn:hover {
  color: #191919;
  border: 1px solid #d2d2d2;
  background-color: #fff; }

.before-you-leave__content--product .slick-slide > div {
  margin-bottom: 20px; }

.before-you-leave__content--product .slick-arrow {
  top: auto;
  bottom: -34px;
  width: 30px;
  height: 30px;
  transform: none; }

.before-you-leave__content--product .slick-prev {
  left: 15px; }

.before-you-leave__content--product .slick-next {
  right: 15px; }

.before-you-leave__button {
  display: block;
  padding-top: 30px; }

.before-you-leave__button .btn, .before-you-leave__button .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .before-you-leave__button .shopify-payment-button__button--unbranded {
  width: 100%; }

.product-single {
  display: block;
  position: relative; }

.product-single__photos {
  font-size: 0;
  width: 100%;
  display: block;
  margin-bottom: 50px;
  position: relative;
  padding-right: 0; }

.product-single__photos .wrapper-image {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%; }

.product-single__photos .wrapper-image .product-single__photos--item {
  display: inline-block;
  vertical-align: middle;
  float: none; }

.product-single__photos .thumbnails-wrapper {
  width: 60px;
  padding: 0;
  display: none;
  vertical-align: top; }

.product-single__photos > div {
  position: relative;
  font-size: 16px; }

.product-single__details {
  display: block;
  width: 100%;
  margin-bottom: 50px;
  font-size: 16px; }

.product-single__photo, .product-thumbnails__photo {
  position: relative;
  overflow: hidden;
  display: block; }

.product-single__photo:before, .product-thumbnails__photo:before {
  content: "";
  display: block;
  position: relative;
  padding-top: var(--my-height-var); }

.product-single__photo-image, .product-thumbnails__photo-image {
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  max-width: none;
  position: absolute;
  display: inline-block;
  transform: translate(-50%, -50%); }

.product-single__photos-wrapper.slider:not(.slick-slider) {
  white-space: nowrap;
  overflow: hidden; }

.product-single__photos-wrapper {
  margin-left: -5px;
  margin-right: -5px; }

.product-single__photos--item {
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  display: inline-block;
  vertical-align: top; }

.product-single__photos-wrapper, .product-single__photos-wrapper.slick-dotted {
  margin-bottom: 0; }

.product-single__photos-wrapper .slick-next {
  right: 24px; }

.product-single__photos-wrapper .slick-prev {
  left: 24px; }

.product-single__photos-wrapper .slick-next svg, .product-single__photos-wrapper .slick-prev svg {
  color: #7b7b7b;
  fill: #7b7b7b;
  stroke: #7b7b7b; }

.product-single__photos-wrapper .slick-dots {
  bottom: auto;
  position: relative; }

.product-single__photos-wrapper .slick-dots li button {
  border-color: #bdbdbd; }

.product-single__photos-wrapper .slick-dots li.slick-active button {
  border-color: #8f8f8f;
  background-color: transparent; }

.product-single__thumbnails {
  margin: 0;
  font-size: 0;
  padding: 30px 0 38px 0;
  display: block;
  position: relative; }

.product-single__thumbnails.arrows-disable {
  padding: 0;
  margin-top: -8px; }

.product-single__thumbnails:not(.slick-slider) {
  white-space: nowrap;
  overflow: hidden; }

.product-single__thumbnails .slick-next, .product-single__thumbnails .slick-prev {
  opacity: .4;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  left: 50%;
  display: block;
  position: absolute;
  transform: translateX(-50%); }

.product-single__thumbnails .slick-prev {
  top: 0; }

.product-single__thumbnails .slick-next {
  bottom: 0;
  top: auto; }

.product-single__thumbnails .slick-next svg, .product-single__thumbnails .slick-prev svg {
  width: 100%;
  height: 100%; }

.product-single__thumbnails-item {
  padding: 8px 0;
  width: 100%;
  display: block; }

.product-single__thumbnails-item.slick-current .product-thumbnails__photo {
  opacity: .6; }

.product-single__thumbnails-item.slick-current .product-thumbnails__photo:after {
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid #000; }

.product__title {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px 0; }

.product-single .product__group {
  display: block;
  margin-bottom: 8px; }

.product__group .spr-badge {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  pointer-events: auto; }

.product__group .spr-badge + .product__sold {
  margin-left: 0;
  display: block;
  margin-top: 5px; }

.product__sold {
  position: relative;
  display: inline-block;
  vertical-align: top;
  color: #e13f3f; }

.product__sold .icon {
  width: 17px;
  height: 17px;
  top: -1px;
  position: relative; }

.product__meta {
  display: table;
  margin-bottom: 10px; }

.product__meta--item {
  display: block;
  margin-bottom: 3px; }

.product__meta--item label, .product__meta--item span {
  margin: 0;
  padding: 0;
  font-size: 16px;
  display: inline-block;
  color: black;
  font-weight: 400;
  text-transform: capitalize; }

.product__meta--item span a {
  color: inherit; }

.variant-inventory .out_of_stock {
  display: block;
  padding: 0; }

.variant-inventory .many_in_stock {
  display: none;
  padding: 0; }

.variant-inventory--true .out_of_stock {
  display: none; }

.variant-inventory--true .many_in_stock {
  display: block; }

.product__price {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase; }

.product__price .product-card__price .price-item {
  font-size: inherit;
  font-weight: inherit; }

.product__countdown .countdown, .product__countdown .countdown--label {
  display: inline-block;
  vertical-align: top; }

.product__countdown .countdown--label {
  margin-right: 10px;
  text-decoration: underline;
  text-underline-position: under; }

.product__countdown .countdown {
  font-size: 16px;
  font-weight: 500;
  text-transform: lowercase; }

.product__countdown, .product__policies, .product__short-description {
  display: block;
  margin-bottom: 10px; }

.product__total-price {
  margin-top: -5px;
  margin-bottom: 15px; }

.product__total-price .label {
  text-transform: capitalize;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px; }

.product__total-price .price {
  display: inline-block;
  vertical-align: middle; }

.product__customers-view {
  display: block;
  line-height: 20px;
  margin-bottom: 10px;
  white-space: nowrap; }

.product__customers-view label, .product__customers-view span, .product__customers-view svg {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px; }

.product__customers-view svg {
  width: 18px;
  height: 20px; }

.product__customers-view label {
  font-weight: 400;
  margin-bottom: 0; }

.product__socialshare {
  display: block;
  margin-left: -8px; }

.at-style-responsive .at-share-btn {
  padding: 3px 4px !important; }

.at-resp-share-element .at-icon, .at-resp-share-element .at-share-btn .at-icon-wrapper {
  width: 20px !important;
  height: 20px !important; }

.qty-group {
  display: inline-block;
  position: relative; }

.qty-group input[data-quantity-input] {
  width: 110px;
  height: 40px;
  line-height: 1;
  border: 1px solid #cbcbcb;
  background-color: #fff; }

.qty-group a {
  right: 10px;
  width: 14px;
  height: 10px;
  pointer-events: auto;
  line-height: 10px;
  position: absolute;
  border-bottom: none; }

.qty-group a.plus {
  top: 9px; }

.qty-group a.minus {
  bottom: 9px;
  top: auto; }

.qty-group .icon {
  width: 14px;
  height: 14px;
  pointer-events: none;
  line-height: 10px;
  vertical-align: top; }

.qty-group a.minus .icon {
  margin-top: -5px; }

#product-quickview .close {
  top: 5px;
  right: 5px;
  z-index: 5;
  width: 30px;
  height: 30px;
  font-size: 30px;
  line-height: 30px;
  position: absolute;
  color: black; }

#product-quickview .modal-body {
  overflow: hidden; }

.product-quickview-template__container .product-single {
  padding: 0; }

.product-quickview-template__container .product-single__photos-wrapper .slick-slide {
  display: inline-block;
  vertical-align: middle;
  float: none; }

.product-quickview-template__container .product-single__photos {
  padding: 15px;
  height: 735px;
  overflow: hidden; }

.product-quickview-template__container .product-single__details {
  height: 735px;
  padding: 15px 15px 15px 0;
  overflow: auto; }

.product-quickview-template__container .product-single__photos-wrapper {
  width: calc(100% - 85px);
  display: inline-block;
  vertical-align: top; }

.product-quickview-template__container .thumbnails-wrapper {
  width: 85px;
  padding-left: 15px;
  display: inline-block;
  vertical-align: top; }

.product-quickview-template__container .product-single__details::-webkit-scrollbar-track {
  background-color: #f4f4f4; }

.product-quickview-template__container .product-single__details::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #f4f4f4; }

.product-quickview-template__container .product-single__details::-webkit-scrollbar-thumb {
  background-color: #000; }

.product-quickview-template__container .product-single__details, .product-quickview-template__container .product-single__photos {
  margin-bottom: 0; }

.product-quickview-template__container .product-wrapper {
  padding: 0; }

@-moz-document url-prefix() {
  .product-quickview-template__container .product-wrapper {
    margin-bottom: 15px; } }

.product-quickview-template__container .product__title {
  font-size: 24px;
  padding-right: 0; }

.product-quickview-template__container .product-form__item--submit {
  margin-bottom: 0;
  width: calc(100% - 125px);
  position: absolute;
  right: 0;
  bottom: 0; }

.product-quickview-template__container .product-form__item--submit .btn--addToCart {
  width: calc(100% - 60px);
  display: inline-block;
  vertical-align: top;
  margin-bottom: 0;
  margin-right: 10px;
  position: relative;
  top: auto;
  left: auto; }

.product-quickview-template__container .product-form__item--submit .btn--wishlist {
  position: relative;
  top: auto;
  left: auto;
  right: auto; }

.flag {
  width: 30px;
  height: 20px;
  vertical-align: middle;
  display: inline-block;
  background-image: url("//muubio.com/cdn/shop/t/35/assets/flags_responsive2.png?11624") !important;
  background-size: 100%;
  background-repeat: no-repeat; }

.flag-eur {
  background-image: url("//muubio.com/cdn/shop/t/35/assets/flags_responsive3.png?11624") !important; }

.translation-lab-language-switcher-container {
  float: none; }

.translation-lab-language-switcher {
  display: inline-block;
  width: auto;
  border: none;
  margin: 0 0 0 8px;
  padding-top: 0;
  padding-bottom: 0;
  outline: 0;
  text-transform: uppercase;
  background: 0 0; }

.language-dropdown {
  display: block;
  position: relative; }

.language-dropdown .dropdown-label {
  padding: 0;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  color: #181818;
  background-color: transparent; }

.language-dropdown .dropdown-label:after {
  content: none; }

.language-dropdown .dropdown-label > .icon {
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle; }

.language-dropdown .dropdown-label > .text {
  display: inline-block;
  vertical-align: middle; }

.language-dropdown .dropdown-label .icon-arrow {
  width: 10px;
  height: 10px;
  margin-left: 7px;
  margin-right: 0; }

.language-dropdown .dropdown-label .flag {
  margin-right: 7px; }

.language-dropdown .dropdown-menu {
  width: 225px;
  margin: 17px 0 0 0;
  padding: 0 0 10px 0;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0;
  height: 200px;
  overflow: auto;
  font-weight: 400;
  color: black;
  background-color: #fff; }

.language-dropdown .dropdown-menu::-webkit-scrollbar-track {
  background-color: #f4f4f4; }

.language-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #f4f4f4; }

.language-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #000; }

.language-dropdown .dropdown-menu .icon {
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle; }

.language-dropdown .dropdown-menu .text {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase; }

.language-dropdown .dropdown-menu .icon-arrow {
  display: none;
  width: 10px;
  height: 10px; }

.language-dropdown .dropdown-item {
  width: 50%;
  padding: .5rem 1.5rem;
  font-size: 16px;
  color: #3c86a5;
  vertical-align: top;
  display: inline-block;
  white-space: nowrap;
  text-transform: lowercase;
  background-color: transparent; }

.language-dropdown .dropdown-divider {
  margin: 0 0 10px 0; }

.language-dropdown .dropdown-item.dropdown-item--full {
  width: 100%;
  pointer-events: none;
  padding: .5rem 1.5rem;
  background-color: #f3f3f3;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: black; }

.language-dropdown .dropdown-item:nth-child(2n) {
  padding-left: 0; }

.language-dropdown .dropdown-item:nth-child(2n+1) {
  padding-right: 10px; }

.language-dropdown .dropdown-item.active, .language-dropdown .dropdown-item:active {
  color: black;
  background-color: #fff; }

.language-dropdown .dropdown-item.active .text, .language-dropdown .dropdown-item:active .text {
  text-decoration: underline;
  text-underline-position: under; }

.currency-dropdown {
  display: block;
  position: relative; }

.currency-dropdown .dropdown-label {
  padding: 0;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  color: #181818;
  background-color: transparent; }

.currency-dropdown .dropdown-label:after {
  content: none; }

.currency-dropdown .dropdown-label .icon {
  margin-left: 0;
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle; }

.currency-dropdown .dropdown-label .text {
  display: inline-block;
  vertical-align: middle; }

.currency-dropdown .dropdown-label .icon-arrow {
  width: 10px;
  height: 10px;
  margin-left: 7px;
  margin-right: 0; }

.currency-dropdown .dropdown-label .flag {
  margin-right: 7px;
  display: none; }

.currency-dropdown .dropdown-menu {
  width: 225px;
  margin: 17px 0 0 0;
  padding: 0 0 10px 0;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0;
  height: 200px;
  overflow: auto;
  font-weight: 400;
  color: black;
  background-color: #fff; }

.currency-dropdown .dropdown-menu::-webkit-scrollbar-track {
  background-color: #f4f4f4; }

.currency-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #f4f4f4; }

.currency-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #000; }

.currency-dropdown .dropdown-menu .icon {
  margin-right: 7px;
  display: inline-block;
  vertical-align: middle; }

.currency-dropdown .dropdown-menu .icon img {
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: -1px; }

.currency-dropdown .dropdown-menu .text {
  display: inline-block;
  vertical-align: middle; }

.currency-dropdown .dropdown-menu .icon-arrow {
  display: none;
  width: 10px;
  height: 10px;
  margin: 0; }

.currency-dropdown .dropdown-menu .flag {
  font-size: 0;
  margin-right: 7px; }

.currency-dropdown .dropdown-item {
  width: 50%;
  font-size: 16px;
  padding: .5rem 1.5rem;
  vertical-align: top;
  display: inline-block;
  white-space: nowrap;
  color: black;
  background-color: transparent; }

.currency-dropdown .dropdown-divider {
  margin: 0 0 10px 0; }

.currency-dropdown .dropdown-item.dropdown-item--full {
  width: 100%;
  pointer-events: none;
  padding: .5rem 1.5rem;
  background-color: #f3f3f3;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: black; }

.currency-dropdown .dropdown-item:nth-child(2n) {
  padding-left: 0; }

.currency-dropdown .dropdown-item:nth-child(2n+1) {
  padding-right: 10px; }

.currency-dropdown .dropdown-item.active, .currency-dropdown .dropdown-item:active {
  color: black;
  background-color: #fff; }

.currency-dropdown .dropdown-item.active .text, .currency-dropdown .dropdown-item:active .text {
  text-decoration: underline;
  text-underline-position: under; }

.lst-seen-widget {
  position: fixed;
  top: 50%;
  right: -130px;
  width: 80px;
  height: auto;
  z-index: 100;
  user-select: none;
  color: #181818;
  background: #fff;
  border-radius: 0;
  transition: right .5s ease 0s;
  transform: translateY(-50%);
  border: 1px solid #e7e7e7;
  box-shadow: none; }

.lst-seen-widget.is-show-widget {
  right: 3px; }

.lst-seen-widget::before {
  width: 10px;
  height: 30px;
  content: "";
  top: 0;
  left: -1px;
  z-index: 1;
  position: absolute;
  background: #fff; }

.lst-seen-widget .bottom, .lst-seen-widget .collapse-icon, .lst-seen-widget .in-content .no-products, .lst-seen-widget .top, .wrap-icons div {
  display: flex;
  justify-content: center;
  align-items: center; }

.lst-seen-widget .in-content .no-products > img, .lst-seen-widget .in-content .no-products > svg {
  opacity: .1; }

.lst-seen-widget .collapse-icon {
  top: -1px;
  width: 30px;
  height: 30px;
  left: -30px;
  cursor: pointer;
  position: absolute;
  background: #fff;
  border-radius: 0;
  border: 1px solid #e7e7e7;
  box-shadow: none; }

.lst-seen-widget .collapse-icon svg {
  width: 14px;
  height: 14px;
  fill: #181818;
  color: #181818; }

.lst-seen-widget .top {
  transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all .25s ease 0s; }

.lst-seen-widget.slided-up .top {
  opacity: 1;
  height: 50px;
  visibility: visible;
  transform: translateY(0); }

.lst-seen-widget.slided-up .top svg {
  width: 25px;
  height: 25px;
  fill: #181818;
  color: #181818; }

.lst-seen-widget.slided-up .top .countPill {
  color: #fff;
  background-color: #3c86a5; }

.lst-seen-widget .in-content {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 15px 0;
  border-radius: 3px;
  transition: all .3s ease; }

.lst-seen-widget .no-products {
  display: block; }

.lst-seen-widget .no-products .icon {
  width: 46px;
  height: 46px;
  opacity: .4; }

.lst-seen-widget.slided-up .in-content {
  border-radius: 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7; }

.lst-seen-widget .in-content .title {
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 400;
  padding: 0 5px;
  position: relative;
  text-transform: capitalize; }

.lst-seen-widget .in-content.hide + .bottom {
  border-top: none; }

.lst-seen-widget .bottom {
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transform: translateY(-40px);
  transition: all .3s ease 0s;
  fill: #181818;
  color: #181818; }

.lst-seen-widget.slided-up .bottom {
  opacity: 1;
  height: 40px;
  visibility: visible;
  transform: translateY(0); }

.lst-seen-widget .bottom div {
  font-size: 14px;
  margin-left: 4px;
  text-transform: capitalize; }

.lst-seen-widget .bottom svg {
  width: 18px;
  height: 14px;
  transform: rotate(-90deg); }

.wrap-icons {
  width: 40px;
  height: auto;
  position: fixed;
  top: 50%;
  right: -50px;
  z-index: 100;
  background: #fff;
  transform: translateY(-50%);
  transition: right .5s ease 0s;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1); }

.wrap-icons.collapsed {
  right: 0; }

.wrap-icons div {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: #181818; }

.wrap-icons div + div {
  border-top: 1px solid #e7e7e7; }

.wrap-icons svg {
  width: 20px;
  height: 20px;
  fill: #181818; }

.wrap-icons .backtoTop svg {
  width: 18px;
  height: 14px;
  transform: rotate(-90deg); }

.product-recently-viewed {
  display: block;
  position: relative; }

.product-recently-viewed .recent_item_url {
  display: inline-block;
  vertical-align: top;
  padding: 0 15px; }

.product-recently-viewed .second-info {
  display: none;
  height: 0; }

.product-recently-viewed-content .product-card__title {
  margin: 0 0 5px; }

.product-recently-viewed-content .product-card__title a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.product-recently-viewed-content .product-card__price {
  margin: 0 0 10px; }

.product-recently-viewed-content .product-card__button {
  display: block;
  bottom: auto;
  position: relative; }

.product-recently-viewed-content .product-card__btn {
  max-width: 140px;
  padding: 5px 10px 4px 10px; }

.products-vertical-slider {
  position: relative;
  display: block;
  padding: 0; }

.products-vertical-slider .item {
  padding: 10px 0; }

.products-vertical-slider.has-arrows {
  padding-top: 15px;
  padding-bottom: 15px; }

.products-vertical-slider .slick-prev {
  left: 50%;
  top: 0;
  width: 15px;
  height: 15px;
  transform: translateX(-50%); }

.products-vertical-slider .slick-next {
  left: 50%;
  top: auto;
  width: 15px;
  height: 15px;
  right: auto;
  bottom: 0;
  transform: translateX(-50%); }

.products-vertical-slider .product-info {
  position: absolute;
  right: 100%;
  visibility: hidden;
  opacity: 0;
  margin-top: 0;
  display: flex;
  z-index: -1;
  padding: 0;
  pointer-events: none;
  transition: visibility 0s ease 0s,opacity .25s linear 0s; }

.products-vertical-slider:hover .product-info {
  visibility: visible;
  opacity: 1;
  pointer-events: auto; }

.products-vertical-slider .product-info .first {
  width: 200px;
  border-radius: 3px 0 0 3px;
  padding: 10px 15px 15px 15px;
  background: #fff;
  box-shadow: -2px 0 2px 1px rgba(0, 0, 0, 0.1); }

@media (min-width: 370px) {
  .header-mobile__item .item__mobile + .item__mobile {
    margin-left: 20px; }

  .halo-row .featured-blog, [data-slick-pc] .featured-blog {
    width: 300px; } }
@media (min-width: 551px) {
  .halo-column.column-10 .halo-column__item, .halo-column.column-2 .halo-column__item, .halo-column.column-3 .halo-column__item, .halo-column.column-4 .halo-column__item, .halo-column.column-5 .halo-column__item, .halo-column.column-6 .halo-column__item, .halo-column.column-7 .halo-column__item, .halo-column.column-8 .halo-column__item, .halo-column.column-9 .halo-column__item {
    width: 50%; }

  .halo-column__item--full {
    width: 100% !important; }

  .gdpr {
    font-size: 16px;
    left: 15px;
    bottom: 15px;
    right: auto;
    max-width: 470px; }

  .gdpr--right {
    left: 15px;
    right: auto; }

  .someone-purchased-modal {
    bottom: 15px;
    left: 15px;
    right: auto; }

  .someone-purchased-modal--right {
    left: 15px;
    right: auto; }

  .gdpr + .someone-purchased-modal {
    bottom: 160px; }

  .product-suggest {
    width: 100%; }

  .product-suggest .product-image {
    width: 100px;
    height: 125px; }

  .product-suggest .column-right {
    width: calc(100% - 100px);
    padding: 10px 45px 10px 20px; }

  .product-notification .close {
    top: 10px;
    right: 10px; }

  .halo-row .featured-blog, [data-slick-pc] .featured-blog {
    width: 370px; }

  .instagram__item {
    width: 33.33333333%; }

  .sidebar_mobile > .icon {
    width: 40px;
    height: 40px; }

  .cart-quickview__footer .cart__submit-controls .btn, .cart-quickview__footer .cart__submit-controls .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .cart-quickview__footer .cart__submit-controls .shopify-payment-button__button--unbranded {
    width: 100%;
    margin-left: 15px; }

  .cart-quickview__footer .cart__submit-controls .cart__submit {
    margin-left: 0;
    margin-right: 15px; }

  .cart-quickview__table .cart__content-wrapper {
    width: 100%; }

  .newsletter--content {
    padding: 30px; }

  .newsletter--heading {
    font-size: 24px;
    margin: 0 0 15px 0; }

  .newsletter--form {
    margin-top: 20px;
    margin-bottom: 20px; }

  .lst-seen-widget.is-show-widget {
    right: 15px; }

  .hero__countdownWrapper, .slideshow__countdownWrapper {
    font-size: 16px; }

  .hero__image--background, .slideshow__image--background {
    width: 100%;
    height: auto; }

  .hero__image--backgroundMobile, .slideshow__image--backgroundMobile {
    display: none; }

  .hero__image--backgroundMobile + .hero__image--background, .slideshow__image--backgroundMobile + .slideshow__image--background {
    display: block; }

  .hero--small .hero__image, .slideshow--small .slideshow__image {
    height: 240px; }

  .hero--medium .hero__image, .slideshow--medium .slideshow__image {
    height: 290px; }

  .hero--large .hero__image, .slideshow--large .slideshow__image {
    height: 360px; }

  [data-section-type=icon-with-text] .slick-slider .slick-slide .halo-row__item {
    border-left: 1px solid #ebebeb; }

  [data-section-type=icon-with-text] .slick-slider .slick-slide:first-child .halo-row__item {
    border-left: none; }

  .product__group .spr-badge + .product__sold {
    margin-left: 25px;
    display: inline-block;
    margin-top: 0; } }
@media (min-width: 768px) {
  .padding-top-50, .padding-top-60, .padding-top-70 {
    padding-top: 50px; }

  .padding-bottom-50, .padding-bottom-60, .padding-bottom-70 {
    padding-bottom: 50px; }

  .padding-top-100, .padding-top-80, .padding-top-90 {
    padding-top: 60px; }

  .padding-bottom-100, .padding-bottom-80, .padding-bottom-90 {
    padding-bottom: 60px; }

  .halo-column.column-10 .halo-column__item, .halo-column.column-3 .halo-column__item, .halo-column.column-4 .halo-column__item, .halo-column.column-5 .halo-column__item, .halo-column.column-6 .halo-column__item, .halo-column.column-7 .halo-column__item, .halo-column.column-8 .halo-column__item, .halo-column.column-9 .halo-column__item {
    width: 25%; }

  .hero__text, .slideshow__text {
    margin-bottom: 20px; }

  .slideshow__button {
    display: inline-block; }

  .hero__countdown--item .num {
    font-size: 30px; }

  .hero__countdown--item .label {
    font-size: 14px; }

  .hero__popup .close {
    right: -40px;
    color: #fff;
    font-size: 40px; }

  .hero--2 .hero__image {
    display: flex;
    justify-content: space-between; }

  .hero--2 .hero__image_item {
    display: inline-block;
    width: 50%; }

  .hero--2 .hero__image_item + .hero__image_item {
    margin-top: 0;
    margin-left: 10px; }

  .halo-column-image-with-text__item {
    width: 50%;
    margin-top: 30px; }

  .halo-column-image-with-text__item:nth-child(-n+2) {
    margin-top: 0; }

  .image-with-text {
    max-width: none; }

  .image-with-text--custom {
    display: flex;
    flex-direction: column-reverse; }

  .image-with-text--custom .image-with-text__content {
    padding: 15px 15px 20px 15px; }

  .halo-column-image-with-text-overlay {
    overflow: visible;
    white-space: normal;
    padding-left: 0;
    padding-bottom: 0;
    margin-left: -15px;
    margin-right: -15px; }

  .halo-column-image-with-text-overlay__item {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px; }

  .halo-column-image-with-text-overlay__item .image-with-text-overlay {
    display: block;
    margin: 30px 0 0 0; }

  .halo-column-image-with-text-overlay__item .image-with-text-overlay:first-child {
    margin: 0; }

  .image-with-text-overlay {
    width: 100%;
    display: block; }

  .image-with-text-overlay__image:before {
    content: none; }

  .image-with-text-overlay__image > img {
    top: auto;
    left: auto;
    width: 100%;
    position: relative;
    transform: none; }

  .image-with-text-overlay__image > .placeholder-svg {
    top: auto;
    left: auto;
    width: 100%;
    position: relative;
    transform: none; }

  .featured-blog-layout-custom {
    margin-left: -15px;
    margin-right: -15px; }

  .featured-blog-layout-custom__item {
    width: 50%;
    padding: 0 15px; }

  .featured-blog-layout-custom__item + .featured-blog-layout-custom__item {
    padding-top: 0; }

  .footer-row__item {
    width: 25%;
    display: inline-block;
    vertical-align: top; }

  .footer-row__item--large {
    width: 100%; }

  .footer-row__item--small {
    width: 25%; }

  .footer-row__item--mobile .footer-heading {
    border: none; }

  .footer-list a:before {
    content: '';
    bottom: 2px;
    left: 0;
    height: 1px;
    width: 0;
    position: absolute;
    transition: all .3s ease; }

  .footer-logo .social-icons {
    margin-top: 30px; }

  .search-form__product .product-card {
    width: 220px;
    max-width: none; }

  .image-with-text-2 {
    display: flex;
    align-items: stretch;
    justify-content: space-between; }

  .image-with-text-2__content, .image-with-text-2__image {
    width: 50%;
    vertical-align: top;
    display: inline-block; }

  .image-with-text-2__image:before {
    content: none; }

  .image-with-text-2__content {
    padding: 60px 30px; }

  .product__title {
    font-size: 24px; } }
@media (min-width: 992px) {
  .halo-column.column-10 .halo-column__item, .halo-column.column-5 .halo-column__item, .halo-column.column-6 .halo-column__item, .halo-column.column-7 .halo-column__item, .halo-column.column-8 .halo-column__item, .halo-column.column-9 .halo-column__item {
    width: 25%; }

  .site-footer__top {
    padding: 30px 0;
    text-align: center; }

  .gdpr {
    font-size: 16px;
    left: 15px;
    bottom: 15px;
    right: auto;
    max-width: 270px; }

  .gdpr--right {
    left: auto;
    right: 15px; }

  .someone-purchased-modal {
    bottom: 15px;
    left: 15px;
    right: auto; }

  .someone-purchased-modal--right {
    left: auto;
    right: 15px; }

  .gdpr.gdpr--right + .someone-purchased-modal {
    bottom: 15px; }

  .gdpr.gdpr--right + .someone-purchased-modal.someone-purchased-modal--right, .gdpr:not(.gdpr--right) + .someone-purchased-modal:not(.someone-purchased-modal--right) {
    bottom: 160px; }

  .slideshow.slick-dotted {
    margin-bottom: 0 !important; }

  .slideshow .slick-dots {
    bottom: 30px;
    position: absolute; }

  .hero--small .hero__image, .slideshow--small .slideshow__image {
    height: 265px; }

  .hero--medium .hero__image, .slideshow--medium .slideshow__image {
    height: 385px; }

  .hero--large .hero__image, .slideshow--large .slideshow__image {
    height: 480px; }

  .slideshow__content {
    top: 50%;
    padding: 0;
    z-index: 3;
    position: absolute;
    transform: translateY(-50%); }

  .hero__countdownWrapper, .hero__text, .slideshow__text {
    margin-bottom: 30px; }

  .hero__content.content--left, .hero__content.content--middle, .hero__content.content--right, .slideshow__content.content--left, .slideshow__content.content--middle, .slideshow__content.content--right {
    max-width: 450px; }

  .hero--2 .hero__image {
    display: flex;
    justify-content: space-between; }

  .hero--2 .hero__image_item {
    display: inline-block; }

  .hero--2 .hero__image_item + .hero__image_item {
    margin-top: 0;
    margin-left: 10px; }

  .hero--2 .hero__content.content--left, .hero--2 .hero__content.content--middle, .hero--2 .hero__content.content--right {
    max-width: 500px; }

  .modal-newsletter {
    display: flex;
    align-items: stretch; }

  .newsletter--content {
    width: 50%;
    padding: 50px 30px; }

  .newsletter--image {
    width: 50%;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background-size: cover;
    background-position: center; }

  .modal-newsletter .close {
    color: #fff; }

  .product-single {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start; }

  .product-single__photos {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding-right: 15px; }

  .product-single__details {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding-left: 0; }

  .product-single__photos .wrapper-image {
    position: relative;
    display: inline-block;
    width: calc(100% - 85px); }

  .product-single__photos .thumbnails-wrapper {
    width: 85px;
    display: inline-block; }

  .product-quickview-template__container .product-single__photos {
    padding: 30px; }

  .product-quickview-template__container .product-single__details {
    padding: 30px 30px 30px 0; }

  @-moz-document url-prefix() {
    .product-quickview-template__container .product-wrapper {
      margin-bottom: 30px; } }

  .product-quickview-template__container .product-single__photos .product_badges {
    left: 30px;
    top: 45px; } }
@media (min-width: 1025px) {
  .padding-top-40 {
    padding-top: 40px; }

  .padding-bottom-40 {
    padding-bottom: 40px; }

  .padding-top-50 {
    padding-top: 50px; }

  .padding-bottom-50 {
    padding-bottom: 50px; }

  .padding-top-60 {
    padding-top: 60px; }

  .padding-bottom-60 {
    padding-bottom: 60px; }

  .padding-top-70 {
    padding-top: 70px; }

  .padding-bottom-70 {
    padding-bottom: 70px; }

  .padding-top-80 {
    padding-top: 80px; }

  .padding-bottom-80 {
    padding-bottom: 80px; }

  .padding-top-90 {
    padding-top: 90px; }

  .padding-bottom-90 {
    padding-bottom: 90px; }

  .padding-top-100 {
    padding-top: 100px; }

  .padding-bottom-100 {
    padding-bottom: 100px; }

  .halo-row[data-slick-pc], .halo-row[data-slick] {
    overflow: hidden; }

  .halo-row, .halo-row.slick-slider {
    width: auto;
    padding: 0;
    min-width: 100%;
    margin-left: -15px;
    margin-right: -15px;
    overflow: visible; }

  [data-section-type=product-list] .halo-row {
    padding: 0; }

  [data-section-type=product-list] .slick-prev {
    left: 15px; }

  [data-section-type=product-list] .slick-next {
    right: 15px; }

  .halo-row.slick-slider .halo-row__item, .halo-row__item {
    width: 50%;
    margin-right: 0;
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px; }

  .halo-row__item--full {
    width: 100%; }

  .halo-row.column-1 .halo-row__item {
    width: 100%; }

  .halo-row.column-2 .halo-row__item {
    width: 50%; }

  .halo-row.column-3 .halo-row__item {
    width: 33.3333333%; }

  .halo-row.column-4 .halo-row__item {
    width: 25%; }

  .halo-row.column-5 .halo-row__item {
    width: 20%; }

  .halo-row.column-6 .halo-row__item {
    width: 16.6666666%; }

  .halo-row.column-7 .halo-row__item {
    width: 14.2857142%; }

  .halo-row.column-8 .halo-row__item {
    width: 12.5%; }

  .halo-row.column-9 .halo-row__item {
    width: 11.1111111%; }

  .halo-row.column-10 .halo-row__item {
    width: 10%; }

  .halo-column {
    margin: 0 -15px; }

  .halo-column__item {
    padding: 0 15px;
    margin: 30px 0 0 0; }

  .halo-column.column-1 .halo-column__item {
    width: 100%; }

  .halo-column.column-1 .halo-column__item:first-child {
    margin-top: 0; }

  .halo-column.column-2 .halo-column__item {
    width: 50%; }

  .halo-column.column-2 .halo-column__item:nth-child(-n+2) {
    margin-top: 0; }

  .halo-column.column-3 .halo-column__item {
    width: 25%; }

  .halo-column.column-3 .halo-column__item:nth-child(-n+3) {
    margin-top: 0; }

  .halo-column.column-4 .halo-column__item {
    width: 25%; }

  .halo-column.column-4 .halo-column__item:nth-child(-n+4) {
    margin-top: 0; }

  .halo-column.column-5 .halo-column__item {
    width: 20%; }

  .halo-column.column-5 .halo-column__item:nth-child(-n+5) {
    margin-top: 0; }

  .halo-column.column-6 .halo-column__item {
    width: 16.6666666%; }

  .halo-column.column-6 .halo-column__item:nth-child(-n+6) {
    margin-top: 0; }

  .halo-column.column-7 .halo-column__item {
    width: 14.2857142%; }

  .halo-column.column-7 .halo-column__item:nth-child(-n+7) {
    margin-top: 0; }

  .halo-column.column-8 .halo-column__item {
    width: 12.5%; }

  .halo-column.column-8 .halo-column__item:nth-child(-n+8) {
    margin-top: 0; }

  .halo-column.column-9 .halo-column__item {
    width: 11.1111111%; }

  .halo-column.column-9 .halo-column__item:nth-child(-n+9) {
    margin-top: 0; }

  .halo-column.column-10 .halo-column__item {
    width: 10%; }

  .halo-column.column-10 .halo-column__item:nth-child(-n+10) {
    margin-top: 0; }

  .page {
    padding-bottom: 100px;
    display: block; }

  .page-search {
    min-height: calc(100vh - 175px); }

  .page-sidebar {
    top: auto;
    left: auto;
    z-index: 5;
    float: left;
    width: 290px;
    display: inline-block;
    box-shadow: none;
    position: relative;
    background-color: transparent;
    max-width: none; }

  .page-sidebar + .page-content {
    padding-left: 30px;
    width: calc(100% - 290px); }

  .page-sidebar__close {
    display: none; }

  .page-sidebar__content {
    padding: 0;
    overflow: visible; }

  .collection-list__action:before {
    width: 0;
    content: "";
    height: 1px;
    left: 0;
    top: calc(50% - 1px);
    position: absolute;
    display: inline-block;
    transition: all .3s ease; }

  .collection-list__action:hover {
    padding-left: 20px; }

  .collection-list__action:hover:before {
    width: 16px; }

  .header-sticky.is-sticky, .site-header {
    z-index: 99; }

  .header-PC {
    display: block; }

  .header-mobile {
    display: none; }

  .header-sticky.is-sticky {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.1); }

  .login-form {
    left: 50%;
    right: auto;
    width: 290px;
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    transform: translateX(-50%);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1); }

  .login-form__header {
    padding-left: 30px;
    padding-right: 30px; }

  .login-form__close {
    right: 30px; }

  .login-form__content {
    padding: 30px; }

  .login-form__form .form-field {
    margin-bottom: 25px; }

  .login-form__close[data-close-login-form-pc] {
    display: block; }

  .login-form__close[data-close-login-form] {
    display: none; }

  .announcement-bar__slide {
    max-width: 770px; }

  .announcement-bar__message {
    font-size: 16px; }

  .announcement-bar__item {
    padding: 17px 15px 14px 15px; }

  .search-form__product-title, .search-form__trending-title {
    margin-bottom: 30px; }

  .search-form-wrapper .search-form {
    top: 17%; }

  .search-form-wrapper.custom .search-form {
    top: 15%; }

  .search-form__results-wrapper {
    max-height: calc(100vh - 200px); }

  .search-bar {
    height: 50px; }

  .search-bar input {
    height: 50px;
    width: calc(100% - 50px); }

  .search-bar button {
    width: 50px;
    height: 50px;
    line-height: 50px; }

  .search-form--close {
    display: block; }

  .site-nav .menu-lv-1--last .no-mega-menu .menu-lv-1 > .nav-action a, .site-nav .no-mega-menu .menu-lv-2 > .nav-action a, .site-nav .no-mega-menu .menu-lv-3 > .nav-action a, .site-nav .no-mega-menu .menu-lv-3 > .nav-action span.text {
    padding-left: 0;
    transition: all .3s ease; }

  .site-nav .menu-lv-1--last .menu-lv-1 > .nav-action a:before, .site-nav .no-mega-menu .menu-lv-2 > .nav-action a:before, .site-nav .no-mega-menu .menu-lv-3 > .nav-action a:before, .site-nav .no-mega-menu .menu-lv-3 > .nav-action span.text:before {
    bottom: 50%; }

  .site-nav .menu-lv-1--last .no-mega-menu .menu-lv-1 > .nav-action:hover a:before, .site-nav .no-mega-menu .menu-lv-2 > .nav-action:hover a:before, .site-nav .no-mega-menu .menu-lv-3 > .nav-action:hover a:before, .site-nav .no-mega-menu .menu-lv-3 > .nav-action:hover span.text:before {
    width: 25px; }

  .site-nav .menu-lv-1--last .no-mega-menu .menu-lv-1 > .nav-action:hover a, .site-nav .no-mega-menu .menu-lv-2 > .nav-action:hover a, .site-nav .no-mega-menu .menu-lv-3 > .nav-action:hover a, .site-nav .no-mega-menu .menu-lv-3 > .nav-action:hover span.text {
    padding-left: 35px; }

  .site-nav .dropdown-megamenu.style_1 .dropdown-megamenu-left {
    padding: 30px; }

  .site-nav .mega-menu.style_2 .menu-lv-2 > .nav-action, .site-nav .mega-menu.style_2 .menu-lv-3 > .nav-action {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }

  .footer-sticky {
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    position: fixed; }

  .footer-logo .social-icons {
    margin-top: 50px; }

  .footer-row {
    width: auto;
    min-width: 100%;
    margin: 0 -15px;
    display: flex;
    flex-wrap: nowrap;
    align-items: start;
    justify-content: space-between; }

  .footer-row__item {
    width: 20%;
    margin-bottom: 0; }

  .footer-row__item:last-child {
    text-align: right; }

  .footer-row__item:first-child {
    text-align: left; }

  .footer-row__item--large {
    width: 40%; }

  .footer-row__item--small {
    width: 13.33333333%; }

  .footer-list a:before {
    content: '';
    bottom: -1px;
    left: 0;
    height: 1px;
    width: 0;
    position: absolute;
    transition: all .3s ease; }

  .footer-list a:hover:before {
    width: 100%; }

  .footer-about_us .footer-list {
    max-width: 320px; }

  .site-footer__bottom {
    padding: 30px 0 45px; }

  .site-footer__bottom .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between; }

  .site-footer__bottom__item {
    width: 33.33333333%; }

  .site-footer__bottom__item:nth-child(1) {
    text-align: left; }

  .site-footer__bottom__item:nth-child(2) {
    text-align: center; }

  .site-footer__bottom__item:nth-child(3) {
    text-align: right; }

  .payment-methods--item {
    margin-bottom: 0; }

  .payment-methods--item + .payment-methods--item {
    margin-left: 15px; }

  .newsletter--form .newsletter__input {
    height: 50px;
    line-height: 50px; }

  .newsletter--form .btn, .newsletter--form .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .newsletter--form .shopify-payment-button__button--unbranded {
    height: 50px;
    line-height: 50px; }

  .footer--language--currency {
    display: block; }

  .hero--small .hero__image, .slideshow--small .slideshow__image {
    height: 400px; }

  .hero--medium .hero__image, .slideshow--medium .slideshow__image {
    height: 550px; }

  .hero--large .hero__image, .slideshow--large .slideshow__image {
    height: 720px; }

  .hero__subheading, .slideshow__subheading {
    font-size: 18px; }

  .hero__text, .slideshow__text {
    font-size: 16px;
    font-weight: 500; }

  .hero__heading, .hero__subheading, .slideshow__heading, .slideshow__subheading {
    margin-bottom: 20px; }

  .hero__countdownWrapper, .hero__text, .slideshow__countdownWrapper, .slideshow__text {
    margin-bottom: 35px; }

  .slideshow .slick-arrow {
    z-index: 5;
    width: 50px;
    height: 50px;
    opacity: 0;
    visibility: hidden;
    line-height: 50px;
    border-radius: 50%;
    transition: all .3s ease;
    display: block !important; }

  .slideshow .slick-arrow svg {
    width: 100%;
    height: 100%;
    padding: 0 10px;
    display: inline-block; }

  .slideshow .slick-prev {
    left: 5%; }

  .slideshow .slick-next {
    right: 5%; }

  .slideshow .slick-arrow:hover, .slideshow:hover .slick-arrow:hover {
    opacity: 1; }

  .slideshow:hover .slick-arrow {
    opacity: .5;
    visibility: visible; }

  .hero__content.content--left, .slideshow__content.content--left {
    left: calc((100% - 1100px)/ 2);
    max-width: 450px;
    text-align: left;
    transform: translateY(-50%); }

  .hero__content.content--right, .slideshow__content.content--right {
    right: calc((100% - 1100px)/ 2);
    max-width: 450px;
    text-align: right;
    transform: translateY(-50%); }

  .hero__content.content--middle, .slideshow__content.content--middle {
    left: 50%;
    max-width: 450px;
    text-align: center;
    transform: translate(-50%, -50%); }

  .hero__image--background, .slideshow__image--background {
    width: 100%;
    height: auto; }

  .hero__button {
    min-width: 165px; }

  .hero--2 .hero__content.content--left, .hero--2 .hero__content.content--middle, .hero--2 .hero__content.content--right {
    max-width: 570px;
    padding: 50px; }

  .halo-row .featured-blog, [data-slick-pc] .featured-blog {
    width: auto; }

  .featured-blog-layout-custom__item + .featured-blog-layout-custom__item {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px; }

  .featured-blog.text-center .featured-blog__content {
    padding-left: 40px;
    padding-right: 40px; }

  .featured-blog__content {
    padding-top: 30px; }

  .featured-blog__title {
    margin: 0 0 7px 0;
    font-size: 20px; }

  .featured-blog__meta {
    margin: 0 0 7px 0; }

  .featured-blog__excerpt {
    margin-top: 25px;
    margin-bottom: 35px;
    overflow: visible;
    display: block; }

  .featured-blog__button .btn, .featured-blog__button .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .featured-blog__button .shopify-payment-button__button--unbranded {
    min-width: 200px; }

  .featured-blog__excerpt, .featured-blog__excerpt span {
    -webkit-line-clamp: 2; }

  .featured-blog--custom .featured-blog__content {
    background-color: #fff;
    padding: 30px 30px 0 0;
    margin-top: -20%;
    width: 78%; }

  .instagram {
    overflow: visible;
    white-space: normal; }

  .instagram__item {
    width: 20%;
    float: left; }

  .instagram__item:first-child {
    width: 40%; }

  .instagram-load-more {
    margin-top: 35px; }

  .instagram-load-more .icon {
    width: 40px;
    height: 40px; }

  [data-section-type=instagram-2] .container {
    font-size: 0; }

  [data-section-type=instagram-2] .section-header {
    margin-bottom: 0;
    width: 22%;
    vertical-align: top;
    display: inline-block;
    text-align: left !important; }

  [data-section-type=instagram-2] .instagram-2 {
    width: 78%;
    vertical-align: top;
    display: inline-block; }

  .sidebar_mobile_wrapper {
    display: none;
    margin-bottom: 0; }

  .modal-lg {
    max-width: 970px; }

  .modal-newsletter {
    overflow: visible; }

  .newsletter--content {
    padding: 100px 75px 120px 75px; }

  .newsletter--subheading {
    font-size: 18px;
    margin: 0 0 15px 0; }

  .newsletter--heading {
    font-size: 32px;
    margin: 0 0 20px 0; }

  .newsletter--form {
    margin-top: 30px;
    margin-bottom: 25px; }

  .cart-quickview_header .item {
    display: block;
    top: 50%;
    right: 30px;
    font-weight: 400;
    line-height: 22px;
    position: absolute;
    transform: translateY(-50%); }

  .cart-quickview__progress_bar .progress_bar_shipping, .cart-quickview__progress_bar .progress_bar_shipping_message {
    padding-left: 30px;
    padding-right: 30px; }

  .cart-quickview__table .cart__content-wrapper {
    width: 100%; }

  .cart-quickview__table .cart__remove {
    top: 16px; }

  .cart-quickview_content {
    padding: 0 30px 30px 30px; }

  .cart-quickview_product--header {
    margin-bottom: 40px; }

  .cart-quickview__table td {
    padding-top: 32px;
    padding-bottom: 32px; }

  .before-you-leave__header {
    padding: 19px 30px 19px; }

  .before-you-leave__bg {
    padding: 40px 30px 30px 30px; }

  .before-you-leave__bg .rte {
    padding-left: 20px;
    padding-right: 20px; }

  .before-you-leave__content--title {
    padding: 18px 30px; }

  .before-you-leave__content--product {
    padding: 30px 30px 50px 30px; }

  .before-you-leave__content--product .slick-slide > div {
    margin-bottom: 30px; }

  .before-you-leave__button {
    padding-top: 50px; }

  .before-you-leave__content--product .product-card--2 .product-card__image {
    width: 120px; }

  .before-you-leave__content--product .product-card--2 .product-card__content {
    width: calc(100% - 120px); }

  .before-you-leave__content--product .product-card--2 .product-card__variant--item label {
    width: 22px;
    height: 22px;
    line-height: 22px; }

  .before-you-leave__content--product .product-card--2 .product-card__variant--item--last a {
    height: 22px;
    line-height: 22px; }

  .product-edit-wrapper {
    display: block;
    padding: 30px; }

  .search-form__product .product-card {
    width: 100%;
    max-width: none; }

  .product-single__photos .wrapper-image {
    position: relative;
    display: inline-block;
    width: calc(100% - 100px); }

  .product-single__photos .thumbnails-wrapper {
    width: 100px; }

  .product-single__thumbnails:not(.slick-slider) .product-single__thumbnails-item {
    width: 100%;
    display: block; }

  .product-single__thumbnails .slick-next, .product-single__thumbnails .slick-prev {
    width: 30px;
    height: 30px; }

  .product__title {
    margin: 0 0 10px 0; }

  .product__title--padding {
    padding-right: 80px; }

  .product__group {
    margin-bottom: 12px; }

  .product-form__item, .product__countdown, .product__meta, .product__policies, .product__price, .product__short-description {
    margin-bottom: 20px; }

  .product__customers-view {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb; }

  .product__total-price {
    margin-bottom: 25px; }

  .product-wrapper {
    padding: 0;
    max-width: 700px;
    margin: 0 auto; }

  .swatch .swatch-element {
    margin: 0 10px 10px 0; }

  .lst-seen-widget.is-show-widget {
    right: 45px; }

  .qty-group input[data-quantity-input] {
    height: 44px; }

  #product-quickview .modal-dialog.modal-lg {
    max-width: 970px; }

  #product-quickview .modal-body {
    max-height: 620px; }

  .product-quickview-template__container .product-single__details, .product-quickview-template__container .product-single__photos {
    height: 620px; }

  .product-quickview-template__container .product-single__photos {
    width: 50%;
    padding: 30px; }

  .product-quickview-template__container .product-single__details {
    width: 50%;
    padding: 30px 30px 30px 0; }

  @-moz-document url-prefix() {
    .product-quickview-template__container .product-wrapper {
      margin-bottom: 30px; } }

  .product-quickview-template__container .product-single__photos .product_badges {
    left: 30px;
    top: 50px; }

  .product-quickview-template__container .product-single__photos-wrapper {
    width: calc(100% - 80px); }

  .product-quickview-template__container .thumbnails-wrapper {
    width: 80px;
    padding-left: 20px; }

  .image-with-text-2 {
    display: flex;
    align-items: stretch;
    justify-content: space-between; }

  .image-with-text-2__content, .image-with-text-2__image {
    width: 50%;
    vertical-align: top;
    display: inline-block; }

  .image-with-text-2__image:before {
    content: none; }

  .image-with-text-2__content {
    display: block;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 80px;
    padding-bottom: 80px; }

  .image-with-text-2--right .image-with-text-2__content {
    order: -1; }

  .image-with-text-2__content .section-header > .subtitle {
    margin-bottom: 20px; }

  .image-with-text-2__content .section-header > p {
    margin-top: 25px; }

  .image-with-text-2__content .section-header > .btn, .image-with-text-2__content .shopify-payment-button .section-header > .shopify-payment-button__button--unbranded, .shopify-payment-button .image-with-text-2__content .section-header > .shopify-payment-button__button--unbranded {
    margin-top: 35px;
    min-width: 200px; }

  .gdpr {
    left: 30px;
    bottom: 30px; }

  .gdpr--right {
    left: auto;
    right: 30px; }

  .someone-purchased-modal {
    bottom: 30px;
    left: 30px;
    right: auto; }

  .someone-purchased-modal--right {
    left: auto;
    right: 30px; }

  .gdpr.gdpr--right + .someone-purchased-modal {
    bottom: 30px; }

  .gdpr.gdpr--right + .someone-purchased-modal.someone-purchased-modal--right, .gdpr:not(.gdpr--right) + .someone-purchased-modal:not(.someone-purchased-modal--right) {
    bottom: 200px; } }
@media (min-width: 1280px) {
  [data-section-type=product-list] .halo-column, [data-section-type=product-list] .halo-row {
    padding-left: 90px;
    padding-right: 90px; }

  [data-section-type=product-list] .slick-prev {
    left: 30px; }

  [data-section-type=product-list] .slick-next {
    right: 30px; }

  .halo-column-image-with-text__item {
    margin-top: 50px; }

  .halo-column-image-with-text__item:nth-child(-n+2) {
    margin-top: 0; }

  .halo-column-image-with-text__item:nth-child(even) {
    padding-left: 50px;
    padding-right: 50px; }

  .image-with-text__content {
    display: block;
    padding: 50px 50px 20px; }

  .image-with-text--custom .image-with-text__content {
    padding: 20px 50px 50px; }

  .image-with-text__content .title {
    font-size: 28px;
    margin: 0 0 25px; }

  .image-with-text__content .link:before {
    bottom: -3px; }

  .halo-column-image-with-text-overlay__item:nth-child(even) {
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px; }

  .halo-column-image-with-text-overlay__item .image-with-text-overlay {
    display: block;
    margin: 50px 0 0 0; }

  .halo-column-image-with-text-overlay__item .image-with-text-overlay:first-child {
    margin: 0; }

  .image-with-text-overlay__content .title {
    font-size: 28px; }

  .image-with-text-overlay__content .link {
    font-size: 16px; }

  .halo-column-image-with-text-overlay .section-footer {
    display: block;
    margin-top: 30px; }

  [data-section-type=newsletter] .section-header {
    width: 50%;
    margin-bottom: 0;
    padding-right: 15px;
    vertical-align: top;
    display: inline-block;
    white-space: nowrap;
    text-align: left !important; }

  [data-section-type=newsletter] .section-header .title {
    margin: 0;
    width: 45%;
    padding-right: 15px;
    white-space: normal;
    vertical-align: top;
    display: inline-block;
    position: relative; }

  [data-section-type=newsletter] .section-header p {
    margin: 0;
    width: 55%;
    font-weight: 500;
    padding-right: 15px;
    vertical-align: top;
    white-space: normal;
    display: inline-block; }

  [data-section-type=newsletter] .form-single-field {
    width: 50%;
    max-width: none;
    padding-left: 15px;
    vertical-align: top;
    display: inline-block; }

  [data-section-type=newsletter] .form-single-field .input-group__btn {
    margin-left: 15px; } }
@media (min-width: 1400px) {
  .product-single__photos {
    width: 50%;
    padding-right: 30px; }

  .product-single__details {
    width: 50%; }

  #product-quickview .modal-dialog.modal-lg {
    max-width: 1170px; }

  #product-quickview .modal-body {
    max-height: 735px; }

  .product-quickview-template__container .product-single__details, .product-quickview-template__container .product-single__photos {
    height: 735px; }

  .product-quickview-template__container .product-single__photos {
    width: 50%;
    padding: 15px; }

  .product-quickview-template__container .product-single__details {
    width: 50%;
    padding: 45px 45px 45px 0; }

  @-moz-document url-prefix() {
    .product-quickview-template__container .product-wrapper {
      margin-bottom: 45px; } }

  .product-quickview-template__container .product-single__photos .product_badges {
    left: 45px;
    top: 60px; }

  .product-quickview-template__container .product-single__photos-wrapper {
    width: calc(100% - 100px); }

  .product-quickview-template__container .thumbnails-wrapper {
    width: 100px;
    padding-left: 30px; } }
@media (min-width: 1600px) {
  .hero__content.content--left, .slideshow__content.content--left {
    left: calc((100% - 1300px)/ 2);
    max-width: 450px;
    text-align: left;
    transform: translateY(-50%); }

  .hero__content.content--right, .slideshow__content.content--right {
    right: calc((100% - 1300px)/ 2);
    max-width: 450px;
    text-align: right;
    transform: translateY(-50%); }

  .hero--2 .hero__content.content--left, .hero--2 .hero__content.content--middle, .hero--2 .hero__content.content--right {
    max-width: 570px;
    padding: 90px 60px 80px 60px; }

  .featured-blog-layout-custom__item + .featured-blog-layout-custom__item {
    padding-top: 60px;
    padding-left: 115px;
    padding-right: 115px; }

  .featured-blog--small {
    margin-bottom: 50px; }

  .featured-blog--custom .featured-blog__content {
    padding: 40px 40px 0 0; }

  .halo-column-image-with-text {
    display: block;
    position: relative; }

  .halo-column-image-with-text__item {
    width: 50%;
    margin-top: 100px; }

  .halo-column-image-with-text__item:nth-child(-n+2) {
    margin-top: 0; }

  .halo-column-image-with-text__item:nth-child(even) {
    padding-left: 115px;
    padding-right: 115px; }

  .image-with-text__content {
    display: block;
    padding: 70px 70px 30px; }

  .image-with-text--custom .image-with-text__content {
    padding: 30px 70px 70px; }

  .image-with-text__content .title {
    font-size: 36px;
    margin: 0 0 25px; }

  .image-with-text__content .link {
    font-size: 16px; }

  .image-with-text-2__content {
    padding-top: 12%;
    padding-bottom: 12%;
    padding-left: 130px;
    padding-right: 130px; }

  .image-with-text-2__content .section-header > p {
    margin-top: 35px; }

  .image-with-text-2__content .section-header > .btn, .image-with-text-2__content .shopify-payment-button .section-header > .shopify-payment-button__button--unbranded, .shopify-payment-button .image-with-text-2__content .section-header > .shopify-payment-button__button--unbranded {
    margin-top: 45px; }

  .halo-column-image-with-text-overlay__item:nth-child(even) {
    padding-top: 100px;
    padding-left: 115px;
    padding-right: 115px; }

  .halo-column-image-with-text-overlay__item .image-with-text-overlay {
    display: block;
    margin: 100px 0 0 0; }

  .halo-column-image-with-text-overlay__item .image-with-text-overlay:first-child {
    margin: 0; }

  .image-with-text-overlay__content .title {
    font-size: 36px; }

  .image-with-text-overlay__content .link {
    font-size: 16px; }

  .halo-column-image-with-text-overlay .section-footer {
    margin-top: 80px; }

  [data-section-type=instagram-2] .section-header .title, [data-section-type=newsletter] .section-header .title {
    top: -10px;
    font-size: 32px;
    line-height: 1.5;
    padding-right: 10%; }

  [data-section-type=newsletter] .section-header p {
    padding-right: 10%; }

  [data-section-type=instagram-2] .instagram-2 .halo-column {
    margin-left: -65px;
    margin-right: -65px; }

  [data-section-type=instagram-2] .instagram-2 .halo-column .halo-column__item {
    padding-left: 65px;
    padding-right: 65px; }

  .instagram__item2 {
    margin-bottom: 50px; }

  .footer-newsletter .input-group__btn {
    margin-left: 15px; }

  .header-middle__center .logo-wrapper {
    padding: 40px 0; }

  .header-sticky.is-sticky .header-middle__center .logo-wrapper {
    padding: 20px 0; }

  .site-nav .dropdown-megamenu.style_1 .dropdown-megamenu-left {
    padding: 30px 30px 75px 75px; }

  .site-nav .dropdown-megamenu.style_2 .dropdown-megamenu-left {
    padding: 30px 75px 75px 75px; }

  .site-nav .dropdown-megamenu.style_3 .dropdown-megamenu-left {
    padding: 30px 75px 75px 75px; }

  [data-section-type=product-list] .halo-column, [data-section-type=product-list] .halo-row {
    padding-left: 140px;
    padding-right: 140px; }

  [data-section-type=product-list] .slick-prev {
    left: 60px; }

  [data-section-type=product-list] .slick-next {
    right: 60px; }

  .product-single__photos {
    width: 50%;
    padding-right: 15px; }

  .product-single__details {
    width: 50%; }

  .page-sidebar + .page-content {
    padding-left: 70px; } }
@media (min-width: 1920px) {
  .hero--small .hero__image, .slideshow--small .slideshow__image {
    height: 500px; }

  .hero--medium .hero__image, .slideshow--medium .slideshow__image {
    height: 770px; }

  .hero--large .hero__image, .slideshow--large .slideshow__image {
    height: 970px; }

  .image-with-text__content {
    display: block;
    padding: 80px 125px 30px; }

  .image-with-text--custom .image-with-text__content {
    padding: 30px 125px 80px; }

  .image-with-text-overlay__content .title {
    font-size: 48px; }

  .site-nav .dropdown-megamenu.style_1 .dropdown-megamenu-left--item {
    width: 50%; }

  .site-nav .dropdown-megamenu.style_1 .dropdown-megamenu-left--item:last-child {
    width: 50%;
    padding-left: 80px; }

  .product-single__photos {
    width: 50%;
    padding-right: 30px; }

  .product-single__details {
    width: 50%; } }
@media (max-width: 550px) {
  .before-you-leave__wrapper--disableMobile, .cart__progress_bar--disableMobile, .gdpr--disableMobile, .lst-seen-widget--disableMobile, .popup-newsletter-disableMobile, .someone-purchased-modal--disableMobile {
    display: none !important; }

  .open_beforeYouLeave .overlay_background {
    display: none; }

  [data-section-type=product-list] .halo-column > .halo-column__item {
    width: 50%;
    margin: 0 0 60px 0; }

  .announcement-bar__message strong > span {
    display: block; } }
@media (max-width: 767px) {
  [data-section-type=image-with-text-overlay] .container {
    padding-left: 0;
    padding-right: 0; }

  .hero--2 .hero__content, .hero--2 .hero__content.content--left, .hero--2 .hero__content.content--middle, .hero--2 .hero__content.content--right {
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    position: relative; }

  .hero--2 .hero__content {
    width: 100%;
    padding: 15px;
    max-width: 100%;
    margin-top: 15px;
    border: 1px solid #ebebeb; }

  .site-footer__middle {
    padding-top: 20px;
    padding-bottom: 20px; }

  .footer-row__item {
    width: 100% !important;
    margin-bottom: 0; }

  .footer-row__item:not(.footer-row__item--mobile) {
    margin-bottom: 40px; }

  .footer-row__item:not(.footer-row__item--mobile):last-child {
    margin-bottom: 0; }

  .footer-row__item:not(.footer-row__item--mobile) .footer-heading {
    margin-top: 10px; }

  .footer-row__item--mobile .footer-heading {
    position: relative;
    padding: 10px 0; }

  .footer-row__item--mobile .footer-heading:before {
    top: 50%;
    right: 4px;
    z-index: 2;
    content: "";
    width: 2px;
    height: 10px;
    position: absolute;
    transition: all .3s ease;
    transform: translateY(-50%); }

  .footer-row__item--mobile .footer-heading:after {
    top: 50%;
    right: 0;
    z-index: 2;
    content: "";
    width: 10px;
    height: 2px;
    position: absolute;
    transform: translateY(-50%); }

  .footer-row__item--mobile.open-dropdown .footer-heading:before {
    transform: translateY(-50%) rotate(90deg); }

  .footer-heading {
    margin-bottom: 0; }

  .footer-list {
    margin-top: 20px; } }
@media (min-width: 768px) and (max-width: 1024px) {
  .halo-row.column-1, .halo-row.column-2 {
    width: auto;
    padding: 0;
    min-width: 100%;
    margin-left: -8px;
    margin-right: -8px; }

  .halo-row.column-1 .halo-row__item, .halo-row.column-2 .halo-row__item {
    width: 50%;
    margin-right: 0;
    margin-bottom: 0;
    padding-left: 8px;
    padding-right: 8px; }

  .halo-row.column-1 .halo-row__item {
    width: 100%; }

  .halo-row.column-2 .halo-row__item {
    width: 50%; }

  .halo-row.column-1 .featured-blog, .halo-row.column-2 .featured-blog {
    width: 100%; }

  .footer-row__item {
    width: 50% !important;
    margin-bottom: 30px; } }
@media (min-width: 1200px) and (max-width: 1366px) {
  .search-form--close {
    top: 24%; }

  .search-form-wrapper .search-form {
    top: 22%; } }
@media (min-width: 1366px) and (max-width: 1600px) {
  .search-form--close {
    top: 24%; }

  .search-form-wrapper .search-form {
    top: 22%; } }
@media (min-width: 1600px) and (max-width: 1800px) {
  .search-form--close {
    top: 28%; }

  .search-form-wrapper .search-form {
    top: 26%; } }
/*============================================================================
  #Slick Slider overrides
    - If upgrading Slick's styles, use the following variables/functions
      instead of the slick defaults
    - Only overwrite slick's default styles starting at #Slick Slider SCSS
==============================================================================*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 1.875rem; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-loading .slick-list {
    background: white url(//muubio.com/cdn/shop/t/35/assets/ajax-loader.gif?v=41356863302472015721729519870) center center no-repeat; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  max-height: 100vh;
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.hero__image {
  position: relative;
  opacity: 0; }
  .slick-initialized .hero__image {
    opacity: 1;
    -moz-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -o-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    -webkit-animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87);
    animation: fadeIn 1s cubic-bezier(0.44, 0.13, 0.48, 0.87); }
  .hero__image img {
    display: block;
    width: 100%; }

.product-card__content {
  text-align: center; }

  /*
.btn-home{
   background: linear-gradient(to right, #3c86a5 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all .5s ease-out;
  border:1px solid rgba(106, 106, 106, 0.2);
  padding: 14px 28px;
  line-height: normal;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin: 0.5rem auto;
  color:#6a6a6a;
  
}
  
.btn-home:hover{
  background-position: left bottom;
  color:white;
}
  */
.cart-quickview__footer {
  /* background-color:rgba(0,0,0,0.05) !important;*/
  padding: 16px 32px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column; }

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

#the-final-countdown {
  text-align: center;
  color: black;
  padding: 0px;
  font-weight: 500;
  padding: 10px 0 10px 0; }

#the-final-countdown span {
  color: #3c86a5;
  font-weight: 700; }

.popup-sidebar__wrapper {
  height: 100%;
  flex-direction: column;
  display: flex; }

.h-full {
  height: 100% !important; }

.overflow-hidden {
  overflow: hidden; }

.overflow-x-hidden {
  overflow-x: hidden; }

.overflow-y-auto {
  overflow-y: auto; }

.cart__product-information {
  display: flex; }

.cart-quickview_content {
  padding: 0px !important; }

.cart-quickview__table {
  padding-left: 32px;
  padding-right: 32px;
  margin-bottom: 32px;
  padding-top: 17px; }

.cart-quickview_icon_slider {
  padding-left: 16px;
  padding-right: 16px;
  border-bottom: 1px solid silver; }

.item-center {
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-between; }

.cart__image-wrapper {
  flex-shrink: 0; }

.mini-cart-image {
  position: relative;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  height: auto; }

.cart__content-price {
  text-align: right !important;
  font-size: .6875rem; }

.cart-upsell {
  padding-left: 26px;
  padding-right: 26px;
  padding-top: 16px;
  padding-bottom: 32px;
  margin-top: 16px;
  border-top: 1px solid #090F1B;
  border-bottom: 1px solid #090F1B; }

.cart-upsell-title {
  padding-left: 6px;
  padding-right: 0;
  font-size: 18px;
  font-weight: 400;
  color: #090F1B; }

.cv_upsell_out {
  background-color: #fff; }

/*.upsell_atc{
  background-color :#000 !important;
  }
.cv_upsell_outer_products .btn.button.upsell_atc span{
  color:#fff !important;
}*/
.cv_upsell_out h3, .cv_upsell_out .h3 {
  font-size: 14px;
  font-weight: normal;
  padding: 0 20px;
  margin-bottom: 2px; }

/*.cv_upsell_outer_products .btn.button.upsell_atc {
  color: #fff !important;
  text-align: center;
  transition: all 0.2s linear;
  position: relative;
}*/
.cv_upsell_outer_products .btn.button.upsell_atc svg, .cv_upsell_outer_products .shopify-payment-button .button.upsell_atc.shopify-payment-button__button--unbranded svg, .shopify-payment-button .cv_upsell_outer_products .button.upsell_atc.shopify-payment-button__button--unbranded svg {
  height: 32px;
  width: 32px; }

.cv_upsell_outer_products .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto; }

.cv_upsell_outer_products .btn.button.upsell_atc:hover, .cv_upsell_outer_products .shopify-payment-button .button.upsell_atc.shopify-payment-button__button--unbranded:hover, .shopify-payment-button .cv_upsell_outer_products .button.upsell_atc.shopify-payment-button__button--unbranded:hover {
  background: #000 !important;
  border-color: #000;
  transition: all 0.2s linear; }

.cv_upsell_outer_products .checkmark.checkmark-active path {
  -webkit-animation: drawCheckmark 0.5s linear alternate forwards;
  animation: drawCheckmark 0.5s linear alternate forwards; }

.cv_upsell_outer_products .checkmark path {
  stroke-dasharray: 19.79 19.79;
  stroke-dashoffset: 19.79;
  stroke: #ffffff;
  opacity: 0; }

.cv_upsell_outer_products .btn.button.upsell_atc, .cv_upsell_outer_products .shopify-payment-button .button.upsell_atc.shopify-payment-button__button--unbranded, .shopify-payment-button .cv_upsell_outer_products .button.upsell_atc.shopify-payment-button__button--unbranded {
  font-size: 12px; }

.cv-upsell_pro_image {
  width: 100%;
  position: absolue;
  justify-content: center;
  align-items: center;
  display: flex; }

.cv_upsel_title {
  font-weight: 500 !important;
  line-height: 1.24;
  font-size: inherit;
  display: inline;
  font-weight: inherit;
  text-align: center; }

.upsell-information {
  padding-top: .5rem;
  font-size: 14px;
  display: flex;
  flex-direction: column; }

.flex {
  display: flex; }

.cv_upsel_repeated {
  padding-right: 10px; }

.upsell_atc {
  display: flex;
  width: 100%;
  text-transformation: uppercase;
  padding-left: .5rem;
  padding-right: .5rem;
  margin-top: .5rem;
  transition: all 0.2s linear;
  font-size: .625rem;
  height: 2.25rem;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  border-width: 1px;
  background-color: transparent;
  border-color: #e0e0e0;
  color: grey;
  font-size: 10px !important; }

.product-quantity-box {
  margin: 10px 0 0;
  width: 90px;
  float: right;
  position: relative; }

.cart_content .product-quantity-box .product-minus {
  line-height: 34px;
  font-size: 15px;
  height: 30px;
  padding-right: 2px;
  width: 25%;
  border-right: 0;
  color: 090F1B; }

.product-quantity-box .product-minus {
  background: #F2F2F2;
  font-weight: 300;
  position: relative;
  cursor: pointer;
  display: block;
  text-align: center;
  float: left;
  border: #e2e2e2 1px solid;
  color: black; }

.product-quantity-box .quantity {
  width: 50% !important;
  text-align: center;
  padding: 6px 15px;
  width: 38%;
  height: 44px;
  border-radius: 0;
  float: left;
  -webkit-appearance: none; }

.cart_content .product-quantity-box .quantity {
  padding: 0 5px;
  min-height: 30px;
  height: 30px; }

.cart_content .product-quantity-box .product-plus {
  line-height: 32px;
  font-size: 15px;
  line-height: 30px;
  height: 30px;
  padding-right: 2px;
  width: 25%; }

.product-quantity-box .product-plus {
  border-left: 0;
  font-size: 16px;
  line-height: 44px;
  background: #F2F2F2;
  font-weight: 300;
  position: relative;
  cursor: pointer;
  display: block;
  text-align: center;
  float: left;
  border: #e2e2e2 1px solid;
  color: black; }

.cart__content-qty {
  display: flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  width: 25%; }

.cart__qty {
  align-items: center;
  display: flex !important;
  -webkit-box-align: center; }

.button-minus {
  font-size: 18px;
  font-weight: 500;
  border-width: 0;
  width: 2rem !important;
  height: 2rem !important;
  background-color: transparent; }

.qty-box {
  font-size: 14px;
  color: 090F1B;
  text-align: center;
  width: 2rem;
  height: 2rem;
  border: 0px solid #e0e0e0;
  background-color: transparent;
  -webkit-appearance: none; }

.button-plus {
  font-size: 16px;
  font-weight: 300;
  border-width: 0;
  width: 2rem;
  height: 2rem;
  background-color: transparent;
  color: 090F1B; }

.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      display: none; }
      .slick-dots li button:before {
        top: 1px;
        transition: all .5s;
        content: '';
        width: 6px;
        height: 6px;
        background-color: #ffffff;
        position: absolute; }
        .slick-dots li button:before.slick-active:before {
          top: 0;
          width: 8px;
          height: 8px;
          margin-left: -2px;
          background-color: #964848; }

.slick-prev {
  left: 0;
  transform: rotate(180deg); }

.slick-next {
  right: 0; }

.slick-arrow {
  top: 50%;
  height: 26px;
  width: 14px;
  position: absolute;
  font-size: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
  background-image: url(https://image.flaticon.com/icons/png/512/60/60615.png);
  background-repeat: no-repeat; }

.delete-text-cart {
  text-decoration: none;
  font-size: 10px;
  color: grey;
  border-bottom: 0px !important; }

.cart-slider-benefices {
  padding-left: 0;
  padding-right: 0;
  padding-top: 16px;
  padding-bottom: 12px;
  box-sizing: border-box; }

.cart-slider-benefices-block {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  width: 100%;
  height: 2rem; }

.cart-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.cart-slider-item {
  flex-shrink: 0;
  width: 100%;
  height: 28px;
  position: reflative;
  transition-property: transform;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: flex; }

.cart-slider-icon {
  width: 22px;
  margin-right: 12px;
  height: auto;
  display: block;
  vertical-align: middle;
  margin-top: -4px; }

.cart-slider-text-top {
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  display: block;
  text-align: left;
  color: #090F1B; }

.cart-slider-benefices .slick-slider {
  margin-bottom: 0px !important; }

.hero {
  margin-top: -6%; }

.site-header {
  background-color: transparent; }

.header-middle {
  background-color: transparent;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 0px !important;
  padding-top: 0px !important; }

.header-sticky.is-sticky {
  background-color: white; }

.site-nav > .menu-lv-1 {
  margin-right: 70px !important; }

.site-nav > .menu-lv-1 > .nav-action {
  font-weight: 600 !important;
  color: #3C86A5 !important; }

.navUser-action {
  color: #3C86A5 !important;
  text-transform: capitalize !important; }

.header-middle__item + .header-middle__item {
  margin-left: 20px !important; }

.navUser-action .icon {
  color: #3C86A5 !important; }

.site-nav > .menu-lv-1 > .nav-action {
  font-size: 18px !important; }

/* Modification 08/06/2021 - Valentin Huard - "Amélioration d'un thème Shopify" */
.homePage-title {
  text-transform: none;
  letter-spacing: 0px; }

.homePage-form {
  text-align: center; }

.btn-home {
  background-color: white;
  border: 1px solid #090F1B;
  color: #090F1B;
  padding: 14px 28px;
  line-height: normal;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin: auto; }
  .btn-home:hover, .btn-home:focus {
    border-color: #3c86a5;
    color: white; }

.btn-home:hover,
.btn-home:focus {
  box-shadow: inset 300px 0 0 0 #3c86a5;
  background-color: #3c86a5; }

.richText-mainTitle {
  font-size: 2.5em !important;
  padding-bottom: 10px; }

.richText-title {
  color: black !important;
  padding-left: 5px; }

.richText-content {
  padding-top: 15px; }

.iconText-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 10%;
  margin-top: 40px; }

.iconText-item {
  text-align: center; }
  .iconText-item img {
    max-width: 50px; }
  .iconText-item .iconText-title {
    margin: 0; }

.footer-icon-list {
  align-items: center;
  justify-content: center; }

.drawer-product__delete {
  display: none; }

#shopify-section-header {
  z-index: 100;
  width: 100%; }

.slider-text_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-height: 500px; }

.footer-list li {
  margin-bottom: 0; }

/*Correction Grid homPage*/
.hero {
  margin-top: 0 !important; }

.halo-row {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.hero__image {
  opacity: 1 !important; }

.image-with-text-2__content {
  padding: 30px !important; }

@media screen and (max-width: 1725px) {
  .site-nav > .menu-lv-1 {
    margin-right: 30px !important; } }
@media (max-width: 1441px) {
  .header-mobile {
    display: flex;
    position: absolute;
    top: 20px;
    background-color: initial; }

  .header-mobile__item.text-right {
    display: none; }

  .page-width .halo-row {
    text-align: center; } }
.iconText-container__mobile {
  display: none !important; }

@media (max-width: 1025px) {
  .halo-row.column-3[data-slick-pc] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px; }
    .halo-row.column-3[data-slick-pc] .halo-row__item {
      padding-top: 30px; }

  .header-mobile {
    position: initial;
    top: initial; }

  #site-nav {
    display: block; }

  .header-mobile__item.text-right {
    display: table-cell; }

  .footer-background {
    border-top: solid 1px #787878;
    border-bottom: solid 1px #787878; }

  .footer-top-text {
    max-width: 100%; }

  .footer-icon-list {
    flex-direction: column;
    max-width: 100%;
    margin: auto;
    width: fit-content; }

  .footer-icon-block {
    width: 100%;
    display: flex;
    align-items: center; }

  .iconText-container {
    grid-template-columns: repeat(2, 1fr); }
    .iconText-container :last-child {
      grid-column: 1 /span 2; }

  .iconText-item {
    padding: 10px 0; }

  .drawer-product__container {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 5px; }

  .drawer-product__title {
    min-width: 100px !important;
    width: 100%; }

  .qty-box {
    padding-left: 0px;
    padding-right: 0px;
    width: 2rem;
    height: 2rem; }

  .button-minus {
    width: 2rem;
    height: 2rem; }

  .button-plus {
    width: 2rem;
    height: 2rem; }

  .cart-quickview__table {
    padding-right: 32px;
    padding-left: 32px; }

  .drawer-product__container :nth-child(3n) {
    grid-column: initial;
    grid-row: initial; }

  .drawer-product__container :first-child {
    grid-column: initial;
    grid-row: initial; }

  .iconText-container__mobile {
    display: block !important;
    padding-top: 30px;
    text-align: center; }
    .iconText-container__mobile img {
      width: 100px;
      margin: auto;
      margin-bottom: 10px; }

  .iconText-container {
    display: none; }

  .cart-upsell {
    padding-left: 26px;
    padding-right: 26px; } }
@media (max-width: 750px) {
  .homePage-title, .richText-mainTitle {
    font-size: 2em !important; }

  .iconText-container {
    grid-template-columns: 1fr; }
    .iconText-container :last-child {
      grid-column: 1; }

  .halo-section[data-section-type="image-with-text-2"] {
    padding: 30px 0; }

  .image-with-text-2__content {
    padding: 30px 10px !important; }

  .richText-content {
    padding-top: 25px; }

  .footerMobile {
    display: grid;
    grid-template-columns: 1fr; }
    .footerMobile :nth-child(2n) {
      grid-row: 1; } }
@media (max-width: 550px) {
  .homePage-title {
    font-size: 1.7em !important; }

  .richText-mainTitle {
    font-size: 2em !important; }

  .halo-row.column-3[data-slick-pc] {
    gap: 10px; }

  [data-slick-pc] .product-card {
    width: 160px; }

  .halo-row__item {
    margin-left: 0; }

  .halo-row.column-3[data-slick-pc] .halo-row__item {
    padding-top: 0; }

  .btn-home {
    font-size: 10px;
    padding: 14px 15px; } }
@media (max-width: 350px) {
  [data-slick-pc] .product-card {
    width: 125px; } }
/* Modification ALHENA */
.only-smartphone {
  display: none !important; }

@media (max-width: 500px) {
  .only-smartphone {
    display: block !important; }

  .title-with-line-second b {
    font-size: 18px; } }
.review-content {
  display: flex;
  flex-direction: row;
  align-items: center; }

.review-text-block {
  width: 40%;
  z-index: 5;
  background: #fff;
  padding: 100px; }

.review-content-slider {
  width: 60%; }

.review-content-slider .review-title {
  text-align: left; }

.open_cart {
  overflow: hidden; }

.cart__meta.small--text-left {
  position: relative; }

.cart-product-remove {
  position: absolute;
  right: 5px;
  top: 0px;
  cursor: pointer; }

#shopify-section-16228444854bbed11e .halo-column {
  padding: 0px !important; }

#shopify-section-16228444854bbed11e {
  margin-bottom: 70px; }

#shopify-section-1623151538cca1331a {
  margin-bottom: 70px; }

.footer-newsletter .btn-home:hover, .footer-newsletter .tbn-home:focus {
  background-color: white !important;
  box-shadow: unset; }

.upsell-cart-grid img {
  width: 90%;
  left: 90%;
  transform: translate(-95%, -50%); }
.upsell-cart-grid .product-card__button--wrapper {
  position: relative; }
.upsell-cart-grid button {
  display: block !important;
  width: 90%;
  margin: auto; }
.upsell-cart-grid a.product-card_btn {
  width: 90%;
  margin: auto; }
.upsell-cart-grid .product-card__price {
  display: none; }
.upsell-cart-grid .product-card__title a, .upsell-cart-grid .product-edit__title a {
  font-size: 16px;
  text-transform: uppercase;
  color: #090F1B !important;
  width: 100%; }

.product-card-cart-btn {
  padding: 8px 0px;
  display: flex;
  justify-content: center;
  align-items: center; }
  .product-card-cart-btn span {
    font-size: 10px;
    font-family: "futura-pt" !important; }

.footer-icon-block {
  display: flex;
  align-items: center; }

.card-header {
  border-bottom: 0 !important;
  background: 0 !important; }

.upsell-cart-grid .product-card__title {
  margin-bottom: 5px !important; }

/*.mobile-reassurance {
  display: none;
}*/
@media (max-width: 768px) {
  .review-content {
    flex-direction: column; }

  .review-text-block {
    width: 100%;
    padding: 20px; }

  .review-content-slider {
    width: 100%; }

  .cart__content-wrapper.drawer-product__title, ı
  .cart__content-qty {
    grid-column: 2 !important; }

  .cart__content-wrapper.cart__content-price {
    grid-column: 3 !important;
    grid-row: 1/span 2 !important; }

  .drawer-product__container {
    grid-template-columns: 0.5fr 1.5fr 1fr; }

  .button-minus,
  .button-plus {
    border: 1px solid #e0e0e0; }

  .popup-sidebar.popup-sidebar--right {
    width: 100% !important; }

  .site-footer__middle {
    padding: 0 15px;
    margin-top: 40px; }

  #shopify-section-16228444854bbed11e {
    margin-bottom: 0; }

  #shopify-section-1623151538cca1331a {
    margin-bottom: 30px; }

  #shopify-section-16204705871ae258ef {
    padding-top: 20px !important; }

  .product-card-cart-btn {
    padding: 7px; }
    .product-card-cart-btn span {
      font-size: 8px;
      letter-spacing: 1px; }

  .cart-quickview__footer {
    padding-bottom: 30px; }

  .mobile-reassurance {
    display: block; }

  .slider-recommandations {
    display: flex;
    justify-content: space-around;
    overflow: unset;
    flex-wrap: wrap; }
    .slider-recommandations .halo-row__item {
      width: 45%;
      margin-right: 0;
      margin-top: 55px; } }
.overlay--light .hero__image:after, .overlay--light .slideshow__image:after {
  background-color: transparent !important; }

.slider-card {
  box-shadow: 0px 0px 12px #d0d0d0;
  margin: 0 10px;
  padding: 10px;
  background-color: white;
  box-shadow: 3px 3px #cae2e7 !important;
  border: 1px solid #cae2e7 !important; }

.iconText-item .iconText-title {
  margin-top: 10px !important; }

#navigation-mobile {
  background-color: white !important; }

.site-nav-mobile .menu-lv-1 > .nav-action a, .site-nav-mobile .menu-lv-2 > .nav-action a, .site-nav-mobile .menu-lv-3 > .nav-action {
  color: #3c86a5; }

.site-nav-mobile {
  background-color: white; }

.site-nav-mobile .menu-lv-1, .site-nav-mobile .menu-lv-2, .site-nav-mobile .menu-lv-3 {
  border-bottom: 1px solid #cde0e4; }

.mobile-reassurance {
  padding-top: 5px; }

.product-single__details, .product-single__photos {
  margin-bottom: 0px !important; }

.hero__content, .slideshow__content {
  text-align: left !important; }

.popup-sidebar__wrapper .product-details__item {
  font-family: "futura-pt", sans-serif;
  color: #090f1b;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase; }

.product-details__item + .product-details__item:not(.product-details__item--last):before {
  content: "Couleur : " !important; }

.announcement-bar__message .rte b, .rte strong {
  color: #3c86a5 !important; }

.overlay--dark .hero__content .btn--secondary, .overlay--dark .hero__content .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .overlay--dark .hero__content .shopify-payment-button__button--unbranded, .overlay--dark .hero__content .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .overlay--dark .hero__content .shopify-payment-button__button--unbranded, .overlay--dark .slideshow__content .btn--secondary, .overlay--dark .slideshow__content .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .overlay--dark .slideshow__content .shopify-payment-button__button--unbranded, .overlay--dark .slideshow__content .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .overlay--dark .slideshow__content .shopify-payment-button__button--unbranded {
  background-color: white;
  color: #3c86a5;
  text-transform: uppercase; }

.image-with-text-2 {
  padding-bottom: 20px; }

/*.product-card__price.price--on-sale .price-item--regular{
  display:none;
}*/
.spr-badge {
  display: inline-flex !important;
  flex-direction: row-reverse; }

.page-blog .section-header {
  display: none; }

.page-blog {
  padding-left: 120px;
  padding-right: 120px; }
  @media only screen and (max-width: 767px) {
    .page-blog {
      padding-left: 20px;
      padding-right: 20px; } }

/* MODIFICATIONS CSS RÉMY DU 03 AVRIL 2023 */
.title-cart {
  color: #051320;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin: 0px; }

.cart-quickview_header {
  background-color: #B6D5D8;
  padding: 16px 32px; }

.cart_content-wrapper-title-count {
  width: 100%;
  height: 100%;
  position: relative;
  padding-left: 8px; }

.product-details__item .product-details__item--variant-option .item-option-text .variant-option-text {
  font-size: 14px;
  text-transform: none; }

.product-card-cart {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

.card-grid-upsell {
  height: 100%; }

.cart__submit .btn .btn--checkout, .cart__submit .shopify-payment-button .shopify-payment-button__button--unbranded .btn--checkout, .shopify-payment-button .cart__submit .shopify-payment-button__button--unbranded .btn--checkout {
  padding: 16px 0px;
  background-color: #174D67;
  font-size: 18px;
  font-weight: 600;
  color: white; }

.p-cart-promo {
  color: #B6D5D8;
  font-size: 18px;
  font-weight: 400; }

.title-offer-home {
  font-size: 32px !important;
  text-align: left;
  color: black !important; }
  @media (max-width: 550px) {
    .title-offer-home {
      font-size: 26px !important; } }

.product-card__content--wrapper2 {
  margin-top: 16px; }

.product-card__content2 {
  display: flex;
  flex-wrap: wrap; }

.product-card__title2 {
  width: 100%;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #174D67;
  margin-bottom: 8px;
  margin-top: 16px; }

.product-card__price2 {
  width: 48%; }

.product-card__reviews2 {
  width: 52%;
  display: flex;
  justify-content: flex-end; }

.halo-column__item {
  width: 25% !important;
  display: flex;
  align-items: stretch; }
  @media (max-width: 1000px) {
    .halo-column__item {
      width: 50% !important; } }
  @media (max-width: 400px) {
    .halo-column__item {
      width: 90% !important; } }

.price-item--sale {
  color: #174D67 !important;
  font-size: 16px;
  font-weight: 600; }

.price-item--regular {
  color: #B6D5D8 !important;
  font-size: 11px;
  margin-left: 2px;
  font-weight: 600; }

.spr-badge-caption {
  font-size: 12px;
  color: #174D67;
  font-weight: 500;
  margin-right: 4px;
  line-height: 30px; }

.spr-icon.spr-icon-star:before {
  width: 14px !important;
  height: 14px !important; }

[class^="spr-icon-"]:before, [class*=" spr-icon-"]:before {
  font-family: "font-awesome-stars";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 14px !important;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 14px;
  font-size: 14px !important; }

.spr-badge-starrating {
  margin: 0px !important; }

.price-item--regular {
  font-size: 15px !important; }

.product-card__button--wrapper {
  height: auto !important;
  position: inherit !important; }

.btn-home {
  background-color: #174D67 !important;
  color: white !important;
  border: 0px !important;
  font-weight: 700 !important; }

.product-card-description-coffret {
  opacity: .5 !important; }

.spr-badge {
  display: inline-flex !important;
  flex-direction: row !important; }

@media (max-width: 450px) {
  .upsell-cart-grid .product-card__title a, .upsell-cart-grid .product-edit__title a {
    font-size: 12px !important;
    text-transform: capitalize !important; }

  .product-card-cart-btn span {
    font-size: 7px !important; }

  .cart-quickview__footer .cart__submit-controls .cart__submit {
    font-size: 14px !important;
    height: auto !important; }

  .p-cart-promo {
    font-size: 14px !important; }

  .cart-quickview__table {
    padding-right: 10px !important;
    padding-left: 10px !important; }

  .cart-upsell {
    padding-right: 10px !important;
    padding-left: 10px !important; }

  .cart-quickview__footer {
    padding-right: 10px !important;
    padding-left: 10px !important; }

  .popup-sidebar__wrapper .product-details__item {
    font-size: 15px !important; }

  .cart-quickview_header {
    padding-right: 10px !important;
    padding-left: 10px !important; }

  .cart-quickview_icon_slider {
    padding-right: 10px !important;
    padding-left: 10px !important; }

  .product-card__reviews2 .spr-badge {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-end !important; } }
.cart-subtotal__title {
  text-transform: capitalize !important; }

.p-cart-promo {
  color: black !important;
  opacity: .5 !important; }

.cart-quickview__footer .cart__submit-controls .cart__submit {
  font-weight: 700 !important; }

.popup-sidebar__wrapper .product-details__item {
  text-transform: none !important; }

.cart-upsell {
  border-bottom: 0px !important;
  border-top: 1px solid silver; }

.cart-quickview__table .cart__qty {
  border: 0px !important; }

.button-minus, .button-plus {
  border-radius: 100px !important; }

.product-card__title2 {
  font-size: 18px; }

.product_badges .badge {
  margin-bottom: 10px !important; }

.section-blog {
  padding-bottom: 30px !important;
  padding-top: 30px !important;
  text-align: center !important; }

#shopify-section-16204705871ae258ef {
  padding-top: 50px !important;
  padding-bottom: 25px !important; }

.titre-article {
  width: 100% !important;
  text-align: center !important; }

.text-blog {
  width: 100% !important;
  display: inherit !important; }

.footer-list .btn-home {
  background-color: transparent !important;
  color: #3c86a5 !important; }

.product-form__item--submit .btn--addToCart {
  background-color: #174D67;
  border: 0px;
  text-transform: uppercase;
  font-weight: 800; }

.product__price .product-card__price .price-item {
  font-weight: 600; }

.product-wrapper .price-item--regular {
  font-size: 20px !important; }

.product-wrapper .spr-badge-caption {
  font-size: 16px !important;
  padding-left: 7px !important; }

.cart__product-title {
  font-weight: 800 !important; }

.iconText-container {
  margin-bottom: 40px !important; }

.article__pagination {
  display: none; }

.img-blog {
  border-radius: 20px !important; }

.text-blog {
  justify-content: space-between !important;
  padding-top: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  margin-top: 0px !important; }

.item-blog {
  width: 100% !important;
  padding: 12px !important; }

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

.lien-blog {
  width: 100%;
  text-align: left !important;
  line-height: 10px !important;
  font-size: 12px !important; }

@media (max-width: 540px) {
  .section-blog .padding-site {
    padding-left: 0px !important;
    padding-right: 0px !important; } }

.article__image {
  display: flex !important;
  justify-content: center !important; }

.article__image img {
  border-radius: 20px !important; }

.article__title {
  text-align: center;
  text-transform: uppercase !important; }

article__pagination {
  display: none !important; }

.article__body p {
  color: #494A4A !important;
  font-size: 1.4rem !important; }

.article__body h2, .article__body .h2 {
  font-size: 1.5em !important; }

.article__body h3, .article__body .h3 {
  color: #2a2a2a !important;
  font-size: 1.4rem !important; }

.article__body h4, .article__body .h4 {
  color: #2a2a2a !important;
  font-size: 1.4rem !important; }

.page-blog .halo-column {
  padding-left: 0px !important;
  padding-right: 0px !important; }

@media (min-width: 1600px) {
  .page-full-width .container {
    max-width: 1920px !important;
    padding-left: 75px;
    padding-right: 75px; } }
.featured-blog__link img {
  border-radius: 20px !important; }

.featured-blog__image {
  width: 380px !important; }

#shopify-section-blog-template .halo-column__item {
  width: 33% !important; }

#shopify-section-blog-template .featured-blog__content {
  padding-top: 5px !important; }

#shopify-section-blog-template .featured-blog__title {
  padding-top: 5px !important;
  font-size: 1em !important; }

@media (min-width: 1025px) {
  .image--hover:after {
    background: none !important; }

  .image--hover:hover {
    transform: scale(1.03) !important; } }
.featured-blog__title {
  text-align: center !important; }

.title-blog-zero {
  text-align: center !important;
  padding-bottom: 45px !important;
  padding-top: 25px !important;
  text-transform: uppercase;
  font-size: 2.5rem; }

@media (max-width: 800px) {
  #shopify-section-blog-template .halo-column__item {
    width: 50% !important; }

  #shopify-section-blog-template .halo-column__item {
    display: inline !important; }

  .featured-blog__image {
    width: auto !important; } }
@media (max-width: 450px) {
  #shopify-section-blog-template .halo-column__item {
    width: 100% !important; } }
.cart-quickview__table {
  padding-top: 0px !important;
  margin-bottom: -22px !important; }

.cart-slider-benefices .slick-dots {
  display: flex !important;
  justify-content: end !important;
  flex-direction: row !important;
  bottom: 0px !important;
  height: 100% !important;
  align-items: center !important; }

.cart-slider-benefices .slick-dots li {
  width: 10px !important; }

.button-minus, .button-plus {
  border: 0px !important; }

@media (max-width: 500px) {
  .top-icon-container {
    margin-top: 30px !important;
    margin-bottom: 10px !important; }

  .desktop-only {
    display: none; } }
@media (min-width: 501px) {
  .mobile-only {
    display: none; }

  .top-icon-container {
    margin-top: 30px !important; } }
.product-card__title2 {
  margin-top: 6px !important;
  margin-bottom: 0px !important; }

.product-card__content--wrapper2 {
  margin-top: 15px !important; }

.slick-dotted.slick-slider {
  margin-bottom: 10px !important; }

.product-one-line-description {
  color: grey !important; }

.image-mission {
  display: flex;
  justify-content: flex-end; }

.img-mission {
  width: 400px !important; }

.image-mission-right {
  display: flex;
  justify-content: flex-start; }

.alone-center {
  text-align: center !important;
  width: 100% !important;
  max-width: 800px !important;
  display: flex;
  justify-content: center; }

.alone-center-width {
  max-width: 800px !important; }

.right-text-mission {
  display: flex !important;
  align-items: center !important; }

.site-nav-mobile .nav-title-mobile {
  color: #3c86a5; }

#navigation-mobile .close_menu {
  color: #3c86a5;
  background-color: white; }

@keyframes inventory-pulse {
  0% {
    opacity: .5; }

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

.jdgm-prev-badge__text {
  font-size: 12px !important; }

#shopify-section-16228444854bbed11e .jdgm-prev-badge {
  text-align: right !important; }

.jdgm-row-media {
  display: none !important; }

.image-accordion-container {
  width: 60% !important; }

.accordion-container {
  width: 40% !important; }

.image-accordion-container {
  padding-right: 40px !important; }

@media (max-width: 767px) {
  .template-product .product-block {
    text-align: left;
    margin-bottom: 14px; } }
.product-block.product-block--sales-point {
  color: #333; }

.sales-points {
  list-style: none;
  padding: 0;
  margin: 25px 0; }

.sales-point {
  display: block;
  margin-bottom: 10px; }

.sales-point .icon-and-text {
  justify-content: center; }

.icon-and-text {
  display: flex;
  flex-wrap: nowrap;
  align-items: center; }

.sales-point .icon {
  position: relative;
  width: 25px;
  height: 25px;
  margin-right: 10px; }

.icon-and-text .icon {
  flex: 0 0 auto; }

.icon--inventory:after, .icon--inventory:before {
  width: 9px;
  height: 9px;
  background: #54c63a;
  border-radius: 9px;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  margin: 8px; }

.icon--inventory:before {
  animation: inventory-pulse 2s linear infinite; }

/** COLORS CHANGEMENT **/
#new-form-atc:hover, .new-form-atc:hover {
  color: white !important;
  border: 1px solid #FFF3A6 !important;
  box-shadow: 3px 3px 0 0 #FFF3A6; }

#new-form-atc, .new-form-atc {
  border: 1px solid;
  box-shadow: 3px 3px 0 0; }

.crossed-price-WB {
  color: #FB7272 !important; }

.selectedWB span.money.first-price-WB, .selectedWB .first-price-WB {
  color: #181818 !important; }

.selectedWB .title-variant {
  color: #181818 !important; }

#new-form .selectedWB, .new-wb-form .selectedWB {
  border: 1px solid #ADF5FF !important; }

.jdgm-preview-badge .jdgm-star {
  color: #181818 !important; }

h1, .h1, .h1, h2, .h2, .h2, h3, .h3, .h3, h4, .h4, .h4, h5, .h5, .h5, h6, .h6, .h6 {
  color: #181818 !important; }

.navUser-action .icon {
  color: #181818 !important; }

.navUser-action {
  color: #181818 !important; }

.announcement-bar__message .rte b, .rte strong {
  color: #FFF3A6 !important; }

.announcement-bar {
  background-color: #181818 !important; }

.cart-quickview_header {
  background-color: #FFF3A6 !important; }

.cart-quickview__footer .cart__submit-controls .cart__submit {
  background-color: #FFF3A6 !important;
  color: #181818 !important;
  border-right: 4px solid #181818 !important;
  border-bottom: 4px solid #181818 !important;
  border-left: 1px solid #181818 !important;
  border-top: 1px solid #181818 !important; }

.text-continue {
  display: none; }

.page {
  padding-bottom: 20px !important; }

.middle-icon-container {
  padding-bottom: 40px; }

span.money.first-price-WB, .first-price-WB {
  color: #181818 !important; }

.site-nav > .menu-lv-1 > .nav-action {
  color: black !important; }

section#ly-makeup-icons-ly-makeup-icons {
  /* margin-top: 20px; */
  margin-bottom: 60px; }

section#ly-app-ly-application-tips {
  margin-bottom: 60px; }

.announcement-bar {
  background-color: #f6f6f6 !important; }

.announcement-bar__message .rte b, .rte strong {
  color: black !important; }

.cart-quickview_header {
  background-color: #f6f6f6 !important; }

.halo-column__item .price--on-sale .price-item--regular {
  display: none !important; }
