/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
/**
 * @info
 * Here, we include stylesheets that declare
 * the design system, including typography, colors
 * and breakpoints. There are also a range of helper
 * classes that can help with common needs.
 * For example, "flex.scss" declares a series of classes
 * that easily enable flex functionality. They are great
 * when certain styles can be applied across all
 * breakpoints.
 *
 * Example (using classes in flex.scss):
 * <div class="f fw">
 *  <div class="fa"></div>
 *  <div class="fa"></div>
 *  <div class="fa"></div>
 * </div>
 */
/* http://meyerweb.com/eric/tools/css/reset/ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  cursor: default;
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none; }

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

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box; }

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

*,
*:focus,
*:active {
  outline: none;
  box-shadow: none; }

a {
  color: inherit;
  text-decoration: none; }

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

button {
  cursor: pointer; }

input,
select,
button {
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  -moz-appearance: none;
  -webkit-appearance: none; }

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

input[type=number] {
  -moz-appearance: textfield; }

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

/**
 * @info
 * This stylesheet outlines all variables that are used
 * across the site. The values here are purely representational.
 * These values should be updated in the initial development phase
 * when the project begins.
 */
/* Breakpoints */
/* Colors */
/* Transitions */
/* Gutters */
/* Breakpoint Queries */
/* Accounts */
/* Accessibility */
/**
 * @info
 * This stylesheet outlines utility functions
 * that easily attach colors to the DOM. The definitions
 * here are very simple and as the style guide is implemented,
 * there should be a declaration added here for any relevant
 * brand colors.
 */
/* ------------------------------------------------------------ *\
   The function below generates two classes for each color in
   the color list above.
 \* ------------------------------------------------------------ */
.bg-black {
  background-color: #000 !important; }

.black {
  color: #000 !important; }

.bg-white {
  background-color: #fff !important; }

.white {
  color: #fff !important; }

.bg-pink {
  background-color: #BC2CC6 !important; }

.pink {
  color: #BC2CC6 !important; }

.bg-grey {
  background-color: #828282 !important; }

.grey {
  color: #828282 !important; }

.bg-grey-1 {
  background-color: #f2f2f2 !important; }

.grey-1 {
  color: #f2f2f2 !important; }

.bg-grey-2 {
  background-color: #e0e0e0 !important; }

.grey-2 {
  color: #e0e0e0 !important; }

.bg-grey-3 {
  background-color: #bdbdbd !important; }

.grey-3 {
  color: #bdbdbd !important; }

.bg-grey-4 {
  background-color: #828282 !important; }

.grey-4 {
  color: #828282 !important; }

.bg-grey-5 {
  background-color: #333 !important; }

.grey-5 {
  color: #333 !important; }

.bg-yellow {
  background-color: #fdd007 !important; }

.yellow {
  color: #fdd007 !important; }

.bg-red {
  background-color: #BB333F !important; }

.red {
  color: #BB333F !important; }

.bg-blue {
  background-color: blue !important; }

.blue {
  color: blue !important; }

.bg-green {
  background-color: #5D944C !important; }

.green {
  color: #5D944C !important; }

/**
 * @info
 * Here, we outline an array of utility
 * mixins. The intent is to add to these as the
 * project evolves.
 */
/**
 * This is used in the _typography.scss sheet.
 * Generally, this should not be used in module
 * files since all font-size declarations should
 * follow the design style guide and be declared
 * globally rather than within a module context basis.
 */
/**
 * Similar to the .fill helper class. Easily
 * makes a DOM element fill the entire
 * width and height of it's relative parent.
 */
/**
 * These mixins gives the attributes for the
 * focus outline needed for accessibility.
 * An alternative border is given for when focus
 * text color will not have enough contrast ratio
 * with background
 */
/**
 * @info
 * This stylesheet outlines all typography styles
 * that are used across the entire site. This stylesheet
 * must be implemented thoughtfully and follow with precision
 * the style guide that is provided by the designer. No type-related
 * style declarations should be found in module files. All
 * type-related style declarations go here.
 */
.account-forms__grid__title,
.h1, .wysiwyg__container h1,
.h3, .wysiwyg__container h3,
.h4, .wysiwyg__container h5,
.wysiwyg__container h6 {
  font-family: "Eurostile", sans-serif;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.05em; }

body,
.h2, .wysiwyg__container h2, .multi-option__title, .multi-option__label > span, .dropdown-menu .dropdown-menu__value, .radio-button .radio-button__title, .radio-button .radio-button__label > span, .header-cart-icon, .nav > ul > li > .nav__dropdown > a, .nav > ul > li > .nav__dropdown > ul > li > a, .nav .nav__dropdown .nav__dropdown > ul,
.p1,
.p1--tier-2-s,
.p1--tier-4,
.a3,
.ul,
.ol, .account-forms__grid__description,
.p2, .btn--text-small,
.p3,
.p4,
.bq, .wysiwyg__container, .product-select__swatches__title, .product-hero__details__title, .product-hero__swatches__title {
  font-family: "Eurostile", sans-serif;
  font-weight: normal;
  line-height: 1.2;
  letter-spacing: 0.05em; }

.btn, .btn--primary.btn--compact, .btn--link, .btn--link--sm, .checkbox .checkbox__label span, .nav > ul > li > a,
.h5 {
  font-family: "UniversLTPro-UltCond", sans-serif;
  font-weight: normal;
  line-height: 1.2; }

.font-euro {
  font-family: "Eurostile", sans-serif; }

.font-euro-bla {
  font-family: "EurostileBla", sans-serif; }

.font-universe-cond {
  font-family: "UniversLTPro-UltCond", sans-serif; }

/* Global */
body {
  font-size: 20px;
  line-height: 24px;
  color: #000;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased; }

/**
 * By design, we attach type styling to DOM elements
 * through classes rather than DOM Node references. We
 * do not attach these titles via selectors like "h1 {}"
 * to ensure that HTML is designed with semantics in mind
 * and not styling. It is entirely possible that a DOM node
 * might be styled like so:
 * <h3 class="h2"></h3>
 * In this example, the H3 DOM node has been chosen because
 * it semantically makes sense (i.e. it better represents the
 * information it contains when non-visual interpreters are
 * traversing the DOM, such as screen readers). But, class-based
 * selectors allow for the correct styling to be applied regardless.
 *
 * We also include the definition of abstract classes (e.g. %h1) so that
 * these styles can be used in stylesheets too. For example:
 * .page-title {
 *   @extend %h1;
 * }
 */
.account-forms__grid__title,
.h1,
.wysiwyg__container h1 {
  font-size: 32px;
  line-height: 48px;
  text-transform: uppercase;
  letter-spacing: 0.95px; }
  @media (min-width: 1024px) {
    .account-forms__grid__title,
    .h1,
    .wysiwyg__container h1 {
      font-size: 48px;
      line-height: 64px;
      text-transform: uppercase;
      letter-spacing: 2.2px; } }


.h2,
.wysiwyg__container h2 {
  font-size: 30px;
  line-height: 40px; }
  @media (min-width: 1024px) {
    
    .h2,
    .wysiwyg__container h2 {
      font-size: 42px;
      line-height: 52px; } }


.h3,
.wysiwyg__container h3 {
  font-size: 28px;
  line-height: 40px; }
  @media (min-width: 1024px) {
    
    .h3,
    .wysiwyg__container h3 {
      font-size: 32px;
      line-height: 48px; } }

.btn, .btn--primary.btn--compact, .btn--link, .btn--link--sm, .checkbox .checkbox__label span, .nav > ul > li > a,
.h5 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase; }

/* Paragraphs */
.multi-option__title, .multi-option__label > span, .dropdown-menu .dropdown-menu__value, .radio-button .radio-button__title, .radio-button .radio-button__label > span, .header-cart-icon, .nav > ul > li > .nav__dropdown > a, .nav > ul > li > .nav__dropdown > ul > li > a, .nav .nav__dropdown .nav__dropdown > ul,
.p1 {
  font-size: 20px;
  line-height: 24px; }


.p1--tier-2-s {
  font-size: 24px;
  line-height: 1.3em; }


.p1--tier-4 {
  font-size: 20px;
  line-height: 1.2em; }


.a3,
.ul,
.ol, .account-forms__grid__description,
.p2 {
  font-size: 20px;
  font-weight: normal; }
  @media (min-width: 1024px) {
    
    .a3,
    .ul,
    .ol, .account-forms__grid__description,
    .p2 {
      font-size: 20px;
      font-weight: normal; } }

.btn--text-small,
.p3 {
  font-size: 14px;
  font-weight: normal; }


.p4 {
  font-size: 12px;
  font-weight: normal;
  line-height: 17px; }
  @media (min-width: 1024px) {
    
    .p4 {
      font-size: 14px;
      font-weight: normal; } }

/* Blockquote */

.bq {
  font-size: 20px; }
  @media (min-width: 415px) {
    
    .bq {
      font-size: 28px; } }

/* Links */

.a1,
.link {
  cursor: pointer;
  opacity: 1; }
  
  .a1:hover,
  .link:hover {
    text-decoration: underline; }


.a2 {
  text-decoration: underline; }


.a3 {
  display: inline-block;
  margin-left: -6px;
  padding: 0 6px;
  position: relative; }
  
  .a3 span {
    position: relative;
    z-index: 1; }
  
  .a3::before {
    content: '';
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    width: 0;
    z-index: 0; }


.no-touch .a1 {
  transition: opacity 0.2s ease-in-out; }
  
  .no-touch .a1:hover {
    opacity: 0.6; }


.no-touch .a2::after {
  transition: width 0.2s ease-in-out; }


.no-touch .a2:hover::after {
  width: calc(100% - 10px); }


.no-touch .a3::before {
  transition: width 0.2s ease-in-out; }


.no-touch .a3:hover::before {
  left: 0;
  right: auto;
  width: 100%; }

.link--withicon {
  align-items: center;
  display: inline-flex; }
  .link--withicon .icon {
    height: 8px;
    width: 15px;
    margin: 0 5px; }

/* Horizontal Rule */

.hr {
  background-color: #000;
  border: none;
  display: block;
  height: 1px;
  opacity: 0.2;
  width: 100%; }

/* Styles */

.b0 {
  border-radius: 0; }

.italic, .wysiwyg__container i,
.wysiwyg__container em {
  font-style: italic; }

.light {
  font-weight: 100; }


.normal {
  font-weight: normal; }

.medium {
  font-weight: 500; }


.bold,
.wysiwyg__container b,
.wysiwyg__container strong {
  font-weight: 900; }

.uppercase {
  text-transform: uppercase; }

.underline {
  text-decoration: underline; }

.strike-through,
.line-through {
  text-decoration: line-through; }

.decoration--none {
  text-decoration: none; }

.no-wrap {
  white-space: nowrap; }

.small {
  font-size: 0.8em; }

/**
 * @info
 * Here, we have simple utility classes to add
 * alignment rules to DOM elements.
 */
.align-l {
  text-align: left; }

.align-c {
  text-align: center; }

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

.align-j {
  text-align: justify; }

.align-m {
  vertical-align: middle; }

.align-t {
  vertical-align: top; }

.align-b {
  vertical-align: baseline; }

.flip-h {
  transform: scale(-1, 1); }

/**
 * @info
 * Here, we provide utility classes for styling
 * a container element that has gutters on either
 * side of it, and a max-width.
 *
 * Example:
 * <div class="container container--m">
 *   <!-- anything goes in here -->
 * </div>
 */
.container {
  margin: 0 auto;
  position: relative;
  max-width: 1440px;
  width: calc(100% - 40px); }
  @media (min-width: 415px) {
    .container {
      width: calc(100% - 80px); } }

.container--xxs {
  max-width: 375px; }

.container--xs {
  max-width: 414px; }

.container--s {
  max-width: 768px; }

.container--m {
  max-width: 1023px; }

.container--md {
  max-width: 1200px; }

.container--l {
  max-width: 1440px; }

/**
 * @info
 * Here, we outline utility classes that attach
 * display rules to DOM elements. These declarations
 * also allow the attachment of display rules scoped
 * to various breakpoints.
 */
.inline {
  display: inline; }

.inline-block {
  display: inline-block; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.fixed {
  position: fixed; }

.static {
  position: static; }

.pointer {
  cursor: pointer; }

.block {
  display: block; }

@media (min-width: 376px) {
  .block--xxs {
    display: block; } }

@media (min-width: 415px) {
  .block--xs {
    display: block; } }

@media (min-width: 769px) {
  .block--s {
    display: block; } }

@media (min-width: 1024px) {
  .block--m {
    display: block; } }

@media (min-width: 1201px) {
  .block--md {
    display: block; } }

@media (min-width: 1441px) {
  .block--l {
    display: block; } }

.hide {
  display: none; }

@media (min-width: 376px) {
  .hide--xxs {
    display: none; } }

@media (min-width: 415px) {
  .hide--xs {
    display: none; } }

@media (min-width: 769px) {
  .hide--s {
    display: none; } }

@media (min-width: 1024px) {
  .hide--m {
    display: none; } }

@media (min-width: 1201px) {
  .hide--md {
    display: none; } }

@media (min-width: 1441px) {
  .hide--l {
    display: none; } }

/**
 * @info
 * Here, we outline utility classes that attach
 * flex rules to DOM elements.
 */
.f {
  display: flex; }

.fw {
  flex-wrap: wrap; }

.ais {
  align-items: flex-start; }

.aie {
  align-items: flex-end; }

.aic {
  align-items: center; }

.aib {
  align-items: baseline; }

.jcs {
  justify-content: flex-start; }

.jce {
  justify-content: flex-end; }

.jcc {
  justify-content: center; }

.jcb {
  justify-content: space-between; }

.jca {
  justify-content: space-around; }

.fa {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0; }

.ff {
  flex-shrink: 0; }

.fdc {
  flex-direction: column; }

/**
 * @info
 * Here, we have a very simple outline of
 * form related utility classes. Add to this
 * file as you create opinions on how forms
 * should be styled for the project.
 */
.form-row {
  position: relative;
  margin-bottom: 20px; }
  .form-row.double {
    display: flex;
    justify-content: space-between; }
    .form-row.double > div {
      width: calc( 50% - 10px); }

select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important; }

/**
 * @info
 * Here, we outline an array of helper utility
 * classes that solve needs that relate to a variety
 * of concerns. Add to this as the
 * project evolves.
 */
/**
 * Easily allows for a DOM element
 * to comply to a distinct aspect ratio.
 *
 * Example:
 * <div class="ratio square"></div>
 */
.ratio {
  position: relative; }
  .ratio::before {
    content: '';
    display: block;
    width: 100%; }

.square::before {
  padding-top: 100%; }

.rectangle {
  padding-bottom: calc(575/765 * 100%); }

/**
 * A simple way to hide an element
 */
.hidden {
  display: none; }

/**
 * This relates directly to Vue.js. As
 * per standard Vue.js functionality, the
 * v-cloak attribute is removed from the DOM
 * element when the Vue component is initialized.
 * So, this attribute can be added to ensure that
 * the Vue.js component is not shown to the user
 * until it is ready.
 */
[v-cloak] {
  display: none; }

/**
 * Visually hidden but read by screen readers
 */
.sr-only {
  display: block;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
  width: 0; }

/**
 * Simple helpers for handling SVG-based
 * icons.
 *
 * Example:
 * <div class="icon">
 *Liquid error: This liquid context does not allow includes.*  <span class="sr-only">Shopping bag icon</span>
 * </div>
 */
.icon,
.logo {
  position: relative; }
  .icon svg,
  .logo svg {
    display: block;
    height: 100%;
    width: 100%; }

/**
 * Easily makes a DOM element fill the entire
 * width and height of it's relative parent.
 */
.fill {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0; }

/**
*  Responsive Helpers
*/
.visible-block,
.visible-inline,
.visible-inline-block,
.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-s-block,
.visible-s-inline,
.visible-s-inline-block,
.visible-m-block,
.visible-m-inline,
.visible-m-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-l-block,
.visible-l-inline,
.visible-l-inline-block,
.visible-mobile-block,
.visible-mobile-flex {
  display: none !important; }

@media (max-width: 375px) {
  .visible-block {
    display: block !important; }
  .visible-inline {
    display: inline !important; }
  .visible-inline-block {
    display: inline-block !important; } }

@media (min-width: 376px) and (max-width: 414px) {
  .hidden-xxs {
    display: none !important; }
  .visible-xxs-block {
    display: block !important; }
  .visible-xxs-inline {
    display: inline !important; }
  .visible-xxs-inline-block {
    display: inline-block !important; } }

@media (min-width: 415px) and (max-width: 768px) {
  .hidden-xs {
    display: none !important; }
  .visible-xs-block {
    display: block !important; }
  .visible-xs-inline {
    display: inline !important; }
  .visible-xs-inline-block {
    display: inline-block !important; } }

@media (max-width: 768px) {
  .visible-mobile-block {
    display: block !important; }
  .visible-mobile-flex {
    display: flex !important; }
  .hidden-mobile {
    display: none !important; } }

@media (min-width: 769px) and (max-width: 1023px) {
  .hidden-s {
    display: none !important; }
  .visible-s-block {
    display: block !important; }
  .visible-s-inline {
    display: inline !important; }
  .visible-s-inline-block {
    display: inline-block !important; } }

@media (min-width: 1024px) and (max-width: 1200px) {
  .hidden-m {
    display: none !important; }
  .visible-m-block {
    display: block !important; }
  .visible-m-inline {
    display: inline !important; }
  .visible-m-inline-block {
    display: inline-block !important; } }

@media (min-width: 1201px) and (max-width: 1440px) {
  .hidden-md {
    display: none !important; }
  .visible-md-block {
    display: block !important; }
  .visible-md-inline {
    display: inline !important; }
  .visible-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 1441px) {
  .hidden-l {
    display: none !important; }
  .visible-l-block {
    display: block !important; }
  .visible-l-inline {
    display: inline !important; }
  .visible-l-inline-block {
    display: inline-block !important; } }

hr {
  border: 0;
  width: 100%;
  height: 1px;
  margin: 30px 0;
  background: #000; }
  hr.hr-grey {
    background: #828282; }

/**
 * @info
 * Here, we outline utility classes that relate
 * to the primary content area, the header and the
 * footer. Here, we offset .main by a certain amount
 * of pixels to account for a sticky header. We also
 * provide some min-heights for the content area.
 *
 * These should be modified specifically for the project.
 * If you feel like they are not relevant, delete them.
 */
.no-scroll {
  overflow: hidden; }

.wrapper {
  transition: transform 0.3s; }
  .has-offset-main .wrapper {
    transform: translate3d(100%, 0, 0); }
    @media (min-width: 415px) {
      .has-offset-main .wrapper {
        transform: none; } }

.wrapper--max-width {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative; }

.header,
.footer {
  flex: 0 0 auto;
  width: 100%; }

/**
 * @info
 * Here, we outline utility classes that target
 * list elements. These can be used both in the DOM
 * directly or, in other style declarations.
 *
 * Examples (two different ways of using these):
 * .custom-module__list {
 *   @extend %ul;
 * }
 *
 * <ul class="custom-module__list ul">
 *   <li></li>
 *   <li></li>
 * </ul>
 */

.ul,
.ol {
  padding-left: 24px; }
  
  .ul li,
  .ol li {
    margin-top: 3px;
    position: relative; }
    @media (min-width: 415px) {
      
      .ul li,
      .ol li {
        margin-top: 5px; } }
    
    .ul li:first-child,
    .ol li:first-child {
      margin-top: 0; }
  
  .ul ul,
  .ul ol,
  .ol ul,
  .ol ol {
    margin-top: 3px; }
    @media (min-width: 415px) {
      
      .ul ul,
      .ul ol,
      .ol ul,
      .ol ol {
        margin-top: 5px; } }


.ul {
  list-style: disc; }


.ol {
  list-style: decimal; }

/**
 * @info
 * Here, we outline a range of margin and
 * padding declarations that can be used for
 * simple adjustments to spacing that are
 * consistent across breakpoints.
 */
.mha,
.mxa {
  margin-left: auto; }

.mha,
.mxa {
  margin-right: auto; }

.mva,
.mxa {
  margin-top: auto; }

.mva,
.mxa {
  margin-bottom: auto; }

.mt0,
.mv0,
.mx0 {
  margin-top: 0; }

.mb0,
.mv0,
.mx0 {
  margin-bottom: 0; }

.pt0,
.pv0,
.px0 {
  padding-top: 0; }

.pb0,
.pv0,
.px0 {
  padding-bottom: 0; }

.pr0,
.ph0,
.px0 {
  padding-right: 0; }

.pl0,
.ph0,
.px0 {
  padding-left: 0; }

.mt025,
.mv025,
.mx025 {
  margin-top: 0.25em; }

.mb025,
.mv025,
.mx025 {
  margin-bottom: 0.25em; }

.ml025,
.mh025,
.mx025 {
  margin-left: 0.25em; }

.mr025,
.mh025,
.mx025 {
  margin-right: 0.25em; }

.pt025,
.pv025,
.px025 {
  padding-top: 0.25em; }

.pb025,
.pv025,
.px025 {
  padding-bottom: 0.25em; }

.pl025,
.ph025,
.px025 {
  padding-left: 0.25em; }

.pr025,
.ph025,
.px025 {
  padding-right: 0.25em; }

.mt05,
.mv05,
.mx05 {
  margin-top: 0.5em; }

.mb05,
.mv05,
.mx05 {
  margin-bottom: 0.5em; }

.ml05,
.mh05,
.mx05 {
  margin-left: 0.5em; }

.mr05,
.mh05,
.mx05 {
  margin-right: 0.5em; }

.pt05,
.pv05,
.px05 {
  padding-top: 0.5em; }

.pb05,
.pv05,
.px05 {
  padding-bottom: 0.5em; }

.pl05,
.ph05,
.px05 {
  padding-left: 0.5em; }

.pr05,
.ph05,
.px05 {
  padding-right: 0.5em; }

.mt075,
.mv075,
.mx075 {
  margin-top: 0.75em; }

.mb075,
.mv075,
.mx075 {
  margin-bottom: 0.75em; }

.ml075,
.mh075,
.mx075 {
  margin-left: 0.75em; }

.mr075,
.mh075,
.mx075 {
  margin-right: 0.75em; }

.pt075,
.pv075,
.px075 {
  padding-top: 0.75em; }

.pb075,
.pv075,
.px075 {
  padding-bottom: 0.75em; }

.pl075,
.ph075,
.px075 {
  padding-left: 0.75em; }

.pr075,
.ph075,
.px075 {
  padding-right: 0.75em; }

.mt1,
.mv1,
.mx1 {
  margin-top: 1em; }

.mb1,
.mv1,
.mx1 {
  margin-bottom: 1em; }

.ml1,
.mh1,
.mx1 {
  margin-left: 1em; }

.mr1,
.mh1,
.mx1 {
  margin-right: 1em; }

.mln1 {
  margin-left: -1em; }

.mrn1 {
  margin-right: -1em; }

.mhn1 {
  margin-left: -1em;
  margin-right: -1em; }

.pt1,
.pv1,
.px1 {
  padding-top: 1em; }

.pb1,
.pv1,
.px1 {
  padding-bottom: 1em; }

.pl1,
.ph1,
.px1 {
  padding-left: 1em; }

.pr1,
.ph1,
.px1 {
  padding-right: 1em; }

.mt15,
.mv15,
.mx15 {
  margin-top: 1.5em; }

.mb15,
.mv15,
.mx15 {
  margin-bottom: 1.5em; }

.ml15,
.mh15,
.mx15 {
  margin-left: 1.5em; }

.mr15,
.mh15,
.mx15 {
  margin-right: 1.5em; }

.mln15 {
  margin-left: -1.5em; }

.mrn15 {
  margin-right: -1.5em; }

.mhn15 {
  margin-left: -1.5em;
  margin-right: -15em; }

.pt15,
.pv15,
.px15 {
  padding-top: 1.5em; }

.pb15,
.pv15,
.px15 {
  padding-bottom: 1.5em; }

.pl15,
.ph15,
.px15 {
  padding-left: 1.5em; }

.pr15,
.ph15,
.px15 {
  padding-right: 1.5em; }

.mt2,
.mv2,
.mx2 {
  margin-top: 2em; }

.mb2,
.mv2,
.mx2 {
  margin-bottom: 2em; }

.ml2,
.mh2,
.mx2 {
  margin-left: 2em; }

.mr2,
.mh2,
.mx2 {
  margin-right: 2em; }

.mln2 {
  margin-left: -2em; }

.mrn2 {
  margin-right: -2em; }

.mhn2 {
  margin-left: -2em;
  margin-right: -2em; }

.pt2,
.pv2,
.px2 {
  padding-top: 2em; }

.pb2,
.pv2,
.px2 {
  padding-bottom: 2em; }

.pl2,
.ph2,
.px2 {
  padding-left: 2em; }

.pr2,
.ph2,
.px2 {
  padding-right: 2em; }

.fade-enter-active, .fade-leave-active {
  transition: opacity 1s; }

.fade-enter, .fade-leave-to, .fade-out {
  opacity: 0; }

.slide-fade-enter-active {
  transition: all .5s ease; }

.slide-fade-leave-active {
  transition: all .5s ease; }

.slide-fade-enter, .slide-fade-leave-to {
  transform: translateY(10px);
  opacity: 0; }

.expand-enter-active,
.expand-leave-active {
  transition: height 1s ease-in-out;
  overflow: hidden; }

.expand-enter,
.expand-leave-to {
  height: 0; }

/**
 * @info
 * This stylesheet outlines utility functions
 * that easily attach widths to the DOM. It
 * currently is very simple but can be added to
 * over time.
 */
.w1 {
  width: 100%; }

.w50 {
  width: 50%; }

.w20 {
  width: 20%; }

/**
 * @info
 * This stylesheet defines a restricted set of utility
 * classes to handle z-index layering across the site. It
 * is encouraged to use these classes over custom declarations
 * like: z-index: 999999 since it can be very hard over time
 * to keep track of layering unless they comply to a restricted
 * system.
 */
.z0 {
  z-index: 0; }

.z1 {
  z-index: 100; }

.z2 {
  z-index: 200; }

.z3 {
  z-index: 300; }

.z4,
.header,
.header__inner {
  z-index: 400; }

.z5 {
  z-index: 500; }

.z6 {
  z-index: 600; }

.z7 {
  z-index: 700; }

.z8 {
  z-index: 800; }

.z9,
.modal__bg,
.modal__wrap {
  z-index: 900; }

.z10,
.modal__wrapper.active {
  z-index: 1000; }

/**
 * @info
 * We have this stylesheet to primarily
 * hide the preview bar when we need to.
 * Only Shopify UI component style overrides
 * should really go here.
 */
#preview-bar-iframe {
  height: 60px;
  display: none !important; }

html {
  padding: 0 !important; }

.o0 {
  opacity: 0; }

.o5 {
  opacity: 0.5; }

.o25 {
  opacity: 0.25; }

:focus {
  outline: 2px solid !important;
  outline-offset: 4px;
  color: #000; }

.overwrite-outline:focus {
  outline: 2px solid #000 !important;
  outline-offset: 4px;
  color: #fff; }

.yotpo .yotpo-label-container {
  display: none !important; }

.yotpo .new-yotpo-small-box {
  margin: 0;
  border-bottom: none;
  height: 110px; }

.yotpo .new-yotpo-small-box.reviews {
  display: none !important; }

.yotpo .yotpo-regular-box {
  border-top: none !important;
  margin: auto !important;
  max-width: 876px !important;
  padding: 0; }

.yotpo .bottom-line-items-wrapper {
  margin: auto !important;
  position: static !important;
  transform: none !important; }

.yotpo .bottom-line-items-container-desktop {
  height: auto !important; }

.yotpo .bottom-line-items {
  float: none !important;
  margin: 0 auto 20px !important;
  padding: 0 !important;
  width: 100%; }

.yotpo .yotpo-icon {
  color: #000 !important;
  margin-left: 5px !important;
  width: 24px !important; }
  .yotpo .yotpo-icon:first-child {
    margin-left: 0 !important; }
  .yotpo .yotpo-icon.review-star {
    cursor: pointer; }

.yotpo .yotpo-icon-empty-star {
  color: #e0e0e0 !important; }
  .yotpo .yotpo-icon-empty-star::before {
    content: "\e60e" !important; }

.yotpo .yotpo-filter-stars {
  display: flex;
  justify-content: center;
  -webkit-padding-start: 0 !important;
          padding-inline-start: 0 !important; }

.yotpo .avg-score {
  color: #000 !important;
  font-size: 36px !important;
  font-weight: 200 !important;
  left: 0 !important; }

.yotpo .reviews-qa-label {
  color: #000 !important;
  font-size: 10px !important;
  text-transform: uppercase !important; }

.yotpo .yotpo-star-distribution-wrapper {
  float: none !important;
  margin: 0 auto 50px;
  padding: 0 !important;
  width: 120px; }

.yotpo .yotpo-star-distribution-bar-score {
  background-color: #000 !important; }

.yotpo .write-question-review-buttons-container {
  float: none !important;
  margin: auto !important;
  max-width: 876px !important;
  overflow: auto;
  padding: 0 !important;
  width: calc(100% - 80px); }
  .yotpo .write-question-review-buttons-container .write-question-review-button {
    background: #000 !important;
    border: none !important;
    border-radius: 3px !important;
    color: #fff !important;
    display: block !important;
    margin: auto !important;
    padding: 0 !important;
    height: 44px !important;
    line-height: 44px !important;
    width: 250px !important; }
    .yotpo .write-question-review-buttons-container .write-question-review-button:hover {
      background: #000 !important;
      border: none !important; }
    .yotpo .write-question-review-buttons-container .write-question-review-button .yotpo-icon {
      display: none; }

.yotpo .write-question-review-button-text {
  color: #fff !important; }

.yotpo .write-review .yotpo-header-title,
.yotpo .write-review .yotpo-mandatory-mark,
.yotpo .write-review .yotpo-mandatory-explain,
.yotpo .write-review .socialize {
  display: none !important; }

.yotpo .write-review label[for="yotpo_input_review_title"],
.yotpo .write-review label[for="yotpo_input_review_content"],
.yotpo .write-review label[for="yotpo_input_review_username"],
.yotpo .write-review label[for="yotpo_input_review_email"] {
  margin-bottom: 10px;
  padding: 0 !important; }

.yotpo .write-review .y-label {
  color: #000 !important;
  font-size: 14px !important; }

.yotpo .write-review .yotpo-header {
  display: flex !important; }

.yotpo .write-review .yotpo-header .yotpo-icon {
  font-size: 18px !important;
  margin-left: 0 !important; }

.yotpo .write-review #write-review-score {
  line-height: 18px !important;
  margin-right: 8px !important;
  min-width: 0 !important;
  padding: 0 !important; }

.yotpo .write-review .y-input {
  border-color: #bdbdbd !important;
  border-radius: 3px !important; }

.yotpo .write-review .connect-wrapper {
  padding: 0 !important; }

.yotpo .write-review .yotpo-submit {
  background-color: #000 !important;
  border-radius: 3px !important;
  font-size: 16px !important;
  height: 44px !important;
  text-transform: none !important;
  width: 250px !important; }

.yotpo .write-review .yotpo-submit.primary-color-btn:hover {
  background-color: #000 !important; }

.yotpo .write-review #yotpo_input_review_title,
.yotpo .write-review #yotpo_input_review_content {
  margin: 0 0 20px !important; }

.yotpo .write-review #yotpo_input_review_username {
  margin-bottom: 20px !important; }
  @media (min-width: 1024px) {
    .yotpo .write-review #yotpo_input_review_username {
      margin-bottom: 0 !important; } }

.yotpo .write-review-wrapper {
  margin-top: 20px !important; }

.yotpo .reviews-amount {
  display: none; }

.yotpo .yotpo-reviews-header {
  border-top: solid 1px rgba(0, 0, 0, 0.3);
  margin: 20px auto 0 !important;
  max-width: 1340px !important;
  text-align: left; }

.yotpo .reviews-header {
  margin: auto !important;
  max-width: 876px !important; }

.yotpo .yotpo-drop-down-layout {
  display: block !important;
  height: 20px; }

.yotpo .sort-drop-down {
  width: 250px !important; }

.yotpo .yotpo-dropdown-button {
  float: right; }

.yotpo .yotpo-reviews {
  margin: auto !important;
  max-width: 1340px !important;
  padding-top: 70px; }

.yotpo .yotpo-review {
  border-bottom: solid 1px rgba(0, 0, 0, 0.3);
  padding: 20px 0; }

.yotpo .yotpo-icon-profile {
  display: none !important; }

.yotpo .yotpo-user-name {
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 200 !important;
  margin-bottom: 9px !important; }

.yotpo .yotpo-review-date {
  font-size: 16px !important; }

.yotpo .yotpo-main {
  margin: 0 !important; }
  .yotpo .yotpo-main .content-title {
    color: #000 !important;
    font-size: 24px !important;
    margin: 28px 0 16px; }
  .yotpo .yotpo-main .content-review {
    color: #000 !important;
    display: block !important;
    line-height: 28px;
    margin-bottom: 22px !important; }

.yotpo .footer-actions {
  display: none !important; }

.yotpo .yotpo-icon-thumbs-up,
.yotpo .yotpo-icon-thumbs-down {
  color: #828282 !important; }

/**
 * @info
 * This glob-based selector is something
 * unique to this starterkit. Here, all stylesheets
 * in all module files are added into this bundle. Their
 * changes are watched and the browser updates when
 * the files are saved. If you need one module stylesheet
 * to be included before another, you can configure
 * this in the kit.config.js file.
 */
/*! path: E:/work/HH/current/futura2000-v1/src/modules/collection/collection.scss */
.collection {
  display: block; }

.collection__hero {
  margin: 40px 0; }

.collection__hero__title {
  margin-bottom: 15px; }

.collection__grid {
  display: inline-flex;
  flex-wrap: wrap; }
  @media (min-width: 415px) {
    .collection__grid {
      width: calc(100% + 15px);
      margin: -15px 0 0 -15px; } }
  @media (min-width: 1024px) {
    .collection__grid {
      width: calc(100% + 25px);
      margin: -15px 0 0 -25px; } }

.collection__grid-item {
  margin-bottom: 50px;
  width: 100%; }
  @media (min-width: 415px) {
    .collection__grid-item {
      width: calc(50% - 15px);
      margin: 15px 0 0 15px; } }
  @media (min-width: 1024px) {
    .collection__grid-item {
      width: calc(25% - 25px);
      margin: 25px 0 0 25px; } }

.collection__pagination {
  display: flex;
  justify-content: center;
  position: relative; }
  .collection__pagination .page {
    padding: 0 8px; }
  .collection__pagination .current {
    text-decoration: underline; }
  .collection__pagination .prev {
    position: absolute;
    left: 0; }
  .collection__pagination .next {
    position: absolute;
    right: 0; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/product/product.scss */
.product {
  display: block;
  padding-bottom: 35px; }
  @media (min-width: 1024px) {
    .product {
      padding-bottom: 70px; } }
  .product > .mv--section:last-of-type {
    margin-bottom: 0; }

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

.product--bottom {
  padding-bottom: 1px; }

.product__reviews {
  border-top: solid 1px rgba(0, 0, 0, 0.3);
  padding: 35px 0; }
  @media (min-width: 1024px) {
    .product__reviews {
      padding-top: 118px; } }

.product__reviews__title {
  text-align: center; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/account-address/account-address.scss */
.account-address__title--new-address {
  margin-bottom: 10px; }

.account-adddress__add-address {
  margin-bottom: 40px; }

.account-address__list > * + * {
  padding-top: 20px; }

.account-address__item {
  padding: 0;
  margin-bottom: 50px; }

.account-address__item__footer {
  margin-top: 10px; }

.account-address__item__footer-btn {
  margin-right: 5px; }
  .account-address__item__footer-btn:last-child {
    margin-right: 0; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/account-details/account-details.scss */
.account-details {
  width: 50%; }

.account-details__title {
  margin-bottom: 20px; }

.account-details__btn {
  margin-top: 50px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/account-forms/account-forms.scss */
.account-forms__grid {
  position: relative;
  min-height: 100vh; }
  @media (min-width: 769px) {
    .account-forms__grid {
      display: flex; } }

.account-forms__grid__title {
  text-align: left;
  text-transform: initial; }

.account-forms__grid__description {
  color: #333;
  margin-bottom: 20px; }

.account-forms__grid__sign_in,
.account-forms__grid__sign_up {
  flex: 1;
  padding: 50px 20px; }
  @media (min-width: 769px) {
    .account-forms__grid__sign_in,
    .account-forms__grid__sign_up {
      padding: 100px 20px; } }

.account-forms__grid__sign_up {
  background: #f2f2f2; }

.account-forms__grid__inner {
  max-width: 440px;
  margin: 0 auto; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/account-login-form/account-login-form.scss */
/* Login form styles */
/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/account-navigation/account-navigation.scss */
.account-navigation {
  margin-top: 40px;
  margin-bottom: 60px; }

.account-navigation__left__link {
  display: flex;
  align-items: center; }

.account-navigation__left__link__icon {
  width: 44px;
  height: 44px;
  display: flex;
  position: relative;
  border-radius: 50%;
  border: 1px solid #000; }

.account-navigation__left__link__icon svg {
  width: 50%;
  height: 50%;
  display: block;
  margin: auto; }

.account-navigation__left__link__title {
  padding-left: 10px;
  display: none; }
  @media (min-width: 769px) {
    .account-navigation__left__link__title {
      display: block; } }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/account-new-address/account-new-address.scss */
.new-address-form {
  margin-bottom: 40px; }

.new-address-form__title {
  margin-bottom: 25px; }
  @media (min-width: 769px) {
    .new-address-form__title {
      margin-bottom: 45px; } }

@media (min-width: 769px) {
  .new-address-form__group {
    margin-bottom: 20px;
    display: flex; } }

.new-address-form__input {
  width: 100%;
  margin-bottom: 10px; }
  @media (min-width: 769px) {
    .new-address-form__input {
      margin-bottom: 0; } }

@media (min-width: 769px) {
  .new-address-form__input:first-child {
    margin-right: 20px; } }

@media (min-width: 769px) {
  .new-address-form__input + .new-address-form__input {
    margin-right: 20px; } }

.new-address-form__footer {
  margin-top: 25px;
  margin-bottom: 40px; }
  @media (min-width: 769px) {
    .new-address-form__footer {
      margin-top: 45px;
      margin-bottom: 80px; } }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/account-order/account-order.scss */
.account-order__title {
  margin-bottom: 60px; }

.account-order__section {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 20px;
  margin-bottom: 20px; }
  .account-order__section:last-child {
    border: none; }

.account-order__summary-badge {
  margin: 0.25em 0.5em 0.25em 0;
  border: 2px solid #f2f2f2;
  border-radius: 4px; }
  .account-order__summary-badge > span {
    padding: 0.25em 0.75em; }

.account-order__summary-badge__title {
  display: inline-block;
  background-color: #f2f2f2; }

.account-order__line-item__row {
  padding: 1.2em;
  border-radius: 4px; }
  .account-order__line-item__row:nth-of-type(odd) {
    background-color: #f2f2f2; }

.account-order__line-item__image {
  width: 100px;
  position: relative;
  margin-bottom: 10px; }
  @media (min-width: 1024px) {
    .account-order__line-item__image {
      margin-right: 10px;
      margin-bottom: 0; } }

.account-order__line-item__info {
  min-width: 100%; }
  @media (min-width: 1024px) {
    .account-order__line-item__info {
      min-width: 0; } }

@media (min-width: 1024px) {
  .account-order__line-item__total {
    text-align: right; } }

.account-order__totals__title {
  margin-bottom: 10px; }

.account-order__addresses__address {
  background-color: #f2f2f2;
  padding: 20px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/account-orders/account-orders.scss */
.account-orders {
  width: 100%; }
  @media (min-width: 1024px) {
    .account-orders {
      width: 50%; } }

.account-orders__title {
  margin-bottom: 20px; }

.order-orders__row {
  display: flex;
  padding: 20px 0; }

.order-orders__row--header {
  border-bottom: 2px solid #000; }

.order-orders__row--body {
  border-bottom: 2px solid #e0e0e0; }

.order-orders__cell {
  width: 24%;
  display: block;
  padding: 0 5px; }

.order-orders__cell:nth-child(1) {
  width: 14%; }

.order-orders__cell:nth-child(5) {
  width: 14%; }

.order-orders__cell--body {
  text-transform: capitalize; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/account-register-form/account-register-form.scss */
.register-form label.checkbox span {
  color: #000;
  font-size: 14px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/alert/alert.scss */
.alert {
  padding: 10px;
  background-color: #e0e0e0;
  border-radius: 3px; }

.alert--error {
  color: #BB333F; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/account/page-title/page-title.scss */
.page-title {
  margin: 50px auto 30px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/cart/cart-grid/cart-grid.scss */
.cart-grid {
  position: relative;
  min-height: 320px;
  padding-top: 70px; }

.cart-grid__subtitle {
  margin: 20px 0; }

.cart__header {
  display: none; }
  @media (min-width: 769px) {
    .cart-grid--default .cart__header {
      display: table-header-group; } }

@media (min-width: 769px) {
  .cart-grid--default .cart__header__item {
    display: table-cell;
    padding: 5px 0 10px; } }

.cart__header__item:first-child {
  border-left: 0;
  width: 40%; }

.cart__header__item:nth-of-type(2) {
  width: 20%; }

.cart__header__item:nth-of-type(3) {
  width: 20%; }

.cart__header__item:last-child {
  border-right: 0;
  width: 20%; }

@media (min-width: 769px) {
  .cart-grid--default .cart__body {
    display: table-row-group; } }

@media (min-width: 769px) {
  .cart-grid--default .cart-grid__items {
    display: table;
    table-layout: fixed;
    border-collapse: collapse; } }

.cart-grid__items.is-loading {
  opacity: 0.6;
  pointer-events: none; }

.cart__body-item {
  padding-top: 15px;
  margin-bottom: 15px; }

.cart__subtotal {
  padding-top: 15px;
  margin-bottom: 15px; }
  .cart__subtotal span {
    margin-left: 20px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/cart/cart-item/cart-item.scss */
.cart-item {
  padding-top: 15px;
  margin-bottom: 15px;
  border-top: 1px solid rgba(var(#000), 0.5); }
  @media (min-width: 769px) {
    .cart-grid--default .cart-item {
      display: table-row;
      padding: 0; } }

.cart-item__update {
  opacity: 0.3;
  pointer-events: none; }
  .cart-item__update.is-active {
    opacity: 1;
    pointer-events: auto; }

@media (min-width: 769px) {
  .cart-grid--default .cart-item__info, .cart-grid--default
  .cart-item__price, .cart-grid--default
  .cart-item__quantity, .cart-grid--default
  .cart-item__total {
    display: table-cell;
    position: static;
    padding-top: 20px;
    padding-bottom: 1.8rem; } }

.cart-item__info {
  overflow: hidden; }
  @media (min-width: 1024px) {
    .cart-grid--default .cart-item__info {
      padding-right: 1em;
      text-align: left; } }

@media (min-width: 1024px) {
  .cart-grid--default .cart-item__price {
    padding-right: 1em; } }

.cart-item__total {
  position: absolute;
  top: 15px;
  right: 0; }

.cart-item__quantity {
  padding-left: 90px;
  position: relative;
  z-index: 1; }
  @media (min-width: 376px) {
    .cart-item__quantity {
      padding-left: 110px; } }
  .cart-grid--default .cart-item__quantity {
    display: none;
    padding-left: 0; }
    @media (min-width: 769px) {
      .cart-grid--default .cart-item__quantity {
        display: block; } }
    @media (min-width: 1024px) {
      .cart-grid--default .cart-item__quantity {
        padding-left: 0;
        padding-right: 1em; } }

.cart-item__remove {
  line-height: 1.2; }

.cart-item__featured {
  width: 100%;
  max-width: 90px;
  float: left; }
  @media (min-width: 376px) {
    .cart-item__featured {
      padding-right: 1.5em;
      max-width: calc(90px + 1.5em); } }
  .cart-item__featured::before {
    padding-bottom: 100%; }

.cart-item__details {
  max-width: 170px;
  width: 50%;
  float: left; }
  @media (min-width: 769px) {
    .cart-grid--default .cart-item__details {
      width: calc(100% - 100px - 1.5em); } }

.cart-item__details__heading,
.cart-item__details__description {
  padding-bottom: 10px; }

@media (min-width: 769px) {
  .cart-grid--default .cart-item__details-quantity {
    display: none; } }

@media (min-width: 1024px) {
  .cart-item__title {
    max-width: calc(100% - 60px); } }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/icons/icon/icon.scss */
.icon {
  display: block; }
  .icon svg {
    display: block;
    height: 100%;
    width: 100%; }

.icon-small {
  display: block; }
  .icon-small svg {
    display: block;
    width: 100%;
    height: auto; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/accordion/accordion.scss */
.accordion {
  padding-bottom: 17px; }

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

.accordion--border-top:first-of-type {
  border-top: 1px solid #f2f2f2; }

@media (min-width: 415px) {
  .accordion--footer {
    max-width: 325px; } }

.accordion--full {
  max-width: 100%; }

.accordion__title {
  cursor: pointer;
  position: relative;
  padding: 19px 25px 0 0; }

.accordion__title__icon::after, .accordion__title__icon::before {
  content: '';
  right: 3px;
  height: 2px;
  width: 10px;
  top: calc(50% + 9px);
  display: block;
  position: absolute;
  transform-origin: center;
  background-color: #000;
  transform: translateY(-50%);
  transition: transform 300ms; }

.accordion__title__icon::before {
  transform: translateY(-50%) rotate(90deg); }

.is-active .accordion__title__icon::before {
  transform: translateY(-50%) rotate(0); }

.accordion--no-icon .accordion__title__icon {
  display: none; }

.accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: all 0.2s linear; }

.accordion__body__content {
  padding-top: 20px;
  padding-bottom: 5px; }
  .accordion--faq .accordion__body__content {
    padding-top: 40px; }
    @media (min-width: 769px) {
      .accordion--faq .accordion__body__content {
        padding-top: 75px; } }
  .accordion__body__content p {
    margin-bottom: 10px; }
    .accordion__body__content p:empty {
      margin-bottom: 0; }
    .accordion__body__content p:last-of-type {
      margin-bottom: 0; }
  .accordion__body__content strong {
    font-weight: bold; }
  .accordion__body__content em {
    font-style: italic; }
  .accordion__body__content ul {
    padding: 5px 0; }
    .accordion__body__content ul li {
      padding-left: 15px;
      margin-bottom: 5px;
      position: relative; }
      .accordion__body__content ul li::before {
        content: '';
        left: 2px;
        top: 9px;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        position: absolute;
        background: blue; }
      .accordion__body__content ul li:last-of-type {
        margin-bottom: 0; }

/**
 * Accessibility styling
 */
.accordion.focus-within .accordion__title::before {
  transform: translateY(-50%) rotate(0); }

.accordion.focus-within .accordion__body {
  max-height: none !important; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/button/button.scss */
button:focus,
.btn:focus,
[class^="btn--"]:focus {
  box-shadow: 0 0 0 1px blue; }

.btn {
  height: 60px;
  min-width: 240px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  align-items: center;
  display: inline-flex;
  justify-content: center; }
  .btn span {
    display: block;
    line-height: 100%; }
  .btn.btn--full {
    width: 100%; }
  .btn.btn--black {
    color: #fff;
    background: #000; }
  .btn.btn--compact {
    height: auto;
    padding: 11px 9px;
    min-width: initial;
    line-height: 1.3; }
  .btn.btn--small {
    height: auto;
    padding: 5px 0;
    min-width: initial;
    line-height: 1.3; }
  .btn.btn--underline {
    position: relative; }
    .btn.btn--underline span::after {
      content: "";
      left: 0;
      right: 0;
      height: 1px;
      bottom: 3px;
      background: #000;
      position: absolute; }

.btn--link, .btn--link--sm,
.btn--reset {
  padding: 0;
  height: auto;
  text-align: left;
  min-width: inherit;
  text-decoration: underline;
  line-height: 1.3; }

.btn--primary {
  color: #fff;
  border: 1px solid #f2f2f2;
  background-color: #f2f2f2;
  transition: all 300ms; }
  .btn--primary:disabled {
    opacity: 1; }
  .btn--primary.disabled {
    opacity: 0.5;
    pointer-events: none; }
  .btn--primary:hover:not(:disabled) {
    background-color: #000;
    border-color: #000;
    color: #fff; }
    .btn--primary:hover:not(:disabled) span {
      color: #fff;
      margin-bottom: 0; }
  .btn--primary:focus:not(:disabled) {
    color: #fff; }
    .btn--primary:focus:not(:disabled) span {
      color: #fff; }
  .btn--primary.btn--compact {
    height: 40px;
    min-width: 180px;
    padding: 0 15px 2px;
    /* Accessibility Related */ }
    .btn--primary.btn--compact:active {
      outline: 2px dotted #000 !important;
      outline-offset: 2px; }

.btn--outlined {
  color: #f2f2f2;
  border: 2px solid #f2f2f2;
  transition: all 300ms; }
  .btn--outlined:hover:not(:disabled) {
    color: #fff !important;
    background-color: #000;
    border: 2px solid #000; }
  .btn--outlined:disabled {
    opacity: 1; }
  .btn--outlined.btn--outlined--disabled {
    pointer-events: none; }
  .btn--outlined span {
    margin-bottom: 0; }

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

.btn--link {
  text-decoration: none;
  position: relative;
  line-height: calc(1em + 9px); }

.btn--link--sm {
  text-decoration: none;
  position: relative;
  line-height: calc(1em + 6px); }

.btn--link::after,
.btn--link--sm::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background-color: currentColor; }

.btn--circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  overflow: hidden;
  border-radius: 50%;
  background: #e0e0e0; }
  .btn--circle:active, .btn--circle:focus, .btn--circle:hover {
    background: #000; }
    .btn--circle:active svg, .btn--circle:focus svg, .btn--circle:hover svg {
      color: #fff; }
  .btn--circle.btn--medium {
    padding: 0;
    width: 40px;
    height: 40px;
    min-width: 40px; }
  .btn--circle.btn--small {
    padding: 0;
    width: 34px;
    height: 34px;
    min-width: 34px; }
  .btn--circle.btn--top {
    width: 60px;
    height: 60px; }
  .btn--circle svg {
    height: auto; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/carousel-indicator/carousel-indicator.scss */
.carousel-indicator {
  width: 100%;
  margin-top: 13px; }

.carousel-indicator__bullet {
  height: 2px;
  opacity: 0.5;
  margin-left: 0;
  transition: margin-left 0.2s ease-in-out; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/checkbox/checkbox.scss */
.checkbox {
  display: block;
  min-height: 1.6rem; }
  .checkbox.spaced-top {
    padding-top: 24px; }
  .checkbox.spaced-bottom {
    padding-bottom: 24px; }
  .checkbox .checkbox__wrapper {
    display: block;
    height: 100%; }
  .checkbox .checkbox__label {
    display: block;
    height: auto;
    position: relative;
    transition: all ease 0.3s;
    padding-top: 2px;
    font-size: 14px; }
    .checkbox .checkbox__label span {
      display: block;
      font-size: 14px;
      min-height: 1rem;
      line-height: 22px;
      padding-left: 30px;
      text-transform: none;
      letter-spacing: 0.5px;
      transition: all ease 0.3s; }
    .checkbox .checkbox__label a {
      color: #000;
      text-decoration: underline; }
    .checkbox .checkbox__label:focus .checkbox__icon, .checkbox .checkbox__label:active .checkbox__icon, .checkbox .checkbox__label:hover .checkbox__icon {
      border-color: #000 !important; }
    .checkbox .checkbox__label.is-active .checkbox__icon {
      background: black;
      border-color: transparent !important; }
    .checkbox .checkbox__label.is-active .checkbox__icon svg {
      opacity: 1; }
    .checkbox .checkbox__label.is-active .checkbox__icon svg.checkbox__icon-loading {
      opacity: 0; }
  .checkbox .checkbox__icon {
    top: 5px;
    width: 20px;
    height: 20px;
    position: absolute;
    margin-right: 10px;
    transition: all ease 0.3s;
    border: 2px solid #bdbdbd; }
    .checkbox .checkbox__icon svg {
      opacity: 0;
      width: 20px;
      display: block;
      margin: -2px 0 0 -2px;
      transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .checkbox.fixed {
    position: relative; }

.checkbox--align-t {
  align-items: flex-start; }

.is-error.checkbox__icon {
  border: 1px solid #BB333F; }

.checkbox--align-t .checkbox__icon {
  margin-top: 2px; }

.checkbox__icon-el {
  opacity: 0;
  z-index: 1;
  width: 15px;
  height: 15px;
  display: block;
  flex: 0 0 auto;
  cursor: pointer;
  margin-right: 10px;
  position: relative; }

.checkbox__icon-el:checked + .checkbox__icon-tick {
  opacity: 1; }

.checkbox__icon-tick {
  width: 10px;
  position: absolute;
  top: 1px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 0;
  opacity: 0;
  transition: opacity 300ms ease-in-out; }

.checkbox__icon-loading {
  width: 10px;
  position: absolute;
  top: 1px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  -webkit-animation: spin 1.2s linear infinite;
          animation: spin 1.2s linear infinite; }

.is-error + .checkbox__label {
  color: #BB333F; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/checkbox-group/checkbox-group.scss */
.multi-option {
  position: relative;
  /* Resolves autocomplete white background issue */ }
  .multi-option input:-webkit-autofill,
  .multi-option input:-webkit-autofill:hover,
  .multi-option input:-webkit-autofill:focus,
  .multi-option input:-webkit-autofill:active {
    transition-delay: 9999s; }

.multi-option__wrapper {
  padding: 1rem 0 1.2rem;
  height: auto;
  line-height: initial;
  position: relative; }

.multi-option__el_list {
  display: block;
  width: 100%; }

.multi-option__el {
  position: relative;
  height: 2.25rem;
  line-height: 2.25rem;
  transition: all 200ms;
  z-index: 2;
  width: 100%;
  margin: 0 0 0.3rem; }
  .multi-option__el:last-child {
    margin-bottom: 0; }
  .multi-option__el.is-active .multi-option__icon {
    border: 2px solid #000; }
  .multi-option__el.is-active .multi-option__icon span {
    background: #000;
    width: 10px;
    height: 10px; }
  .multi-option__el.is-active .multi-option__icon svg {
    opacity: 1; }

.multi-option__title {
  display: block;
  z-index: 1;
  width: 100%;
  height: 2.25rem;
  line-height: 2.25rem; }

.multi-option__label > span {
  display: block;
  z-index: 1;
  width: 100%;
  height: 2.25rem;
  line-height: 2.25rem;
  cursor: pointer;
  padding: 0 0 0 1.8rem;
  transition: padding 0.3s ease; }

.multi-option__label:focus .multi-option__icon, .multi-option__label:active .multi-option__icon, .multi-option__label:hover .multi-option__icon {
  border-color: #000 !important; }

.multi-option__icon {
  width: 20px;
  height: 20px;
  position: absolute;
  border: 2px solid #bdbdbd;
  margin-right: 10px;
  top: 7px;
  transition: all ease 0.3s; }
  .multi-option__icon span {
    display: block;
    width: 2px;
    height: 2px;
    background: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all ease 0.3s; }
  .multi-option__icon.multi-option__icon-checkbox span {
    display: none !important; }
  .multi-option__icon.multi-option__icon-checkbox svg {
    opacity: 0;
    display: block;
    margin: -2px 0 0 -2px;
    width: 20px;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1); }

.multi-option__input {
  display: block;
  visibility: hidden;
  width: 1px;
  height: 1px; }

.multi-option__error {
  position: absolute;
  bottom: 0;
  height: 1rem;
  line-height: 1rem;
  font-size: 0.8rem;
  color: #BB333F;
  opacity: 0;
  transform: translateY(-0.5em);
  transition: opacity 300ms ease, transform 300ms ease; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/countdown-timer/timer-variants.scss */
.timer-variants {
  margin: 60px 0;
  border-top: 5px solid; }

.timer-variant {
  border-bottom: 5px solid; }

.timer-variant--inner {
  font-size: 40px;
  line-height: 1.2; }
  .timer-variant--inner > div {
    border-right: 5px solid; }
    .timer-variant--inner > div:last-child {
      border-right: none; }

.timer-variant--index {
  width: 10%;
  padding-top: 5px; }

.timer-variant--bg {
  width: 12%;
  background-size: cover;
  background-position: center; }

.timer-variant--title {
  width: 60%;
  padding: 35px 40px 30px; }
  .timer-variant--title .icon-small {
    width: 20px; }

.timer-variant--notify,
.timer-variant--quantity {
  right: 40px;
  margin-bottom: 5px; }

.timer-variant--quantity {
  margin-bottom: 12px; }
  .timer-variant--quantity .quantity-selector {
    display: flex;
    align-items: center;
    border: none; }
  .timer-variant--quantity .quantity-selector__action {
    display: none;
    height: auto; }
  .timer-variant--quantity .quantity-selector__action__text {
    font-size: 40px;
    color: #fff;
    width: 100%;
    line-height: 1;
    font-weight: normal; }
  .timer-variant--quantity .quantity-selector__field.quantity-selector__field {
    font-size: 40px;
    font-family: "UniversLTPro-UltCond", sans-serif;
    line-height: 1.45; }
  .timer-variant--quantity .quantity-selector__action--decrement {
    margin-bottom: 4px; }
  .timer-variant--quantity .quantity-selector__action--increment {
    margin-top: 5px; }

.timer-variant--date,
.timer-variant--buy {
  width: 18%;
  padding-top: 5px; }

.product-soldout .timer-variant--buy span {
  opacity: 0.4; }

@media (max-width: 768px) {
  .timer-variants {
    border: none;
    border-top: 2px solid;
    border-bottom: 2px solid;
    width: 100%;
    overflow: hidden; }
  .timer-variants--inner {
    margin: 0 -2px; }
  .timer-variant {
    border: none; }
  .timer-variant--inner {
    flex-wrap: wrap; }
    .timer-variant--inner > div {
      font-size: 24px;
      border: 2px solid; }
      .timer-variant--inner > div:last-child {
        border-right: 2px solid;
        width: 50%;
        padding: 16px 0 10px; }
    .timer-variant--inner .timer-variant--index,
    .timer-variant--inner .timer-variant--bg {
      width: 25%; }
    .timer-variant--inner .timer-variant--title,
    .timer-variant--inner .timer-variant--notify,
    .timer-variant--inner .timer-variant--quantity,
    .timer-variant--inner .timer-variant--date {
      width: 50%; }
    .timer-variant--inner .timer-variant--title {
      padding: 16px 10px 10px;
      text-align: center;
      justify-content: center; }
    .timer-variant--inner .timer-variant--notify {
      font-size: 14px;
      right: auto;
      margin-bottom: 0; }
    .timer-variant--inner .timer-variant--quantity {
      right: auto;
      margin-bottom: 0; }
      .timer-variant--inner .timer-variant--quantity .quantity-selector__action__text {
        font-size: 24px; }
      .timer-variant--inner .timer-variant--quantity .quantity-selector__field.quantity-selector__field {
        display: flex;
        align-items: center;
        padding-top: 8px;
        font-size: 24px; }
      .timer-variant--inner .timer-variant--quantity .quantity-selector__action--decrement {
        margin-bottom: 4px; }
      .timer-variant--inner .timer-variant--quantity .quantity-selector__action--increment {
        margin-top: 3px; }
    .timer-variant--inner .timer-variant--date {
      margin-top: 0;
      padding: 16px 10px 10px; } }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/countdown-timer/timer.scss */
.timer-bg {
  max-width: 600px;
  margin: 0 auto; }
  .timer-bg .img {
    background: transparent; }
  .timer-bg .timer-img {
    width: 100%; }

.timer-bg-slider {
  margin-bottom: 30px; }
  .timer-bg-slider .flickity-prev-next-button {
    background: transparent;
    color: #fff; }
    .timer-bg-slider .flickity-prev-next-button:hover {
      background: transparent; }
    .timer-bg-slider .flickity-prev-next-button.previous {
      left: -50px; }
    .timer-bg-slider .flickity-prev-next-button.next {
      right: -50px; }

.timer-content {
  font-weight: 900;
  font-size: 100px;
  line-height: 120%;
  z-index: 2; }

.get-notified {
  font-size: 14px;
  line-height: 1; }
  .get-notified .icon-small {
    margin-left: 15px; }

.timer-notified {
  bottom: 0;
  right: 15px;
  font-size: 40px; }
  .timer-notified .icon-small {
    margin-right: 15px;
    width: 27px; }

.timer-arrow {
  font-size: 20px; }
  .timer-arrow .icon-small {
    width: 16px;
    margin: 3px auto 0; }

.product-wrapper .timer {
  color: #bc2cc6; }

.product-wrapper .timer-notified {
  display: none;
  bottom: auto;
  right: auto;
  top: calc(50% + 100px);
  z-index: 2;
  font-size: 28px;
  border: 3px solid;
  padding: 22px 15px 16px;
  min-width: 285px;
  justify-content: center;
  background: #fff; }
  .product-wrapper .timer-notified .icon-small {
    display: none; }

.product-wrapper .timer-arrow {
  color: #fff; }

.product-wrapper .timer-content {
  color: #fff; }

@media (max-width: 768px) {
  .timer-bg {
    max-width: none;
    padding: 0 30px;
    overflow: hidden; }
  .timer-bg-slider {
    margin-bottom: 0; }
    .timer-bg-slider .flickity-prev-next-button.previous {
      left: -35px; }
    .timer-bg-slider .flickity-prev-next-button.next {
      right: -35px; }
  .timer-wrapper {
    flex-direction: column; }
  .timer-content {
    position: relative;
    font-size: 40px;
    margin-top: 10px; }
  .get-notified .icon-small {
    width: 15px;
    margin-left: 8px; }
  .timer-notified {
    position: relative;
    font-size: 24px;
    margin-top: 15px;
    right: 0; }
    .timer-notified .icon-small {
      margin-left: 0;
      margin-right: 10px; }
  .timer-arrow {
    margin-top: 20px; } }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/dropdown-menu/dropdown-menu.scss */
.dropdown-menu {
  position: relative;
  /* Resolves autocomplete white background issue */ }
  .dropdown-menu input:-webkit-autofill,
  .dropdown-menu input:-webkit-autofill:hover,
  .dropdown-menu input:-webkit-autofill:focus,
  .dropdown-menu input:-webkit-autofill:active {
    transition-delay: 9999s; }
  .dropdown-menu .dropdown-menu__wrapper {
    height: auto;
    position: relative;
    line-height: initial; }
  .dropdown-menu .dropdown-menu__label,
  .dropdown-menu .dropdown-menu__arrow {
    position: absolute;
    bottom: initial;
    margin: auto;
    height: 44px;
    line-height: 44px;
    transition: all ease 200ms;
    z-index: 2;
    pointer-events: none;
    top: 0; }
  .dropdown-menu .dropdown-menu__arrow {
    border-bottom: 3px solid #000;
    right: 0;
    top: 0; }
    .dropdown-menu .dropdown-menu__arrow svg {
      display: block;
      width: 22px;
      height: 100%; }
  .dropdown-menu .dropdown-menu__value {
    border-bottom: 3px solid #000;
    height: 44px;
    line-height: 44px;
    overflow: hidden;
    padding: 0 1em;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: all ease 0.3s;
    white-space: nowrap;
    width: calc(100% - 22px);
    z-index: 1; }
  .dropdown-menu .dropdown-menu__error {
    position: absolute;
    bottom: 0;
    height: 1rem;
    line-height: 1rem;
    font-size: 0.8rem;
    color: #BB333F;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
    pointer-events: none; }
  .dropdown-menu .dropdown-menu__el {
    z-index: 1;
    opacity: 0;
    width: 100%;
    height: 44px;
    display: block;
    cursor: pointer; }
  .dropdown-menu.is-active .dropdown-menu__label {
    display: none; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/empty-view/empty-view.scss */
.empty-view {
  margin: 20px 0 40px;
  padding: 20px 25px; }
  @media (min-width: 769px) {
    .empty-view {
      margin-top: 40px;
      padding: 50px; } }

.empty-view__title {
  margin-bottom: 25px; }
  @media (min-width: 769px) {
    .empty-view__title {
      margin-bottom: 30px; } }

.empty-view__image {
  width: 100%;
  max-width: 135px;
  margin: 0 auto 25px; }
  @media (min-width: 769px) {
    .empty-view__image {
      max-width: 180px;
      margin-bottom: 35px; } }
  .empty-view__image::before {
    padding-top: 88.88889%; }
    @media (min-width: 769px) {
      .empty-view__image::before {
        padding-top: 61.11111%; } }

.empty-view__button {
  display: inline-block; }
  @media (min-width: 769px) {
    .empty-view__button {
      min-width: 250px; } }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/footer/footer.scss */
.template-index .footer,
.template-product .footer {
  background: transparent;
  color: #fff; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/form-klaviyo/form-klaviyo.scss */
.form-klaviyo__form {
  display: flex; }

.form-klaviyo__field--email {
  width: 325px; }

.form-klaviyo__submit {
  margin-left: 20px;
  width: 150px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/form-stock-notification/form-stock-notification.scss */
@media (min-width: 1024px) {
  .form-stock-notification__field--first-name,
  .form-stock-notification__field--email,
  .form-stock-notification__field--website-url {
    float: left;
    margin-right: 12px;
    overflow: auto;
    width: calc(50% - 12px); } }

@media (min-width: 1024px) {
  .form-stock-notification__field--last-name,
  .form-stock-notification__field--phone-number,
  .form-stock-notification__field--country {
    float: left;
    margin-left: 12px;
    overflow: auto;
    width: calc(50% - 12px); } }

.form-stock-notification__header {
  margin-bottom: 26px; }

.form-stock-notification__info {
  margin-bottom: 31px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/hero-media/hero-media.scss */
.hero-media {
  height: 100vh; }

.hero-media__content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center; }

.hero-media__content__wrapper {
  max-width: 526px; }

.hero-media__content__title {
  margin-bottom: 22px; }

.hero-media__content__text {
  margin-bottom: 38px; }

.hero-media__content__cta {
  display: inline-block;
  text-transform: uppercase; }
  .hero-media__content__cta::after {
    border-bottom: solid 1px currentColor;
    content: '';
    display: block;
    width: 100%; }

.hero-media__background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/image/image.scss */
.img,
.img__el {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%; }

.img {
  background-color: #f2f2f2;
  overflow: hidden; }
  .img.transparent {
    background-color: transparent; }
  .img.fit-cover .img__el {
    -o-object-fit: cover;
       object-fit: cover;
    /* stylelint-disable */
    font-family: 'object-fit: cover;';
    /* stylelint-enable */ }
  .img.fit-contain .img__el {
    -o-object-fit: contain;
       object-fit: contain;
    /* stylelint-disable */
    font-family: 'object-fit: contain;';
    /* stylelint-enable */ }
  .img.position-top .img__el {
    -o-object-position: top;
       object-position: top; }
  .img.position-right .img__el {
    -o-object-position: right;
       object-position: right; }
  .img.position-bottom .img__el {
    -o-object-position: bottom;
       object-position: bottom; }
  .img.position-left .img__el {
    -o-object-position: left;
       object-position: left; }
  .img.position-center .img__el {
    -o-object-position: center;
       object-position: center; }
  .img.is-loaded .img__el {
    opacity: 1; }
  .img.is-loaded .img__loader {
    opacity: 0;
    visibility: hidden; }

.img__el {
  opacity: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  z-index: 2;
  /* For Vue transitions */ }
  .img__el.is-fallback {
    opacity: 1; }
  .img__el.fade-enter, .img__el.fade-leave-to {
    opacity: 0 !important; }
  .img__el.fade-enter {
    z-index: 1; }

.img__loader {
  -webkit-animation: spin 0.25s infinite;
          animation: spin 0.25s infinite;
  background-color: #000;
  height: 30px;
  left: calc(50% - 15px);
  position: absolute;
  top: calc(50% - 15px);
  transition-duration: 0.2s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
  width: 30px;
  z-index: 0; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/image-zoom/image-zoom.scss */
.product-gallery__zoom {
  width: 100%;
  display: block;
  overflow: hidden; }
  .product-gallery__zoom > img {
    width: 100%; }
  .product-gallery__zoom__zoomed {
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: center center no-repeat;
    background-size: 100%; }
  .product-gallery__zoom.active {
    cursor: pointer; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/modal/modal.scss */
.modal__bg {
  background-color: rgba(189, 189, 189, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%; }

.modal__wrap {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100vw;
  max-width: 930px;
  height: 100vh;
  max-height: 100vh; }
  @media (min-width: 415px) {
    .modal__wrap {
      height: auto;
      max-height: calc(100vh - 127px);
      width: calc(100% - 40px);
      max-width: 588px; } }
  @media (min-width: 769px) {
    .modal__wrap {
      max-width: 824px; } }
  @media (min-width: 1024px) {
    .modal__wrap {
      max-width: 930px; } }
  .modal__wrap.modal__wrap--small {
    max-width: 420px; }
    .modal__wrap.modal__wrap--small .single-form {
      margin: 0 20px;
      width: calc(100% - 40px); }
      .modal__wrap.modal__wrap--small .single-form > div {
        padding: 40px 0 20px; }
  .modal__wrap.modal__wrap--quick-view {
    max-width: 930px; }
    .modal__wrap.modal__wrap--quick-view .modal__inner > div {
      padding: 0;
      max-width: 100%; }
    .modal__wrap.modal__wrap--quick-view .single-form {
      margin: 0;
      width: 100%; }

.modal__wrapper.active {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  transform: translate(0, 0); }

.modal__container {
  z-index: 2;
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  overflow-y: auto; }
  @media (min-width: 415px) {
    .modal__container {
      height: auto;
      max-height: 100%; } }

.modal__content {
  flex: 1; }

.modal__title {
  text-align: center;
  margin-bottom: 30px; }

.modal__inner {
  margin: 0 auto; }
  .modal__inner > div,
  .modal__inner [slot=default] {
    padding: 44px 20px 116px;
    max-width: 720px;
    margin: 0 auto; }
  .modal__inner .table--flex {
    overflow: auto;
    max-height: calc(100vh - 120px); }

.modal__footer {
  position: relative;
  bottom: 0;
  width: 100%;
  max-width: initial;
  left: 0;
  height: 3.75rem;
  text-align: center;
  z-index: 2; }
  .modal__footer a {
    display: block;
    box-sizing: border-box;
    width: 200px;
    padding: 16px;
    margin: 0 auto;
    height: 60px; }
    .modal__footer a span {
      line-height: 26px;
      height: 26px;
      display: block;
      padding-left: 40px;
      text-align: right;
      position: relative;
      top: -26px; }
    .modal__footer a svg {
      display: block;
      margin-right: 0.5rem;
      line-height: 26px;
      height: 26px;
      position: relative;
      top: 0; }

.close__modal {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  display: block;
  cursor: pointer;
  transition: opacity cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
  z-index: 3;
  color: #fff; }
  .close__modal svg {
    width: 100%;
    height: auto;
    display: block; }
  .close__modal:hover {
    opacity: 0.8; }
  .close__modal:hover svg {
    fill: #BB333F; }
  @media (min-width: 1024px) {
    .close__modal {
      top: 21px;
      right: 21px; } }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/modal-signup/modal-signup.scss */
.modal__wrapper.modal-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  transform: translate(0, 0);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s all; }
  .modal__wrapper.modal-signup.active {
    opacity: 1;
    visibility: visible; }
  .modal__wrapper.modal-signup .modal__bg {
    background-color: transparent; }
  .modal__wrapper.modal-signup .modal__wrap {
    height: auto;
    max-height: none;
    max-width: 750px;
    position: relative;
    width: 100%;
    padding: 0; }
  .modal__wrapper.modal-signup .modal-signup-inner {
    width: 100%;
    max-width: none;
    border: 3px solid #fff;
    padding: 125px 60px 85px;
    text-align: center;
    font-family: "EurostileBla", sans-serif;
    font-weight: 900; }

.modal-signup-close {
  width: 40px;
  top: 20px;
  right: 20px; }

.modal-signup-title {
  color: #fff;
  font-size: 24px; }

.modal-signup-form .form-row {
  margin-bottom: 65px; }
  .modal-signup-form .form-row:last-child {
    margin-bottom: 0; }
  .modal-signup-form .form-row .text-input__wrapper {
    height: auto;
    border: none; }
  .modal-signup-form .form-row input {
    border: none;
    border-bottom: 3px solid #fff;
    width: 100%;
    color: #fff;
    font-size: 24px;
    line-height: 120%;
    padding: 20px 0;
    height: auto; }
    .modal-signup-form .form-row input:focus, .modal-signup-form .form-row input:hover {
      outline: 0;
      border: none;
      border-bottom: 3px solid #fff; }
    .modal-signup-form .form-row input::-moz-placeholder {
      color: #fff;
      text-align: center;
      text-transform: uppercase; }
    .modal-signup-form .form-row input:-ms-input-placeholder {
      color: #fff;
      text-align: center;
      text-transform: uppercase; }
    .modal-signup-form .form-row input::-ms-input-placeholder {
      color: #fff;
      text-align: center;
      text-transform: uppercase; }
    .modal-signup-form .form-row input::placeholder {
      color: #fff;
      text-align: center;
      text-transform: uppercase; }
  .modal-signup-form .form-row .btn {
    color: #fff;
    border: 3px solid #fff;
    letter-spacing: 0.05em;
    font-size: 40px;
    line-height: 1.2;
    padding: 40px 0 30px;
    height: auto;
    max-width: 285px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/newsletter-bar/newsletter-bar.scss */
.newsletter-bar {
  background-color: #fff;
  bottom: 0;
  color: #000;
  display: none;
  height: 100px;
  position: fixed;
  width: 100%;
  z-index: 999; }
  @media (min-width: 1024px) {
    .newsletter-bar {
      display: flex; } }

.newsletter-bar__container {
  display: flex;
  margin: 0 auto;
  padding: 0;
  width: calc(100% - 80px); }

.newsletter-bar__content {
  margin: auto;
  padding: 0;
  text-align: left;
  width: 50%; }
  @media (--xs) {
    .newsletter-bar__content {
      text-align: center;
      width: 100%; } }

.newsletter-bar__form {
  align-items: center;
  display: flex;
  width: 50%; }

.newsletter-bar__close {
  cursor: pointer;
  display: block;
  height: 24px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 24px; }
  @media (--xs) {
    .newsletter-bar__close {
      right: 30px; } }

.newsletter-bar__close > svg {
  display: block;
  height: 100%;
  width: 20px; }

/* No Touch */
.no-touch .newsletter-bar__close {
  transition: opacity 0.25s ease-in; }

.no-touch .newsletter-bar__close:hover {
  opacity: 0.6; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/pagination/pagination.scss */
.pagination {
  margin: 20px 0 40px; }

.pagination__arrow {
  width: 30%;
  color: #bdbdbd;
  text-decoration: none; }

.pagination__pages {
  width: 40%; }

.pagination__page__link {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  line-height: 2em;
  border: 2px solid currentColor;
  text-decoration: none;
  color: #000;
  margin: 0 5px; }

.pagination__page__link--inactive {
  color: #bdbdbd; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/product-card/product-card.scss */
.product-card {
  position: relative; }

.product-card__featured {
  display: block;
  padding-top: 120%;
  position: relative; }

.product-card__quick-buy {
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  display: none;
  left: 20px;
  min-height: 50px;
  justify-content: center;
  opacity: 0;
  padding: 9px;
  position: absolute;
  transition: opacity 0.2s;
  width: calc(100% - 40px);
  z-index: 100; }
  @media (min-width: 415px) {
    .product-card__quick-buy {
      display: flex; } }
  .product-card__featured:hover .product-card__quick-buy {
    opacity: 1; }

.product-card__quick-buy--cta {
  text-align: center; }

.product-card__quick-buy--options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 7px; }
  @media (min-width: 1441px) {
    .product-card__quick-buy--options {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      grid-gap: 9px; } }

.product-card__quick-buy__option {
  border: solid 1px #bdbdbd;
  border-radius: 5px;
  font-size: 11px;
  padding: 10px 5px; }
  @media (min-width: 1441px) {
    .product-card__quick-buy__option {
      font-size: 14px;
      padding: 10px; } }
  .product-card__quick-buy__option.disabled {
    opacity: 0.5;
    pointer-events: none; }

.product-card__details {
  display: flex;
  justify-content: space-between;
  margin: 15px 0; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/product-card-slider/product-card-slider.scss */
.product-card-slider {
  padding: 24px 0; }
  @media (min-width: 1024px) {
    .product-card-slider {
      padding: 34px 0 63px; } }

.product-card-slider__title {
  margin-bottom: 24px;
  text-align: center; }
  @media (min-width: 1024px) {
    .product-card-slider__title {
      margin-bottom: 58px; } }

.product-card-slider__items__static {
  display: flex; }

.product-card-slider__item {
  margin-bottom: 20px;
  width: 100%; }
  @media (min-width: 415px) {
    .product-card-slider__item {
      margin-bottom: 0;
      padding: 10px;
      width: 50%; } }
  @media (min-width: 769px) {
    .product-card-slider__item {
      width: calc(100% / 3); } }
  @media (min-width: 1024px) {
    .product-card-slider__item {
      width: 25%; } }

.product-card-slider__item__title {
  margin: 10px 0; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/product-descriptions/product-descriptions.scss */
.tpd-addition.product-descriptions {
  padding: 0 20px 25px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/quantity-selector/quantity-selector.scss */
.quantity-selector {
  align-items: center;
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  display: flex;
  height: 44px;
  justify-content: space-around;
  line-height: 44px;
  position: relative;
  transition: opacity 0.25s ease-in-out;
  width: 100%; }

.quantity-selector:disabled {
  opacity: 0.4; }

.quantity-selector__action,
.quantity-selector__field.quantity-selector__field {
  height: inherit;
  line-height: inherit; }

.quantity-selector__action {
  opacity: 1;
  padding: 0;
  width: 30px;
  height: 100%;
  display: block;
  color: inherit;
  cursor: pointer;
  font-size: 25px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  transition: opacity 0.25s ease-in-out; }

.quantity-selector__action__text {
  display: block;
  height: 100%;
  font-size: 18px;
  line-height: 42px;
  margin: 0 auto;
  position: relative;
  width: 10px; }
  .quantity-selector__action__text svg {
    left: 0;
    top: 50%;
    right: 0;
    margin: auto;
    position: absolute;
    transform: translateY(-50%); }

.quantity-selector__action:disabled {
  cursor: default;
  opacity: 0.4; }

.quantity-selector__field.quantity-selector__field {
  padding: 0;
  margin: 0 10px;
  color: inherit;
  text-align: center;
  -moz-appearance: textfield;
  -webkit-appearance: none;
  box-shadow: none; }
  .quantity-selector__field.quantity-selector__field::-webkit-outer-spin-button, .quantity-selector__field.quantity-selector__field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .quantity-selector__field.quantity-selector__field:focus {
    box-shadow: inset 0 0 0 1px #000; }

.quantity-selector__field::-webkit-inner-spin-button,
.quantity-selector__field::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none; }

.quantity-selector.quantity-selector--small {
  width: 95px;
  height: 34px;
  line-height: 34px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/promo-bar/promo-bar.scss */
.promo-bar {
  background-color: #fff;
  color: #000;
  display: flex;
  padding: 7px 20px;
  position: relative; }
  .promo-bar a {
    text-decoration: underline; }

.promo-bar__content {
  margin: auto;
  text-align: center; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/radio-button/radio-button.scss */
.radio-button {
  position: relative;
  /* Resolves autocomplete white background issue */ }
  .radio-button input:-webkit-autofill,
  .radio-button input:-webkit-autofill:hover,
  .radio-button input:-webkit-autofill:focus,
  .radio-button input:-webkit-autofill:active {
    transition-delay: 9999s; }
  .radio-button .radio-button__wrapper {
    padding: 1rem 0 1.2rem;
    height: auto;
    line-height: initial;
    position: relative; }
  .radio-button .radio-button__el_list {
    display: block;
    width: 100%; }
  .radio-button .radio-button__el {
    position: relative;
    height: 2.25rem;
    line-height: 2.25rem;
    transition: all 200ms;
    z-index: 2;
    width: 100%;
    margin: 0 0 0.3rem; }
    .radio-button .radio-button__el:last-child {
      margin-bottom: 0; }
    .radio-button .radio-button__el.is-active .checkbox__icon {
      border: 2px solid #000; }
    .radio-button .radio-button__el.is-active .checkbox__icon span {
      background: #000;
      width: 10px;
      height: 10px; }
  .radio-button .radio-button__title {
    display: block;
    z-index: 1;
    width: 100%;
    height: auto;
    line-height: 2.25rem; }
  .radio-button .radio-button__label > span {
    display: block;
    z-index: 1;
    width: 100%;
    height: 2.25rem;
    line-height: 2.25rem;
    cursor: pointer;
    padding: 0 0 0 1.8rem;
    transition: padding 0.3s ease; }
  .radio-button .radio-button__label:focus .checkbox__icon, .radio-button .radio-button__label:active .checkbox__icon, .radio-button .radio-button__label:hover .checkbox__icon {
    border-color: #000 !important; }
  .radio-button .checkbox__icon {
    width: 20px;
    height: 20px;
    position: absolute;
    border: 2px solid #bdbdbd;
    margin-right: 10px;
    top: 7px;
    border-radius: 50%;
    transition: all ease 0.3s; }
    .radio-button .checkbox__icon span {
      display: block;
      width: 2px;
      height: 2px;
      background: none;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: all ease 0.3s; }
  .radio-button .radio-button__input {
    width: 1px;
    height: 1px;
    display: block;
    visibility: hidden; }
  .radio-button .radio-button__error {
    position: absolute;
    bottom: 0;
    height: 1rem;
    line-height: 1rem;
    font-size: 0.8rem;
    color: #BB333F;
    opacity: 0;
    transform: translateY(-0.5em);
    transition: opacity 300ms ease, transform 300ms ease; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/select-input/select-input.scss */
.select-input {
  position: relative;
  align-items: center;
  padding-right: 1px;
  /* Disappearing border-right issue */ }
  .select-input.select-input--small {
    display: inline-block; }

.select-input__el-wrap {
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  position: relative; }
  .select-input--small .select-input__el-wrap {
    border: none;
    display: inline-block; }

label + .select-input__el-wrap {
  margin-top: 7px; }
  .select-input--small label + .select-input__el-wrap {
    margin-top: 2px; }

.select-input__el {
  display: block;
  width: 100%;
  height: 45px;
  z-index: 1;
  padding-left: 15px;
  padding-right: 25px; }
  .select-input--small .select-input__el {
    height: 20px;
    padding-left: 1px;
    padding-right: 23px; }

.select-input__icon {
  display: block;
  position: absolute;
  right: 10px;
  top: 20px;
  width: 7px;
  height: 7px;
  transform: rotate(-45deg) translateY(-50%);
  z-index: 0;
  border: solid #bdbdbd;
  border-width: 0 0 1px 1px; }
  .select-input--small .select-input__icon {
    width: 6px;
    height: 6px;
    top: 8px;
    right: 4px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/skip-to-main/skip-to-main.scss */
.skip-to-main {
  top: 0;
  left: 50%;
  opacity: 0;
  z-index: 1000;
  color: #f2f2f2;
  position: absolute;
  text-transform: uppercase;
  border: 3px solid #f2f2f2;
  background-color: #000;
  transform: translate(-50%, -100px); }
  .skip-to-main:active, .skip-to-main:focus {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 10px);
    transition: all 0.3s ease; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/text-area/text-area.scss */
.text-input .text-input__el.text-input__text-area {
  line-height: 24px;
  height: 180px;
  background: none;
  resize: none;
  border: 2px solid #f2f2f2;
  padding: 0;
  padding-left: 5px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/video/video.scss */
.video {
  height: 0;
  margin: 20px auto;
  padding-bottom: 56.25%; }

.video__controls {
  left: 10px;
  bottom: 10px;
  pointer-events: none; }
  .video__controls li {
    width: 38px;
    height: 38px;
    padding: 0 3px;
    position: relative;
    margin-right: 15px;
    border-radius: 50%;
    transform: translateY(50px);
    transition: transform 300ms ease-in-out; }
  .video__controls li:nth-child(1) {
    transition-delay: 100ms; }
  .video__controls li:nth-child(2) {
    transition-delay: 200ms; }
  .video__controls li:nth-child(3) {
    transition-delay: 300ms; }
  .video__controls--hidden {
    display: none; }
  .video__controls.is-showing {
    pointer-events: all; }
    .video__controls.is-showing li {
      transform: translateY(0); }

.video__btn {
  color: #000; }
  .video__btn__pause, .video__btn__sound-on {
    display: flex; }
  .video__btn__play, .video__btn__sound-off {
    display: none; }
  .is-active .video__btn__pause, .is-active .video__btn__sound-on {
    display: none; }
  .is-active .video__btn__play, .is-active .video__btn__sound-off {
    display: flex; }

.video__inner {
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  background-color: #f2f2f2;
  transition: background-color 0.2s ease-in-out; }
  .video__inner.no-fallback .video__el {
    display: block; }
  .video__inner.is-loaded .video__el {
    opacity: 1;
    transition-delay: 0.3s;
    visibility: visible; }
  .video__inner.is-loaded .video__loader {
    opacity: 0;
    visibility: hidden; }
  .video__inner.is-loaded .img {
    display: none; }
  .video__inner.pos-center .video__el {
    top: 50%;
    transform: translate(-50%, -50%); }
  .video__inner.pos-top .video__el {
    top: 0;
    transform: translate(-50%, 0); }
  .video__inner.pos-bottom .video__el {
    bottom: 0;
    top: auto;
    transform: translate(-50%, 0); }

.video__el {
  top: 50%;
  left: 50%;
  opacity: 0;
  width: auto;
  height: auto;
  display: block;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition-duration: 0.4s;
  transition-property: opacity, visibility;
  transition-timing-function: ease-in-out; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/text-input/text-input.scss */
.text-input--default {
  position: relative; }

.text-input {
  position: relative;
  /* Resolves autocomplete white background issue */ }
  .text-input input:-webkit-autofill,
  .text-input input:-webkit-autofill:hover,
  .text-input input:-webkit-autofill:focus,
  .text-input input:-webkit-autofill:active {
    transition-delay: 9999s; }

.text-input__wrapper {
  border: 1px solid #bdbdbd;
  border-radius: 3px;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  position: relative; }
  .text-input--default .text-input__wrapper {
    position: relative; }

.text-input__el {
  border: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 14px; }
  .text-input--label .text-input__el {
    border: 1px solid #000;
    height: 50px;
    padding-left: 15px; }

.text-input__label {
  pointer-events: none;
  z-index: 9; }
  .text-input--label .text-input__label {
    margin-bottom: 10px; }
  .text-input--default .text-input__label {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(0);
    height: 1.5em;
    transition: all 200ms;
    z-index: 1;
    background: #fff;
    line-height: 1.5em; }
    .text-input--default .text-input__label.is-active {
      transform: translateY(-120%);
      font-size: 12px;
      padding: 0 4px; }

.text-input__error {
  font-size: 12px;
  left: 0;
  position: absolute;
  top: 100%;
  transition: opacity 300ms; }
  .text-input--floating-errors .text-input__error {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
    left: 0;
    padding: 4px;
    position: absolute;
    right: 0;
    text-align: center;
    width: 100%; }
  .text-input--label .text-input__error,
  .text-input--default .text-input__error {
    margin-top: 7px; }

.form-row__error__text-error {
  position: absolute;
  bottom: -20px;
  font-size: 14px;
  font-weight: 300;
  left: auto;
  width: 100%;
  margin: 0;
  color: #fff !important;
  transition: opacity 300ms; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/wysiwyg/wysiwyg.scss */
.wysiwyg {
  margin: 0 auto;
  position: relative; }
  .product-hero__details .wysiwyg {
    max-width: 100%;
    width: 100%; }
  @media (min-width: 415px) {
    .product-hero__details .wysiwyg {
      width: 100%;
      padding-top: 0; } }

.wysiwyg__container {
  /**
  * Scoped as many editors will not support adding
  * class names to tags. All typographic styles
  * should be maintained in the typography css lib.
  **/ }
  .wysiwyg__container p + p {
    margin-top: 1em; }
  .wysiwyg__container h4 {
    text-transform: uppercase;
    font-size: 24px;
    letter-spacing: 0.05em; }
  .wysiwyg__container ol,
  .wysiwyg__container ul {
    /* @extend .list; */ }
  .wysiwyg__container blockquote {
    /* @extend .blockquote; */ }
  .wysiwyg__container img {
    /* @extend .img; */ }
  .wysiwyg__container hr {
    /* @extend .hr; */ }
  .wysiwyg__container a {
    /* @extend .link; */ }
  .wysiwyg__container *:last-child {
    margin-bottom: 0; }
  @media (max-width: 768px) {
    .wysiwyg__container h4 {
      font-size: 14px; } }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/page-home/product-countdown-timer/product-countdown-timer.scss */
.timer-product-description {
  padding: 0 50px; }
  .timer-product-description a {
    color: #fff;
    text-decoration: underline; }
  .timer-product-description * {
    line-height: 1.2; }
  .timer-product-description h6 {
    font-size: 14px; }

.tpd-addition {
  padding-top: 70px;
  padding-bottom: 35px; }

.tpd-addition-item {
  width: calc(50% - 25px);
  margin-bottom: 65px; }

.tpd-addition-content {
  font-size: 18px; }

.tpd-short-description {
  padding-top: 60px; }

.tpd-inner .wysiwyg {
  padding-top: 0; }

.product-wrapper .timer-product-description {
  color: #fff; }

@media (max-width: 768px) {
  .timer-product-description {
    padding: 0 20px; }
  .tpd-addition {
    padding-top: 60px;
    padding-bottom: 20px; }
  .tpd-addition-item {
    width: 100%;
    margin-bottom: 40px; }
  .tpd-addition-content,
  .timer-product-description h6 {
    font-size: 12px; }
  .timer-product-description h6 {
    margin-bottom: 6px; } }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/page-styleguide/styleguide/styleguide.scss */
.s-guide {
  padding: 50px 0; }

.s-guide__byline {
  margin-bottom: 15px;
  display: flex; }

.s-guide__tag {
  white-space: nowrap;
  background-color: #f2f2f2;
  padding: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 3px;
  max-height: calc(1em + 12px); }

.s-guide__byline span:nth-child(2) {
  padding-top: 6px; }

.s-guide__hr {
  margin: 45px 0; }

.s-guide__container {
  width: 100%;
  padding-top: 60%; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/page-styleguide/styleguide-card-carousel/styleguide-card-carousel.scss */
/* ------------------------------------------------------------ *\
  Card Carousel
\* ------------------------------------------------------------ */
.section-card-carousel {
  padding: 34px 30px 52px; }
  @media (min-width: 376px) {
    .section-card-carousel {
      padding-left: 50px;
      padding-right: 50px; } }
  @media (min-width: 415px) {
    .section-card-carousel {
      padding-top: 70px; } }
  @media (min-width: 769px) {
    .section-card-carousel {
      padding: 95px 30px 95px; } }
  @media (min-width: 1024px) {
    .section-card-carousel {
      padding: 80px 76px 78px; } }
  .section-card-carousel .flickity-enabled {
    position: static; }
    @media (min-width: 1024px) {
      .section-card-carousel .flickity-enabled {
        margin: 0 -19px; } }
  .section-card-carousel .flickity-page-dots {
    position: static;
    margin-top: 28px; }
    @media (min-width: 415px) {
      .section-card-carousel .flickity-page-dots {
        margin-top: 25px; } }
    @media (min-width: 769px) {
      .section-card-carousel .flickity-page-dots {
        margin-top: 35px; } }
    @media (min-width: 1024px) {
      .section-card-carousel .flickity-page-dots {
        margin-top: 65px; } }
    .section-card-carousel .flickity-page-dots .dot {
      background: none;
      margin: 0 3px;
      opacity: 1;
      border: 1px solid blue; }
    .section-card-carousel .flickity-page-dots .dot.is-selected {
      background: blue; }
  .section-card-carousel .section__title {
    margin-bottom: 24px;
    text-align: center; }
    @media (min-width: 769px) {
      .section-card-carousel .section__title {
        margin-bottom: 40px; } }
    @media (min-width: 1024px) {
      .section-card-carousel .section__title {
        margin-bottom: 39px;
        font-size: 60px;
        line-height: 68px; } }
  .section-card-carousel .section__description {
    letter-spacing: 0.5px;
    max-width: 302px;
    margin: 0 auto; }
    @media (min-width: 415px) {
      .section-card-carousel .section__description {
        max-width: 100%; } }
  .section-card-carousel .section__head {
    max-width: 490px;
    margin: 0 auto 10px;
    text-align: center; }
    @media (min-width: 415px) {
      .section-card-carousel .section__head {
        margin-bottom: 60px; } }
    @media (min-width: 769px) {
      .section-card-carousel .section__head {
        max-width: 890px;
        margin-bottom: 35px; } }
    @media (min-width: 1024px) {
      .section-card-carousel .section__head {
        margin-bottom: 45px; } }
  .section-card-carousel .section__body {
    max-width: 318px;
    margin: 0 auto; }
    @media (min-width: 769px) {
      .section-card-carousel .section__body {
        max-width: 100%; } }
  .section-card-carousel .section__slide-wrapper {
    width: 100%; }
    @media (min-width: 769px) {
      .section-card-carousel .section__slide-wrapper {
        max-width: 50%;
        padding: 0 12px; } }
    @media (min-width: 1024px) {
      .section-card-carousel .section__slide-wrapper {
        max-width: 33.33%;
        padding: 0 42px; } }
  .section-card-carousel .section__slide {
    margin: 0 auto;
    padding: 15px 27px; }
    @media (min-width: 769px) {
      .section-card-carousel .section__slide {
        padding: 35px 35px 30px; } }
    @media (min-width: 1024px) {
      .section-card-carousel .section__slide {
        padding: 35px 30px 15px; } }
  .section-card-carousel .section__slide-media {
    position: relative;
    height: 0;
    padding-top: 76.22%;
    margin-bottom: 10px; }
    @media (min-width: 769px) {
      .section-card-carousel .section__slide-media {
        margin-bottom: 17px; } }
  .section-card-carousel .section__slide-head {
    margin-bottom: 25px; }
    @media (min-width: 1024px) {
      .section-card-carousel .section__slide-head {
        margin-bottom: 15px; } }
  .section-card-carousel .section__slide-entry {
    text-align: center; }
    .section-card-carousel .section__slide-entry:last-child {
      margin-bottom: 0; }
  .section-card-carousel .section__slide-foot .section__slide-entry {
    font-size: 19px;
    line-height: 26px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/page-styleguide/styleguide-product-card-carousel/styleguide-product-card-carousel.scss */
/* ------------------------------------------------------------ *\
  Card Carousel
\* ------------------------------------------------------------ */
.section-product-card-carousel {
  padding: 34px 30px 52px; }
  @media (min-width: 376px) {
    .section-product-card-carousel {
      padding-left: 50px;
      padding-right: 50px; } }
  @media (min-width: 415px) {
    .section-product-card-carousel {
      padding-top: 70px; } }
  @media (min-width: 769px) {
    .section-product-card-carousel {
      padding: 95px 30px 95px; } }
  @media (min-width: 1024px) {
    .section-product-card-carousel {
      padding: 80px 76px 78px; } }
  .section-product-card-carousel .section__title {
    margin-bottom: 24px;
    text-align: center; }
    @media (min-width: 769px) {
      .section-product-card-carousel .section__title {
        margin-bottom: 40px; } }
    @media (min-width: 1024px) {
      .section-product-card-carousel .section__title {
        margin-bottom: 39px;
        font-size: 60px;
        line-height: 68px; } }
  .section-product-card-carousel .section__description {
    letter-spacing: 0.5px;
    max-width: 302px;
    margin: 0 auto; }
    @media (min-width: 415px) {
      .section-product-card-carousel .section__description {
        max-width: 100%; } }
  .section-product-card-carousel .section__head {
    max-width: 490px;
    margin: 0 auto 10px;
    text-align: center; }
    @media (min-width: 415px) {
      .section-product-card-carousel .section__head {
        margin-bottom: 60px; } }
    @media (min-width: 769px) {
      .section-product-card-carousel .section__head {
        max-width: 890px;
        margin-bottom: 35px; } }
    @media (min-width: 1024px) {
      .section-product-card-carousel .section__head {
        margin-bottom: 45px; } }
  .section-product-card-carousel .section__body {
    max-width: 318px;
    margin: 0 auto; }
    @media (min-width: 769px) {
      .section-product-card-carousel .section__body {
        max-width: 100%; } }
  .section-product-card-carousel .section__slide-wrapper {
    width: 100%; }
    @media (min-width: 769px) {
      .section-product-card-carousel .section__slide-wrapper {
        max-width: 50%;
        padding: 0 12px; } }
    @media (min-width: 1024px) {
      .section-product-card-carousel .section__slide-wrapper {
        max-width: 33.33%;
        padding: 0 42px; } }
  .section-product-card-carousel .section__slide {
    margin: 0 auto;
    padding: 15px 27px; }
    @media (min-width: 769px) {
      .section-product-card-carousel .section__slide {
        padding: 35px 35px 30px; } }
    @media (min-width: 1024px) {
      .section-product-card-carousel .section__slide {
        padding: 35px 30px 15px; } }
  .section-product-card-carousel .section__slide-media {
    position: relative;
    height: 0;
    padding-top: 76.22%;
    margin-bottom: 10px; }
    @media (min-width: 769px) {
      .section-product-card-carousel .section__slide-media {
        margin-bottom: 17px; } }
  .section-product-card-carousel .section__slide-head {
    margin-bottom: 25px; }
    @media (min-width: 1024px) {
      .section-product-card-carousel .section__slide-head {
        margin-bottom: 15px; } }
  .section-product-card-carousel .section__slide-entry {
    text-align: center; }
    .section-product-card-carousel .section__slide-entry:last-child {
      margin-bottom: 0; }
  .section-product-card-carousel .section__slide-foot .section__slide-entry {
    font-size: 19px;
    line-height: 26px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/product/product-gallery/product-gallery.scss */
.product-gallery {
  display: flex;
  flex-direction: column; }
  @media (min-width: 1024px) {
    .product-gallery {
      flex-direction: row; } }

.product-gallery__featured {
  order: 0; }
  .product-gallery__featured::before {
    padding-top: 100%; }

.product-gallery__featured-images {
  cursor: zoom-in; }
  .product-gallery__featured-images img {
    background: #eee; }

.product-gallery__thumbs {
  display: flex;
  margin-top: 15px; }
  @media (min-width: 1024px) {
    .product-gallery__thumbs {
      flex-direction: column;
      order: -1;
      margin-right: 20px;
      margin-top: 0; } }

.product-gallery__thumbs__item {
  cursor: pointer;
  height: 52px;
  margin-right: 15px;
  transition: opacity 0.2s;
  width: 52px; }
  .product-gallery__thumbs__item.active {
    opacity: 0.5; }
  @media (min-width: 1024px) {
    .product-gallery__thumbs__item {
      height: 96px;
      margin-right: 0;
      width: 96px; } }

.product-gallery__thumbs__video__play-icon {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100; }
  .product-gallery__thumbs__video__play-icon svg {
    height: 50px;
    width: 50px; }

.product-gallery__indicators {
  bottom: 16px;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  z-index: 100; }

.product-gallery__indicator-item {
  background-color: #bdbdbd;
  border-radius: 50%;
  height: 8px;
  width: 8px; }
  .product-gallery__indicator-item.active {
    background-color: #333; }
  .product-gallery__indicator-item:not(:last-child) {
    margin-right: 5px; }
  .product-gallery__indicator-item:not(:first-child) {
    margin-left: 5px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/product/recommended-products/recommended-products.scss */
.recommended-products {
  padding: 24px 0; }
  @media (min-width: 1024px) {
    .recommended-products {
      padding: 34px 0 63px; } }

.recommended-products__title {
  margin-bottom: 24px;
  text-align: center; }
  @media (min-width: 1024px) {
    .recommended-products__title {
      margin-bottom: 58px; } }

.recommended-products__item {
  margin-bottom: 20px;
  width: 100%; }
  @media (min-width: 1024px) {
    .recommended-products__item {
      margin-bottom: 0;
      padding: 10px;
      width: 25%; } }

.recommended-products__item__title {
  margin: 10px 0; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/product/product-selector/product-selector.scss */
.product-sizes {
  -webkit-overflow-scrolling: touch;
  margin: 10px 0;
  overflow-y: auto; }
  .product-sizes__title {
    margin: 10px 0;
    text-align: center; }
  @media (min-width: 1024px) {
    .product-sizes {
      overflow: initial; } }

.product-sizes__wrapper {
  overflow: auto;
  margin: 10px 0;
  white-space: nowrap; }
  .product-sizes__wrapper .product-sizes__single {
    display: inline-block; }
  @media (min-width: 415px) {
    .product-sizes__wrapper {
      margin-right: 0;
      padding-right: 0; } }
  @media (min-width: 769px) {
    .product-sizes__wrapper {
      padding: 0;
      display: flex;
      margin: 0 -5px;
      flex-wrap: wrap;
      white-space: normal; } }

.product-sizes__single {
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  background: #bdbdbd;
  margin: 5px 5px 5px 0; }
  @media (min-width: 769px) {
    .product-sizes__single {
      margin: 5px; } }
  .product-sizes__single span {
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%); }
  .product-sizes__single.active {
    color: #fff;
    pointer-events: none;
    background: #bdbdbd; }
  .product-sizes__single.disabled {
    color: #000;
    cursor: no-drop;
    background: transparent;
    border: 1px solid #000; }
    .product-sizes__single.disabled::before {
      content: '';
      top: 50%;
      left: -8px;
      width: 54px;
      height: 1px;
      position: absolute;
      pointer-events: none;
      background: #000;
      transform: translateY(-50%) rotate(-45deg); }

.product-sizes__single.active.disabled {
  color: #fff;
  background: #bdbdbd;
  border: 1px solid #bdbdbd; }
  .product-sizes__single.active.disabled::before {
    background: #fff; }

.product-size__guide {
  padding: 16px 20px;
  margin: 50px auto 30px; }
  .product-size__guide__wrapper {
    margin: 0 auto;
    display: block;
    max-width: 300px; }

.product-select {
  align-items: center;
  justify-content: space-between; }

.product-select__dropdown .dropdown-menu .dropdown-menu__el {
  height: 60px; }

.product-select__dropdown .dropdown-menu .dropdown-menu__arrow {
  height: 60px; }

.product-select__dropdown .dropdown-menu .dropdown-menu__value {
  padding: 0;
  font-family: "Eurostile", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 300;
  line-height: 60px;
  height: 60px; }

.product-actions {
  margin-top: 50px; }

.product-select__quantity {
  width: calc(50% - 25px); }
  .product-select__quantity .quantity-selector {
    height: 50px;
    border: none;
    border-bottom: 3px solid;
    border-radius: 0;
    justify-content: space-between; }
  .product-select__quantity .quantity-selector__action {
    text-align: left;
    padding: 0; }
  .product-select__quantity .quantity-selector__action--increment {
    text-align: right; }
  .product-select__quantity .quantity-selector__action__text {
    margin: 0;
    font-size: 28px; }
  .product-select__quantity .quantity-selector__field {
    font-size: 28px; }

.product_cta {
  width: calc(50% - 25px);
  margin-top: 0; }
  .product_cta .btn {
    background: transparent;
    color: #000;
    border: 3px solid;
    font-size: 28px;
    height: 70px; }

.product-select__swatches__title {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 17px; }

.product-select__swatches__item {
  border-radius: 50%;
  display: block;
  height: 30px;
  position: relative;
  width: 30px; }
  .product-select__swatches__item:not(:last-child) {
    margin-right: 15px; }
  .product-select__swatches__item.active::after {
    border: solid 1px #BB333F;
    border-radius: 50%;
    bottom: -2px;
    content: '';
    display: block;
    left: -2px;
    position: absolute;
    right: -2px;
    top: -2px; }
  .product-select__swatches__item.disabled {
    cursor: not-allowed;
    opacity: 0.2;
    pointer-events: none; }

.product-select__buttons__item {
  border: solid 1px #bdbdbd;
  border-radius: 3px;
  padding: 9px;
  transition: border-color 0.2s; }
  .product-select__buttons__item.active {
    border-color: #000; }
  .product-select__buttons__item:not(:last-child) {
    margin-right: 10px; }
  .product-select__buttons__item.disabled {
    cursor: not-allowed;
    opacity: 0.2;
    pointer-events: none; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/product/product-hero/product-hero.scss */
.product-hero {
  flex-direction: column;
  padding: 0 20px;
  margin: 0 auto; }
  @media (min-width: 1201px) {
    .product-hero {
      flex-direction: row; } }

@media (min-width: 1201px) {
  .product-hero__gallery {
    width: 50%; } }

.product-hero__details {
  margin-top: 32px; }
  @media (min-width: 1201px) {
    .product-hero__details {
      margin-top: 0;
      padding-left: 35px;
      width: 50%; } }

.product-hero__details__title {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 0; }
  @media (min-width: 1201px) {
    .product-hero__details__title {
      font-size: 22px;
      line-height: 28px; } }

.product-hero__details__price.discounted {
  opacity: 0.3;
  text-decoration: line-through; }

.product-hero__details__brand {
  margin-bottom: 20px; }

.product-hero__details__description {
  margin-bottom: 22px; }

.product-hero__details__wrapper {
  width: 100%; }

.product-hero__order-type {
  margin-bottom: 23px; }

.product-hero__order-type__item {
  border: solid 1.4px #bdbdbd;
  transition: background-color 0.25s; }
  .product-hero__order-type__item.active {
    background-color: #f2f2f2; }

.product-hero__order-type__item--one-time {
  border-top: 0; }

.product-hero__order-type__radio {
  padding: 19px 22px;
  width: 100%; }

.product-hero__details__cta {
  margin-top: 75px; }

.product-hero__disclaimer {
  margin-top: 13px;
  opacity: 0.57;
  font-size: 10px;
  line-height: 24px; }

.product-hero__features {
  margin-top: 40px; }

.product-hero__features__title {
  border-bottom: solid 1.4px #bdbdbd;
  margin-bottom: 21px;
  padding-bottom: 14px; }

.product-hero__swatches__title {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 17px; }

.product-hero__swatches__item {
  border-radius: 50%;
  display: block;
  height: 30px;
  position: relative;
  width: 30px; }
  .product-hero__swatches__item:not(:last-child) {
    margin-right: 15px; }
  .product-hero__swatches__item.active::after {
    border: solid 1px #bdbdbd;
    border-radius: 50%;
    bottom: -2px;
    content: '';
    display: block;
    left: -2px;
    position: absolute;
    right: -2px;
    top: -2px; }

.product-hero__size-chart__image::before {
  padding-top: calc(531 / 774 * 100%); }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/product/zoom-gallery/zoom-gallery.scss */
.zoom-gallery {
  bottom: 0;
  left: 0;
  overflow: scroll;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999; }

.zoom-gallery__close {
  color: #fff;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 9999; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/header/header/header.scss */
.header {
  padding: 45px 0;
  background: rgba(var(--color-header-bg), 1);
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: transform 300ms; }

.template-index .header,
.template-product .header {
  background: transparent;
  color: #fff; }

.header__inner {
  width: 100% !important; }

.header__container {
  min-height: 75px; }

.header__nav,
.header__icons {
  flex: 1; }

.header__logo {
  max-width: 180px;
  margin: 0 auto; }

.header__icons__item {
  margin-right: 20px; }
  .header__icons__item:last-child {
    margin-right: 0; }

.header__icons__item__link--account {
  display: none; }
  @media (min-width: 1024px) {
    .header__icons__item__link--account {
      display: block; } }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/header/header-cart/header-cart.scss */
.header-cart {
  top: 0;
  bottom: 0;
  width: 100%;
  right: -520px;
  position: fixed;
  max-width: 520px;
  background: #fff;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0);
  transition: all 0.2s ease-in-out; }
  .header-cart.active {
    right: 0;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2); }
  .header-cart__header {
    margin: 0 0 30px; }
  .header-cart__wrapper {
    height: 100vh;
    display: block;
    max-width: 480px;
    position: relative;
    padding: 30px 20px 150px; }

.header-cart--bg {
  top: 0;
  left: 0;
  bottom: 0;
  display: none;
  position: fixed;
  right: 520px; }

.header-cart.active .header-cart--bg {
  display: block; }

.header-cart__header__close {
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  cursor: pointer;
  position: absolute; }

.header-cart__body {
  display: block; }
  .header-cart__body__element {
    margin-bottom: 130px; }
    .header-cart__body__element:last-of-type {
      margin-bottom: 0; }

.header-cart__element__image {
  width: 95px;
  height: 127px;
  margin-right: 20px;
  background: #f2f2f2; }

.header-cart__element__data {
  position: relative;
  width: calc(100% - 115px); }

.header-cart__element__title {
  margin-bottom: 6px; }

.header-cart__element__price {
  top: 0;
  right: 0;
  position: absolute; }

.header-cart__element__option {
  margin-bottom: 3px; }

.header-cart__footer {
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 35px 0 0;
  border-top: 1px solid #f2f2f2; }
  .header-cart__footer__title {
    margin-bottom: 20px; }

.cart-page-element__qty {
  margin-top: 10px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/header/header-cart-icon/header-cart-icon.scss */
.header-cart-icon {
  display: block;
  cursor: pointer;
  position: relative; }

@media (min-width: 1024px) {
  .header-cart-icon__inner--mobile {
    display: none; } }

.header-cart-icon__inner--desktop {
  display: none; }
  @media (min-width: 1024px) {
    .header-cart-icon__inner--desktop {
      display: block; } }

.header-cart-icon__icon {
  width: 26px;
  height: 30px;
  display: block;
  position: relative; }

.header-cart-icon__count {
  width: 21px;
  height: 21px;
  position: absolute;
  top: -4px;
  right: -9px;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  line-height: 21px;
  font-size: 14px;
  text-align: center;
  padding-left: 1px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/header/header-feature/header-feature.scss */
.header-feature {
  width: 300px; }

.header-feature__image {
  padding-top: 120%; }

.header-feature__title {
  margin-bottom: 10px; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/nav/nav/_nav.scss */
/* ------------------------------------------------------------ *\
  Navigation
\* ------------------------------------------------------------ */
.nav {
  display: none; }
  @media (min-width: 1024px) {
    .nav {
      display: block; } }
  .nav > ul {
    display: flex;
    flex-direction: row; }
  .nav > ul > li {
    margin-right: 40px; }
    .nav > ul > li:last-child {
      margin-right: 0; }
    .nav > ul > li:hover > a::after {
      opacity: 1; }
    .nav > ul > li:hover > .nav__dropdown,
    .nav > ul > li.focus-within > .nav__dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
      transition: transform ease 0.5s, opacity ease 0.5s, visibility ease 0.5s; }
    .nav > ul > li:focus-within > .nav__dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
      transition: transform ease 0.5s, opacity ease 0.5s, visibility ease 0.5s; }
  .nav > ul > li > a {
    position: relative;
    color: #000; }
    .nav > ul > li > a::before {
      content: "";
      position: absolute;
      top: 100%;
      left: -10px;
      right: -10px;
      height: 40px; }
    .nav > ul > li > a::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: -10%;
      width: 120%;
      height: 6px;
      background-image: url("//cdn.shopify.com/s/files/1/0458/4226/8182/t/20/assets/link-border.png?2396");
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0; }
  .nav > ul > li > .nav__dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    padding: 40px 20px 0;
    transition: transform ease 1s, opacity ease 1s, visibility ease 1s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    z-index: -1; }
    @media (min-width: 1024px) {
      .nav > ul > li > .nav__dropdown {
        padding-left: 40px;
        padding-right: 40px; } }
    .nav > ul > li > .nav__dropdown::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 20px;
      right: 20px;
      background: #fff;
      box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.35);
      z-index: -1; }
  .nav > ul > li > .nav__dropdown > a {
    width: 100%;
    padding: 0 20px;
    text-transform: capitalize;
    margin-bottom: 20px;
    letter-spacing: 0.5px; }
  .nav > ul > li > .nav__dropdown > ul {
    flex: 1 1;
    display: flex;
    flex-flow: row wrap;
    padding: 0 20px; }
  .nav > ul > li > .nav__dropdown > ul > li {
    flex: 0 1 auto;
    min-width: 200px;
    margin-bottom: 30px; }
  .nav > ul > li > .nav__dropdown > ul > li > a {
    display: block;
    margin-bottom: 10px;
    color: #000;
    pointer-events: none;
    cursor: text; }
  .nav > ul > li > .nav__dropdown > .dropdown-block {
    min-width: 240px;
    padding: 0 20px;
    margin-bottom: 30px; }
  .nav .nav__item--border {
    position: relative; }
    .nav .nav__item--border::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: -25px;
      width: 4px;
      background-color: #fff; }
  .nav .nav__dropdown a {
    color: #000; }
    .nav .nav__dropdown a:hover {
      color: #000;
      text-decoration: underline; }
  .nav .nav__dropdown .nav__dropdown > ul {
    display: flex;
    letter-spacing: 0.5px; }
  .nav .nav__dropdown .nav__dropdown li {
    min-width: 180px;
    margin-right: 20px;
    margin-bottom: 10px; }
    .nav .nav__dropdown .nav__dropdown li:last-child {
      margin-bottom: 0; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/header/header-hamburger-icon/header-hamburger-icon.scss */
.hamburger {
  width: 25px;
  height: 20px;
  display: block;
  color: currentColor;
  transition: height 300ms ease-in-out; }
  @media (min-width: 1024px) {
    .hamburger {
      display: none; } }
  .hamburger.is-active {
    height: 25px; }

.hamburger__inner {
  height: 100%;
  display: block;
  position: relative; }
  .hamburger__inner::after, .hamburger__inner::before {
    content: '';
    width: 25px;
    height: 2px;
    position: absolute;
    background-color: currentColor;
    transition: transform 300ms ease-in-out, width 300ms ease-in-out;
    transform-origin: center; }
  .hamburger__inner::before {
    top: 0;
    left: 0;
    transform: rotate(0);
    transform-origin: top left; }
    .hamburger.is-active .hamburger__inner::before {
      width: 33px;
      transform: rotate(45deg); }
  .hamburger__inner::after {
    bottom: 0;
    left: 0;
    transform: rotate(0);
    transform-origin: bottom left; }
    .hamburger.is-active .hamburger__inner::after {
      transform: rotate(-45deg);
      width: 33px; }

.hamburger__inner__el {
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 1;
  background-color: currentColor;
  margin: auto;
  transition: opacity 300ms ease-in-out 300ms; }
  .hamburger.is-active .hamburger__inner__el {
    opacity: 0;
    transition: opacity 300ms ease-in-out; }

/*! path: E:/work/HH/current/futura2000-v1/src/modules/global/header/header-navigation/header-navigation.scss */
.header-nav {
  width: 100%; }
  .header-nav.is-visible {
    transform: translateX(0); }
  .header-nav--mobile {
    overflow-y: auto;
    position: fixed;
    left: 0;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 300ms ease-in-out;
    border-top: 1px solid #bdbdbd; }
    @media (min-width: 1024px) {
      .header-nav--mobile {
        display: none; } }
  .header-nav--desktop {
    display: none; }
    @media (min-width: 1024px) {
      .header-nav--desktop {
        display: block; } }

@media (min-width: 1024px) {
  .header-nav__items {
    display: flex;
    align-items: center; } }

.header-nav__item {
  width: 100%; }
  @media (min-width: 1024px) {
    .header-nav__item {
      width: auto;
      top: 0; } }
  .header-nav--mobile .header-nav__item {
    border-bottom: 1px solid #bdbdbd; }
  .header-nav--desktop .header-nav__item {
    margin-right: 40px; }

.header-nav--mobile .header-nav__item__link {
  display: block;
  padding-top: 20px;
  padding-bottom: calc(20px - 0.2em);
  padding-left: 20px;
  padding-right: 20px; }

.header-nav__subnav {
  width: 100%;
  background-color: #fff; }

.header-nav__subnav--mobile {
  height: 0;
  overflow: hidden;
  transition: height 300ms ease-in-out;
  background-color: #e0e0e0;
  padding-left: 20px;
  padding-right: 20px; }

.header-nav__subnav--desktop {
  position: absolute;
  top: 100%;
  left: 0;
  border-top: 1px solid #828282;
  opacity: 0;
  visibility: hidden;
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  transition: opacity 500ms ease-in-out 0ms, visibility 1ms linear 500ms; }
  .header-nav__item:focus-within .header-nav__subnav--desktop,
  .header-nav__item:hover .header-nav__subnav--desktop,
  .header-nav__item.is-active .header-nav__subnav--desktop {
    opacity: 1;
    visibility: visible;
    transition: opacity 500ms ease-in-out 1ms, visibility 1ms linear; }

.header-nav__inner--desktop {
  display: flex;
  justify-content: space-between; }

.header-nav--desktop .header-nav__subnav__items {
  display: flex; }

.header-nav--mobile .header-nav__subnav__items {
  padding-top: 20px;
  padding-bottom: calc(20px - 0.2em); }

.header-nav--mobile .header-nav__subnav__item + .header-nav__subnav__item {
  margin-top: 10px; }

.header-nav--desktop .header-nav__subnav__item + .header-nav__subnav__item {
  margin-left: 160px; }

.header-nav__subnav__item__title {
  margin-bottom: 10px; }

.header-nav__subnav__item__link {
  display: block; }
  .header-nav--mobile .header-nav__subnav__item__link {
    padding: 5px 0; }
  .header-nav--desktop .header-nav__subnav__item__link {
    padding: 5px 0; }

/**
 * This file should read like a contents page. This
 * file should only include other stylesheets. No
 * style declarations should be written in this file.
 */
