/*============================================================================
    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: 'Island Style';
  src: url("IslandStyle.otf") format("opentype");
  font-style: normal;
  font-display: swap; }

@font-face {
  font-display: swap;
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  src: url("https://fonts.shopifycdn.com/roboto/roboto_n4.da808834c2315f31dd3910e2ae6b1a895d7f73f5.woff2?h1=c2FtZWRheW11c2ljLmNvbQ&hmac=e2af76aeac5b79a2b87e669a173ac625851a9ccf9b2bd005f90f6154f963bca2") format("woff2"), url("https://fonts.shopifycdn.com/roboto/roboto_n4.a512c7b68cd7f12c72e1a5fd58e7f7315c552e93.woff?h1=c2FtZWRheW11c2ljLmNvbQ&hmac=d006655968ebc051edc76e27a346bacf4fa34a43953a3c043c6258318a509a38") format("woff"); }

@font-face {
  font-display: swap;
  font-family: Roboto;
  font-weight: 400;
  font-style: normal;
  src: url("https://fonts.shopifycdn.com/roboto/roboto_n4.da808834c2315f31dd3910e2ae6b1a895d7f73f5.woff2?h1=c2FtZWRheW11c2ljLmNvbQ&hmac=e2af76aeac5b79a2b87e669a173ac625851a9ccf9b2bd005f90f6154f963bca2") format("woff2"), url("https://fonts.shopifycdn.com/roboto/roboto_n4.a512c7b68cd7f12c72e1a5fd58e7f7315c552e93.woff?h1=c2FtZWRheW11c2ljLmNvbQ&hmac=d006655968ebc051edc76e27a346bacf4fa34a43953a3c043c6258318a509a38") format("woff"); }

@font-face {
  font-display: swap;
  font-family: Roboto;
  font-weight: 900;
  font-style: normal;
  src: url("https://fonts.shopifycdn.com/roboto/roboto_n9.53d38598fbfdff3d54f7424818da582af4f7d230.woff2?h1=c2FtZWRheW11c2ljLmNvbQ&hmac=6aa44603778e0e615b1b3149a1c891f96af0ce8dce3eac60dc0b07b205507008") format("woff2"), url("https://fonts.shopifycdn.com/roboto/roboto_n9.f3669795f8a2d1263fcc5f16bb1988525e54c56f.woff?h1=c2FtZWRheW11c2ljLmNvbQ&hmac=0f64f743ff05ed373f34814a9ce43ab79c9a8213cb627471db5d4f73249dda71") format("woff"); }

@-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(//cdn.shopify.com/s/files/1/0006/2550/8417/t/47/assets/ajax-loader.gif?v=4135686330247201572) center center no-repeat; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  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: #1e1e1e;
    fill: #1e1e1e;
    stroke: #1e1e1e; }
  .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: 40px;
      width: 40px; } }

.slick-prev {
  left: 10px; }
  @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: 10px; }
  @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-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; } }

.halo-row .slick-dots {
  position: static;
  margin-top: 35px; }

/*================ 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: 22px;
  position: relative;
  overflow-x: hidden;
  color: #444444;
  font-size: 14px;
  font-family: Roboto, 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: #cc0000; }
  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,
.newsletter_content .section-header .title {
  font-size: 24px; }
  @media (min-width: 768px) {
    .mega-title--large,
    .newsletter_content .section-header .title {
      font-size: 30px; } }
  @media (min-width: 991px) {
    .mega-title--large,
    .newsletter_content .section-header .title {
      font-size: 36px; } }
  @media (min-width: 1025px) {
    .mega-title--large,
    .newsletter_content .section-header .title {
      font-size: 48px;
      line-height: 60px; } }
  @media (min-width: 1920px) {
    .mega-title--large,
    .newsletter_content .section-header .title {
      font-size: 70px;
      line-height: 90px; } }

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

/*========= Image Placeholder ===========*/
.no-image {
  position: relative; }
  .no-image .recommended_size {
    color: #1e1e1e !important; }
  .no-image.no_image_style1 {
    height: 270px; }
  .no-image.no_image_style2 {
    height: 365px; }
  .no-image.no_image_style3 {
    height: 130px; }
  .no-image.no_image_style4 {
    height: 450px; }
  .no-image.no_image_style4_r {
    height: 150px; }
  .no-image.image-with-text-overlay__image {
    height: 550px; }
    @media (max-width: 1200px) {
      .no-image.image-with-text-overlay__image {
        height: 300px; } }
  .no-image.custom-block_slide--item {
    height: 720px; }
    @media (max-width: 1200px) {
      .no-image.custom-block_slide--item {
        height: 550px; } }
  .no-image.instagram__item image--hover {
    height: 480px; }
    @media (max-width: 1200px) {
      .no-image.instagram__item image--hover {
        height: 300px; } }
  .no-image[data-target="#ask_an_expert"] {
    height: 120px;
    width: 220px; }

/*========== End Image Placeholder ===========*/
/*============================================================================
    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;
  padding: 0 15px;
  max-width: 1200px; }
  .page-width::after {
    content: '';
    display: table;
    clear: both; }

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1600px; }

@media (min-width: 1025px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1690px; } }
@media (min-width: 1600px) {
  .container {
    max-width: 1770px;
    padding-left: 100px;
    padding-right: 100px; } }
.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: #1e1e1e; }
  .section-header h1, .section-header .h1, .section-header h2, .section-header .h2, .section-header h3, .section-header .h3, .section-header .title {
    margin: 0;
    color: inherit;
    line-height: 1.3;
    position: relative;
    text-transform: capitalize;
    font-size: 1.85714em;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 700;
    text-transform: unset; }
  .section-header .title--large {
    font-size: 30px; }
  .section-header > p {
    max-width: 800px;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 22px;
    color: #787878;
    letter-spacing: 0.02rem;
    font-size: 14px; }
  .section-header > .link {
    border-bottom: 1px solid;
    color: #cc0000;
    margin-top: 10px;
    display: inline-block; }
  .section-header .title__countdownWrapper + p {
    margin-top: 15px; }
  .section-header.text-center > p {
    margin-left: auto;
    margin-right: auto; }
  @media (min-width: 768px) {
    .section-header h1, .section-header .h1, .section-header h2, .section-header .h2, .section-header h3, .section-header .h3, .section-header .title {
      font-size: 2em; }
    .section-header .title--large {
      font-size: 2.85714em; } }
  @media (min-width: 1025px) {
    .section-header {
      margin-bottom: 26px; }
      .section-header h1, .section-header .h1, .section-header h2, .section-header .h2, .section-header h3, .section-header .h3, .section-header .title {
        font-size: 30px; }
      .section-header .title--large {
        font-size: 3.28571em; }
      .section-header > p {
        margin-top: 20px; }
      .section-header > .link {
        position: absolute;
        right: 0;
        bottom: 0; } }
  @media (min-width: 1280px) {
    .section-header > .link {
      right: 100px; } }

.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 #444444; }
  .title__countdown--item .num {
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
    font-weight: 600;
    /*letter-spacing: 0.02rem;*/ }
  .title__countdown--item .label {
    font-size: 14px;
    line-height: 1;
    display: block;
    text-transform: uppercase;
    font-family: Roboto, 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 h2, .section-header.overlay--dark .h2, .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.28571em;
  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: 14px;
  font-family: Roboto, 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 {
  margin: 0 0 15px 0;
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  text-transform: capitalize;
  overflow-wrap: break-word;
  word-wrap: break-word;
  color: #1e1e1e; }
  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.28571em; } }

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

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

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

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

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

/*================ RTE headings ================*/
.rte {
  color: #444444;
  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: #1e1e1e; }
  .rte blockquote {
    font-size: 14px;
    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: #444444;
  margin: 0 0 15px; }
  p:last-child {
    margin-bottom: 0; }

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

/*================ Misc styles ================*/
.fine-print {
  font-size: 1em;
  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: #1e1e1e;
  text-decoration: none !important; }
  .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: 14px; }
  @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.85714em;
  height: 0.85714em;
  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 {
  -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: 14px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0px;
  padding: 0 15px;
  height: 40px;
  line-height: 36px;
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: #1e1e1e;
  background-color: white;
  border: 1px solid #1e1e1e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: .2px; }
  .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 {
    height: 9px; }
  .btn:focus, .shopify-payment-button .shopify-payment-button__button--unbranded:focus {
    box-shadow: none; }
  .btn[disabled], .shopify-payment-button [disabled].shopify-payment-button__button--unbranded {
    cursor: default;
    opacity: 0.5;
    pointer-events: none; }
  @media (min-width: 1025px) {
    .btn, .shopify-payment-button .shopify-payment-button__button--unbranded {
      height: 45px;
      line-height: 42px;
      padding: 0 35px; } }

.btn-showmore {
  color: #1e1e1e;
  background-color: white;
  border: 1px solid #1e1e1e; }
  .btn-showmore:hover {
    outline: none;
    color: white;
    background-color: #cc0000;
    border-color: #cc0000; }

.btn--primary:hover {
  outline: none;
  color: white;
  background-color: #cc0000;
  border-color: #cc0000; }
.btn--primary.address-delete:hover {
  color: #fff;
  background-color: #5a5a5a;
  border: 1px solid #1e1e1e; }

.btn-link {
  color: #cc0000 !important;
  border-bottom: 1px solid;
  text-decoration: none !important; }

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

.login-form__content .btn--secondary {
  border: 1px solid #cc0000; }
  .login-form__content .btn--secondary:hover {
    border-color: #990000; }

.btn--secondary,
.btn-primary {
  color: white;
  background-color: #cc0000;
  border-color: #cc0000; }
  .btn--secondary:hover,
  .btn-primary:hover {
    color: white;
    border-color: #990000;
    background-color: #990000; }
  .btn--secondary.address-edit-toggle:hover,
  .btn-primary.address-edit-toggle:hover {
    color: #cc0000;
    background-color: white;
    border-color: #cc0000; }

.btn--small {
  padding: 8px 10px;
  font-size: 0.85714em;
  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: #1e1e1e; }
  .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: #1e1e1e; }
    .btn--tertiary:hover .text {
      text-decoration: underline;
      text-underline-position: under; }

.btn--checkout,
.faq-content a {
  /*color: #ffffff;
  border-color: #ef9ba6;
  background-color: #ef9ba6;*/
  color: white !important;
  background-color: #fdb830 !important;
  border-color: #fdb830 !important; }
  .btn--checkout:hover, .btn--checkout:focus,
  .faq-content a:hover,
  .faq-content a:focus {
    /*color: #ffffff;
    border-color: #ef9ba6;
    background-color: #ef9ba6;*/
    color: white !important;
    background-color: #f8a502 !important;
    border-color: #f8a502 !important; }
  .btn--checkout.disabled,
  .faq-content a.disabled {
    cursor: none;
    pointer-events: none; }

.cart__submit.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: Roboto, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  color: #1e1e1e; }

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: 14px;
    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 #cccccc;
  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: #1e1e1e;
  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: 500;
  color: #1e1e1e;
  font-size: 14px;
  text-transform: capitalize;
  font-family: Roboto, sans-serif; }
  .form-label em,
  .spr-form-label em {
    color: #1e1e1e; }

.template-article .comment-form input.btn, .template-article .comment-form .shopify-payment-button input.shopify-payment-button__button--unbranded, .shopify-payment-button .template-article .comment-form input.shopify-payment-button__button--unbranded {
  color: white;
  background-color: #1e1e1e;
  border: 1px solid #1e1e1e; }
  .template-article .comment-form input.btn:hover, .template-article .comment-form .shopify-payment-button input.shopify-payment-button__button--unbranded:hover, .shopify-payment-button .template-article .comment-form input.shopify-payment-button__button--unbranded:hover {
    color: #1e1e1e;
    background-color: white;
    border: 1px solid #1e1e1e; }

input,
textarea,
select,
.form-control {
  color: #666666;
  border: 1px solid #cccccc;
  background-color: white;
  max-width: 100%;
  height: 45px;
  line-height: 22px;
  border-radius: 0px;
  font-size: 14px;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 0;
  outline: none; }
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder,
  .form-control::-webkit-input-placeholder {
    color: #666666;
    left: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s ease; }
  input::-moz-placeholder,
  textarea::-moz-placeholder,
  select::-moz-placeholder,
  .form-control::-moz-placeholder {
    color: #666666;
    left: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s ease; }
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder,
  .form-control:-ms-input-placeholder {
    color: #b3b3b3;
    left: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s ease; }
  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder,
  select::-ms-input-placeholder,
  .form-control::-ms-input-placeholder {
    color: #b3b3b3;
    left: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s ease; }
  input:focus,
  textarea:focus,
  select:focus,
  .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #b3b3b3; }
    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: #bababa;
    border-color: #bababa;
    opacity: 1 !important; }
  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: 45px;
  line-height: 45px; }

textarea,
textarea.form-control {
  height: auto;
  padding-top: 12px;
  padding-bottom: 10px;
  line-height: 22px;
  min-height: 110px; }
  textarea::-webkit-input-placeholder,
  textarea.form-control::-webkit-input-placeholder {
    color: #444444; }
  textarea::-moz-placeholder,
  textarea.form-control::-moz-placeholder {
    color: #444444; }
  textarea:-ms-input-placeholder,
  textarea.form-control:-ms-input-placeholder {
    color: #444444; }
  textarea:-moz-placeholder,
  textarea.form-control:-moz-placeholder {
    color: #444444; }
  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: #444444;
  margin-bottom: 15px; }
  .input-error-message .icon {
    width: 1em;
    height: 1em;
    margin-right: 0.71429em; }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url(//cdn.shopify.com/s/files/1/0006/2550/8417/t/47/assets/ico-select.svg?v=3105849139048425175);
  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: 14px; }

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

.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%;
  margin-bottom: 15px; }
  .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: 55px 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.28571em; }
  .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(68, 68, 68, 0.35);
  background-color: rgba(68, 68, 68, 0.1);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid rgba(68, 68, 68, 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: Roboto, 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: #444444;
  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: #444444;
  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.92857em; }

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

.product-form__item {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  font-size: 14px;
  /*text-transform: uppercase;*/
  font-family: Roboto, sans-serif; }
  .product-form__item label {
    display: block;
    font-weight: 500;
    line-height: 22px;
    color: #1e1e1e;
    text-transform: capitalize;
    margin-bottom: 10px; }
    .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%; }

.total-price {
  color: #a0a0a0;
  line-height: 20px;
  margin-bottom: 14px; }

.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: 14px;
  text-transform: capitalize;
  color: #1e1e1e; }
  .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.35714em 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: #444444; }

.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 {
  color: #cc0000;
  background-color: white;
  border-color: #cc0000;
  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: #f8a502 !important;
    border-color: #f8a502 !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.85714em;
  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:not(.btn--primary) {
  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: #e95144;
  border-color: #e95144;
  color: #fff; }

.hover-to-zoom {
  text-align: center;
  margin-top: 18px;
  line-height: 24px;
  color: #999;
  letter-spacing: 0.2px; }

.hover-to-zoom svg {
  height: 15px;
  width: 15px;
  margin-right: 5px; }

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

.collection-hero__heading {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  max-width: 370px; }

.collection-hero__heading .title {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px; }

.collection-hero__heading .des {
  line-height: 24px;
  color: #fff; }

.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: #666666;
    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-wrapper {
  padding-right: 15px;
  flex: 5rem 0 0; }
  @media (min-width: 768px) {
    .cart__image-wrapper {
      padding-right: 30px;
      flex: 8rem 0 0; } }

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

.cart__product-title {
  border-bottom: none;
  font-family: Roboto, sans-serif;
  color: #1e1e1e;
  text-transform: capitalize;
  font-weight: 500;
  line-height: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  margin-bottom: 3px; }
  .cart__product-title:not([disabled]):hover, .cart__product-title:focus {
    color: #1e1e1e; }

.product-details-wrapper {
  display: block;
  font-size: 12px;
  line-height: 26px;
  font-style: italic; }
  .product-details-wrapper .product-details {
    margin: 0;
    display: inline-block;
    vertical-align: top;
    line-height: 24px;
    color: #444444; }
    .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;
  text-transform: capitalize; }
  .product-details__item + .product-details__item:not(.product-details__item--last):before {
    content: "/";
    padding: 0 3px; }

.product-details__edit {
  border: none;
  color: #cc0000;
  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: #cc0000; }

.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: 1.07143em; }
  @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;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 16px; }
  @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; } }

.cart__final-price {
  color: #1e1e1e; }

.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: #444444;
  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: 12px;
    margin-right: 5px;
    margin-bottom: 8px; }

  .product-details-wrapper {
    position: relative; }
    .product-details-wrapper .product-details__edit {
      position: absolute;
      /*right: 0;*/
      margin-left: 7px; } }
.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;
    text-transform: capitalize;
    color: #1e1e1e; }
  .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 #444444; }
  .order-table tfoot {
    border-top: 1px solid #444444; }
    .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 #444444;
      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: #1e1e1e;
        font-family: Roboto, sans-serif; }
      .order-table tfoot th::before,
      .order-table tfoot td::before {
        font-weight: 700;
        text-transform: uppercase;
        color: #1e1e1e;
        font-family: Roboto, 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: 14px;
  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: 370px; } }
  @media (min-width: 1025px) {
    .cart-popup-wrapper {
      top: 15%;
      right: 60px; } }

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

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

.cart-popup-item {
  margin: 0;
  font-size: 0;
  display: flex;
  align-items: center; }

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

.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: #444444;
  width: calc(100% - 80px);
  padding: 10px 30px 10px 25px;
  font-size: 14px;
  line-height: 24px; }

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

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

.cart-popup_button {
  display: flex;
  border-top: 1px solid #eeeef1; }
  .cart-popup_button .text-link {
    font-size: 14px;
    font-weight: 400;
    font-family: Roboto, sans-serif;
    display: inline-block;
    width: 50%;
    color: #444444;
    border-top: 2px solid #f8f8f9;
    border-right: 1px solid #eeeef1;
    line-height: 24px;
    padding: 7px 5px 8px;
    text-align: center; }
    .cart-popup_button .text-link:last-child {
      border: 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: 1.14286em;
  line-height: 22px;
  text-transform: uppercase;
  color: #1e1e1e;
  font-family: Roboto, sans-serif; }

.pagination__item {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  line-height: inherit;
  width: 40px;
  height: 40px;
  line-height: 38px; }

.pagination__item.pagination__link--current {
  background-color: #f7f7f7; }

.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;
  display: block;
  width: 100%; }

.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__item--first,
.pagination__item--last {
  border: 1px solid #8e8e8e; }
  .pagination__item--first svg,
  .pagination__item--last svg {
    color: #000;
    width: 14px !important;
    height: 12px !important; }
  .pagination__item--first:hover,
  .pagination__item--last:hover {
    background-color: #cc0000;
    border-color: #cc0000; }
    .pagination__item--first:hover svg,
    .pagination__item--last:hover svg {
      color: white; }

.pagination__item--last .btn, .pagination__item--last .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .pagination__item--last .shopify-payment-button__button--unbranded {
  padding-left: 2px; }

.pagination__item--first .btn, .pagination__item--first .shopify-payment-button .shopify-payment-button__button--unbranded, .shopify-payment-button .pagination__item--first .shopify-payment-button__button--unbranded {
  padding-right: 2px; }

.pagination__link {
  padding-left: 2px;
  padding-right: 2px;
  line-height: inherit;
  display: inline-block;
  font-size: 14px;
  font-weight: 500; }

.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.
==============================================================================*/
.zoom-border-effect {
  display: inline-block;
  border-radius: 50%;
  position: relative; }
  .zoom-border-effect:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(40, 40, 40, 0.6);
    border-radius: 50%;
    transition: all 0.5s; }
  .zoom-border-effect:hover:before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }

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

.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;
  text-transform: capitalize; }

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

@media (min-width: 1400px) {
  #product-compare-modal .modal-dialog.modal-lg {
    max-width: 1200px; } }

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

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

.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: #787878; }
.price--on-sale .price-item--sale {
  color: #e95144; }

.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: #444444;
  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-item em {
  margin-right: 4px;
  color: #787878 !important;
  font-size: 12px;
  font-style: normal; }

.price-unit-price {
  color: #444444;
  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: #1e1e1e; }
  .quote-icon svg {
    fill: #1e1e1e;
    stroke: #1e1e1e; }

.quotes-slider__text {
  display: block;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  color: #1e1e1e;
  font-size: 1.125em;
  font-weight: 400;
  font-style: normal;
  padding: 0 8px; }
  .quotes-slider__text cite {
    font-size: 0.875em;
    font-style: normal;
    color: #999999;
    text-decoration: underline;
    text-underline-position: under; }
    .quotes-slider__text cite:before {
      content: none; }
  .quotes-slider__text p {
    color: #1e1e1e;
    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(68, 68, 68, 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: 24px;
    text-transform: unset; }

.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(68, 68, 68, 0.05); }

.rich-text {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: #1e1e1e; }
  .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;
  text-transform: unset; }

.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:last-child {
  margin-bottom: 0; }

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

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

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

.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(68, 68, 68, 0.1);
    padding: 12px 17px 12px 30px; } }

.currency-selector__label {
  font-size: 0.85714em;
  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.85714em;
      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; } }

.halo-column:not(.list) .product-card,
.halo-row .product-card {
  position: relative;
  font-size: 14px;
  background-color: white; }
  .halo-column:not(.list) .product-card:not(.product-card--3):hover .product-card_compare,
  .halo-row .product-card:not(.product-card--3):hover .product-card_compare {
    opacity: 1;
    visibility: visible;
    pointer-events: auto; }
  .halo-column:not(.list) .product-card:not(.product-card--3):hover .product-card_quickview,
  .halo-column:not(.list) .product-card:not(.product-card--3):hover .product-card__reviews,
  .halo-row .product-card:not(.product-card--3):hover .product-card_quickview,
  .halo-row .product-card:not(.product-card--3):hover .product-card__reviews {
    opacity: 1; }
  .halo-column:not(.list) .product-card:not(.product-card--3):hover .product-card__button--wrapper,
  .halo-row .product-card:not(.product-card--3):hover .product-card__button--wrapper {
    z-index: 3;
    top: -52px;
    bottom: 100%;
    height: auto;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    transition: all 0.3s ease, z-index 1.5s ease; }
  @media (min-width: 1025px) {
    .halo-column:not(.list) .product-card:not(.product-card--3):hover .product-card__switchImage .product-card__img,
    .halo-row .product-card:not(.product-card--3):hover .product-card__switchImage .product-card__img {
      opacity: 0;
      visibility: hidden; }
    .halo-column:not(.list) .product-card:not(.product-card--3):hover .product-card__switchImage .product-card__img--2,
    .halo-row .product-card:not(.product-card--3):hover .product-card__switchImage .product-card__img--2 {
      opacity: 1;
      visibility: visible; } }
  .halo-section-background-gray .halo-column:not(.list) .product-card, .halo-section-background-gray
  .halo-row .product-card {
    background-color: #fafafa; }

@media (min-width: 1025px) {
  .halo-column.list .product-card__switchImage:hover .product-card__img {
    opacity: 0;
    visibility: hidden; }
  .halo-column.list .product-card__switchImage:hover .product-card__img--2 {
    opacity: 1;
    visibility: visible; } }

.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 15px;
    width: calc(100% - 80px); }
  .product-card--2 .product-card__title--variant {
    padding-right: 0; }
  .product-card--2 .product-card__variant--item label {
    width: 19px;
    height: 19px;
    line-height: 19px; }
  .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: calc(100% - 90px); } }
  @media (min-width: 1025px) {
    .product-card--2 .product-card__image {
      width: 100px; }
    .product-card--2 .product-card__content {
      padding: 8px 0 0 20px;
      width: calc(100% - 100px); } }

.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: 18px; }
  .product-card--3 .product-card__content {
    padding-top: 14px; }
  .product-card--3 .product-card__title {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px; }
  .product-card--3 .product-card__price {
    margin-bottom: 20px; }
    .product-card--3 .product-card__price .price-item {
      font-size: 12px; }
  .product-card--3 .product-card__btn--plus {
    color: #cc0000; }

.product-recently-viewed-content .product-card__btn--plus {
  color: #cc0000; }

.product-card--4 {
  width: 280px;
  display: table;
  background-color: #fff; }
  .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__title {
    font-size: 12px;
    line-height: 24px; }
  .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;
    position: static !important; }
  .product-card--4 .product-card__btn-soldOut {
    margin-top: 15px; }
  .product-card--4 .product-card__btn--plus {
    color: #cc0000; }
  .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 25px 20px; }
      .product-card--4 .product-card__button--wrapper {
        z-index: 3;
        top: auto;
        bottom: 100%;
        height: auto;
        opacity: 1;
        display: block;
        overflow: visible;
        visibility: 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: 6px; }
        .product-card--4 .product-card__variant + .product-card__variant {
          display: block;
          margin-bottom: 0; } }

.product-form--variant-sold-out .btn--addToCart,
.product-card__btn.product-card__btn-soldOut,
.product-btn-soldOut {
  color: #ffffff;
  background-color: #bababa;
  border-color: #bababa;
  pointer-events: none; }

.product_badges {
  top: 25px;
  left: 25px;
  z-index: 5;
  display: flex;
  position: absolute !important;
  flex-direction: column;
  align-items: flex-start; }
  .product_badges .badge {
    height: 18px;
    min-width: 40px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.2px;
    padding: 0 8px;
    border-radius: 0;
    font-family: Roboto, sans-serif;
    color: #ffffff;
    background-color: #191919; }
    .product_badges .badge:not(:last-child) {
      margin-bottom: 5px; }
  .product_badges .new-badge {
    color: #ffffff;
    background-color: #191919; }
  .product_badges .soldOut-badge {
    color: #ffffff;
    background-color: #bababa; }
  .product_badges .sale-badge {
    color: #ffffff;
    background-color: #28aa48; }
  .product_badges .bundle-badge {
    color: #ffffff;
    background-color: #0d2d4d; }
  .product_badges [data-label-sale] {
    text-transform: lowercase; }

.product-card__image {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .product-card__image .product-card_wishlist_quickview {
    position: absolute;
    top: 15px;
    right: 15px; }
    .product-card__image .product-card_wishlist_quickview > a:not(:last-child) {
      margin-bottom: 15px; }
    .product-card__image .product-card_wishlist_quickview .product-card_wishlist,
    .product-card__image .product-card_wishlist_quickview .product-card_quickview {
      margin: 0;
      -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1); }
    .product-card__image .product-card_wishlist_quickview .product-card_quickview {
      opacity: 0; }
  @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;
    width: 100%;
    transform: translateY(-50%);
    object-fit: contain;
    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; }
  .product-card__switchImage .product-card__img--2 {
    display: block;
    opacity: 0;
    visibility: hidden; } }

.product-card__content--wrapper {
  position: relative;
  z-index: 2; }

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

.product-card__vendor,
.product-edit__vendor {
  line-height: 1;
  font-weight: 400;
  margin-bottom: 13px;
  text-transform: capitalize;
  display: block;
  color: #a0a0a0; }
  .product-card__vendor a,
  .product-edit__vendor a {
    color: inherit;
    font-size: inherit;
    display: inline-block; }

.product-card__title,
.product-edit__title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: unset;
  font-family: Roboto, sans-serif;
  color: #1e1e1e;
  min-height: 80px; }
  .product-card__title a,
  .product-edit__title a {
    color: inherit;
    overflow: hidden;
    font-size: inherit;
    font-weight: inherit; }
  .product-card__title:hover,
  .product-edit__title:hover {
    color: black; }

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

.product-card__reviews {
  line-height: 1;
  display: inline-block;
  margin: 0 0 0 15px;
  position: relative;
  bottom: -2px;
  opacity: 0; }
  .product-card__reviews .spr-badge-caption {
    display: none; }

.halo-column.list .product-card__reviews {
  opacity: 1; }

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

.product-card__description {
  display: none; }

.spr-icon {
  margin-right: 2px; }
  .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: #ffcb23; }

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

.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 18px;
  visibility: visible; }
  .product-card__price .price-item {
    line-height: 1;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #787878; }
    .product-card__price .price-item + .price-item {
      margin-left: 4px; }
  .product-card__price.price--on-sale .price-item--regular {
    text-decoration: line-through;
    color: #787878; }
  .product-card__price.price--on-sale .price-item--sale {
    color: #e95144; }

.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: #444444;
    text-transform: capitalize; }
    .product-card_compare label:before {
      content: "";
      left: 0;
      top: 0;
      width: 13px;
      height: 13px;
      position: absolute;
      border: 1px solid #d8d8d8;
      background-color: #ffffff; }
    .product-card_compare label:after {
      content: '';
      width: 9px;
      height: 5px;
      position: absolute;
      top: 3px;
      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: #444444;
        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;
      bottom: 1px;
      line-height: 1;
      display: block;
      visibility: hidden;
      position: absolute;
      pointer-events: none;
      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: #d8d8d8;
        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: 14px;
  color: #1e1e1e;
  margin-bottom: 12px;
  text-transform: capitalize; }

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

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

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

.product-card__variant--item label {
  width: 24px;
  height: 24px;
  margin: 0;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid #fff;
  box-shadow: 0 0 0px 1px #e7e7e7; }

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

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

.product-card__variant--item--last a {
  line-height: 24px;
  height: 24px;
  color: #444444; }

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

.product-card_wishlist,
.product-card_quickview {
  display: block;
  text-align: center;
  width: 35px;
  height: 35px;
  padding: 8px;
  line-height: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #1e1e1e !important; }
  .product-card_wishlist.wishlist-added,
  .product-card_quickview.wishlist-added {
    background-color: #152d4b; }
    .product-card_wishlist.wishlist-added .text,
    .product-card_wishlist.wishlist-added .icon,
    .product-card_quickview.wishlist-added .text,
    .product-card_quickview.wishlist-added .icon {
      background-color: #152d4b;
      color: #fff; }
  .product-card_wishlist .text,
  .product-card_quickview .text {
    display: none;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 400;
    width: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    right: calc(100% + 7px);
    height: 24px;
    background-color: #b8b8b8;
    color: #fff !important;
    line-height: 24px;
    position: absolute;
    top: 50%;
    padding: 0 12px;
    border-radius: 15px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    width: auto;
    z-index: 9; }
  .product-card_wishlist .icon,
  .product-card_quickview .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,
    .product-card_quickview .text {
      display: inline-block; }
    .product-card_wishlist:hover .text,
    .product-card_quickview: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; } }

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

.product-card__btn {
  cursor: pointer;
  margin: 0 auto;
  width: calc(100% - 20px);
  display: block;
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
  padding: 8px 10px;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white !important;
  border: 1px solid #cc0000;
  background-color: #cc0000; }
  .product-card__btn:hover {
    color: white;
    border-color: #990000;
    background-color: #990000; }
  .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.product-card__btn-soldOut {
    /*border-color: lighten($color-product-btn-border, 70%);
    background-color: lighten($color-product-btn-background, 70%);*/
    pointer-events: none; }
  @media (min-width: 1025px) {
    .product-card__btn {
      padding: 10px; } }

.product-card__btn--plus > span:not(.line-icon) {
  position: relative;
  padding-left: 17px;
  font-weight: 500;
  line-height: 24px; }
  .product-card__btn--plus > span:not(.line-icon):before {
    top: 8px;
    content: "";
    width: 9px;
    height: 1px;
    line-height: 22px;
    left: 0;
    display: block;
    position: absolute;
    background-color: #cc0000; }
  .product-card__btn--plus > span:not(.line-icon):after {
    top: 9px;
    content: "";
    width: 1px;
    height: 9px;
    line-height: 22px;
    left: 4px;
    display: block;
    position: absolute;
    background-color: #cc0000;
    transform: translateY(-50%); }

.product-card__btn--plus > span.line-icon {
  position: absolute;
  width: calc(100% - 17px);
  height: 1px;
  border-bottom: 1px solid;
  bottom: -2px;
  left: 17px; }

.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;
  height: 100px;
  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;
    text-transform: capitalize;
    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: #1e1e1e; }

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

.next-prev-icons span,
.product-addmore-button {
  font-family: Roboto, 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: #1e1e1e;
  font-family: Roboto, sans-serif; }

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

.icon-loading-js {
  margin: 0 auto;
  height: 200px;
  padding-top: 60px;
  text-align: center;
  opacity: 1;
  transition: all 0.3s;
  left: 0; }
  .icon-loading-js svg {
    width: 80px;
    height: 80px; }

.active .icon-loading-js {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  padding: 0; }

.demo-123 {
  background-color: red; }
