/**
 * Returns a new string with some or all matches of a pattern replaced by a replacement
 * @param {String} $string - Initial string
 * @param {String} $search - Value to replace
 * @param {String} $replace - Replacement
 * @return {String} New string
 */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * Returns a curve from the $transition-curves list
 */
/**
 * Returns a speed from the $transition-times list
 */
/**
 * Returns a transition string
 * used internally by byl-transition and byl-complex-transition mixins
 * @param {string} property - property to be transitioned (i.e. width)
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 */
/* -------------------------------------------------------------------------- *\
 *  INSETS
 * --------------------------------------------------------------------------
 *  An inset offers indents content on all four sides like the matte of the
 *  framed photo on a wall
 *
 *  $inset-X : a b;
 *  $inset-stack-X : a;
 *  $inset-inline-X : b;
 *
 *  -----------------------
 *  |          a          |
 *  |   ---------------   |
 *  | b |             | b |
 *  |   ---------------   |
 *  |          a          |
 *  -----------------------
 *
\* -------------------------------------------------------------------------- */
/**
 * @tokens Inset Block
 * @presenter Spacing
 */
/**
 * @tokens Inset Inline
 * @presenter Spacing
 */
/**
 * @tokens Insets
 * @presenter Spacing
 */
/* -------------------------------------------------------------------------- *\
 *  Main header
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Footer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Main content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Landing pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Account pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Form Login content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Product Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Cart/Minicart
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Article pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Home Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Customizer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  CTA static buttons
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  IOS navigator bottom spacing
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Rest of variables
 * -------------------------------------------------------------------------- */
/*
 * Colors
 * (Named using "Name that color") - http://chir.ag/projects/name-that-color
 * -------------------------------------------------------------------------- */
/**
 * @tokens Colors Base
 * @presenter Color
 */
/**
 * @tokens Colors Promo
 * @presenter Color
 */
/**
 * @tokens Colors System
 * @presenter Color
 */
/**
 * @tokens Colors Others
 * @presenter Color
 */
/*
$color__black: hsl(0, 0%, 0%);          // #000
$color__white: hsl(0, 0%, 100%);        // #fff

$color__nero: hsl(0, 0%, 14%);         //#242424
$color__matterhorn: hsl(0, 0%, 33%);         //#555555
$color__dark-gray: hsl(0, 0%, 66%);         //#A8A8A8
$color__gray: hsl(0, 0%, 78%);         //#C8C8C8
$color__white-smoke: hsl(0, 0%, 96%);         //#F4F4F4

$color__black20: hsla(0, 0%, 0%, 0.2);    //rgba(255, 255, 255, 20)
$color__gray50: hsla(0, 0%, 78%, 0.5);   //rgba(200, 200, 200, 50)

// Promo colors
$color__green: hsl(132, 100%, 49%);     // #00F830
$color__cookie: $color__green;
$color__red: hsl(0, 100%, 50%);       // #f00
$color__red-campaign: $color__red;
$color__international-orange: hsl(19, 100%, 50%);      // #ff5200
$color__sales: $color__international-orange;
$color__yellow: hsl(60, 100%, 50%);      // #FFFF00
$color__razzle-dazzle-rose: hsl(310, 100%, 64%);     // #FF45E0
$color__who-we-are: $color__razzle-dazzle-rose;

/// --------------------------------------------------------------------------
///    Old palette
/// --------------------------------------------------------------------------
$color__alabaster: hsl(0, 0%, 98%);         // #fafafa;
$color__alto: hsla(0, 0%, 0%, 0.33);   // #00000054 = #d3d3d3;
$color__blue: hsl(231, 100%, 50%);     // #0026FF
$color__silver: hsl(0, 0%, 51%);         // #838383
$color__early-dawn: hsl(44, 100%, 95%);      // #fff9e8
$color__orange: hsl(30, 100%, 53%);      // #ff8810
$color__malachite: hsl(122, 69%, 51%);      // #2dd933
$color__violet: hsl(275, 77%, 15%);      // #2c0945
$color__royal-blue: hsl(229, 73.1%, 57.6%);  // #4462e2
$color__sunset-orange: hsl(0, 100%, 64.7%);     // #ff4b4b
$color__transparent: hsla(360, 100%, 100%, 0); //rgba(255, 255, 255, 0)

//Social networks
$color__facebook: $color__royal-blue;
$color__google: $color__sunset-orange;
*/
/* 1025 is used instead of 1024 because touch devices design is not specified */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * @tokens Font Families
 * @presenter FontFamily
 */
/** System monospace */
/**
 * @tokens Font Weights
 * @presenter FontWeight
 */
/**
 * @tokens Font Sizes
 * @presenter FontSize
 */
/**
 * @tokens Line Height
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* Scrollbars customization */
/* Custom width */
/* Custom width */
/*
  NOTE: Setup the svg.
    1- export the svg from the sketch in abstract
    2- go to optimizer, https://jakearchibald.github.io/svgomg/
    3- Copy source, check if need to have some changes in the path or fill.
*/
/**
 * Payment cards used in account, visa, mastercard,
 */
/**
 * Returns an url encoded SVG with the given color
 * @param {String} $icon - SVG code
 * @param {String} $fill-color - Fill color
 * @param {String} $stroke-color - Stroke color
 * @return {String} URL encoded svg
 */
/* -------------------------------------------------------------------------- *\
==============
| The Search |
==============
MOBILE:  Header < Search            PDPModals must hide the main header
                                    to show only a back button (as APP)
                                    Reference: SF-7800
------------------------------------------------------------------------
TABLET:                             no relevance
------------------------------------------------------------------------
DESKTOP: Header > Search            Subcategories must be viewed over
                                    the search form and its results
                                    Reference: SF-11932
\* -------------------------------------------------------------------------- */
/* $theme-colors: map-merge(
    (
      "primary":    $primary,
      "secondary":  $secondary,
      "success":    $success,
      "info":       $info,
      "warning":    $warning,
      "danger":     $danger,
      "light":      $light,
      "dark":       $dark
    ),
    $theme-colors
); */
/*
$carousel-control-prev-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 7 7'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
$carousel-control-next-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
*/
/*
 * https://allyjs.io/tutorials/hiding-elements.html#2017-edition-of-visuallyhidden
 */
/**
 * Extends click zone by adding a pseudo overflowing on the element
 *
 * @param $margins: size overflowing the click zone
 * @param $pseudo: the pseudo where attach the hotzone
 * @param $debug: just to see the zone added
 */
/**
 * Calculate button icon size based on capital height
 *
 * $margin: 4px by default ($inset-inline-xxs)
 *
 * $icon-side: left or right (right by default) to apply margin properly
 *
 * $capital-height: (em) height of capital characters, in FK Grotesk is 0.72em
 **/
/**
 *  FLOATING ELEMENTS
 * --------------------------------------------------------------------------
 *  Works from 0 to 575px breakpoints.
 *
 *  Element with is equal to 100vw subtracting
 *    1. Page inset left: 16px
 *    2. Menu with: 45px
 *    3. Space between menu and element: 24px
 *    4. Menu right position: 8px
 *  Even if menu isn't present
 *
 *  bottom: menu offset bottom (24px) + 4px
 *
 *  When the element coexists with the floating menu on mobile:
 *  right: 24px + menu width (45px) + 8px
 *  left: page inset (16px)
 *
 *  When there is no menu, element is centered
 */
.input, .select {
  background-color: transparent;
  border-color: #909090;
  border-style: solid;
  border-width: 0 0 1px;
  border-radius: 0; }
  .input:not([blank]), .select:not([blank]) {
    border-color: black; }
  .input:not(:blank), .select:not(:blank) {
    border-color: black; }

.input--hero, .select--primary {
  border-width: 0 0 2px; }

.input--hero::-moz-placeholder, .input--hero-search::-moz-placeholder {
  font-size: inherit; }

.input--hero::placeholder, .input--hero-search::placeholder {
  font-size: inherit; }

/* Mixin to use if touch devices design is specified */
/* Ignore, hover Device with limited pointing accuracy (touch) */
/**
 * Hide scrollbars during width/height transition with keyframes
 * Source: https://css-tricks.com/hide-scrollbars-during-an-animation/
 */
@-webkit-keyframes hide-scroll {
  from,
  to {
    overflow-y: hidden; } }
@keyframes hide-scroll {
  from,
  to {
    overflow-y: hidden; } }

/*
 * Returns a transition with one or multiple properties and common speed, curve and delay.
 * @param {String,List} string with the property, or each value of the list is a property
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 * Examples of use:
 * @include byl-transition((border-color));
 * @include byl-transition((border-color, height), speed(t2));
 * @include byl-transition((border-color, height), null, curve(ease3));
*/
/*
 * Returns a transition with multiple properties and independent speed, curve and delay.
 * @param {List} each value of the list is in turn a list for each transition properties and values
 * Expected order in each transition will be property, speed, curve and delay
 * Examples of use:
 * @include byl-complex-transition((height, speed(t3)), (opacity, null, curve(ease3)));
*/
/*
 * Returns a set of selectors to apply some interaction styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Returns a set of selectors to apply some interaction active styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Adds content for an interaction state
*/
/**
 * The product tiles grows with the columns of the product grid. These columns
 * are defined using bootstrap:
 *
 * >=0     2 columns
 * >=768   4 columns
 *
 * Because of this, the design considers two product tile sizes (S, L) to define
 * the look&feel of the tiles depending on the space that those columns leave to
 * grow to a tile
 *
 * >=0     tileS  - non-fluid
 * >=375   tileS  ---- fluid ---> 767 tileL
 * >=768   tileS  - non-fluid
 * >=1025  tileS  ---- fluid ---> 1920 tileL
 * >=1920  tileL  - non-fluid
 *
 * This mixin eases the task of defining the fluid values of a property for
 * these workflow
 *
 * @param {string} $property - Property name
 * @param {any} $small-tile-value - Property vale for a tile of size S
 * @param {any} $big-tile-value - Property vale for a tile of size L
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: black;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: red;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 375px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1025px;
  --breakpoint-xl: 1280px;
  --breakpoint-xxl: 1440px;
  --breakpoint-xxxl: 1920px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2; }

h1, .h1 {
  font-size: 2.5rem; }

h2, .h2 {
  font-size: 2rem; }

h3, .h3 {
  font-size: 1.75rem; }

h4, .h4 {
  font-size: 1.5rem; }

h5, .h5 {
  font-size: 1.25rem; }

h6, .h6 {
  font-size: 1rem; }

.lead {
  font-size: 1.25rem;
  font-weight: 300; }

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2; }

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2; }

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2; }

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

small,
.small {
  font-size: 80%;
  font-weight: 400; }

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3; }

.list-unstyled {
  padding-left: 0;
  list-style: none; }

.list-inline {
  padding-left: 0;
  list-style: none; }

.list-inline-item {
  display: inline-block; }
  .list-inline-item:not(:last-child) {
    margin-right: 0.5rem; }

.initialism {
  font-size: 90%;
  text-transform: uppercase; }

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem; }

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d; }
  .blockquote-footer::before {
    content: "\2014\A0"; }

.container {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 375px) {
    .container {
      max-width: 100%; } }
  @media (min-width: 768px) {
    .container {
      max-width: 100%; } }
  @media (min-width: 1025px) {
    .container {
      max-width: 100%; } }
  @media (min-width: 1280px) {
    .container {
      max-width: 100%; } }

.container-fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl,
.col-xxl-auto, .col-xxxl-1, .col-xxxl-2, .col-xxxl-3, .col-xxxl-4, .col-xxxl-5, .col-xxxl-6, .col-xxxl-7, .col-xxxl-8, .col-xxxl-9, .col-xxxl-10, .col-xxxl-11, .col-xxxl-12, .col-xxxl,
.col-xxxl-auto {
  position: relative;
  width: 100%;
  padding-right: 0;
  padding-left: 0; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%; }

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

@media (min-width: 375px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    order: -1; }
  .order-sm-last {
    order: 13; }
  .order-sm-0 {
    order: 0; }
  .order-sm-1 {
    order: 1; }
  .order-sm-2 {
    order: 2; }
  .order-sm-3 {
    order: 3; }
  .order-sm-4 {
    order: 4; }
  .order-sm-5 {
    order: 5; }
  .order-sm-6 {
    order: 6; }
  .order-sm-7 {
    order: 7; }
  .order-sm-8 {
    order: 8; }
  .order-sm-9 {
    order: 9; }
  .order-sm-10 {
    order: 10; }
  .order-sm-11 {
    order: 11; }
  .order-sm-12 {
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    order: -1; }
  .order-md-last {
    order: 13; }
  .order-md-0 {
    order: 0; }
  .order-md-1 {
    order: 1; }
  .order-md-2 {
    order: 2; }
  .order-md-3 {
    order: 3; }
  .order-md-4 {
    order: 4; }
  .order-md-5 {
    order: 5; }
  .order-md-6 {
    order: 6; }
  .order-md-7 {
    order: 7; }
  .order-md-8 {
    order: 8; }
  .order-md-9 {
    order: 9; }
  .order-md-10 {
    order: 10; }
  .order-md-11 {
    order: 11; }
  .order-md-12 {
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1025px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    order: -1; }
  .order-lg-last {
    order: 13; }
  .order-lg-0 {
    order: 0; }
  .order-lg-1 {
    order: 1; }
  .order-lg-2 {
    order: 2; }
  .order-lg-3 {
    order: 3; }
  .order-lg-4 {
    order: 4; }
  .order-lg-5 {
    order: 5; }
  .order-lg-6 {
    order: 6; }
  .order-lg-7 {
    order: 7; }
  .order-lg-8 {
    order: 8; }
  .order-lg-9 {
    order: 9; }
  .order-lg-10 {
    order: 10; }
  .order-lg-11 {
    order: 11; }
  .order-lg-12 {
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1280px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    order: -1; }
  .order-xl-last {
    order: 13; }
  .order-xl-0 {
    order: 0; }
  .order-xl-1 {
    order: 1; }
  .order-xl-2 {
    order: 2; }
  .order-xl-3 {
    order: 3; }
  .order-xl-4 {
    order: 4; }
  .order-xl-5 {
    order: 5; }
  .order-xl-6 {
    order: 6; }
  .order-xl-7 {
    order: 7; }
  .order-xl-8 {
    order: 8; }
  .order-xl-9 {
    order: 9; }
  .order-xl-10 {
    order: 10; }
  .order-xl-11 {
    order: 11; }
  .order-xl-12 {
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1440px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xxl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xxl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xxl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xxl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xxl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xxl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xxl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xxl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xxl-first {
    order: -1; }
  .order-xxl-last {
    order: 13; }
  .order-xxl-0 {
    order: 0; }
  .order-xxl-1 {
    order: 1; }
  .order-xxl-2 {
    order: 2; }
  .order-xxl-3 {
    order: 3; }
  .order-xxl-4 {
    order: 4; }
  .order-xxl-5 {
    order: 5; }
  .order-xxl-6 {
    order: 6; }
  .order-xxl-7 {
    order: 7; }
  .order-xxl-8 {
    order: 8; }
  .order-xxl-9 {
    order: 9; }
  .order-xxl-10 {
    order: 10; }
  .order-xxl-11 {
    order: 11; }
  .order-xxl-12 {
    order: 12; }
  .offset-xxl-0 {
    margin-left: 0; }
  .offset-xxl-1 {
    margin-left: 8.33333%; }
  .offset-xxl-2 {
    margin-left: 16.66667%; }
  .offset-xxl-3 {
    margin-left: 25%; }
  .offset-xxl-4 {
    margin-left: 33.33333%; }
  .offset-xxl-5 {
    margin-left: 41.66667%; }
  .offset-xxl-6 {
    margin-left: 50%; }
  .offset-xxl-7 {
    margin-left: 58.33333%; }
  .offset-xxl-8 {
    margin-left: 66.66667%; }
  .offset-xxl-9 {
    margin-left: 75%; }
  .offset-xxl-10 {
    margin-left: 83.33333%; }
  .offset-xxl-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1920px) {
  .col-xxxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xxxl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xxxl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xxxl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xxxl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xxxl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xxxl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xxxl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xxxl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xxxl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xxxl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xxxl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xxxl-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xxxl-first {
    order: -1; }
  .order-xxxl-last {
    order: 13; }
  .order-xxxl-0 {
    order: 0; }
  .order-xxxl-1 {
    order: 1; }
  .order-xxxl-2 {
    order: 2; }
  .order-xxxl-3 {
    order: 3; }
  .order-xxxl-4 {
    order: 4; }
  .order-xxxl-5 {
    order: 5; }
  .order-xxxl-6 {
    order: 6; }
  .order-xxxl-7 {
    order: 7; }
  .order-xxxl-8 {
    order: 8; }
  .order-xxxl-9 {
    order: 9; }
  .order-xxxl-10 {
    order: 10; }
  .order-xxxl-11 {
    order: 11; }
  .order-xxxl-12 {
    order: 12; }
  .offset-xxxl-0 {
    margin-left: 0; }
  .offset-xxxl-1 {
    margin-left: 8.33333%; }
  .offset-xxxl-2 {
    margin-left: 16.66667%; }
  .offset-xxxl-3 {
    margin-left: 25%; }
  .offset-xxxl-4 {
    margin-left: 33.33333%; }
  .offset-xxxl-5 {
    margin-left: 41.66667%; }
  .offset-xxxl-6 {
    margin-left: 50%; }
  .offset-xxxl-7 {
    margin-left: 58.33333%; }
  .offset-xxxl-8 {
    margin-left: 66.66667%; }
  .offset-xxxl-9 {
    margin-left: 75%; }
  .offset-xxxl-10 {
    margin-left: 83.33333%; }
  .offset-xxxl-11 {
    margin-left: 91.66667%; } }

.fade {
  transition: opacity 0.15s linear; }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
  display: none; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative; }

.dropdown-toggle {
  white-space: nowrap; }
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent; }
  .dropdown-toggle:empty::after {
    margin-left: 0; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }

.dropdown-menu-left {
  right: auto;
  left: 0; }

.dropdown-menu-right {
  right: 0;
  left: auto; }

@media (min-width: 375px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0; }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto; } }

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0; }
  .dropdown-menu-md-right {
    right: 0;
    left: auto; } }

@media (min-width: 1025px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0; }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto; } }

@media (min-width: 1280px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0; }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto; } }

@media (min-width: 1440px) {
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0; }
  .dropdown-menu-xxl-right {
    right: 0;
    left: auto; } }

@media (min-width: 1920px) {
  .dropdown-menu-xxxl-left {
    right: auto;
    left: 0; }
  .dropdown-menu-xxxl-right {
    right: 0;
    left: auto; } }

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem; }

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent; }

.dropup .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem; }

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid; }

.dropright .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropright .dropdown-toggle::after {
  vertical-align: 0; }

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem; }

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: ""; }

.dropleft .dropdown-toggle::after {
  display: none; }

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent; }

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropleft .dropdown-toggle::before {
  vertical-align: 0; }

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto; }

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef; }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }
  .dropdown-item:hover, .dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa; }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff; }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent; }

.dropdown-menu.show {
  display: block; }

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap; }

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529; }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle; }
  .btn-group > .btn,
  .btn-group-vertical > .btn {
    position: relative;
    flex: 1 1 auto; }
    @media not all and (pointer: coarse) {
      .btn-group > .btn:hover,
      .btn-group-vertical > .btn:hover {
        z-index: 1; } }
    .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
    .btn-group-vertical > .btn:focus,
    .btn-group-vertical > .btn:active,
    .btn-group-vertical > .btn.active {
      z-index: 1; }

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  .btn-toolbar .input-group {
    width: auto; }

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px; }

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem; }
  .dropdown-toggle-split::after,
  .dropup .dropdown-toggle-split::after,
  .dropright .dropdown-toggle-split::after {
    margin-left: 0; }
  .dropleft .dropdown-toggle-split::before {
    margin-right: 0; }

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem; }

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem; }

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; }
  .btn-group-vertical > .btn,
  .btn-group-vertical > .btn-group {
    width: 100%; }
  .btn-group-vertical > .btn:not(:first-child),
  .btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: -1px; }
  .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  .btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .btn-group-vertical > .btn:not(:first-child),
  .btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0; }
  .btn-group-toggle > .btn input[type="radio"],
  .btn-group-toggle > .btn input[type="checkbox"],
  .btn-group-toggle > .btn-group > .btn input[type="radio"],
  .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none; }

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%; }
  .input-group > .form-control,
  .input-group > .form-control-plaintext,
  .input-group > .custom-select,
  .input-group > .custom-file {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0; }
    .input-group > .form-control + .form-control,
    .input-group > .form-control + .custom-select,
    .input-group > .form-control + .custom-file,
    .input-group > .form-control-plaintext + .form-control,
    .input-group > .form-control-plaintext + .custom-select,
    .input-group > .form-control-plaintext + .custom-file,
    .input-group > .custom-select + .form-control,
    .input-group > .custom-select + .custom-select,
    .input-group > .custom-select + .custom-file,
    .input-group > .custom-file + .form-control,
    .input-group > .custom-file + .custom-select,
    .input-group > .custom-file + .custom-file {
      margin-left: -1px; }
  .input-group > .form-control:focus,
  .input-group > .custom-select:focus,
  .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
    z-index: 3; }
  .input-group > .custom-file .custom-file-input:focus {
    z-index: 4; }
  .input-group > .form-control:not(:last-child),
  .input-group > .custom-select:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .input-group > .form-control:not(:first-child),
  .input-group > .custom-select:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
  .input-group > .custom-file {
    display: flex;
    align-items: center; }
    .input-group > .custom-file:not(:last-child) .custom-file-label,
    .input-group > .custom-file:not(:last-child) .custom-file-label::after {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .input-group > .custom-file:not(:first-child) .custom-file-label {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }

.input-group-prepend,
.input-group-append {
  display: flex; }
  .input-group-prepend .btn,
  .input-group-append .btn {
    position: relative;
    z-index: 2; }
    .input-group-prepend .btn:focus,
    .input-group-append .btn:focus {
      z-index: 3; }
  .input-group-prepend .btn + .btn,
  .input-group-prepend .btn + .input-group-text,
  .input-group-prepend .input-group-text + .input-group-text,
  .input-group-prepend .input-group-text + .btn,
  .input-group-append .btn + .btn,
  .input-group-append .btn + .input-group-text,
  .input-group-append .input-group-text + .input-group-text,
  .input-group-append .input-group-text + .btn {
    margin-left: -1px; }

.input-group-prepend {
  margin-right: -1px; }

.input-group-append {
  margin-left: -1px; }

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem; }
  .input-group-text input[type="radio"],
  .input-group-text input[type="checkbox"] {
    margin-top: 0; }

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px); }

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem; }

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px); }

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem; }

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem; }

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem; }
  .navbar > .container,
  .navbar > .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .navbar-nav .dropdown-menu {
    position: static;
    float: none; }

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center; }

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem; }
  .navbar-toggler:hover, .navbar-toggler:focus {
    text-decoration: none; }

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%; }

@media (max-width: 374.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 375px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
      flex-direction: row; }
      .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-sm .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
      display: none; } }

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
      flex-direction: row; }
      .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-md .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
      display: none; } }

@media (max-width: 1024.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 1025px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-lg .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; } }

@media (max-width: 1279.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 1280px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-xl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xl .navbar-toggler {
      display: none; } }

@media (max-width: 1439.98px) {
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 1440px) {
  .navbar-expand-xxl {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-xxl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-xxl > .container,
    .navbar-expand-xxl > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-xxl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xxl .navbar-toggler {
      display: none; } }

@media (max-width: 1919.98px) {
  .navbar-expand-xxxl > .container,
  .navbar-expand-xxxl > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 1920px) {
  .navbar-expand-xxxl {
    flex-flow: row nowrap;
    justify-content: flex-start; }
    .navbar-expand-xxxl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xxxl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xxxl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-xxxl > .container,
    .navbar-expand-xxxl > .container-fluid {
      flex-wrap: nowrap; }
    .navbar-expand-xxxl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xxxl .navbar-toggler {
      display: none; } }

.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start; }
  .navbar-expand > .container,
  .navbar-expand > .container-fluid {
    padding-right: 0;
    padding-left: 0; }
  .navbar-expand .navbar-nav {
    flex-direction: row; }
    .navbar-expand .navbar-nav .dropdown-menu {
      position: absolute; }
    .navbar-expand .navbar-nav .nav-link {
      padding-right: 0.5rem;
      padding-left: 0.5rem; }
  .navbar-expand > .container,
  .navbar-expand > .container-fluid {
    flex-wrap: nowrap; }
  .navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
  .navbar-expand .navbar-toggler {
    display: none; }

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9); }
  .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5); }
  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7); }
  .navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3); }

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1); }

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5); }
  .navbar-light .navbar-text a {
    color: rgba(0, 0, 0, 0.9); }
    .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
      color: rgba(0, 0, 0, 0.9); }

.navbar-dark .navbar-brand {
  color: #fff; }
  .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75); }
  .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff; }

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1); }

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5); }
  .navbar-dark .navbar-text a {
    color: #fff; }
    .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
      color: #fff; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem; }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
  .card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }

.card-body {
  flex: 1 1 auto;
  padding: 1.25rem; }

.card-title {
  margin-bottom: 0.75rem; }

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

@media not all and (pointer: coarse) {
  .card-link:hover {
    text-decoration: none; } }

.card-link + .card-link {
  margin-left: 1.25rem; }

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  .card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }
  .card-header + .list-group .list-group-item:first-child {
    border-top: 0; }

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125); }
  .card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0; }

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem; }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem; }

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px); }

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px); }

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px); }

.card-deck {
  display: flex;
  flex-direction: column; }
  .card-deck .card {
    margin-bottom: 15px; }
  @media (min-width: 375px) {
    .card-deck {
      flex-flow: row wrap;
      margin-right: -15px;
      margin-left: -15px; }
      .card-deck .card {
        display: flex;
        flex: 1 0 0%;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px; } }

.card-group {
  display: flex;
  flex-direction: column; }
  .card-group > .card {
    margin-bottom: 15px; }
  @media (min-width: 375px) {
    .card-group {
      flex-flow: row wrap; }
      .card-group > .card {
        flex: 1 0 0%;
        margin-bottom: 0; }
        .card-group > .card + .card {
          margin-left: 0;
          border-left: 0; }
        .card-group > .card:not(:last-child) {
          border-top-right-radius: 0;
          border-bottom-right-radius: 0; }
          .card-group > .card:not(:last-child) .card-img-top,
          .card-group > .card:not(:last-child) .card-header {
            border-top-right-radius: 0; }
          .card-group > .card:not(:last-child) .card-img-bottom,
          .card-group > .card:not(:last-child) .card-footer {
            border-bottom-right-radius: 0; }
        .card-group > .card:not(:first-child) {
          border-top-left-radius: 0;
          border-bottom-left-radius: 0; }
          .card-group > .card:not(:first-child) .card-img-top,
          .card-group > .card:not(:first-child) .card-header {
            border-top-left-radius: 0; }
          .card-group > .card:not(:first-child) .card-img-bottom,
          .card-group > .card:not(:first-child) .card-footer {
            border-bottom-left-radius: 0; } }

.card-columns .card {
  margin-bottom: 0.75rem; }

@media (min-width: 375px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    grid-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1; }
    .card-columns .card {
      display: inline-block;
      width: 100%; } }

.accordion > .card {
  overflow: hidden; }
  .accordion > .card:not(:first-of-type) .card-header:first-child {
    border-radius: 0; }
  .accordion > .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 0;
    border-radius: 0; }
  .accordion > .card:first-of-type {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .accordion > .card:last-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .accordion > .card .card-header {
    margin-bottom: -1px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem; }

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem; }
  .breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/"; }

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline; }

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none; }

.breadcrumb-item.active {
  color: #6c757d; }

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 50%; }

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6; }
  .page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6; }
  .page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%; }

.page-item:last-child .page-link {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%; }

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff; }

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6; }

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5; }

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem; }

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem; }

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5; }

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem; }

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem; }

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .badge {
      transition: none; } }
  a.badge:hover, a.badge:focus {
    text-decoration: none; }
  .badge:empty {
    display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem; }

.badge-primary {
  color: #fff;
  background-color: black; }
  a.badge-primary:hover, a.badge-primary:focus {
    color: #fff;
    background-color: black; }
  a.badge-primary:focus, a.badge-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5); }

.badge-secondary {
  color: #fff;
  background-color: #6c757d; }
  a.badge-secondary:hover, a.badge-secondary:focus {
    color: #fff;
    background-color: #545b62; }
  a.badge-secondary:focus, a.badge-secondary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }

.badge-success {
  color: #fff;
  background-color: #28a745; }
  a.badge-success:hover, a.badge-success:focus {
    color: #fff;
    background-color: #1e7e34; }
  a.badge-success:focus, a.badge-success.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }

.badge-info {
  color: #fff;
  background-color: #17a2b8; }
  a.badge-info:hover, a.badge-info:focus {
    color: #fff;
    background-color: #117a8b; }
  a.badge-info:focus, a.badge-info.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }

.badge-warning {
  color: #212529;
  background-color: #ffc107; }
  a.badge-warning:hover, a.badge-warning:focus {
    color: #212529;
    background-color: #d39e00; }
  a.badge-warning:focus, a.badge-warning.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }

.badge-danger {
  color: #fff;
  background-color: red; }
  a.badge-danger:hover, a.badge-danger:focus {
    color: #fff;
    background-color: #cc0000; }
  a.badge-danger:focus, a.badge-danger.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.5); }

.badge-light {
  color: #212529;
  background-color: #f8f9fa; }
  a.badge-light:hover, a.badge-light:focus {
    color: #212529;
    background-color: #dae0e5; }
  a.badge-light:focus, a.badge-light.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }

.badge-dark {
  color: #fff;
  background-color: #343a40; }
  a.badge-dark:hover, a.badge-dark:focus {
    color: #fff;
    background-color: #1d2124; }
  a.badge-dark:focus, a.badge-dark.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem; }
  @media (min-width: 375px) {
    .jumbotron {
      padding: 4rem 2rem; } }

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0; }

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: 700; }

.alert-dismissible {
  padding-right: 4rem; }
  .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit; }

.alert-primary {
  color: black;
  background-color: #cccccc;
  border-color: #b8b8b8; }
  .alert-primary hr {
    border-top-color: #ababab; }
  .alert-primary .alert-link {
    color: black; }

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db; }
  .alert-secondary hr {
    border-top-color: #c8cbcf; }
  .alert-secondary .alert-link {
    color: #202326; }

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb; }
  .alert-success hr {
    border-top-color: #b1dfbb; }
  .alert-success .alert-link {
    color: #0b2e13; }

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb; }
  .alert-info hr {
    border-top-color: #abdde5; }
  .alert-info .alert-link {
    color: #062c33; }

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba; }
  .alert-warning hr {
    border-top-color: #ffe8a1; }
  .alert-warning .alert-link {
    color: #533f03; }

.alert-danger {
  color: #850000;
  background-color: #ffcccc;
  border-color: #ffb8b8; }
  .alert-danger hr {
    border-top-color: #ff9f9f; }
  .alert-danger .alert-link {
    color: #520000; }

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe; }
  .alert-light hr {
    border-top-color: #ececf6; }
  .alert-light .alert-link {
    color: #686868; }

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca; }
  .alert-dark hr {
    border-top-color: #b9bbbe; }
  .alert-dark .alert-link {
    color: #040505; }

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0; }
  to {
    background-position: 0 0; } }

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem; }

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease; }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar {
      transition: none; } }

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite; }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
      -webkit-animation: none;
              animation: none; } }

.media {
  display: flex;
  align-items: flex-start; }

.media-body {
  flex: 1; }

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0; }

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit; }
  .list-group-item-action:hover, .list-group-item-action:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa; }
  .list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef; }

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .list-group-item:first-child {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
  .list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff; }
  .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff; }

.list-group-horizontal {
  flex-direction: row; }
  .list-group-horizontal .list-group-item {
    margin-right: -1px;
    margin-bottom: 0; }
    .list-group-horizontal .list-group-item:first-child {
      border-top-left-radius: 0.25rem;
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal .list-group-item:last-child {
      margin-right: 0;
      border-top-right-radius: 0.25rem;
      border-bottom-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }

@media (min-width: 375px) {
  .list-group-horizontal-sm {
    flex-direction: row; }
    .list-group-horizontal-sm .list-group-item {
      margin-right: -1px;
      margin-bottom: 0; }
      .list-group-horizontal-sm .list-group-item:first-child {
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .list-group-horizontal-sm .list-group-item:last-child {
        margin-right: 0;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0; } }

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row; }
    .list-group-horizontal-md .list-group-item {
      margin-right: -1px;
      margin-bottom: 0; }
      .list-group-horizontal-md .list-group-item:first-child {
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .list-group-horizontal-md .list-group-item:last-child {
        margin-right: 0;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0; } }

@media (min-width: 1025px) {
  .list-group-horizontal-lg {
    flex-direction: row; }
    .list-group-horizontal-lg .list-group-item {
      margin-right: -1px;
      margin-bottom: 0; }
      .list-group-horizontal-lg .list-group-item:first-child {
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .list-group-horizontal-lg .list-group-item:last-child {
        margin-right: 0;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0; } }

@media (min-width: 1280px) {
  .list-group-horizontal-xl {
    flex-direction: row; }
    .list-group-horizontal-xl .list-group-item {
      margin-right: -1px;
      margin-bottom: 0; }
      .list-group-horizontal-xl .list-group-item:first-child {
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .list-group-horizontal-xl .list-group-item:last-child {
        margin-right: 0;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0; } }

@media (min-width: 1440px) {
  .list-group-horizontal-xxl {
    flex-direction: row; }
    .list-group-horizontal-xxl .list-group-item {
      margin-right: -1px;
      margin-bottom: 0; }
      .list-group-horizontal-xxl .list-group-item:first-child {
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .list-group-horizontal-xxl .list-group-item:last-child {
        margin-right: 0;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0; } }

@media (min-width: 1920px) {
  .list-group-horizontal-xxxl {
    flex-direction: row; }
    .list-group-horizontal-xxxl .list-group-item {
      margin-right: -1px;
      margin-bottom: 0; }
      .list-group-horizontal-xxxl .list-group-item:first-child {
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0; }
      .list-group-horizontal-xxxl .list-group-item:last-child {
        margin-right: 0;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0; } }

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0; }
  .list-group-flush .list-group-item:last-child {
    margin-bottom: -1px; }

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0; }

.list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0; }

.list-group-item-primary {
  color: black;
  background-color: #b8b8b8; }
  .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: black;
    background-color: #ababab; }
  .list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: black;
    border-color: black; }

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db; }
  .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #383d41;
    background-color: #c8cbcf; }
  .list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41; }

.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb; }
  .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #155724;
    background-color: #b1dfbb; }
  .list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724; }

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb; }
  .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #0c5460;
    background-color: #abdde5; }
  .list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460; }

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba; }
  .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #856404;
    background-color: #ffe8a1; }
  .list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404; }

.list-group-item-danger {
  color: #850000;
  background-color: #ffb8b8; }
  .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #850000;
    background-color: #ff9f9f; }
  .list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #850000;
    border-color: #850000; }

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe; }
  .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #818182;
    background-color: #ececf6; }
  .list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182; }

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca; }
  .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #1b1e21;
    background-color: #b9bbbe; }
  .list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21; }

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5; }
  @media not all and (pointer: coarse) {
    .close:hover {
      color: #000;
      text-decoration: none; } }
  .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    opacity: .75; }

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

a.close.disabled {
  pointer-events: none; }

.modal-open {
  overflow: hidden; }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px); }
    @media (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        transition: none; } }
  .modal.show .modal-dialog {
    transform: none; }

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem); }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden; }
  .modal-dialog-scrollable .modal-header,
  .modal-dialog-scrollable .modal-footer {
    flex-shrink: 0; }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem); }
  .modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    content: ""; }
  .modal-dialog-centered.modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%; }
    .modal-dialog-centered.modal-dialog-scrollable .modal-content {
      max-height: none; }
    .modal-dialog-centered.modal-dialog-scrollable::before {
      content: none; }

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem; }
  .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem; }
  .modal-footer > :not(:first-child) {
    margin-left: .25rem; }
  .modal-footer > :not(:last-child) {
    margin-right: .25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 375px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem); }
    .modal-dialog-scrollable .modal-content {
      max-height: calc(100vh - 3.5rem); }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem); }
    .modal-dialog-centered::before {
      height: calc(100vh - 3.5rem); }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 1025px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px; } }

@media (min-width: 1280px) {
  .modal-xl {
    max-width: 1140px; } }

[dir="ltr"] .tooltip {
  text-align: left; }

[dir="rtl"] .tooltip {
  text-align: right; }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0; }
  .tooltip.show {
    opacity: 0.9; }
  .tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem; }
    .tooltip .arrow::before {
      position: absolute;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0; }
  .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0; }
    .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
      top: 0;
      border-width: 0.4rem 0.4rem 0;
      border-top-color: #000; }

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem; }
  .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
      right: 0;
      border-width: 0.4rem 0.4rem 0.4rem 0;
      border-right-color: #000; }

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0; }
  .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0; }
    .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
      bottom: 0;
      border-width: 0 0.4rem 0.4rem;
      border-bottom-color: #000; }

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem; }
  .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
      left: 0;
      border-width: 0.4rem 0 0.4rem 0.4rem;
      border-left-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem; }

[dir="ltr"] .popover {
  text-align: left; }

[dir="rtl"] .popover {
  text-align: right; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem; }
  .popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem; }
    .popover .arrow::before, .popover .arrow::after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem; }
  .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
    bottom: calc((0.5rem + 1px) * -1); }
    .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
      bottom: 0;
      border-width: 0.5rem 0.5rem 0;
      border-top-color: rgba(0, 0, 0, 0.25); }
    .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
      bottom: 1px;
      border-width: 0.5rem 0.5rem 0;
      border-top-color: #fff; }

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem; }
  .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
    left: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0; }
    .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
      left: 0;
      border-width: 0.5rem 0.5rem 0.5rem 0;
      border-right-color: rgba(0, 0, 0, 0.25); }
    .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
      left: 1px;
      border-width: 0.5rem 0.5rem 0.5rem 0;
      border-right-color: #fff; }

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem; }
  .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
    top: calc((0.5rem + 1px) * -1); }
    .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
      top: 0;
      border-width: 0 0.5rem 0.5rem 0.5rem;
      border-bottom-color: rgba(0, 0, 0, 0.25); }
    .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
      top: 1px;
      border-width: 0 0.5rem 0.5rem 0.5rem;
      border-bottom-color: #fff; }
  .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7; }

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem; }
  .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
    right: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0; }
    .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
      right: 0;
      border-width: 0.5rem 0 0.5rem 0.5rem;
      border-left-color: rgba(0, 0, 0, 0.25); }
    .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
      right: 1px;
      border-width: 0.5rem 0 0.5rem 0.5rem;
      border-left-color: #fff; }

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529; }

.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

/**
   * 1. Remove problematic important.
   */
.bg-primary {
  background-color: black;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: black;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
.bg-secondary {
  background-color: #6c757d;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
.bg-success {
  background-color: #28a745;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
.bg-info {
  background-color: #17a2b8;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
.bg-warning {
  background-color: #ffc107;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
.bg-danger {
  background-color: red;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #cc0000;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
.bg-light {
  background-color: #f8f9fa;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
.bg-dark {
  background-color: #343a40;
  /* [1] */ }

/**
   * 1. Remove problematic important.
   */
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124;
  /* [1] */ }

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

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

.border {
  border: 1px solid black !important; }

.border-top {
  border-top: 1px solid black !important; }

.border-right {
  border-right: 1px solid black !important; }

.border-bottom {
  border-bottom: 1px solid black !important; }

.border-left {
  border-left: 1px solid black !important; }

.border-0 {
  border: 0 !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-right-0 {
  border-right: 0 !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-left-0 {
  border-left: 0 !important; }

.border-primary {
  border-color: black !important; }

.border-secondary {
  border-color: #6c757d !important; }

.border-success {
  border-color: #28a745 !important; }

.border-info {
  border-color: #17a2b8 !important; }

.border-warning {
  border-color: #ffc107 !important; }

.border-danger {
  border-color: red !important; }

.border-light {
  border-color: #f8f9fa !important; }

.border-dark {
  border-color: #343a40 !important; }

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

.rounded-sm {
  border-radius: 0.2rem !important; }

.rounded {
  border-radius: 50% !important; }

.rounded-top {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important; }

.rounded-right {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important; }

.rounded-bottom {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important; }

.rounded-left {
  border-top-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important; }

.rounded-lg {
  border-radius: 0.3rem !important; }

.rounded-circle {
  border-radius: 50% !important; }

.rounded-pill {
  border-radius: 50rem !important; }

.rounded-0 {
  border-radius: 0 !important; }

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

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 375px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1025px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1280px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1440px) {
  .d-xxl-none {
    display: none !important; }
  .d-xxl-inline {
    display: inline !important; }
  .d-xxl-inline-block {
    display: inline-block !important; }
  .d-xxl-block {
    display: block !important; }
  .d-xxl-table {
    display: table !important; }
  .d-xxl-table-row {
    display: table-row !important; }
  .d-xxl-table-cell {
    display: table-cell !important; }
  .d-xxl-flex {
    display: flex !important; }
  .d-xxl-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1920px) {
  .d-xxxl-none {
    display: none !important; }
  .d-xxxl-inline {
    display: inline !important; }
  .d-xxxl-inline-block {
    display: inline-block !important; }
  .d-xxxl-block {
    display: block !important; }
  .d-xxxl-table {
    display: table !important; }
  .d-xxxl-table-row {
    display: table-row !important; }
  .d-xxxl-table-cell {
    display: table-cell !important; }
  .d-xxxl-flex {
    display: flex !important; }
  .d-xxxl-inline-flex {
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; } }

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden; }
  .embed-responsive::before {
    display: block;
    content: ""; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.embed-responsive-21by9::before {
  padding-top: 42.85714%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  flex: 1 1 auto !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 375px) {
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; } }

@media (min-width: 1025px) {
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; } }

@media (min-width: 1280px) {
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; } }

@media (min-width: 1440px) {
  .flex-xxl-row {
    flex-direction: row !important; }
  .flex-xxl-column {
    flex-direction: column !important; }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xxl-wrap {
    flex-wrap: wrap !important; }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-xxl-fill {
    flex: 1 1 auto !important; }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-xxl-start {
    justify-content: flex-start !important; }
  .justify-content-xxl-end {
    justify-content: flex-end !important; }
  .justify-content-xxl-center {
    justify-content: center !important; }
  .justify-content-xxl-between {
    justify-content: space-between !important; }
  .justify-content-xxl-around {
    justify-content: space-around !important; }
  .align-items-xxl-start {
    align-items: flex-start !important; }
  .align-items-xxl-end {
    align-items: flex-end !important; }
  .align-items-xxl-center {
    align-items: center !important; }
  .align-items-xxl-baseline {
    align-items: baseline !important; }
  .align-items-xxl-stretch {
    align-items: stretch !important; }
  .align-content-xxl-start {
    align-content: flex-start !important; }
  .align-content-xxl-end {
    align-content: flex-end !important; }
  .align-content-xxl-center {
    align-content: center !important; }
  .align-content-xxl-between {
    align-content: space-between !important; }
  .align-content-xxl-around {
    align-content: space-around !important; }
  .align-content-xxl-stretch {
    align-content: stretch !important; }
  .align-self-xxl-auto {
    align-self: auto !important; }
  .align-self-xxl-start {
    align-self: flex-start !important; }
  .align-self-xxl-end {
    align-self: flex-end !important; }
  .align-self-xxl-center {
    align-self: center !important; }
  .align-self-xxl-baseline {
    align-self: baseline !important; }
  .align-self-xxl-stretch {
    align-self: stretch !important; } }

@media (min-width: 1920px) {
  .flex-xxxl-row {
    flex-direction: row !important; }
  .flex-xxxl-column {
    flex-direction: column !important; }
  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xxxl-wrap {
    flex-wrap: wrap !important; }
  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-xxxl-fill {
    flex: 1 1 auto !important; }
  .flex-xxxl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xxxl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-xxxl-start {
    justify-content: flex-start !important; }
  .justify-content-xxxl-end {
    justify-content: flex-end !important; }
  .justify-content-xxxl-center {
    justify-content: center !important; }
  .justify-content-xxxl-between {
    justify-content: space-between !important; }
  .justify-content-xxxl-around {
    justify-content: space-around !important; }
  .align-items-xxxl-start {
    align-items: flex-start !important; }
  .align-items-xxxl-end {
    align-items: flex-end !important; }
  .align-items-xxxl-center {
    align-items: center !important; }
  .align-items-xxxl-baseline {
    align-items: baseline !important; }
  .align-items-xxxl-stretch {
    align-items: stretch !important; }
  .align-content-xxxl-start {
    align-content: flex-start !important; }
  .align-content-xxxl-end {
    align-content: flex-end !important; }
  .align-content-xxxl-center {
    align-content: center !important; }
  .align-content-xxxl-between {
    align-content: space-between !important; }
  .align-content-xxxl-around {
    align-content: space-around !important; }
  .align-content-xxxl-stretch {
    align-content: stretch !important; }
  .align-self-xxxl-auto {
    align-self: auto !important; }
  .align-self-xxxl-start {
    align-self: flex-start !important; }
  .align-self-xxxl-end {
    align-self: flex-end !important; }
  .align-self-xxxl-center {
    align-self: center !important; }
  .align-self-xxxl-baseline {
    align-self: baseline !important; }
  .align-self-xxxl-stretch {
    align-self: stretch !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-none {
  float: none !important; }

@media (min-width: 375px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }

@media (min-width: 1025px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }

@media (min-width: 1280px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }

@media (min-width: 1440px) {
  .float-xxl-left {
    float: left !important; }
  .float-xxl-right {
    float: right !important; }
  .float-xxl-none {
    float: none !important; } }

@media (min-width: 1920px) {
  .float-xxxl-left {
    float: left !important; }
  .float-xxxl-right {
    float: right !important; }
  .float-xxxl-none {
    float: none !important; } }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

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

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: sticky !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal; }

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

.shadow-none {
  box-shadow: none !important; }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.w-auto {
  width: auto !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

.min-vw-100 {
  min-width: 100vw !important; }

.min-vh-100 {
  min-height: 100vh !important; }

.vw-100 {
  width: 100vw !important; }

.vh-100 {
  height: 100vh !important; }

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0); }

.m-0 {
  margin: 0 !important; }

.mt-0,
.my-0 {
  margin-top: 0 !important; }

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

.mb-0,
.my-0 {
  margin-bottom: 0 !important; }

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0,
.py-0 {
  padding-top: 0 !important; }

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

.pl-0,
.px-0 {
  padding-left: 0 !important; }

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3,
.py-3 {
  padding-top: 1rem !important; }

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.m-n1 {
  margin: -0.25rem !important; }

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important; }

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important; }

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important; }

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important; }

.m-n2 {
  margin: -0.5rem !important; }

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important; }

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important; }

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important; }

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important; }

.m-n3 {
  margin: -1rem !important; }

.mt-n3,
.my-n3 {
  margin-top: -1rem !important; }

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important; }

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important; }

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important; }

.m-n4 {
  margin: -1.5rem !important; }

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important; }

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important; }

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important; }

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important; }

.m-n5 {
  margin: -3rem !important; }

.mt-n5,
.my-n5 {
  margin-top: -3rem !important; }

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important; }

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important; }

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

.mr-auto,
.mx-auto {
  margin-right: auto !important; }

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

.ml-auto,
.mx-auto {
  margin-left: auto !important; }

@media (min-width: 375px) {
  .m-sm-0 {
    margin: 0 !important; }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important; } }

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 1025px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }

@media (min-width: 1280px) {
  .m-xl-0 {
    margin: 0 !important; }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important; }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important; }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important; }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important; }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important; }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important; }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important; }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important; }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important; }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important; }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important; }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important; }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important; }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important; }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important; }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important; }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important; }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important; }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important; }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important; }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important; }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important; }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important; }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important; }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important; }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important; }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important; }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important; }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important; }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important; }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important; }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important; }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important; } }

@media (min-width: 1440px) {
  .m-xxl-0 {
    margin: 0 !important; }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important; }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important; }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important; }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important; }
  .m-xxl-1 {
    margin: 0.25rem !important; }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important; }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important; }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important; }
  .m-xxl-2 {
    margin: 0.5rem !important; }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important; }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important; }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important; }
  .m-xxl-3 {
    margin: 1rem !important; }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important; }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important; }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important; }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important; }
  .m-xxl-4 {
    margin: 1.5rem !important; }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important; }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important; }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important; }
  .m-xxl-5 {
    margin: 3rem !important; }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important; }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important; }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important; }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important; }
  .p-xxl-0 {
    padding: 0 !important; }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important; }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important; }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important; }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important; }
  .p-xxl-1 {
    padding: 0.25rem !important; }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important; }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important; }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important; }
  .p-xxl-2 {
    padding: 0.5rem !important; }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important; }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important; }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important; }
  .p-xxl-3 {
    padding: 1rem !important; }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important; }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important; }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important; }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important; }
  .p-xxl-4 {
    padding: 1.5rem !important; }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important; }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important; }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important; }
  .p-xxl-5 {
    padding: 3rem !important; }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important; }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important; }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important; }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important; }
  .m-xxl-n1 {
    margin: -0.25rem !important; }
  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.25rem !important; }
  .m-xxl-n2 {
    margin: -0.5rem !important; }
  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.5rem !important; }
  .m-xxl-n3 {
    margin: -1rem !important; }
  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -1rem !important; }
  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -1rem !important; }
  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -1rem !important; }
  .m-xxl-n4 {
    margin: -1.5rem !important; }
  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1.5rem !important; }
  .m-xxl-n5 {
    margin: -3rem !important; }
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -3rem !important; }
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -3rem !important; }
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -3rem !important; }
  .m-xxl-auto {
    margin: auto !important; }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important; }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important; }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important; }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important; } }

@media (min-width: 1920px) {
  .m-xxxl-0 {
    margin: 0 !important; }
  .mt-xxxl-0,
  .my-xxxl-0 {
    margin-top: 0 !important; }
  .mr-xxxl-0,
  .mx-xxxl-0 {
    margin-right: 0 !important; }
  .mb-xxxl-0,
  .my-xxxl-0 {
    margin-bottom: 0 !important; }
  .ml-xxxl-0,
  .mx-xxxl-0 {
    margin-left: 0 !important; }
  .m-xxxl-1 {
    margin: 0.25rem !important; }
  .mt-xxxl-1,
  .my-xxxl-1 {
    margin-top: 0.25rem !important; }
  .mr-xxxl-1,
  .mx-xxxl-1 {
    margin-right: 0.25rem !important; }
  .mb-xxxl-1,
  .my-xxxl-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xxxl-1,
  .mx-xxxl-1 {
    margin-left: 0.25rem !important; }
  .m-xxxl-2 {
    margin: 0.5rem !important; }
  .mt-xxxl-2,
  .my-xxxl-2 {
    margin-top: 0.5rem !important; }
  .mr-xxxl-2,
  .mx-xxxl-2 {
    margin-right: 0.5rem !important; }
  .mb-xxxl-2,
  .my-xxxl-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xxxl-2,
  .mx-xxxl-2 {
    margin-left: 0.5rem !important; }
  .m-xxxl-3 {
    margin: 1rem !important; }
  .mt-xxxl-3,
  .my-xxxl-3 {
    margin-top: 1rem !important; }
  .mr-xxxl-3,
  .mx-xxxl-3 {
    margin-right: 1rem !important; }
  .mb-xxxl-3,
  .my-xxxl-3 {
    margin-bottom: 1rem !important; }
  .ml-xxxl-3,
  .mx-xxxl-3 {
    margin-left: 1rem !important; }
  .m-xxxl-4 {
    margin: 1.5rem !important; }
  .mt-xxxl-4,
  .my-xxxl-4 {
    margin-top: 1.5rem !important; }
  .mr-xxxl-4,
  .mx-xxxl-4 {
    margin-right: 1.5rem !important; }
  .mb-xxxl-4,
  .my-xxxl-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xxxl-4,
  .mx-xxxl-4 {
    margin-left: 1.5rem !important; }
  .m-xxxl-5 {
    margin: 3rem !important; }
  .mt-xxxl-5,
  .my-xxxl-5 {
    margin-top: 3rem !important; }
  .mr-xxxl-5,
  .mx-xxxl-5 {
    margin-right: 3rem !important; }
  .mb-xxxl-5,
  .my-xxxl-5 {
    margin-bottom: 3rem !important; }
  .ml-xxxl-5,
  .mx-xxxl-5 {
    margin-left: 3rem !important; }
  .p-xxxl-0 {
    padding: 0 !important; }
  .pt-xxxl-0,
  .py-xxxl-0 {
    padding-top: 0 !important; }
  .pr-xxxl-0,
  .px-xxxl-0 {
    padding-right: 0 !important; }
  .pb-xxxl-0,
  .py-xxxl-0 {
    padding-bottom: 0 !important; }
  .pl-xxxl-0,
  .px-xxxl-0 {
    padding-left: 0 !important; }
  .p-xxxl-1 {
    padding: 0.25rem !important; }
  .pt-xxxl-1,
  .py-xxxl-1 {
    padding-top: 0.25rem !important; }
  .pr-xxxl-1,
  .px-xxxl-1 {
    padding-right: 0.25rem !important; }
  .pb-xxxl-1,
  .py-xxxl-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xxxl-1,
  .px-xxxl-1 {
    padding-left: 0.25rem !important; }
  .p-xxxl-2 {
    padding: 0.5rem !important; }
  .pt-xxxl-2,
  .py-xxxl-2 {
    padding-top: 0.5rem !important; }
  .pr-xxxl-2,
  .px-xxxl-2 {
    padding-right: 0.5rem !important; }
  .pb-xxxl-2,
  .py-xxxl-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xxxl-2,
  .px-xxxl-2 {
    padding-left: 0.5rem !important; }
  .p-xxxl-3 {
    padding: 1rem !important; }
  .pt-xxxl-3,
  .py-xxxl-3 {
    padding-top: 1rem !important; }
  .pr-xxxl-3,
  .px-xxxl-3 {
    padding-right: 1rem !important; }
  .pb-xxxl-3,
  .py-xxxl-3 {
    padding-bottom: 1rem !important; }
  .pl-xxxl-3,
  .px-xxxl-3 {
    padding-left: 1rem !important; }
  .p-xxxl-4 {
    padding: 1.5rem !important; }
  .pt-xxxl-4,
  .py-xxxl-4 {
    padding-top: 1.5rem !important; }
  .pr-xxxl-4,
  .px-xxxl-4 {
    padding-right: 1.5rem !important; }
  .pb-xxxl-4,
  .py-xxxl-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xxxl-4,
  .px-xxxl-4 {
    padding-left: 1.5rem !important; }
  .p-xxxl-5 {
    padding: 3rem !important; }
  .pt-xxxl-5,
  .py-xxxl-5 {
    padding-top: 3rem !important; }
  .pr-xxxl-5,
  .px-xxxl-5 {
    padding-right: 3rem !important; }
  .pb-xxxl-5,
  .py-xxxl-5 {
    padding-bottom: 3rem !important; }
  .pl-xxxl-5,
  .px-xxxl-5 {
    padding-left: 3rem !important; }
  .m-xxxl-n1 {
    margin: -0.25rem !important; }
  .mt-xxxl-n1,
  .my-xxxl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xxxl-n1,
  .mx-xxxl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xxxl-n1,
  .my-xxxl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xxxl-n1,
  .mx-xxxl-n1 {
    margin-left: -0.25rem !important; }
  .m-xxxl-n2 {
    margin: -0.5rem !important; }
  .mt-xxxl-n2,
  .my-xxxl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xxxl-n2,
  .mx-xxxl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xxxl-n2,
  .my-xxxl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xxxl-n2,
  .mx-xxxl-n2 {
    margin-left: -0.5rem !important; }
  .m-xxxl-n3 {
    margin: -1rem !important; }
  .mt-xxxl-n3,
  .my-xxxl-n3 {
    margin-top: -1rem !important; }
  .mr-xxxl-n3,
  .mx-xxxl-n3 {
    margin-right: -1rem !important; }
  .mb-xxxl-n3,
  .my-xxxl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xxxl-n3,
  .mx-xxxl-n3 {
    margin-left: -1rem !important; }
  .m-xxxl-n4 {
    margin: -1.5rem !important; }
  .mt-xxxl-n4,
  .my-xxxl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xxxl-n4,
  .mx-xxxl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xxxl-n4,
  .my-xxxl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xxxl-n4,
  .mx-xxxl-n4 {
    margin-left: -1.5rem !important; }
  .m-xxxl-n5 {
    margin: -3rem !important; }
  .mt-xxxl-n5,
  .my-xxxl-n5 {
    margin-top: -3rem !important; }
  .mr-xxxl-n5,
  .mx-xxxl-n5 {
    margin-right: -3rem !important; }
  .mb-xxxl-n5,
  .my-xxxl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xxxl-n5,
  .mx-xxxl-n5 {
    margin-left: -3rem !important; }
  .m-xxxl-auto {
    margin: auto !important; }
  .mt-xxxl-auto,
  .my-xxxl-auto {
    margin-top: auto !important; }
  .mr-xxxl-auto,
  .mx-xxxl-auto {
    margin-right: auto !important; }
  .mb-xxxl-auto,
  .my-xxxl-auto {
    margin-bottom: auto !important; }
  .ml-xxxl-auto,
  .mx-xxxl-auto {
    margin-left: auto !important; } }

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }

.text-justify {
  text-align: justify !important; }

.text-wrap {
  white-space: normal !important; }

.text-nowrap {
  white-space: nowrap !important; }

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

.text-left {
  text-align: left !important; }

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

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

@media (min-width: 375px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 1025px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1280px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

@media (min-width: 1440px) {
  .text-xxl-left {
    text-align: left !important; }
  .text-xxl-right {
    text-align: right !important; }
  .text-xxl-center {
    text-align: center !important; } }

@media (min-width: 1920px) {
  .text-xxxl-left {
    text-align: left !important; }
  .text-xxxl-right {
    text-align: right !important; }
  .text-xxxl-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-light {
  font-weight: 300 !important; }

.font-weight-lighter {
  font-weight: lighter !important; }

.font-weight-normal {
  font-weight: 400 !important; }

.font-weight-bold {
  font-weight: 700 !important; }

.font-weight-bolder {
  font-weight: bolder !important; }

.font-italic {
  font-style: italic !important; }

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

.text-primary {
  color: black !important; }

a.text-primary:hover, a.text-primary:focus {
  color: black !important; }

.text-secondary {
  color: #6c757d !important; }

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important; }

.text-success {
  color: #28a745 !important; }

a.text-success:hover, a.text-success:focus {
  color: #19692c !important; }

.text-info {
  color: #17a2b8 !important; }

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important; }

.text-warning {
  color: #ffc107 !important; }

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important; }

.text-danger {
  color: red !important; }

a.text-danger:hover, a.text-danger:focus {
  color: #b30000 !important; }

.text-light {
  color: #f8f9fa !important; }

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important; }

.text-dark {
  color: #343a40 !important; }

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important; }

.text-body {
  color: #212529 !important; }

.text-muted {
  color: #6c757d !important; }

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

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

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important; }

.text-reset {
  color: inherit !important; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important; }
  a:not(.btn) {
    text-decoration: underline; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  @page {
    size: a3; }
  body {
    min-width: 992px !important; }
  .container {
    min-width: 992px !important; }
  .navbar {
    display: none; }
  .badge {
    border: 1px solid #000; }
  .table {
    border-collapse: collapse !important; }
    .table td,
    .table th {
      background-color: #fff !important; }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important; }
  .table-dark {
    color: inherit; }
    .table-dark th,
    .table-dark td,
    .table-dark thead th,
    .table-dark tbody + tbody {
      border-color: #dee2e6; }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6; } }

.pull-left-xs {
  float: left; }

.pull-right-xs {
  float: right; }

@media (min-width: 375px) and (max-width: 767.98px) {
  .pull-left-sm {
    float: left; }
  .pull-right-sm {
    float: right; } }

@media (min-width: 768px) and (max-width: 1024.98px) {
  .pull-left-md {
    float: left; }
  .pull-right-md {
    float: right; } }

@media (min-width: 1025px) and (max-width: 1279.98px) {
  .pull-left-lg {
    float: left; }
  .pull-right-lg {
    float: right; } }

@media (min-width: 1280px) and (max-width: 1439.98px) {
  .pull-left-xl {
    float: left; }
  .pull-right-xl {
    float: right; } }

@media (min-width: 1440px) and (max-width: 1919.98px) {
  .pull-left-xxl {
    float: left; }
  .pull-right-xxl {
    float: right; } }

@media (min-width: 1920px) {
  .pull-left-xxxl {
    float: left; }
  .pull-right-xxxl {
    float: right; } }

@media (max-width: 374.98px) {
  .hidden-xs-down {
    display: none !important; } }

@media (max-width: 767.98px) {
  .hidden-sm-down {
    display: none !important; } }

@media (max-width: 1024.98px) {
  .hidden-md-down {
    display: none !important; } }

@media (max-width: 1279.98px) {
  .hidden-lg-down {
    display: none !important; } }

@media (max-width: 1439.98px) {
  .hidden-xl-down {
    display: none !important; } }

@media (max-width: 1919.98px) {
  .hidden-xxl-down {
    display: none !important; } }

.hidden-xxxl-down {
  display: none !important; }

.row.equal-height > [class^="col"] {
  display: flex; }

.notify {
  position: fixed;
  top: 0; }

/* 20/16 */
.info-icon {
  position: relative;
  cursor: pointer;
  display: inline-block;
  border: none;
  padding: 0;
  background: inherit; }
  .info-icon .icon {
    border-radius: 1.25rem;
    background-color: var(--skin-primary-color-1);
    width: 1.5625rem;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-weight: 600; }
  .info-icon .tooltip {
    position: absolute;
    bottom: 100%;
    padding: 0.312rem;
    border-radius: 50%;
    background-color: #444;
    color: #fff;
    font-size: 0.928rem;
    min-width: 20rem;
    max-width: 15rem;
    transform: translate(-50%, calc(-1 * $arrow-height / 2));
    left: 50%;
    margin-left: 4px;
    -webkit-animation: fade-in 0.5s linear forwards;
            animation: fade-in 0.5s linear forwards; }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
    .info-icon .tooltip::before {
      content: " ";
      position: absolute;
      display: block;
      height: 1.25em;
      /* 20/16 */
      left: 0;
      bottom: -1.25em;
      width: 100%; }
    .info-icon .tooltip::after {
      border-left: solid transparent calc($arrow-height / 2);
      /* 10/16 */
      border-right: solid transparent calc($arrow-height / 2);
      /* 10/16 */
      border-top: solid #444 calc($arrow-height / 2);
      bottom: calc(-1 * $arrow-height / 2);
      content: " ";
      height: 0;
      left: 50%;
      margin-left: -13px;
      position: absolute;
      width: 0; }

/**
 * Swiper 8.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 15, 2022
 */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #007aff; }

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-vertical > .swiper-wrapper {
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box; }

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0); }

.swiper-pointer-events {
  touch-action: pan-y; }
  .swiper-pointer-events.swiper-vertical {
    touch-action: pan-x; }

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto; }

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height; }

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px; }

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d; }

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15); }

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }
  .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none; }

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory; }

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory; }

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999; }

[dir="ltr"] .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-left: var(--swiper-centered-offset-before); }

[dir="rtl"] .swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-right: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after); }

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-top: var(--swiper-centered-offset-before); }

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after); }

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center; }

/* component style */
.vue-slider-disabled {
  opacity: 0.5;
  cursor: not-allowed; }

/* rail style */
.vue-slider-rail {
  background-color: #ccc;
  border-radius: 15px; }

/* process style */
.vue-slider-process {
  background-color: #3498db;
  border-radius: 15px; }

/* mark style */
.vue-slider-mark {
  z-index: 4; }

.vue-slider-mark:first-child .vue-slider-mark-step, .vue-slider-mark:last-child .vue-slider-mark-step {
  display: none; }

.vue-slider-mark-step {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.16); }

.vue-slider-mark-label {
  font-size: 14px;
  white-space: nowrap; }

/* dot style */
.vue-slider-dot-handle {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32); }

.vue-slider-dot-handle-focus {
  box-shadow: 0px 0px 1px 2px rgba(52, 152, 219, 0.36); }

.vue-slider-dot-handle-disabled {
  cursor: not-allowed;
  background-color: #ccc; }

.vue-slider-dot-tooltip-inner {
  font-size: 14px;
  white-space: nowrap;
  padding: 2px 5px;
  min-width: 20px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  border-color: #3498db;
  background-color: #3498db;
  box-sizing: content-box; }

.vue-slider-dot-tooltip-inner::after {
  content: "";
  position: absolute; }

.vue-slider-dot-tooltip-inner-top::after {
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-top-color: inherit; }

.vue-slider-dot-tooltip-inner-bottom::after {
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-bottom-color: inherit; }

.vue-slider-dot-tooltip-inner-left::after {
  left: 100%;
  top: 50%;
  transform: translate(0, -50%);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-left-color: inherit; }

.vue-slider-dot-tooltip-inner-right::after {
  right: 100%;
  top: 50%;
  transform: translate(0, -50%);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-right-color: inherit; }

.vue-slider-dot-tooltip-wrapper {
  opacity: 0;
  transition: all 0.3s; }

.vue-slider-dot-tooltip-wrapper-show {
  opacity: 1; }

/*# sourceMappingURL=default.css.map */
.vue-slider-dot-handle {
  overflow: visible;
  background-color: black;
  box-shadow: none; }
  .vue-slider-dot-handle::after {
    --hotzone-margins: 16px;
    position: absolute;
    top: calc(-1 * var(--hotzone-margins));
    left: calc(-1 * var(--hotzone-margins));
    width: calc(100% + (2 * var(--hotzone-margins)));
    height: calc(100% + (2 * var(--hotzone-margins)));
    content: '';
    background: transparent; }
  .vue-slider-dot-handle-disabled {
    cursor: unset; }

.vue-slider-process {
  background-color: black; }

.vue-slider-rail {
  border-radius: 0; }

.vue-slider-disabled {
  opacity: 1;
  cursor: unset; }

.interaction--enable-disable-form-v1 {
  transition: color 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  color: black;
  cursor: pointer; }
  .interaction--enable-disable-form-v1:disabled, .interaction--enable-disable-form-v1.disabled {
    color: #909090;
    cursor: default; }

.interaction--enable-disable-form-v2 {
  transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  cursor: pointer;
  opacity: 1; }
  .interaction--enable-disable-form-v2:disabled, .interaction--enable-disable-form-v2.disabled {
    cursor: default;
    opacity: 0.3;
    pointer-events: none; }

@media (min-width: 768px) {
  .interaction--enable-disable-desktop-form-v3:not(:disabled):not(.disabled):not(:active) {
    -webkit-animation-name: scale-btn;
            animation-name: scale-btn;
    -webkit-animation-duration: 100ms;
            animation-duration: 100ms;
    -webkit-animation-timing-function: cubic-bezier(0.03, 0.12, 0.36, 1.31);
            animation-timing-function: cubic-bezier(0.03, 0.12, 0.36, 1.31);
    -webkit-animation-delay: 10ms;
            animation-delay: 10ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1; } }

@-webkit-keyframes scale-btn {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@keyframes scale-btn {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.interaction--enable-disable-v1 {
  transition: color 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  color: #909090;
  cursor: pointer; }
  .interaction--enable-disable-v1.interaction-active {
    color: black; }

.interaction--enable-disable-v2 {
  transition: color 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  color: #909090;
  cursor: pointer; }
  .interaction--enable-disable-v2.interaction-active {
    color: black; }

.interaction--enable-selected {
  transition: -webkit-text-decoration 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  transition: text-decoration 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  transition: text-decoration 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, -webkit-text-decoration 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  cursor: pointer; }
  .interaction--enable-selected.interaction-active {
    -webkit-text-decoration-color: inherit;
            text-decoration-color: inherit; }

.interaction--enabled-hover-v1 {
  transition: color 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  color: #909090;
  cursor: pointer; }
  @media not all and (pointer: coarse) {
    .interaction--enabled-hover-v1:hover {
      color: black; } }

.interaction--enabled-hover-v2 {
  transition: color 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  color: #909090;
  cursor: pointer; }
  @media not all and (pointer: coarse) {
    .interaction--enabled-hover-v2:hover {
      color: #4461e2; } }

.interaction--enabled-hover-v3 {
  transition: color 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  color: #909090;
  cursor: pointer; }
  @media not all and (pointer: coarse) {
    .interaction--enabled-hover-v3:hover {
      color: #ff4b4b; } }

.interaction--expand, .interaction--expand-v2 {
  --max-h: 0;
  max-height: 0;
  overflow: hidden;
  cursor: default; }
  .interaction-active.interaction--expand, .interaction-active.interaction--expand-v2 {
    max-height: var(--max-h); }
  .interaction--expand:not(.interaction-active), .interaction--expand-v2:not(.interaction-active) {
    margin: 0; }

[data-interaction='expand'] {
  cursor: pointer; }

.interaction--expand {
  transition: max-height 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms; }
  .interaction--expand.interaction--initially-expanded, .interaction--expand.interaction-active {
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content; }

.interaction--expand-v2 {
  transition: max-height 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms; }

.interaction--show {
  cursor: pointer; }
  .interaction--show[data-interaction-relation="sibling"] ~ [data-interaction-dependant], .interaction--show[data-interaction-relation="child"] [data-interaction-dependant], .interaction--show:not([data-interaction-relation]) {
    transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    opacity: 0; }
  .interaction--show.interaction-active[data-interaction-relation=sibling] ~ [data-interaction-dependant], .interaction--show.interaction-active[data-interaction-relation=child] [data-interaction-dependant], .interaction--show.interaction-active:not([data-interaction-relation]) {
    opacity: 1; }

.interaction--show-v2 {
  cursor: pointer; }
  .interaction--show-v2[data-interaction-relation="sibling"] ~ [data-interaction-dependant], .interaction--show-v2[data-interaction-relation="child"] [data-interaction-dependant], .interaction--show-v2:not([data-interaction-relation]) {
    transition: opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    opacity: 0; }
  .interaction--show-v2.interaction-active[data-interaction-relation=sibling] ~ [data-interaction-dependant], .interaction--show-v2.interaction-active[data-interaction-relation=child] [data-interaction-dependant], .interaction--show-v2.interaction-active:not([data-interaction-relation]) {
    opacity: 1; }

.interaction--show-v3 {
  cursor: pointer; }
  .interaction--show-v3[data-interaction-relation="sibling"] ~ [data-interaction-dependant], .interaction--show-v3[data-interaction-relation="child"] [data-interaction-dependant], .interaction--show-v3:not([data-interaction-relation]) {
    transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    opacity: 0; }
  .interaction--show-v3.interaction-active[data-interaction-relation=sibling] ~ [data-interaction-dependant], .interaction--show-v3.interaction-active[data-interaction-relation=child] [data-interaction-dependant], .interaction--show-v3.interaction-active:not([data-interaction-relation]) {
    opacity: 1; }

.interaction--swap-text {
  position: relative; }
  .interaction--swap-text .default-text,
  .interaction--swap-text .swap-text {
    transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms; }
  .interaction--swap-text .default-text {
    opacity: 1;
    transition-delay: 100ms; }
  .interaction--swap-text .swap-text {
    position: absolute;
    right: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    opacity: 0; }
  .interaction--swap-text.interaction-active .default-text {
    opacity: 0; }
  .interaction--swap-text.interaction-active .swap-text {
    opacity: 1;
    transition-delay: 100ms; }

.interaction--floating-label {
  position: relative; }
  .interaction--floating-label input,
  .interaction--floating-label select {
    padding-top: calc(1em - 0.125rem);
    /**
       * Isolated because of Firefox does not support it and crashes without
       * applying the declaration block for other selectors.
       */
    /**
       * IE11 support
       */
    /* stylelint-disable-next-line selector-no-vendor-prefix */
    /**
       * Isolated because of IE11 does not support it and crashes without
       * applying the declaration block for other selectors.
       */ }
    @media (min-width: 1025px) {
      .interaction--floating-label input,
      .interaction--floating-label select {
        padding-top: calc(1em - 0.1875rem); } }
    .interaction--floating-label input:not([blank]) + label, .interaction--floating-label input:focus + label,
    .interaction--floating-label select:not([blank]) + label,
    .interaction--floating-label select:focus + label {
      /* stylelint-disable */
      --uses-typography: 'forms-field-label--filled';
      font-weight: 500;
      /* stylelint-enable */
      transform: translateY(0) scale(0.8); }
    .interaction--floating-label input:not(:blank) + label, .interaction--floating-label input:focus + label,
    .interaction--floating-label select:not(:blank) + label,
    .interaction--floating-label select:focus + label {
      /* stylelint-disable */
      --uses-typography: 'forms-field-label--filled';
      font-weight: 500;
      /* stylelint-enable */
      transform: translateY(0) scale(0.8); }
      @media (min-width: 1025px) {
        .interaction--floating-label input:not([blank]) + label, .interaction--floating-label input:focus + label,
        .interaction--floating-label select:not([blank]) + label,
        .interaction--floating-label select:focus + label {
          font-weight: 700; }
        .interaction--floating-label input:not(:blank) + label, .interaction--floating-label input:focus + label,
        .interaction--floating-label select:not(:blank) + label,
        .interaction--floating-label select:focus + label {
          font-weight: 700; } }
      @media (min-width: 1025px) {
        .interaction--floating-label input:not([blank]) + label, .interaction--floating-label input:focus + label,
        .interaction--floating-label select:not([blank]) + label,
        .interaction--floating-label select:focus + label {
          transform: translateY(-1px) scale(0.75); }
        .interaction--floating-label input:not(:blank) + label, .interaction--floating-label input:focus + label,
        .interaction--floating-label select:not(:blank) + label,
        .interaction--floating-label select:focus + label {
          transform: translateY(-1px) scale(0.75); } }
    .interaction--floating-label input:-webkit-autofill + label,
    .interaction--floating-label select:-webkit-autofill + label {
      /* stylelint-disable */
      --uses-typography: 'forms-field-label--filled';
      font-weight: 500;
      /* stylelint-enable */
      transform: translateY(0) scale(0.8); }
      @media (min-width: 1025px) {
        .interaction--floating-label input:-webkit-autofill + label,
        .interaction--floating-label select:-webkit-autofill + label {
          font-weight: 700; } }
      @media (min-width: 1025px) {
        .interaction--floating-label input:-webkit-autofill + label,
        .interaction--floating-label select:-webkit-autofill + label {
          transform: translateY(-1px) scale(0.75); } }
    .interaction--floating-label input:-ms-input-placeholder + label,
    .interaction--floating-label select:-ms-input-placeholder + label {
      /* stylelint-disable */
      --uses-typography: 'forms-field-label--filled';
      font-weight: 500;
      /* stylelint-enable */
      transform: translateY(0) scale(0.8); }
      @media (min-width: 1025px) {
        .interaction--floating-label input:-ms-input-placeholder + label,
        .interaction--floating-label select:-ms-input-placeholder + label {
          font-weight: 700; } }
      @media (min-width: 1025px) {
        .interaction--floating-label input:-ms-input-placeholder + label,
        .interaction--floating-label select:-ms-input-placeholder + label {
          transform: translateY(-1px) scale(0.75); } }
    .interaction--floating-label input:placeholder-shown + label,
    .interaction--floating-label select:placeholder-shown + label {
      /* stylelint-disable */
      --uses-typography: 'forms-field-label--filled';
      font-weight: 500;
      /* stylelint-enable */
      transform: translateY(0) scale(0.8); }
      @media (min-width: 1025px) {
        .interaction--floating-label input:placeholder-shown + label,
        .interaction--floating-label select:placeholder-shown + label {
          font-weight: 700; } }
      @media (min-width: 1025px) {
        .interaction--floating-label input:placeholder-shown + label,
        .interaction--floating-label select:placeholder-shown + label {
          transform: translateY(-1px) scale(0.75); } }
    .interaction--floating-label input + label,
    .interaction--floating-label select + label {
      transition: transform 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, font-weight 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
      position: absolute;
      top: 0;
      left: 0;
      transform: translateY(14px);
      transform-origin: left;
      pointer-events: none; }
      @media (min-width: 1025px) {
        .interaction--floating-label input + label,
        .interaction--floating-label select + label {
          transform: translateY(1em); } }

/* stylelint-disable order/order */
/* Disabled locally because states must be at the end of the block */
.interaction--add-to-bag {
  transition: color 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  position: relative;
  min-width: 130px; }
  .interaction--add-to-bag .default-content,
  .interaction--add-to-bag .swap-content,
  .interaction--add-to-bag .spinner {
    transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms; }
  .interaction--add-to-bag .spinner {
    position: absolute;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition-delay: 100ms; }
  .interaction--add-to-bag .default-content {
    opacity: 1; }
  .interaction--add-to-bag .swap-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    white-space: nowrap;
    opacity: 0; }
  .interaction--add-to-bag[data-interaction-state="state-add-to-bag-disabled"] {
    color: #909090;
    pointer-events: none; }
  .interaction--add-to-bag[data-interaction-state="state-add-to-bag-enabled"] {
    color: black; }
    .interaction--add-to-bag[data-interaction-state="state-add-to-bag-enabled"] .default-content {
      transition-delay: 100ms; }
    .interaction--add-to-bag[data-interaction-state="state-add-to-bag-enabled"] .spinner {
      transition-delay: 0; }
  .interaction--add-to-bag[data-interaction-state="state-add-to-bag-busy"] {
    pointer-events: none; }
    .interaction--add-to-bag[data-interaction-state="state-add-to-bag-busy"] .default-content {
      opacity: 0; }
    .interaction--add-to-bag[data-interaction-state="state-add-to-bag-busy"] .swap-content {
      opacity: 0;
      transition-delay: 200ms; }
    .interaction--add-to-bag[data-interaction-state="state-add-to-bag-busy"] .spinner {
      opacity: 1;
      transition-delay: 0; }
  .interaction--add-to-bag[data-interaction-state="state-add-to-bag-added"] {
    pointer-events: none; }
    .interaction--add-to-bag[data-interaction-state="state-add-to-bag-added"] .default-content {
      opacity: 0; }
    .interaction--add-to-bag[data-interaction-state="state-add-to-bag-added"] .swap-content {
      opacity: 1;
      transition-delay: 200ms; }
    .interaction--add-to-bag[data-interaction-state="state-add-to-bag-added"] .spinner {
      opacity: 0; }

/* stylelint-disable order/order */
/* Disabled locally because states must be at the end of the block */
.interaction--add-to-bag-mobile {
  transition: color 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, background-color 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms; }
  .interaction--add-to-bag-mobile .default-content,
  .interaction--add-to-bag-mobile .swap-content,
  .interaction--add-to-bag-mobile .spinner {
    transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms; }
  .interaction--add-to-bag-mobile .spinner {
    position: absolute;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition-delay: 100ms; }
  .interaction--add-to-bag-mobile .default-content {
    z-index: 2;
    opacity: 1; }
  .interaction--add-to-bag-mobile .swap-content {
    position: absolute;
    left: 0;
    width: 100%;
    white-space: nowrap;
    opacity: 0; }
  .interaction--add-to-bag-mobile[data-interaction-state="state-add-to-bag-mobile-disabled"] {
    pointer-events: none; }
  .interaction--add-to-bag-mobile[data-interaction-state="state-add-to-bag-mobile-busy"] {
    pointer-events: none; }
    .interaction--add-to-bag-mobile[data-interaction-state="state-add-to-bag-mobile-busy"] .default-content {
      opacity: 0; }
    .interaction--add-to-bag-mobile[data-interaction-state="state-add-to-bag-mobile-busy"] .swap-content {
      opacity: 0; }
    .interaction--add-to-bag-mobile[data-interaction-state="state-add-to-bag-mobile-busy"] .spinner {
      opacity: 1;
      transition-delay: 0; }
  .interaction--add-to-bag-mobile[data-interaction-state="state-add-to-bag-mobile-added"] {
    background-color: #242424;
    pointer-events: none; }
    .interaction--add-to-bag-mobile[data-interaction-state="state-add-to-bag-mobile-added"] .default-content {
      opacity: 0; }
    .interaction--add-to-bag-mobile[data-interaction-state="state-add-to-bag-mobile-added"] .swap-content {
      opacity: 1;
      transition-delay: 200ms; }
    .interaction--add-to-bag-mobile[data-interaction-state="state-add-to-bag-mobile-added"] .spinner {
      opacity: 0; }

.interaction--check input {
  transition: background-color 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms; }
  .interaction--check input:checked {
    background-color: black; }

.interaction--check.checkbox--dark input:checked {
  background: white; }

.interaction--check.interaction--scale-check input:checked {
  -webkit-animation-name: scale-check;
          animation-name: scale-check;
  -webkit-animation-duration: 100ms;
          animation-duration: 100ms;
  -webkit-animation-timing-function: cubic-bezier(0.03, 0.12, 0.36, 1.31);
          animation-timing-function: cubic-bezier(0.03, 0.12, 0.36, 1.31);
  -webkit-animation-delay: 10ms;
          animation-delay: 10ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1; }

@-webkit-keyframes scale-check {
  0% {
    transform: none; }
  75% {
    transform: scale(1.1); }
  100% {
    transform: none; } }

@keyframes scale-check {
  0% {
    transform: none; }
  75% {
    transform: scale(1.1); }
  100% {
    transform: none; } }

.interaction--modal-newsletter {
  pointer-events: none; }
  @media (max-width: 767px) {
    .interaction--modal-newsletter {
      transition: bottom 300ms cubic-bezier(0.03, 0.12, 0.36, 1.31) 0ms, opacity 300ms cubic-bezier(0.03, 0.12, 0.36, 1.31) 0ms;
      bottom: 0; } }
  @media (min-width: 768px) {
    .interaction--modal-newsletter {
      transition: opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
      bottom: 100%;
      opacity: 0; } }
  @media (min-width: 1280px) {
    .interaction--modal-newsletter {
      bottom: 0; } }

.interaction--delete-card {
  transition: opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, height 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, padding 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  overflow: hidden;
  opacity: 1; }
  .interaction--delete-card.interaction-active {
    height: 0 !important;
    padding: 0;
    border: 0;
    opacity: 0; }

.interaction--loading-content {
  position: relative; }
  .interaction--loading-content .loading-content,
  .interaction--loading-content .loaded-content {
    transition: opacity 50ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms; }
  .interaction--loading-content .loading-content {
    position: relative;
    opacity: 1; }
  .interaction--loading-content .loaded-content {
    opacity: 0;
    transition-delay: 50ms; }
  .interaction--loading-content.interaction-active .loading-content {
    opacity: 0; }
  .interaction--loading-content.interaction-active .loaded-content {
    opacity: 1; }

.interaction--loader-grid {
  -webkit-animation: pulse 300ms 2;
          animation: pulse 300ms 2; }

@-webkit-keyframes pulse {
  0% {
    opacity: 0; }
  66% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes pulse {
  0% {
    opacity: 0; }
  66% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.veil {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  text-align: center;
  pointer-events: none; }
  .veil .underlay {
    transition: opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0; }
  .veil.interaction-active {
    pointer-events: unset; }
    @media (min-width: 1025px) {
      .veil.interaction-active .underlay {
        opacity: 0.3; } }

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  margin: -16px;
  background: black;
  border: 0 none !important;
  border-radius: 100%;
  -webkit-animation: loading 400ms infinite !important;
          animation: loading 400ms infinite !important; }
  .spinner::before {
    display: none !important; }
  .spinner--inline {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin: 0; }
  .spinner--small {
    width: 16px;
    height: 16px;
    margin: -8px; }
  .spinner--tiny {
    width: 8px;
    height: 8px;
    margin: 0;
    -webkit-animation: tinyloading 400ms infinite !important;
            animation: tinyloading 400ms infinite !important; }
  .spinner--white {
    background: white; }
  .spinner--grey {
    background: #a8a8a8;
    -webkit-animation-duration: 200ms;
            animation-duration: 200ms; }

.spinner .dot1,
.spinner .dot2 {
  display: none; }

@-webkit-keyframes loading {
  0% {
    transform: none; }
  25% {
    transform: scale(0.8); }
  100% {
    transform: none; } }

@keyframes loading {
  0% {
    transform: none; }
  25% {
    transform: scale(0.8); }
  100% {
    transform: none; } }

@-webkit-keyframes tinyloading {
  0% {
    transform: none; }
  25% {
    transform: scale(0.4); }
  100% {
    transform: none; } }

@keyframes tinyloading {
  0% {
    transform: none; }
  25% {
    transform: scale(0.4); }
  100% {
    transform: none; } }

.interaction--bounce-top {
  -webkit-animation-name: bounce-top;
          animation-name: bounce-top;
  -webkit-animation-duration: 400ms;
          animation-duration: 400ms;
  -webkit-animation-timing-function: cubic-bezier(0.03, 0.12, 0.36, 1.31);
          animation-timing-function: cubic-bezier(0.03, 0.12, 0.36, 1.31);
  -webkit-animation-delay: 20ms;
          animation-delay: 20ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1; }

@-webkit-keyframes bounce-top {
  0% {
    top: 100%; }
  35% {
    top: calc(100% - 1.875rem); }
  80% {
    top: calc(100% + 0.3125rem); }
  90% {
    top: calc(100% - 0.3125rem); }
  100% {
    top: 100%; } }

@keyframes bounce-top {
  0% {
    top: 100%; }
  35% {
    top: calc(100% - 1.875rem); }
  80% {
    top: calc(100% + 0.3125rem); }
  90% {
    top: calc(100% - 0.3125rem); }
  100% {
    top: 100%; } }

@media (min-width: 768px) {
  .interaction--click-button-desktop:not(:disabled):not(.disabled):not(.interaction--enable-disable-desktop-form-v3) {
    -webkit-animation-duration: 100ms;
            animation-duration: 100ms;
    -webkit-animation-timing-function: cubic-bezier(0.03, 0.12, 0.36, 1.31);
            animation-timing-function: cubic-bezier(0.03, 0.12, 0.36, 1.31);
    -webkit-animation-delay: 10ms;
            animation-delay: 10ms;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1; }
  .interaction--click-button-desktop:not(:disabled):not(.disabled):active {
    -webkit-animation-name: scale-btn-click;
            animation-name: scale-btn-click; } }

@-webkit-keyframes scale-btn-click {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

@keyframes scale-btn-click {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.footer {
  /* stylelint-disable */
  --uses-typography: 'footer-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  /* stylelint-enable */
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  background-color: whitesmoke;
  /* stylelint-disable max-nesting-depth */
  /* stylelint-enable max-nesting-depth */ }
  @media (min-width: 1025px) {
    .footer {
      font-size: calc(0.00447 * 100vw + 9.41899px); } }
  @media (min-width: 1920px) {
    .footer {
      font-size: 1.125rem; } }
  @media (min-width: 810px) {
    .footer {
      justify-content: space-between; } }
  .footer__nav {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    padding: 16px 16px 5.875rem 16px;
    background-color: whitesmoke; }
    @media (min-width: 810px) {
      .footer__nav {
        min-height: 282px;
        padding: 0.875rem 16px 5.875rem 48px; } }
    @media (min-width: 1025px) {
      .footer__nav {
        min-height: 200px;
        padding: 0.875rem 16px 12px 48px; } }
    @media (min-width: 1280px) {
      .footer__nav {
        min-height: 260px;
        padding: 0.875rem 16px 24px 48px; } }
  .footer__nav-menu {
    display: flex;
    flex-direction: column; }
    @media (min-width: 810px) {
      .footer__nav-menu {
        flex-direction: row;
        margin-bottom: 0; }
        .footer__nav-menu > * {
          margin-bottom: 0;
          cursor: pointer; }
        .footer__nav-menu > *:not(:first-child) {
          margin-left: 2.5vw; } }
    @media (min-width: 1920px) {
      .footer__nav-menu > *:not(:first-child) {
        margin-left: 48px; } }
    .footer__nav-menu > * {
      margin-bottom: 4px; }
  .footer__entry {
    /* stylelint-disable */
    --uses-typography: 'footer-entry';
    font-size: 1rem;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    /* stylelint-enable */
    margin-bottom: 4px; }
    @media (min-width: 575px) {
      .footer__entry {
        font-size: calc(-0.00851 * 100vw + 20.89362px); } }
    @media (min-width: 810px) {
      .footer__entry {
        font-size: 0.875rem; } }
    @media (min-width: 1025px) {
      .footer__entry {
        font-size: calc(0.00447 * 100vw + 9.41899px); } }
    @media (min-width: 1920px) {
      .footer__entry {
        font-size: 1.125rem; } }
    @media (min-width: 1025px) {
      .footer__entry--only-mobile {
        display: none; } }
    .footer__entry--only-desktop {
      display: none; }
      @media (min-width: 1025px) {
        .footer__entry--only-desktop {
          display: block; } }
    .footer__entry:not(:first-child) {
      margin-bottom: 14px; }
      @media (min-width: 1025px) {
        .footer__entry:not(:first-child) {
          margin-bottom: 0; } }
  .footer__child-entries {
    display: flex;
    flex-direction: column; }
    @media (min-width: 1025px) {
      .footer__child-entries {
        position: absolute; } }
  .footer__parent-link {
    margin: 0; }
    @media (min-width: 1025px) {
      .footer__parent-link {
        margin: 0 0 5px; } }
    .footer__parent-link.expanded ~ .footer__child-entries {
      opacity: 1; }
  .footer__child-link {
    /* stylelint-disable */
    --uses-typography: 'footer-child-link';
    font-weight: 900;
    font-size: 0.875rem;
    font-style: normal;
    text-decoration: none;
    /* stylelint-enable */
    cursor: pointer; }
    @media (min-width: 1025px) {
      .footer__child-link {
        margin: 0; } }
  .footer__bottom {
    display: flex;
    flex-direction: column; }
    @media (min-width: 1025px) {
      .footer__bottom {
        margin-bottom: 0; } }
  .footer__social {
    margin-top: 48px; }
    @media (min-width: 810px) {
      .footer__social {
        margin-top: 0; } }
  .footer__social .footer__social-icon {
    text-decoration: none; }
    @media (max-width: 574px) {
      .footer__social .footer__social-icon {
        overflow: visible;
        position: relative; }
        .footer__social .footer__social-icon::after {
          --hotzone-margins: 8px;
          position: absolute;
          top: calc(-1 * var(--hotzone-margins));
          left: calc(-1 * var(--hotzone-margins));
          width: calc(100% + (2 * var(--hotzone-margins)));
          height: calc(100% + (2 * var(--hotzone-margins)));
          content: '';
          background: transparent; } }
    .footer__social .footer__social-icon:not(:last-child) {
      margin-right: 16px; }
  .footer__social .footer__social-icon img {
    width: auto;
    max-width: 0.9375rem;
    vertical-align: middle; }
  .footer__copyright {
    /* stylelint-disable */
    --uses-typography: 'footer-copyright';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: none;
    /* stylelint-enable */
    display: inline-block;
    margin: 0;
    margin-top: 0.5rem; }
    @media (min-width: 575px) {
      .footer__copyright {
        font-size: 0.6875rem; } }
    @media (min-width: 1280px) {
      .footer__copyright {
        font-size: 0.75rem; } }
  .footer__newsletter {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms; }
    .footer__newsletter .newsletter-modal-container .subscribe-email {
      color: red; }
  .footer--store-locator {
    margin-top: 0; }
  .footer__qr-wrapper[\:has\(.content-asset\)] {
    margin-top: auto; }
  .footer__qr-wrapper:has(.content-asset) {
    margin-top: auto; }
  .footer__qr-link {
    position: relative;
    top: 8px;
    display: block;
    width: 2.1875rem; }
    @media (min-width: 810px) {
      .footer__qr-link {
        top: -24px; } }
  .footer__qr-code {
    display: block; }
  .footer--newsletter-inline {
    flex-direction: row-reverse;
    margin-top: 160px; }
    .footer--newsletter-inline .footer__newsletter {
      position: relative;
      display: flex;
      width: auto;
      height: auto;
      max-height: none;
      margin-left: 3.33%;
      overflow: visible;
      overflow: initial;
      transition: none; }
      .footer--newsletter-inline .footer__newsletter .newsletter-modal-container {
        max-height: none;
        padding: 32px 64px 6.25rem;
        /* stylelint-disable selector-max-compound-selectors */
        /* stylelint-enable selector-max-compound-selectors */ }
        .footer--newsletter-inline .footer__newsletter .newsletter-modal-container .subscribe-email {
          color: #909090; }
    .footer--newsletter-inline .footer__nav {
      position: static; }
      .footer--newsletter-inline .footer__nav .navlinks__toggler-newsletter {
        /* stylelint-disable */
        --uses-typography: 'footer-newsletter';
        font-weight: 900;
        font-size: calc(0.01875 * 100vw + 6px);
        font-family: "FKGrotesk", "Arial", sans-serif;
        text-transform: uppercase;
        /* stylelint-enable */
        position: absolute;
        right: 80px;
        bottom: 32px;
        z-index: 10;
        margin: 0; }
        @media (min-width: 1920px) {
          .footer--newsletter-inline .footer__nav .navlinks__toggler-newsletter {
            font-size: 2.625rem; } }
        .footer--newsletter-inline .footer__nav .navlinks__toggler-newsletter--show {
          color: red; }
  .footer--newsletter-show .footer__newsletter {
    max-height: 500px; }
    .footer--newsletter-show .footer__newsletter .newsletter-modal-container {
      opacity: 1; }
  .footer--newsletter-show .interaction--modal-newsletter {
    height: auto;
    pointer-events: unset; }
    @media (max-width: 767px) {
      .footer--newsletter-show .interaction--modal-newsletter {
        bottom: 100%;
        opacity: 1; } }
    @media (min-width: 768px) {
      .footer--newsletter-show .interaction--modal-newsletter {
        opacity: 1; } }
  .footer .interaction--modal-newsletter .interaction-active {
    pointer-events: unset; }

.header-popup, .header > .the-search {
  transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 0;
  opacity: 0; }

.header-popup {
  z-index: 1100;
  display: none;
  width: 100vw;
  height: 100vh;
  height: calc(1vh * 100);
  height: calc(var(--vh, 1vh) * 100);
  background-color: white;
  padding-top: 3rem;
  /* Increase specifity to override .btn-close default values (loaded after this partial) */ }
  @media (min-width: 375px) {
    .header-popup {
      padding-left: 1rem;
      padding-right: 1rem; } }
  @media (min-width: 575px) {
    .header-popup {
      top: var(--header-total-height);
      padding-left: unset;
      padding-right: unset; } }
  @media (min-width: 768px) {
    .header-popup {
      padding-top: 2.625rem;
      width: 70vw;
      min-width: 567px;
      max-height: calc(100vh - 40px);
      max-height: calc(100vh - var(--header-total-height)); } }
  @media (min-width: 810px) {
    .header-popup {
      padding-top: 3rem;
      width: calc(0.12919 * 100vw + 462.35676px); } }
  @media (min-width: 1920px) {
    .header-popup {
      width: 710px; } }
  .header-popup--show {
    display: block;
    opacity: 1;
    transition: opacity 1s allow-discrete; }
  .header-popup__btn-close.btn-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.125rem;
    cursor: pointer; }
    @media (min-width: 768px) {
      .header-popup__btn-close.btn-close {
        top: 1.5rem;
        right: 1.5rem; } }
    @media (min-width: 810px) {
      .header-popup__btn-close.btn-close {
        font-size: calc(0.02791 * 100vw + -4.60465px); } }
    @media (min-width: 1025px) {
      .header-popup__btn-close.btn-close {
        font-size: 1.5rem; } }
    .header-popup__btn-close.btn-close span {
      pointer-events: none; }
  .header-popup__title {
    /* stylelint-disable */
    --uses-typography: 'header-popup-title';
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .header-popup__title {
        font-size: 1.75rem; } }
    @media (min-width: 1440px) {
      .header-popup__title {
        font-size: 2.125rem; } }
  @media (min-width: 1025px) {
    .header-popup__content {
      width: 520px;
      height: 100%;
      overflow-x: hidden;
      overflow-y: auto; } }

.header > .the-search {
  left: 0; }
  .header > .the-search--show {
    opacity: 1; }

.help-content {
  position: absolute;
  top: 0;
  width: 100%; }
  @media (min-width: 575px) {
    .help-content {
      position: relative;
      top: auto;
      width: 100%; } }

.popup-backdrop {
  display: none; }
  @media (min-width: 768px) {
    .popup-backdrop {
      position: fixed;
      top: var(--popup-backdrop-top);
      right: var(--popup-backdrop-right);
      bottom: 0;
      left: 0; }
      .popup-backdrop--show {
        display: block; } }

.minicart-popup {
  top: 0;
  justify-content: center;
  padding-top: calc(var(--header-height) + 10px);
  padding-bottom: 24px;
  padding-left: 0;
  padding-right: 0; }
  @media (min-width: 768px) {
    .minicart-popup {
      top: var(--header-total-height);
      width: 550px;
      min-width: 550px;
      padding-top: calc(var(--header-height) + 2px);
      padding-right: 24px;
      padding-left: 24px; } }
  .minicart-popup .cart-content {
    margin: 0;
    padding: 0;
    overflow-y: auto; }
    @media (min-width: 575px) {
      .minicart-popup .cart-content {
        padding: 0;
        overflow-y: hidden; } }
    .minicart-popup .cart-content__totals {
      padding: 16px 0 20px; }
      @media (min-width: 575px) {
        .minicart-popup .cart-content__totals {
          padding: 16px 0 1.3125rem; } }
  .minicart-popup .cart-container__tablist {
    margin: 0 16px; }
    @media (min-width: 575px) {
      .minicart-popup .cart-container__tablist {
        margin: 0 0 24px; } }
  .minicart-popup .checkout-btn--mobile {
    /* stylelint-disable */
    --uses-typography: 'cart-checkout-btn--minicart';
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    /* stylelint-enable */
    position: inherit;
    display: flex;
    align-items: center;
    margin: 24px 0 0; }
    @media (min-width: 575px) {
      .minicart-popup .checkout-btn--mobile {
        position: fixed;
        display: none;
        margin-top: 0; } }
  .minicart-popup .product-card:first-child {
    padding-top: 16px; }
    @media (min-width: 575px) {
      .minicart-popup .product-card:first-child {
        padding-top: 0; } }

.minicart-backdrop {
  --popup-backdrop-top: var(--header-total-height);
  --popup-backdrop-right: 550px; }

.icon-arrow-filled {
  display: inline-block;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M3 0l9 6-9 6z" fill="black" fill-rule="evenodd"/></svg>'); }

.icon-arrow-photos {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-top: 0.0625rem;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path fill="none" stroke="%23909090" stroke-width="1" d="M4.002 1.001l5.494 5.001L4.002 11"/></svg>'); }
  .icon-arrow-photos--prev {
    margin-top: 0;
    transform: rotate(180deg); }

@media (max-width: 899px) {
  .arrow--from-tablet-900::before {
    content: none; } }

/*
 * CIRCLE CHECK BUTTON  -- TODO REFACTOR QUICKSHOP BTN
 * ------------------------------------
 * [O]
 * Abstract component:
 * https://share.goabstract.com/32d95c44-649e-4ac0-948e-081b3badba3c?mode=build&sha=6211d9ed9a5635dce062d7178129089c8597a25f
 * -------------------------------------------------------------------------- */
.icon-check {
  position: relative;
  display: block;
  box-sizing: content-box;
  width: 0.75rem;
  height: 0.75rem;
  color: white;
  background: inherit;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: auto; }
  @media (min-width: 1025px) {
    .icon-check {
      width: 0.625rem;
      height: 0.625rem; } }
  .icon-check::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0.75rem;
    height: 0.75rem;
    background-color: currentColor;
    border: 1px solid black;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    content: ''; }
    @media (min-width: 1025px) {
      .icon-check::before {
        width: 0.625rem;
        height: 0.625rem; } }
  .icon-check--plus::before {
    background-image: url("../images/quickshop2x.svg");
    background-repeat: no-repeat;
    background-position: center; }
    @media (min-width: 1025px) {
      .icon-check--plus::before {
        background-image: url("../images/quickshop.svg"); } }
  .icon-check--checked {
    color: black; }
    .icon-check--checked::before {
      border-color: currentColor; }

.icon-cols-2 {
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><g fill="%23d9d9d9" fill-rule="evenodd"><path d="M0 0h6v14H0zM8 0h6v14H8z"/></g></svg>'); }
  .icon-cols-2.is-selected {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><g fill="black" fill-rule="evenodd"><path d="M0 0h6v14H0zM8 0h6v14H8z"/></g></svg>'); }

.icon-cols-4 {
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15"><path fill="%23d9d9d9" d="M0 0h3v3H0zm8 0h3v3H8zm4 0h3v3h-3zM0 4h3v3H0zm4-4h3v3H4zM0 8h3v3H0zm0 0h3v3H0zm8-4h3v3H8zM4 4h3v3H4zm8 0h3v3h-3zM0 12h3v3H0zm8-4h3v3H8zm0 4h3v3H8zM4 8h3v3H4zm0 4h3v3H4zm8-4h3v3h-3zm0 4h3v3h-3z"/></svg>'); }
  .icon-cols-4.is-selected {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15"><path fill="black" d="M0 0h3v3H0zm8 0h3v3H8zm4 0h3v3h-3zM0 4h3v3H0zm4-4h3v3H4zM0 8h3v3H0zm0 0h3v3H0zm8-4h3v3H8zM4 4h3v3H4zm8 0h3v3h-3zM0 12h3v3H0zm8-4h3v3H8zm0 4h3v3H8zM4 8h3v3H4zm0 4h3v3H4zm8-4h3v3h-3zm0 4h3v3h-3z"/></svg>'); }

.icon-credit-card {
  display: inline-block;
  width: 1.3125rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: cover; }
  .icon-credit-card__visa {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 24"><g fill="none" fill-rule="evenodd"><path d="M30.317 22.213H1.597A1.602 1.602 0 010 20.615V3.597C0 2.72.719 2 1.598 2h28.72c.878 0 1.597.719 1.597 1.597v17.018c0 .879-.72 1.598-1.598 1.598" fill="%231a1e70"/><path d="M13.589 9.04l-2.578 6.15H9.33l-1.269-4.91c-.077-.302-.144-.412-.378-.54-.382-.207-1.014-.402-1.57-.523l.039-.178h2.706c.345 0 .656.23.734.627l.67 3.558 1.655-4.185h1.672zm6.589 4.142c.007-1.624-2.245-1.713-2.229-2.438.005-.22.215-.455.674-.515a3 3 0 011.57.275l.279-1.304a4.272 4.272 0 00-1.488-.273c-1.573 0-2.68.836-2.69 2.033-.009.886.791 1.38 1.394 1.674.62.301.828.494.825.764-.004.413-.495.595-.952.602-.8.012-1.264-.216-1.634-.389l-.288 1.348c.371.17 1.057.319 1.77.327 1.67 0 2.764-.826 2.769-2.104zm4.152 2.008h1.472l-1.285-6.15H23.16a.724.724 0 00-.677.451l-2.387 5.699h1.67l.332-.919h2.042l.191.919zm-1.775-2.18l.838-2.309.482 2.31h-1.32zm-6.693-3.97l-1.316 6.15h-1.59l1.315-6.15h1.591z" fill="white"/></g></svg>'); }
  .icon-credit-card__mastercard {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 24"><g fill="none"><path d="M6.63 23.805v-1.583a.939.939 0 00-.99-1.002.976.976 0 00-.887.449.926.926 0 00-.833-.449.833.833 0 00-.739.375v-.311h-.548v2.52h.553v-1.386a.59.59 0 01.618-.67c.363 0 .548.237.548.664v1.403h.554v-1.397a.593.593 0 01.617-.67c.375 0 .554.237.554.664v1.403l.554-.01zm8.195-2.521h-.902v-.765h-.554v.765h-.5v.5h.51v1.161c0 .586.228.934.876.934.243 0 .48-.067.686-.195l-.158-.47a1.013 1.013 0 01-.485.142c-.264 0-.364-.168-.364-.421v-1.15h.896l-.005-.501zm4.679-.064a.744.744 0 00-.665.37v-.306h-.543v2.52h.548v-1.413c0-.416.18-.649.528-.649a.894.894 0 01.343.064l.169-.528a1.174 1.174 0 00-.39-.068l.01.01zm-7.074.264a1.886 1.886 0 00-1.028-.264c-.638 0-1.055.306-1.055.807 0 .412.306.665.87.744l.264.037c.3.042.443.121.443.264 0 .195-.2.306-.575.306a1.342 1.342 0 01-.839-.264l-.263.427c.32.223.702.338 1.091.327.728 0 1.15-.343 1.15-.823 0-.48-.332-.675-.88-.754l-.264-.037c-.238-.032-.428-.08-.428-.248 0-.169.18-.295.48-.295.278.003.55.077.792.216l.242-.443zm14.693-.264a.744.744 0 00-.665.37v-.306h-.543v2.52h.549v-1.413c0-.416.18-.649.527-.649a.894.894 0 01.343.064l.169-.528a1.174 1.174 0 00-.39-.068l.01.01zm-7.068 1.319a1.274 1.274 0 001.345 1.319c.33.016.653-.09.907-.301l-.263-.443c-.19.144-.421.224-.66.227a.81.81 0 010-1.614c.239.002.47.082.66.226l.263-.443a1.319 1.319 0 00-.907-.3 1.274 1.274 0 00-1.345 1.318v.01zm5.138 0v-1.255h-.549v.305a.957.957 0 00-.791-.369 1.319 1.319 0 100 2.638.957.957 0 00.791-.37v.306h.549V22.54zm-2.042 0a.762.762 0 111.522.09.762.762 0 01-1.522-.09zm-6.62-1.319a1.319 1.319 0 00.037 2.638c.38.02.753-.103 1.047-.343l-.263-.406a1.2 1.2 0 01-.734.263.699.699 0 01-.754-.617h1.873v-.21c0-.792-.49-1.32-1.198-1.32l-.008-.005zm0 .49a.625.625 0 01.639.613h-1.32a.649.649 0 01.67-.612h.01zm13.744.834v-2.273h-.528v1.318a.957.957 0 00-.791-.369 1.319 1.319 0 100 2.638.957.957 0 00.791-.37v.306h.528v-1.25zm.915.894a.264.264 0 01.182.071.245.245 0 01-.082.406.248.248 0 01-.1.022.264.264 0 01-.237-.153.248.248 0 01.055-.275.264.264 0 01.19-.07h-.008zm0 .446a.187.187 0 00.137-.058.195.195 0 000-.264.195.195 0 00-.137-.058.198.198 0 00-.14.058.195.195 0 000 .264c.018.018.04.032.063.042a.195.195 0 00.085.016h-.008zm.016-.314a.105.105 0 01.068.021.066.066 0 01.024.056.063.063 0 01-.018.047.092.092 0 01-.056.024l.077.087h-.061l-.071-.087h-.024v.087h-.05v-.232l.11-.003zm-.058.045v.063h.058c.01.003.021.003.031 0a.026.026 0 000-.023.026.026 0 000-.024.055.055 0 00-.031 0l-.058-.016zm-2.901-1.07a.762.762 0 111.521.089.762.762 0 01-1.521-.09zm-18.523 0v-1.261h-.548v.305a.957.957 0 00-.791-.369 1.319 1.319 0 100 2.638.957.957 0 00.79-.37v.306h.55v-1.25zm-2.04 0a.762.762 0 11.764.806.757.757 0 01-.77-.807h.005z" fill="%23231F20"/><path fill="%23FF5F00" d="M12.248 2.07h8.308V17h-8.308z"/><path d="M12.776 9.537a9.479 9.479 0 013.626-7.467 9.495 9.495 0 100 14.93 9.479 9.479 0 01-3.626-7.463z" fill="%23EB001B"/><path d="M31.765 9.537A9.494 9.494 0 0116.402 17a9.495 9.495 0 000-14.93 9.495 9.495 0 0115.363 7.464v.003zm-.86 6.505v-.823h.155v-.17h-.392v.17h.168v.823h.07zm.763 0v-.993h-.12l-.138.709-.138-.71h-.106v.994h.086v-.745l.129.645h.089l.128-.645v.752l.07-.007z" fill="%23F79E1B"/></g></svg>'); }

.icon-search {
  display: inline-block;
  width: 0.8125rem;
  height: 0.875rem;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 14"><g transform="translate(1 1)" stroke="black" stroke-width="1.651" fill="none" fill-rule="evenodd"><ellipse cx="4.207" cy="4.214" rx="4.207" ry="4.214"/><path stroke-linecap="square" d="M11 11 7.442 7.445"/></g></svg>'); }

/* -------------------------------------------------------------------------- *\
 *  ICON-ONLY BUTTONS
\* -------------------------------------------------------------------------- */
.btn-close,
.btn-remove, .btn-minus,
.btn-plus, .btn-trash {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  margin: 0;
  font-size: 0.75rem;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-origin: content-box;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

/*
 * CLOSE BUTTON
 * ------------------------------------
 * [X]
 * -------------------------------------------------------------------------- */
.btn-close,
.btn-remove {
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><g fill-rule="evenodd"><path d="M0 11.326L.647 12 12 .674 11.353 0z" fill="black"/><path d="M11.353 12l.647-.674L.647 0 0 .674z" fill="black"/></g></svg>'); }
  @media (max-width: 574px) {
    .btn-close,
    .btn-remove {
      overflow: visible;
      position: relative; }
      .btn-close::after,
      .btn-remove::after {
        --hotzone-margins: 12px;
        position: absolute;
        top: calc(-1 * var(--hotzone-margins));
        left: calc(-1 * var(--hotzone-margins));
        width: calc(100% + (2 * var(--hotzone-margins)));
        height: calc(100% + (2 * var(--hotzone-margins)));
        content: '';
        background: transparent; } }

/*
 * MINUS / PLUS BUTTONS
 * ------------------------------------
 * [-] [+]
 * -------------------------------------------------------------------------- */
.btn-minus,
.btn-plus {
  font-size: 0.625rem; }
  @media (max-width: 574px) {
    .btn-minus,
    .btn-plus {
      overflow: visible;
      position: relative; }
      .btn-minus::after,
      .btn-plus::after {
        --hotzone-margins: 8px;
        position: absolute;
        top: calc(-1 * var(--hotzone-margins));
        left: calc(-1 * var(--hotzone-margins));
        width: calc(100% + (2 * var(--hotzone-margins)));
        height: calc(100% + (2 * var(--hotzone-margins)));
        content: '';
        background: transparent; } }

.btn-minus {
  background-image: url('data:image/svg+xml;utf-8,<svg width="12" height="12" xmlns="http://www.w3.org/2000/svg"><path stroke="black" stroke-width="2" d="M1 6h10" fill="none" fill-rule="evenodd"/></svg>'); }

.btn-plus {
  background-image: url('data:image/svg+xml;utf-8,<svg width="10" height="10" xmlns="http://www.w3.org/2000/svg"><path d="M5 10V0M0 5h10" stroke="black" stroke-width="2" fill="none" fill-rule="evenodd"/></svg>'); }

/*
 * TRASH BUTTON
 * ------------------------------------
 * Used for deleting
 * -------------------------------------------------------------------------- */
.btn-trash {
  font-size: 0.875rem;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M2.5 2.5h7v9h-7v-9zm.5-2h6m-1.5 4v5m-3-5v5" stroke="%23909090" fill="none" fill-rule="evenodd"/></svg>'); }
  @media (max-width: 574px) {
    .btn-trash {
      overflow: visible;
      position: relative; }
      .btn-trash::after {
        --hotzone-margins: 8px;
        position: absolute;
        top: calc(-1 * var(--hotzone-margins));
        left: calc(-1 * var(--hotzone-margins));
        width: calc(100% + (2 * var(--hotzone-margins)));
        height: calc(100% + (2 * var(--hotzone-margins)));
        content: '';
        background: transparent; } }

/* -------------------------------------------------------------------------- *\
 *  BOOTSTRAP FORM LABELS
\* -------------------------------------------------------------------------- */
.form-control-label:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%); }

.form-check-label {
  display: inline-block; }

/* -------------------------------------------------------------------------- *\
 *  BOOTSTRAP FIELDS (aka FORM GROUPS)
 *  label + input
\* -------------------------------------------------------------------------- */
/* COMMENTED UNTIL IS ENSURED THAT NO FORM NEEDS THIS STYLES (Maybe other cartridge fields)
.form-group {
  position: relative;
  margin-bottom: $space-between-field;

  @include desktop {
    margin-bottom: $space-between-field--desktop;
  }
}

.form-group.required {
  .form-control-label::before {
    display: none;
  }

  .form-control-label::after {
    content: '*';
  }
} */
/* -------------------------------------------------------------------------- *\
 *  BOOTSTRAP FIELD CHECKBOX
 * ----------------------------------------------
 *  div.form-group.custom-checkbox.custom-control
 *    input.custom-control-input
 *    label.custom-control-label
\* -------------------------------------------------------------------------- */
.custom-checkbox {
  display: flex; }

.custom-checkbox > .custom-control-label {
  /* stylelint-disable */
  --uses-typography: 'forms-label';
  color: #909090;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: italic;
  font-weight: 500;
  text-overflow: ellipsis;
  text-transform: lowercase;
  /* stylelint-enable */
  /* stylelint-disable */
  --uses-typography: 'forms-label--checkbox';
  color: black;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  line-height: 1.25;
  /* stylelint-enable */
  flex-grow: 1; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px; }
  .form-row > .col,
  .form-row > [class*='col-'] {
    padding-right: 5px;
    padding-left: 5px; }

/*
Use this selector if raw html fields have to be styled
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
*/
.input {
  /* stylelint-disable */
  --uses-typography: 'forms-input';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  /* stylelint-enable */
  width: 100%;
  padding: 0.125rem 0 0.125rem;
  color: black;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /**
   * 1. Hide cancel button which clears an input of type="search"
   */
  /* avoid mobile zoom in inputs with font-size 12px */ }
  @media (min-width: 1025px) {
    .input {
      padding: 0.125rem 0 0.1875rem; } }
  .input::-webkit-search-cancel-button {
    visibility: hidden;
    /* [1] */ }
  .input:-webkit-autofill, .input:-webkit-autofill::first-line {
    /* stylelint-disable */
    --uses-typography: 'forms-input';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    /* stylelint-enable */
    line-height: inherit; }
    @media (max-width: 767px) {
      .input:-webkit-autofill, .input:-webkit-autofill::first-line {
        width: 114.28571%;
        margin-right: -14.28571%;
        /* remove extra white space */
        margin-bottom: -6px;
        /* enlarge by 16/12 = 133.33% */
        font-size: 1rem;
        line-height: 20px;
        /* scale down by 12/16 = 75% */
        transform: scale(0.875);
        transform-origin: left top; } }
  .input:focus {
    outline: 1px solid #909090; }
  .input.is-disabled, .input:disabled {
    color: rgba(199, 199, 199, 0.5);
    border-color: rgba(199, 199, 199, 0.5);
    cursor: not-allowed;
    -webkit-text-fill-color: rgba(199, 199, 199, 0.5);
    /* Safari hack */
    opacity: 1;
    /* required on iOS */ }
  .input[type='text'], .input[type='email'], .input[type='password'] {
    /* avoid webkit autofill credentials */ }
    .input[type='text']::-webkit-credentials-auto-fill-button, .input[type='text']::-webkit-contacts-auto-fill-button, .input[type='email']::-webkit-credentials-auto-fill-button, .input[type='email']::-webkit-contacts-auto-fill-button, .input[type='password']::-webkit-credentials-auto-fill-button, .input[type='password']::-webkit-contacts-auto-fill-button {
      position: absolute;
      left: 0;
      visibility: hidden; }

.input--primary {
  /* stylelint-disable */
  --uses-typography: 'forms-input--primary';
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .input--primary {
      font-size: 1rem; } }
  .input--primary:-webkit-autofill, .input--primary:-webkit-autofill::first-line {
    /* stylelint-disable */
    --uses-typography: 'forms-input--primary';
    /* stylelint-enable */
    line-height: inherit; }
    @media (min-width: 1025px) {
      .input--primary:-webkit-autofill, .input--primary:-webkit-autofill::first-line {
        font-size: 1rem; } }

/* Use input--dark to allow future similar inputs */
.input--newsletter {
  color: white;
  font-size: 1.125rem;
  border-color: white; }
  @media (min-width: 1280px) {
    .input--newsletter {
      font-size: 0.875rem; } }
  @media (min-width: 1920px) {
    .input--newsletter {
      font-size: 1.3125rem; } }
  .input--newsletter + label,
  .input--newsletter + [class*='label'] {
    /* stylelint-disable */
    --uses-typography: 'forms-label--input-dark';
    /* stylelint-enable */ }

.newsletter-modal-container--home .input--newsletter {
  /* stylelint-disable */
  --uses-typography: 'newsletter-hpEmailSignUp-home';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.0375rem;
  text-transform: none;
  color: white;
  /* stylelint-enable */ }
  @media (min-width: 768px) {
    .newsletter-modal-container--home .input--newsletter {
      font-size: 1.125rem; } }
  .newsletter-modal-container--home .input--newsletter + label,
  .newsletter-modal-container--home .input--newsletter + [class*='label'] {
    /* stylelint-disable */
    --uses-typography: 'forms-label--input-dark';
    /* stylelint-enable */ }

.input.input--box {
  padding: 0.3125rem 8px;
  background-color: whitesmoke;
  border: 0; }

/* OLD styles */
.input--hero {
  /* stylelint-disable */
  --uses-typography: 'forms-input--hero';
  font-size: 1.125rem;
  line-height: 27px;
  /* stylelint-enable */
  padding-bottom: 0.375rem; }
  @media (min-width: 1025px) {
    .input--hero {
      font-size: 2.125rem;
      line-height: 41px; } }
  .input--hero::-moz-placeholder {
    /* stylelint-disable */
    --uses-typography: 'forms-label--hero';
    font-style: normal;
    font-weight: 900;
    /* stylelint-enable */ }
  .input--hero::placeholder {
    /* stylelint-disable */
    --uses-typography: 'forms-label--hero';
    font-style: normal;
    font-weight: 900;
    /* stylelint-enable */ }

.input--hero-search {
  /* stylelint-disable */
  --uses-typography: 'forms-input--hero-search';
  /* stylelint-enable */
  padding-bottom: 0.1rem; }
  .input--hero-search::-moz-placeholder {
    /* stylelint-disable */
    --uses-typography: 'forms-label--hero-search';
    /* stylelint-enable */ }
  .input--hero-search::placeholder {
    /* stylelint-disable */
    --uses-typography: 'forms-label--hero-search';
    /* stylelint-enable */ }

/**
 * Checkbox
 * -------------------------------------------------------------------------- */
[type='checkbox'],
[type='radio'],
.checkbox,
.radio {
  position: absolute;
  top: 0.0625rem;
  left: 0;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  border: 0.0625rem solid black;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  @media (min-width: 1025px) {
    [type='checkbox'],
    [type='radio'],
    .checkbox,
    .radio {
      top: 2px; } }
  @media (max-width: 574px) {
    [type='checkbox'],
    [type='radio'],
    .checkbox,
    .radio {
      overflow: visible; }
      [type='checkbox']::after,
      [type='radio']::after,
      .checkbox::after,
      .radio::after {
        --hotzone-margins: 12px;
        position: absolute;
        top: calc(-1 * var(--hotzone-margins));
        left: calc(-1 * var(--hotzone-margins));
        width: calc(100% + (2 * var(--hotzone-margins)));
        height: calc(100% + (2 * var(--hotzone-margins)));
        content: '';
        background: transparent; } }
  [type='checkbox'] + label,
  [type='checkbox'] + [class*='label'],
  [type='radio'] + label,
  [type='radio'] + [class*='label'],
  .checkbox + label,
  .checkbox + [class*='label'],
  .radio + label,
  .radio + [class*='label'] {
    min-height: 0.875rem;
    padding-left: 1.25rem;
    cursor: pointer; }
    @media (min-width: 1025px) {
      [type='checkbox'] + label,
      [type='checkbox'] + [class*='label'],
      [type='radio'] + label,
      [type='radio'] + [class*='label'],
      .checkbox + label,
      .checkbox + [class*='label'],
      .radio + label,
      .radio + [class*='label'] {
        min-height: 16px;
        line-height: 16px; } }

[type='checkbox'] + label,
[type='checkbox'] + [class*='label'],
.checkbox + label,
.checkbox + [class*='label'] {
  display: inline-block; }

[type='radio'],
.radio {
  border-radius: 50%; }
  [type='radio'] + label,
  [type='radio'] + [class*='label'],
  .radio + label,
  .radio + [class*='label'] {
    display: inline-block; }

.checkbox--dropdown input,
.radio--dropdown input {
  margin-top: 0.4em; }
  .checkbox--dropdown input + label,
  .checkbox--dropdown input + [class*='label'],
  .radio--dropdown input + label,
  .radio--dropdown input + [class*='label'] {
    /* stylelint-disable */
    --uses-typography: 'forms-label--check-dropdown';
    color: black;
    font-family: "EBGaramond", georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    /* stylelint-enable */ }
    @media (min-width: 810px) {
      .checkbox--dropdown input + label,
      .checkbox--dropdown input + [class*='label'],
      .radio--dropdown input + label,
      .radio--dropdown input + [class*='label'] {
        font-weight: 600; } }

/*
 * we are moving variants/states below, to avoid no-descending-specificity rule
 * still a disable rule is needed since we are repeating selectors
 */
/* stylelint-disable no-duplicate-selectors */
[type='checkbox']:focus,
[type='radio']:focus,
.checkbox:focus,
.radio:focus {
  outline: none; }
  [type='checkbox']:focus + label,
  [type='checkbox']:focus + [class*='label'],
  [type='radio']:focus + label,
  [type='radio']:focus + [class*='label'],
  .checkbox:focus + label,
  .checkbox:focus + [class*='label'],
  .radio:focus + label,
  .radio:focus + [class*='label'] {
    outline: 1px solid #909090; }

[type='checkbox']:active + label,
[type='checkbox']:active + [class*='label'],
[type='radio']:active + label,
[type='radio']:active + [class*='label'],
.checkbox:active + label,
.checkbox:active + [class*='label'],
.radio:active + label,
.radio:active + [class*='label'] {
  background-color: #909090;
  /* mouse, touch pad */ }
  @media (hover: hover) and (pointer: fine) {
    [type='checkbox']:active + label,
    [type='checkbox']:active + [class*='label'],
    [type='radio']:active + label,
    [type='radio']:active + [class*='label'],
    .checkbox:active + label,
    .checkbox:active + [class*='label'],
    .radio:active + label,
    .radio:active + [class*='label'] {
      background-color: transparent; } }

[type='checkbox'].is-invalid,
[type='radio'].is-invalid,
.checkbox.is-invalid,
.radio.is-invalid {
  border-color: red; }

[type='checkbox'].is-disabled,
[type='radio'].is-disabled,
.checkbox.is-disabled,
.radio.is-disabled {
  border-color: rgba(199, 199, 199, 0.5);
  pointer-events: none; }
  [type='checkbox'].is-disabled:checked,
  [type='radio'].is-disabled:checked,
  .checkbox.is-disabled:checked,
  .radio.is-disabled:checked {
    background-color: rgba(199, 199, 199, 0.5); }
  [type='checkbox'].is-disabled + label,
  [type='checkbox'].is-disabled + [class*='label'],
  [type='radio'].is-disabled + label,
  [type='radio'].is-disabled + [class*='label'],
  .checkbox.is-disabled + label,
  .checkbox.is-disabled + [class*='label'],
  .radio.is-disabled + label,
  .radio.is-disabled + [class*='label'] {
    color: rgba(199, 199, 199, 0.5);
    pointer-events: none; }

.textarea {
  /* stylelint-disable */
  --uses-typography: 'forms-textarea';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  /* stylelint-enable */
  width: 100%;
  min-height: 80px;
  padding: 0.5rem;
  color: #909090;
  background-color: whitesmoke;
  border: 0; }
  @media (max-width: 767px) {
    .textarea {
      width: 133.33333%;
      margin-right: -33.33333%;
      /* remove extra white space */
      margin-bottom: -7.504px;
      /* enlarge by 16/12 = 133.33% */
      font-size: 1rem;
      line-height: 15.008px;
      /* scale down by 12/16 = 75% */
      transform: scale(0.75);
      transform-origin: left top; } }
  .textarea::-moz-placeholder {
    color: inherit; }
  .textarea::placeholder {
    color: inherit; }
  .textarea.is-disabled, .textarea:disabled {
    cursor: not-allowed; }

.select {
  /* stylelint-disable */
  --uses-typography: 'forms-select';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
  /* stylelint-enable */
  width: 100%;
  padding: 2px 0;
  color: black;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path fill="%23909090" d="M8.1 3L6.088 6.441h-.176L3.9 3H1.27v.265L4.854 9h2.294l3.582-5.735V3z" fill-rule="evenodd" /></svg>');
  background-repeat: no-repeat;
  background-position: right 0.5em top 90%, 0 0;
  background-size: 0.75rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  .select::-ms-expand {
    display: none; }
  .select:focus, .select.is-open {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path fill="%23909090" d="M8.1 3L6.088 6.441h-.176L3.9 3H1.27v.265L4.854 9h2.294l3.582-5.735V3z" transform="rotate(180 -12)" fill-rule="evenodd" /></svg>'); }
  .select.is-empty :not(:first-child) {
    color: black; }
  .select.is-readonly {
    background: none;
    border-color: #a8a8a8;
    cursor: default;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    pointer-events: none; }
  .select option:disabled {
    display: none; }

.select--primary {
  /* stylelint-disable */
  --uses-typography: 'forms-input--primary';
  /* stylelint-enable */
  padding-bottom: 0.25rem;
  background-size: 0.5rem;
  /**
   * 1. Overwrite base font-size (13px). Primary has same size, filled or not
   */ }
  @media (min-width: 1025px) {
    .select--primary {
      font-size: 1rem; } }
  .select--primary.is-empty {
    /* stylelint-disable */
    --uses-typography: 'forms-input--primary';
    /* stylelint-enable */
    /* [1] */
    /* stylelint-disable */
    --uses-typography: 'forms-label';
    color: #909090;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: italic;
    font-weight: 500;
    text-overflow: ellipsis;
    text-transform: lowercase;
    /* stylelint-enable */
    /* stylelint-disable */
    --uses-typography: 'forms-label--primary';
    font-style: normal;
    font-weight: 900;
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .select--primary.is-empty {
        font-size: 1rem; } }

fieldset {
  min-width: auto; }
  fieldset legend {
    /* stylelint-disable */
    --uses-typography: 'forms-input';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    /* stylelint-enable */ }

.fieldset__legend {
  /* stylelint-disable */
  --uses-typography: 'forms-input';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  /* stylelint-enable */
  margin: 0 0 0.5rem; }
  .fieldset__legend--primary {
    /* stylelint-disable */
    --uses-typography: 'forms-input--primary';
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .fieldset__legend--primary {
        font-size: 1rem; } }

/**
  <div class="field-checkbox">
    <input type="checkbox" class="field-checkbox__input" />
    <label class="field-checkbox__label">...</label>
    <div class="error-message">...</div>
  </div>
*/
.field-checkbox {
  /* stylelint-disable */
  --uses-typography: 'forms-label';
  color: #909090;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: italic;
  font-weight: 500;
  text-overflow: ellipsis;
  text-transform: lowercase;
  /* stylelint-enable */
  /* stylelint-disable */
  --uses-typography: 'forms-label--checkbox';
  color: black;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  line-height: 1.25;
  /* stylelint-enable */
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  cursor: pointer;
  /* -------------------------------------------------------------------------- *\
  *  Modifiers
  * -------------------------------------------------------------------------- */
  /**
   * 1. Correct modifier (recommended)
   * 2. First applied selector (avoid, not BEM, higher specificity)
   */ }
  .field-checkbox .error-message {
    /* stylelint-disable */
    --uses-typography: 'forms-label--checkbox';
    color: black;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    line-height: 1.25;
    /* stylelint-enable */
    flex-basis: 100%;
    margin-top: 0;
    color: red; }
  .field-checkbox .error-message {
    margin-top: 8px; }
    @media (min-width: 1025px) {
      .field-checkbox .error-message {
        margin-top: 12px; } }
  .field-checkbox--no-click-disable.field-checkbox--checked {
    cursor: default; }
    .field-checkbox--no-click-disable.field-checkbox--checked .field-checkbox__input,
    .field-checkbox--no-click-disable.field-checkbox--checked .field-checkbox__label {
      pointer-events: none; }
  .field-checkbox__label, .field-checkbox__input {
    font-size: 1em; }
  .field-checkbox__label {
    flex-grow: 1; }
  .field-checkbox__input {
    border-radius: 0; }
  .field-checkbox .invalid-feedback {
    padding-left: 1.25rem; }
  .field-checkbox--dark, .field-checkbox.checkbox--dark {
    /* stylelint-disable */
    --uses-typography: 'newsletter-checkbox';
    font-size: 0.625rem;
    font-weight: 500;
    font-style: normal;
    text-transform: none;
    /* stylelint-enable */
    /* stylelint-disable */
    --uses-typography: 'newsletter-checkbox--footer';
    color: white;
    font-weight: 500;
    /* stylelint-enable */ }
    @media (min-width: 768px) {
      .field-checkbox--dark, .field-checkbox.checkbox--dark {
        font-size: 0.75rem; } }
    .field-checkbox--dark input, .field-checkbox.checkbox--dark input {
      color: inherit;
      border-color: currentColor; }

.field-password {
  /* stylelint-disable */
  --uses-typography: 'forms-input';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  /* stylelint-enable */
  position: relative; }
  .field-password__label {
    /* stylelint-disable */
    --uses-typography: 'forms-field-label';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    /* stylelint-enable */
    color: #909090; }
    @media (min-width: 1025px) {
      .field-password__label {
        font-weight: 900;
        font-size: 1rem; } }
  .field-password__eye {
    position: absolute;
    top: 2em;
    right: -0.5rem;
    box-sizing: border-box;
    width: 2rem;
    height: 2rem;
    margin: -1.5rem 0 0;
    padding: 0.5rem;
    font-size: 100%;
    cursor: pointer; }
    .field-password__eye::before {
      display: inline-block;
      width: 1rem;
      height: 1rem;
      background-image: url("../images/noview.svg");
      background-repeat: no-repeat;
      content: ''; }
    .field-password__eye--uncrossed::before {
      background-image: url("../images/view.svg"); }
  .field-password__input {
    /* stylelint-disable */
    --uses-typography: 'forms-input--primary';
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .field-password__input {
        font-size: 1rem; } }
    .field-password__input[type='text'], .field-password__input[type='password'] {
      padding-right: 24px; }
      @media (max-width: 767px) {
        .field-password__input[type='text'], .field-password__input[type='password'] {
          width: 114.28571%;
          margin-right: -14.28571%;
          /* remove extra white space */
          margin-bottom: -6px;
          /* enlarge by 16/12 = 133.33% */
          font-size: 1rem;
          line-height: 20px;
          /* scale down by 12/16 = 75% */
          transform: scale(0.875);
          transform-origin: left top; } }
    .field-password__input[type='password'] {
      /* stylelint-disable */
      --uses-typography: 'forms-input--password';
      font-size: 1.125rem;
      line-height: 21px;
      /* stylelint-enable */
      margin-top: -3px; }
      @media (min-width: 1025px) {
        .field-password__input[type='password'] {
          font-size: 0.6875rem;
          letter-spacing: 1px;
          line-height: 24px; } }
      @media (min-width: 1025px) {
        .field-password__input[type='password'] {
          margin-top: 0; } }
      .field-password__input[type='password']:-webkit-autofill, .field-password__input[type='password']:-webkit-autofill::first-line {
        /* stylelint-disable */
        --uses-typography: 'forms-input--password';
        font-size: 1.125rem;
        line-height: 21px;
        /* stylelint-enable */
        line-height: inherit; }
        @media (min-width: 1025px) {
          .field-password__input[type='password']:-webkit-autofill, .field-password__input[type='password']:-webkit-autofill::first-line {
            font-size: 0.6875rem;
            letter-spacing: 1px;
            line-height: 24px; } }

.field-password--is-invalid .field-password__input {
  border-bottom-color: red; }

.field-password--is-invalid .field-password__error-message {
  display: block;
  color: red;
  font-weight: 900;
  font-size: 0.75rem; }

/*
  <div class="field-radio-group">
    <div class="field-radio">
        <input type="radio" class="field-radio__input" />
        <label class="field-radio__label">...</label>
    </div>
    ... more fields
    <div class="error-message">...</div>
  </div>
*/
.field-radio-group .error-message {
  /* stylelint-disable */
  --uses-typography: 'forms-label--checkbox';
  color: black;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  line-height: 1.25;
  /* stylelint-enable */
  flex-basis: 100%;
  margin-top: 0;
  color: red; }

.field-radio-group .error-message {
  margin-top: 8px; }
  @media (min-width: 1025px) {
    .field-radio-group .error-message {
      margin-top: 12px; } }

.field-radio {
  /* stylelint-disable */
  --uses-typography: 'forms-label';
  color: #909090;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: italic;
  font-weight: 500;
  text-overflow: ellipsis;
  text-transform: lowercase;
  /* stylelint-enable */
  /* stylelint-disable */
  --uses-typography: 'forms-label--radio';
  color: black;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  text-transform: none;
  /* stylelint-enable */
  position: relative;
  display: flex;
  cursor: pointer; }
  @media (min-width: 1025px) {
    .field-radio {
      font-size: 0.875rem; } }
  .field-radio__input {
    font-size: 1em; }
    .field-radio__input--hidden {
      display: none; }
  .field-radio__label {
    flex-grow: 1;
    font-size: 1em; }
  .field-radio + .field-radio {
    margin-top: 24px; }
    @media (min-width: 1025px) {
      .field-radio + .field-radio {
        margin-top: 0.625rem; } }

.field-radio-group--row {
  display: flex;
  flex-direction: column;
  align-items: baseline; }
  @media (min-width: 1025px) {
    .field-radio-group--row {
      flex-direction: row; } }
  .field-radio-group--row .field-radio {
    flex-basis: 50%;
    margin-top: 0; }
  .field-radio-group--row .field-radio + .field-radio {
    margin-top: 12px; }

.field-select__select.is-invalid ~ .field-select__error-message, .field-text__input.is-invalid ~ .field-text__error-message, .field-text--is-invalid .field-text__error-message {
  display: block;
  color: red;
  font-weight: 900;
  font-size: 0.75rem; }

.field-select .error-message {
  /* stylelint-disable */
  --uses-typography: 'forms-label--checkbox';
  color: black;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  line-height: 1.25;
  /* stylelint-enable */
  flex-basis: 100%;
  margin-top: 0;
  color: red; }

.field-select__label {
  /* stylelint-disable */
  --uses-typography: 'forms-field-label';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* stylelint-enable */
  color: #909090; }
  @media (min-width: 1025px) {
    .field-select__label {
      font-weight: 900;
      font-size: 1rem; } }

@media (max-width: 767px) {
  .field-select__select {
    width: 114.28571%;
    margin-right: -14.28571%;
    /* remove extra white space */
    margin-bottom: -6px;
    /* enlarge by 16/12 = 133.33% */
    font-size: 1rem;
    line-height: 20px;
    /* scale down by 12/16 = 75% */
    transform: scale(0.875);
    transform-origin: left top; } }

.field-select__select:focus, .field-select__select.is-open {
  outline: 1px solid #909090 !important; }

.field-select__select.is-disabled, .field-select__select:disabled {
  color: #909090;
  border-color: #909090;
  cursor: not-allowed; }

.field-select__select.is-invalid {
  border-color: red; }

.field-select__option {
  /* stylelint-disable */
  --uses-typography: 'forms-label--option';
  color: black;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  /* stylelint-enable */ }

.field-select__error-message {
  display: none; }

@media (min-width: 1025px) {
  .field-select--primary .field-select__select {
    font-size: 1rem; } }

.field-select--primary .field-select__label {
  /* stylelint-disable */
  --uses-typography: 'forms-input--primary';
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .field-select--primary .field-select__label {
      font-size: 1rem; } }

.field-select--no-visible {
  cursor: default;
  opacity: 0; }
  .field-select--no-visible .field-select__select {
    pointer-events: none; }

.field-text__input.is-invalid, .field-text--is-invalid .field-text__input {
  border-bottom-color: red; }

.field-select__select.is-invalid ~ .field-select__error-message, .field-text__input.is-invalid ~ .field-text__error-message, .field-text--is-invalid .field-text__error-message {
  display: block;
  color: red;
  font-weight: 900;
  font-size: 0.75rem; }

.field-text {
  display: flex;
  flex-direction: column; }
  @media (max-width: 767px) {
    .field-text .field-text__input {
      width: 114.28571%;
      margin-right: -14.28571%;
      /* remove extra white space */
      margin-bottom: -6px;
      /* enlarge by 16/12 = 133.33% */
      font-size: 1rem;
      line-height: 20px;
      /* scale down by 12/16 = 75% */
      transform: scale(0.875);
      transform-origin: left top; } }
  .field-text__label {
    /* stylelint-disable */
    --uses-typography: 'forms-field-label';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    /* stylelint-enable */
    color: #909090; }
    @media (min-width: 1025px) {
      .field-text__label {
        font-weight: 900;
        font-size: 1rem; } }
  .field-text__error-message {
    display: none; }

.field-textarea__label:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%); }

.field-textarea__textarea {
  resize: none; }

.field-textarea__counter {
  display: flex;
  justify-content: flex-end;
  float: right;
  margin: 0;
  color: #545454;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: "EBGaramond", georgia, serif;
  font-style: italic; }
  @media (min-width: 810px) {
    .field-textarea__counter {
      font-weight: 600; } }
  .field-textarea__counter::before, .field-textarea__counter::after {
    font-style: normal;
    line-height: 1.25; }
  .field-textarea__counter::before {
    margin-right: 0.25em;
    content: '<'; }
  .field-textarea__counter::after {
    margin-left: 0.25em;
    content: '>'; }

.field-textarea > textarea {
  height: 90px;
  border-radius: 0; }
  @media (max-width: 767px) {
    .field-textarea > textarea {
      width: 133.33333%;
      margin-right: -33.33333%;
      /* remove extra white space */
      margin-bottom: -7.504px;
      /* enlarge by 16/12 = 133.33% */
      font-size: 1rem;
      line-height: 15.008px;
      /* scale down by 12/16 = 75% */
      transform: scale(0.75);
      transform-origin: left top; } }

.field-textarea::after {
  display: block;
  clear: both;
  content: ''; }

.field-textarea--is-invalid {
  position: relative; }
  .field-textarea--is-invalid .field-textarea__textarea {
    border: 1px solid red; }
  .field-textarea--is-invalid .field-textarea__error-message {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    max-width: 100%;
    padding-right: 5rem;
    overflow: hidden;
    color: red;
    font-weight: 900;
    font-size: 0.75rem;
    white-space: nowrap;
    text-overflow: ellipsis; }

.field-date {
  display: flex;
  flex-direction: column; }
  .field-date__input[type='date']::-webkit-inner-spin-button, .field-date__input[type='date']::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
            appearance: none; }
  .field-date__label {
    /* stylelint-disable */
    --uses-typography: 'forms-input';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    /* stylelint-enable */
    color: #909090; }
  .field-date__error-message {
    display: none; }

.field-date--primary .field-date__label {
  /* stylelint-disable */
  --uses-typography: 'forms-input--primary';
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .field-date--primary .field-date__label {
      font-size: 1rem; } }

.field-date--is-invalid .field-date__input {
  border-bottom-color: red; }

.field-date--is-invalid .field-date__error-message {
  display: block;
  color: red;
  font-weight: 900;
  font-size: 0.75rem; }

/*
Snippet
--------------------------------------------------------------------------------
<form class="form">
  <!-- one or more:
    .field-text
  -->
  <div class="form__actions">
    <!-- one or more:
    <button> or <input type="submit|reset|button" />
    -->
  </div>
</form>
*/
.form {
  /**
   * 1. Actions must be indented with respect to fields
   */ }
  .form__actions {
    display: flex;
    grid-gap: 24px;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin: 24px 0 24px 0; }
    @media (min-width: 1025px) {
      .form__actions {
        justify-content: flex-end;
        padding-right: 24px; } }
    .form__actions--end-position {
      justify-content: flex-end; }
  .form .field-checkbox {
    margin-top: 2px;
    margin-bottom: 24px; }
    @media (min-width: 1025px) {
      .form .field-checkbox {
        margin-bottom: 4px; } }
  .form .field-checkbox:last-of-type {
    margin-top: 16px; }
  .form__field, .form__fields-row,
  .form .field-text + .field-select,
  .form .field-select + .field-select,
  .form .field-checkbox + .field-select,
  .form .field-text + .field-text {
    margin-top: 0;
    margin-bottom: 12px; }
    @media (min-width: 1025px) {
      .form__field, .form__fields-row,
      .form .field-text + .field-select,
      .form .field-select + .field-select,
      .form .field-checkbox + .field-select,
      .form .field-text + .field-text {
        margin-bottom: 2px; } }
  .form__fields-row {
    display: flex; }
    .form__fields-row .form__field {
      flex-basis: 50%;
      margin: 0 0 12px; }
    .form__fields-row--no-margin {
      margin-bottom: 0; }
      @media (min-width: 1025px) {
        .form__fields-row--no-margin .form__field {
          margin: 0 0 2px; } }
  .form__fields-grid {
    display: grid;
    grid-template: auto / 1fr 1fr;
    grid-gap: 7%;
    gap: 7%; }
  .form__fields-row--desktop {
    display: block; }
    @media (min-width: 1025px) {
      .form__fields-row--desktop {
        display: flex; } }
  @media (min-width: 1025px) {
    .form__fields-row--desktop .form__field:not(:first-child) {
      margin-left: 3.5%; }
    .form__fields-row--desktop .form__field:not(:last-child) {
      margin-right: 3.5%; } }
  .form > .form__field:first-of-type {
    margin-top: 0; }
  .form__fields-row:not(.form__fields-row--desktop) .form__field:not(:first-child) {
    margin-left: 3.5%; }
  .form__fields-row:not(.form__fields-row--desktop) .form__field:not(:last-child) {
    margin-right: 3.5%; }
  .form.reset-password > .form__field:first-of-type {
    margin-bottom: 24px; }
  .form.guest-form .form__actions {
    margin: 24px 0 0;
    padding-right: 0; }
  .form__message,
  .form__message .content-asset {
    /* stylelint-disable */
    --uses-typography: 'forms-message';
    font-size: 0.625rem;
    color: #909090;
    font-style: normal;
    font-weight: 500;
    /* stylelint-enable */
    margin: 0; }

.form-group {
  position: relative; }
  .form-group .invalid-feedback {
    /* stylelint-disable */
    --uses-typography: 'forms-invalid-feedback';
    font-size: 0.6875rem;
    color: red;
    font-style: normal;
    font-weight: 700;
    /* stylelint-enable */
    margin: 0;
    text-align: left; }
    @media (min-width: 1025px) {
      .form-group .invalid-feedback {
        font-size: 0.75rem; } }
  @media (max-width: 767px) {
    .form-group > textarea {
      width: 133.33333%;
      margin-right: -33.33333%;
      /* remove extra white space */
      margin-bottom: -7.504px;
      /* enlarge by 16/12 = 133.33% */
      font-size: 1rem;
      line-height: 15.008px;
      /* scale down by 12/16 = 75% */
      transform: scale(0.75);
      transform-origin: left top; } }

.form-invalid-feedback,
.form-valid-feedback,
.form-empty-check {
  /* stylelint-disable */
  --uses-typography: 'forms-invalid-feedback';
  font-size: 0.6875rem;
  color: red;
  font-style: normal;
  font-weight: 700;
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .form-invalid-feedback,
    .form-valid-feedback,
    .form-empty-check {
      font-size: 0.75rem; } }

.form-valid-feedback {
  color: #00fa32; }

.form-control.is-invalid {
  border-color: red; }
  .form-control.is-invalid[type='checkbox'], .form-control.is-invalid[type='radio'] {
    color: red; }

.txtbtn {
  display: inline-block;
  max-width: 100%;
  color: black;
  font-weight: 900;
  font-size: calc(0.015 * 100vw + 7.2px);
  line-height: 1.25;
  letter-spacing: calc(0.00063 * 100vw + -0.2px);
  text-align: left;
  text-transform: uppercase;
  border: none;
  cursor: pointer; }
  @media (min-width: 810px) {
    .txtbtn {
      text-align: center; } }
  @media (min-width: 1920px) {
    .txtbtn {
      font-size: 2.25rem;
      letter-spacing: 1px; } }
  .txtbtn--primary {
    min-width: auto;
    color: black;
    background-color: transparent; }
  .txtbtn--disabled {
    color: #909090; }

.txtbtn--xxxs {
  font-size: 0.75rem; }

.txtbtn--xxs {
  font-size: 0.875rem; }

.txtbtn--xs {
  font-size: 1rem; }

.txtbtn--s {
  font-size: 1.125rem; }

.txtbtn--m {
  font-size: 1.3125rem; }

.txtbtn--l {
  font-size: 1.4375rem; }

.txtbtn--xl {
  font-size: 1.5625rem; }

.txtbtn--xxl {
  font-size: 1.875rem; }

.txtbtn--xxxl {
  font-size: 2.25rem; }

.media {
  display: flex; }
  .media__pic {
    flex-grow: 0;
    flex-shrink: 0; }
  .media__content {
    flex-grow: 1; }
  .media--center {
    align-items: center; }
  .media--responsive, .media--responsive--tablet {
    flex-direction: column; }
    @media (min-width: 768px) {
      .media--responsive, .media--responsive--tablet {
        flex-direction: row; } }
  .media--responsive--desktop {
    flex-direction: column; }
    @media (min-width: 1025px) {
      .media--responsive--desktop {
        flex-direction: row; } }

/* -------------------------------------------------------------------------- *\
 *  Tablist
 * --------------------------------------------------------------------------
 *  Zeplin: https://zpl.io/bLEoN3d
 *
 *  Selected state alternatives
 * ----------------------------------------------
 *  - .tablist__tab--selected
 *  - Using simple radio buttons inside tab
 *  - Using field-radio component inside tab
 *
\* -------------------------------------------------------------------------- */
/**
 * 1. Revert bootstrap inherited styles
 */
.tabs__tablist {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  border-bottom: unset;
  /* [1] */ }

/**
 * 1. Revert bootstrap inherited styles
 */
.tabs__tablist-item {
  display: flex;
  flex: 1 1 1%;
  min-width: 80px;
  margin: 0;
  padding-left: 0;
  list-style: none; }

/**
 * 1. Revert bootstrap inherited styles
 */
.tabs__tab {
  /* stylelint-disable */
  --uses-typography: 'tabs-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: #909090;
  /* stylelint-enable */
  transition: color 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, font-size 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, border-color 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  display: flex;
  flex-basis: auto;
  flex-grow: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  text-align: center;
  background-color: inherit;
  /* [1] */
  border: 0;
  border-radius: 3.125rem;
  cursor: pointer; }
  @media (min-width: 375px) {
    .tabs__tab {
      font-size: calc(0.00453 * 100vw + 12.30097px); } }
  @media (min-width: 1920px) {
    .tabs__tab {
      font-size: 1.3125rem; } }
  @media (min-width: 1025px) {
    .tabs__tab {
      padding-left: 16px;
      padding-right: 16px; } }
  .tabs__tab:active {
    background-color: rgba(199, 199, 199, 0.5);
    /* mouse, touch pad */ }
    @media (hover: hover) and (pointer: fine) {
      .tabs__tab:active {
        background-color: transparent; } }

.tabs__tab.active, .tabs__tab[aria-selected='true'],
.tabs__tab :checked + label,
.tabs__tab :checked + [class*='label'] {
  color: black;
  background-color: rgba(200, 200, 200, 0.5);
  border-color: black; }

.tabs__tab {
  /**
     * It's recommended to use <a> like bootstrap
     * Disable label styles when using radios or checkboxes inside a tab
     */ }
  .tabs__tab label,
  .tabs__tab [class*='label'] {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
    font-family: inherit;
    font-style: inherit;
    cursor: inherit; }

.tabs__tabpanel[hidden] {
  display: none; }

/*
 * MODIFIERS
 * -------------------------------------------------------------------------- */
@media (min-width: 1920px) {
  .tabs--medium {
    max-width: 440px; } }

@media (min-width: 1920px) {
  .tabs--medium .tabs__tab {
    font-size: 1.125rem; } }

.tabs--mini {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content; }
  .tabs--mini .tabs__tablist-item {
    flex-basis: auto;
    flex-grow: 0; }
  .tabs--mini .tabs__tab {
    padding: 0 1rem 0.375rem;
    font-size: 1rem; }
    @media (min-width: 1025px) {
      .tabs--mini .tabs__tab {
        padding-right: 1.5rem;
        padding-left: 1.5rem; } }

@media (min-width: 810px) {
  .tabs--vertical .tabs__tablist {
    flex-direction: column; } }

@media (min-width: 810px) {
  .tabs--vertical .tabs__tablist-item {
    flex-basis: auto;
    flex-grow: 0; } }

@media (min-width: 1025px) {
  .tabs--vertical .tabs__tablist-item + .tabs__tablist-item {
    margin-top: 0.125rem; } }

@media (min-width: 768px) {
  .tabs--vertical .tabs__tab {
    /* stylelint-disable */
    --uses-typography: 'tabs-vertical';
    font-size: calc(0.0026 * 100vw + 16px);
    /* stylelint-enable */ } }
  @media (min-width: 768px) and (min-width: 1920px) {
    .tabs--vertical .tabs__tab {
      font-size: 1.3125rem; } }

@media (min-width: 810px) {
  .tabs--vertical .tabs__tab {
    justify-content: flex-start;
    min-width: 275px;
    padding: 0;
    border: 0; } }

@media (min-width: 810px) {
  .tabs--vertical .tabs__tab[aria-selected='true'] {
    /* stylelint-disable */
    --uses-typography: 'tabs-vertical-active';
    font-size: calc(0.0026 * 100vw + 23px);
    /* stylelint-enable */ } }
  @media (min-width: 810px) and (min-width: 1920px) {
    .tabs--vertical .tabs__tab[aria-selected='true'] {
      font-size: 1.75rem; } }

@media (min-width: 768px) {
  .tabs--vertical .tabs__tab.active,
  .tabs--vertical .tabs__tab:checked + label,
  .tabs--vertical .tabs__tab:checked + [class*='label'] {
    /* stylelint-disable */
    --uses-typography: 'tabs-vertical-active';
    font-size: calc(0.0026 * 100vw + 23px);
    /* stylelint-enable */ } }
  @media (min-width: 768px) and (min-width: 1920px) {
    .tabs--vertical .tabs__tab.active,
    .tabs--vertical .tabs__tab:checked + label,
    .tabs--vertical .tabs__tab:checked + [class*='label'] {
      font-size: 1.75rem; } }

@media (min-width: 1025px) {
  .tabs--sizes .tabs__tablist {
    width: 440px; } }

/*
 *  Bootstrap support
 * -------------------------------------------------------------------------- *
.nav-tabs {
  @extend %tablist;

  .nav-item {
    @extend %tablist-item;
  }

  .nav-link {
    @extend %tab;
  }

  .nav-link.active {
    @extend %tab--active;
  }
}

.tab-pane {
  display: none;

  &.active {
    display: block;
  }
} */
/* stylelint-disable no-descending-specificity */
/* disable descending specificity due the deep of the selectors. need to access to last tr of a table after
  get the first element td of the table
*/
/**
 * Returns a new string with some or all matches of a pattern replaced by a replacement
 * @param {String} $string - Initial string
 * @param {String} $search - Value to replace
 * @param {String} $replace - Replacement
 * @return {String} New string
 */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * Returns a curve from the $transition-curves list
 */
/**
 * Returns a speed from the $transition-times list
 */
/**
 * Returns a transition string
 * used internally by byl-transition and byl-complex-transition mixins
 * @param {string} property - property to be transitioned (i.e. width)
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 */
/* -------------------------------------------------------------------------- *\
 *  INSETS
 * --------------------------------------------------------------------------
 *  An inset offers indents content on all four sides like the matte of the
 *  framed photo on a wall
 *
 *  $inset-X : a b;
 *  $inset-stack-X : a;
 *  $inset-inline-X : b;
 *
 *  -----------------------
 *  |          a          |
 *  |   ---------------   |
 *  | b |             | b |
 *  |   ---------------   |
 *  |          a          |
 *  -----------------------
 *
\* -------------------------------------------------------------------------- */
/**
 * @tokens Inset Block
 * @presenter Spacing
 */
/**
 * @tokens Inset Inline
 * @presenter Spacing
 */
/**
 * @tokens Insets
 * @presenter Spacing
 */
/* -------------------------------------------------------------------------- *\
 *  Main header
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Footer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Main content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Landing pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Account pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Form Login content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Product Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Cart/Minicart
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Article pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Home Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Customizer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  CTA static buttons
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  IOS navigator bottom spacing
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Rest of variables
 * -------------------------------------------------------------------------- */
/*
 * Colors
 * (Named using "Name that color") - http://chir.ag/projects/name-that-color
 * -------------------------------------------------------------------------- */
/**
 * @tokens Colors Base
 * @presenter Color
 */
/**
 * @tokens Colors Promo
 * @presenter Color
 */
/**
 * @tokens Colors System
 * @presenter Color
 */
/**
 * @tokens Colors Others
 * @presenter Color
 */
/*
$color__black: hsl(0, 0%, 0%);          // #000
$color__white: hsl(0, 0%, 100%);        // #fff

$color__nero: hsl(0, 0%, 14%);         //#242424
$color__matterhorn: hsl(0, 0%, 33%);         //#555555
$color__dark-gray: hsl(0, 0%, 66%);         //#A8A8A8
$color__gray: hsl(0, 0%, 78%);         //#C8C8C8
$color__white-smoke: hsl(0, 0%, 96%);         //#F4F4F4

$color__black20: hsla(0, 0%, 0%, 0.2);    //rgba(255, 255, 255, 20)
$color__gray50: hsla(0, 0%, 78%, 0.5);   //rgba(200, 200, 200, 50)

// Promo colors
$color__green: hsl(132, 100%, 49%);     // #00F830
$color__cookie: $color__green;
$color__red: hsl(0, 100%, 50%);       // #f00
$color__red-campaign: $color__red;
$color__international-orange: hsl(19, 100%, 50%);      // #ff5200
$color__sales: $color__international-orange;
$color__yellow: hsl(60, 100%, 50%);      // #FFFF00
$color__razzle-dazzle-rose: hsl(310, 100%, 64%);     // #FF45E0
$color__who-we-are: $color__razzle-dazzle-rose;

/// --------------------------------------------------------------------------
///    Old palette
/// --------------------------------------------------------------------------
$color__alabaster: hsl(0, 0%, 98%);         // #fafafa;
$color__alto: hsla(0, 0%, 0%, 0.33);   // #00000054 = #d3d3d3;
$color__blue: hsl(231, 100%, 50%);     // #0026FF
$color__silver: hsl(0, 0%, 51%);         // #838383
$color__early-dawn: hsl(44, 100%, 95%);      // #fff9e8
$color__orange: hsl(30, 100%, 53%);      // #ff8810
$color__malachite: hsl(122, 69%, 51%);      // #2dd933
$color__violet: hsl(275, 77%, 15%);      // #2c0945
$color__royal-blue: hsl(229, 73.1%, 57.6%);  // #4462e2
$color__sunset-orange: hsl(0, 100%, 64.7%);     // #ff4b4b
$color__transparent: hsla(360, 100%, 100%, 0); //rgba(255, 255, 255, 0)

//Social networks
$color__facebook: $color__royal-blue;
$color__google: $color__sunset-orange;
*/
/* 1025 is used instead of 1024 because touch devices design is not specified */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * @tokens Font Families
 * @presenter FontFamily
 */
/** System monospace */
/**
 * @tokens Font Weights
 * @presenter FontWeight
 */
/**
 * @tokens Font Sizes
 * @presenter FontSize
 */
/**
 * @tokens Line Height
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* Scrollbars customization */
/* Custom width */
/* Custom width */
/*
  NOTE: Setup the svg.
    1- export the svg from the sketch in abstract
    2- go to optimizer, https://jakearchibald.github.io/svgomg/
    3- Copy source, check if need to have some changes in the path or fill.
*/
/**
 * Payment cards used in account, visa, mastercard,
 */
/**
 * Returns an url encoded SVG with the given color
 * @param {String} $icon - SVG code
 * @param {String} $fill-color - Fill color
 * @param {String} $stroke-color - Stroke color
 * @return {String} URL encoded svg
 */
/* -------------------------------------------------------------------------- *\
==============
| The Search |
==============
MOBILE:  Header < Search            PDPModals must hide the main header
                                    to show only a back button (as APP)
                                    Reference: SF-7800
------------------------------------------------------------------------
TABLET:                             no relevance
------------------------------------------------------------------------
DESKTOP: Header > Search            Subcategories must be viewed over
                                    the search form and its results
                                    Reference: SF-11932
\* -------------------------------------------------------------------------- */
/* $theme-colors: map-merge(
    (
      "primary":    $primary,
      "secondary":  $secondary,
      "success":    $success,
      "info":       $info,
      "warning":    $warning,
      "danger":     $danger,
      "light":      $light,
      "dark":       $dark
    ),
    $theme-colors
); */
/*
$carousel-control-prev-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 7 7'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
$carousel-control-next-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
*/
/*
 * https://allyjs.io/tutorials/hiding-elements.html#2017-edition-of-visuallyhidden
 */
/**
 * Extends click zone by adding a pseudo overflowing on the element
 *
 * @param $margins: size overflowing the click zone
 * @param $pseudo: the pseudo where attach the hotzone
 * @param $debug: just to see the zone added
 */
/**
 * Calculate button icon size based on capital height
 *
 * $margin: 4px by default ($inset-inline-xxs)
 *
 * $icon-side: left or right (right by default) to apply margin properly
 *
 * $capital-height: (em) height of capital characters, in FK Grotesk is 0.72em
 **/
/**
 *  FLOATING ELEMENTS
 * --------------------------------------------------------------------------
 *  Works from 0 to 575px breakpoints.
 *
 *  Element with is equal to 100vw subtracting
 *    1. Page inset left: 16px
 *    2. Menu with: 45px
 *    3. Space between menu and element: 24px
 *    4. Menu right position: 8px
 *  Even if menu isn't present
 *
 *  bottom: menu offset bottom (24px) + 4px
 *
 *  When the element coexists with the floating menu on mobile:
 *  right: 24px + menu width (45px) + 8px
 *  left: page inset (16px)
 *
 *  When there is no menu, element is centered
 */
.input, .select {
  background-color: transparent;
  border-color: #909090;
  border-style: solid;
  border-width: 0 0 1px;
  border-radius: 0; }
  .input:not([blank]), .select:not([blank]) {
    border-color: black; }
  .input:not(:blank), .select:not(:blank) {
    border-color: black; }

.input--hero, .select--primary {
  border-width: 0 0 2px; }

.input--hero::-moz-placeholder, .input--hero-search::-moz-placeholder {
  font-size: inherit; }

.input--hero::placeholder, .input--hero-search::placeholder {
  font-size: inherit; }

/* Mixin to use if touch devices design is specified */
/* Ignore, hover Device with limited pointing accuracy (touch) */
/**
 * Hide scrollbars during width/height transition with keyframes
 * Source: https://css-tricks.com/hide-scrollbars-during-an-animation/
 */
@keyframes hide-scroll {
  from,
  to {
    overflow-y: hidden; } }

/*
 * Returns a transition with one or multiple properties and common speed, curve and delay.
 * @param {String,List} string with the property, or each value of the list is a property
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 * Examples of use:
 * @include byl-transition((border-color));
 * @include byl-transition((border-color, height), speed(t2));
 * @include byl-transition((border-color, height), null, curve(ease3));
*/
/*
 * Returns a transition with multiple properties and independent speed, curve and delay.
 * @param {List} each value of the list is in turn a list for each transition properties and values
 * Expected order in each transition will be property, speed, curve and delay
 * Examples of use:
 * @include byl-complex-transition((height, speed(t3)), (opacity, null, curve(ease3)));
*/
/*
 * Returns a set of selectors to apply some interaction styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Returns a set of selectors to apply some interaction active styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Adds content for an interaction state
*/
/**
 * The product tiles grows with the columns of the product grid. These columns
 * are defined using bootstrap:
 *
 * >=0     2 columns
 * >=768   4 columns
 *
 * Because of this, the design considers two product tile sizes (S, L) to define
 * the look&feel of the tiles depending on the space that those columns leave to
 * grow to a tile
 *
 * >=0     tileS  - non-fluid
 * >=375   tileS  ---- fluid ---> 767 tileL
 * >=768   tileS  - non-fluid
 * >=1025  tileS  ---- fluid ---> 1920 tileL
 * >=1920  tileL  - non-fluid
 *
 * This mixin eases the task of defining the fluid values of a property for
 * these workflow
 *
 * @param {string} $property - Property name
 * @param {any} $small-tile-value - Property vale for a tile of size S
 * @param {any} $big-tile-value - Property vale for a tile of size L
 */
.article {
  /* stylelint-disable */
  --uses-typography: 'article-base';
  color: black;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  /* stylelint-enable */ }
  @media (min-width: 575px) {
    .article {
      font-size: calc(0.00149 * 100vw + 11.14498px); } }
  @media (min-width: 1920px) {
    .article {
      font-size: 0.875rem; } }
  @media (min-width: 1025px) {
    .article {
      margin-right: 8%; } }
  .article table {
    border-bottom: 1px solid black; }
    .article table table {
      border-bottom: 0; }
  .article p {
    margin: 0; }
  .article .table-content {
    padding-top: 16px; }
    @media (min-width: 1025px) {
      .article .table-content {
        padding-top: 8px; } }
    .article .table-content > div {
      padding-bottom: 8px; }
      @media (min-width: 1025px) {
        .article .table-content > div {
          padding-bottom: 4px; } }
  .article tr:last-child td {
    border-bottom: 0; }
  .article__nav {
    /* stylelint-disable */
    --uses-typography: 'article-page-subtitle';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    margin-top: 0;
    margin-bottom: 48px;
    padding-left: 0;
    list-style-type: none; }
    @media (min-width: 575px) {
      .article__nav {
        font-size: calc(0.00372 * 100vw + 15.86245px); } }
    @media (min-width: 1920px) {
      .article__nav {
        font-size: 1.4375rem; } }
    @media (min-width: 810px) {
      .article__nav {
        margin-bottom: 48px; } }
    .article__nav li:hover {
      text-decoration: underline;
      cursor: pointer; }
    .article__nav li:last-child {
      padding: 0; }
  .article__submenu {
    position: relative; }
  .article__title {
    /* stylelint-disable */
    --uses-typography: 'article-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.3125rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    margin: 0;
    padding: 0 0 24px; }
    @media (min-width: 575px) {
      .article__title {
        font-size: calc(0.0052 * 100vw + 18.00743px); } }
    @media (min-width: 1920px) {
      .article__title {
        font-size: 0.875rem; } }
  .article__subtitle {
    /* stylelint-disable */
    --uses-typography: 'article-subtitle';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    padding-top: 32px; }
    @media (min-width: 575px) {
      .article__subtitle {
        font-size: calc(0.00372 * 100vw + 15.86245px); } }
    @media (min-width: 1920px) {
      .article__subtitle {
        font-size: 1.4375rem; } }
    .article__subtitle > p {
      margin-top: 0; }
  .article__address > p {
    margin: 6px 0; }
  .article__text {
    padding-top: 16px; }
    .article__text .indent {
      margin-top: 12px; }
    .article__text:last-child,
    .article__text:last-child p:last-child {
      padding-bottom: 0; }
    .article__text p {
      padding-bottom: 8px; }
    .article__text > p + .article-table {
      /* Case when article table is between parragraphs */ }
      @media (min-width: 1025px) {
        .article__text > p + .article-table {
          margin-bottom: 16px; } }
  .article__block {
    margin-bottom: 0; }
    .article__block:last-child {
      margin-bottom: 0; }
    .article__block p {
      padding-bottom: 8px; }
  .article__block-title {
    /* stylelint-disable */
    --uses-typography: 'article-block-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    padding-top: 6px;
    padding-bottom: 0; }
    @media (min-width: 575px) {
      .article__block-title {
        font-size: calc(0.00149 * 100vw + 11.14498px); } }
    @media (min-width: 1920px) {
      .article__block-title {
        font-size: 0.875rem; } }
  .article__block-text .title {
    margin-top: 8px; }
    @media (min-width: 1025px) {
      .article__block-text .title {
        margin-top: 4px; } }
  .article__block-text .indent {
    margin-top: 0; }
  .article__scroll-to-top {
    position: sticky;
    bottom: 80px;
    display: none;
    width: 24px;
    height: 40px;
    margin-left: auto;
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 19 40" style="enable-background:new 0 0 19 40;"><style type="text/css">.st0{fill:none;stroke:black;stroke-width:3;}</style><line id="Line" class="st0" x1="9.5" y1="40.5" x2="9.5" y2="2.5"/><polyline id="Line-2" class="st0" points="1.5,10.5 9.5,2.5 17.5,10.5 "/></svg>');
    background-repeat: no-repeat;
    background-position: center; }
    @media (max-width: 574px) {
      .article__scroll-to-top {
        overflow: visible; }
        .article__scroll-to-top::after {
          --hotzone-margins: 8px;
          position: absolute;
          top: calc(-1 * var(--hotzone-margins));
          left: calc(-1 * var(--hotzone-margins));
          width: calc(100% + (2 * var(--hotzone-margins)));
          height: calc(100% + (2 * var(--hotzone-margins)));
          content: '';
          background: transparent; } }
    @media (min-width: 1025px) {
      .article__scroll-to-top {
        margin-left: calc(100% - 8%); } }
    @media (min-width: 1920px) {
      .article__scroll-to-top {
        margin-left: calc(70% - 24px); } }
    .article__scroll-to-top:hover {
      cursor: pointer; }
    .article__scroll-to-top[data-is-visible='true'] {
      display: block; }
  .article__overflow {
    max-width: 100%;
    padding-bottom: 16px;
    overflow-x: auto; }
    @media (min-width: 1280px) {
      .article__overflow {
        padding-bottom: 0; } }
  .article__table-content + .article__table-content {
    padding-top: 16px; }
  .article__table-content {
    padding-top: 16px; }
  .article__table-title {
    /* stylelint-disable */
    --uses-typography: 'article-table-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    padding-bottom: 16px; }
    @media (min-width: 1025px) {
      .article__table-title {
        font-size: 1.3125rem; } }
    .article__table-title p {
      padding: 0; }
  @media (min-width: 1025px) {
    .article--sizes {
      margin-right: 0; } }

.article-accordion__button {
  /* stylelint-disable */
  --uses-typography: 'article-accordion-button';
  color: black;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  /* stylelint-enable */
  width: 100%;
  padding: 8px 0;
  text-align: left;
  border-bottom: 1px solid #a8a8a8; }
  .article-accordion__button.u-btn-clean {
    border-bottom: 1px solid #a8a8a8; }
  .article-accordion__button::after {
    float: right;
    content: '+'; }
  .article-accordion__button[\:has\(\%2B\%20.article-accordion__content.interaction-active\)]::after {
    content: '-'; }
  .article-accordion__button:has(+ .article-accordion__content.interaction-active)::after {
    content: '-'; }

.article-accordion__content {
  margin: 24px 0; }

.article-accordion__content-title {
  /* stylelint-disable */
  --uses-typography: 'article-accordion-content-title';
  color: black;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .article-accordion__content-title {
      font-size: 0.8125rem; } }

.article-accordion__content-text {
  /* stylelint-disable */
  --uses-typography: 'article-accordion-content-text';
  color: black;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 500;
  /* stylelint-enable */ }
  .article-accordion__content-text p:not(:last-of-type) {
    margin-bottom: 12px; }
  .article-accordion__content-text a {
    color: black; }

.article-accordion__content-title + .article-accordion__content-text {
  margin-top: 12px; }

.article-accordion__content-text + .article-accordion__content-title {
  margin-top: 24px; }
  @media (min-width: 1025px) {
    .article-accordion__content-text + .article-accordion__content-title {
      margin-top: 32px; } }

/**
 * Returns a new string with some or all matches of a pattern replaced by a replacement
 * @param {String} $string - Initial string
 * @param {String} $search - Value to replace
 * @param {String} $replace - Replacement
 * @return {String} New string
 */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * Returns a curve from the $transition-curves list
 */
/**
 * Returns a speed from the $transition-times list
 */
/**
 * Returns a transition string
 * used internally by byl-transition and byl-complex-transition mixins
 * @param {string} property - property to be transitioned (i.e. width)
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 */
/* -------------------------------------------------------------------------- *\
 *  INSETS
 * --------------------------------------------------------------------------
 *  An inset offers indents content on all four sides like the matte of the
 *  framed photo on a wall
 *
 *  $inset-X : a b;
 *  $inset-stack-X : a;
 *  $inset-inline-X : b;
 *
 *  -----------------------
 *  |          a          |
 *  |   ---------------   |
 *  | b |             | b |
 *  |   ---------------   |
 *  |          a          |
 *  -----------------------
 *
\* -------------------------------------------------------------------------- */
/**
 * @tokens Inset Block
 * @presenter Spacing
 */
/**
 * @tokens Inset Inline
 * @presenter Spacing
 */
/**
 * @tokens Insets
 * @presenter Spacing
 */
/* -------------------------------------------------------------------------- *\
 *  Main header
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Footer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Main content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Landing pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Account pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Form Login content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Product Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Cart/Minicart
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Article pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Home Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Customizer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  CTA static buttons
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  IOS navigator bottom spacing
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Rest of variables
 * -------------------------------------------------------------------------- */
/*
 * Colors
 * (Named using "Name that color") - http://chir.ag/projects/name-that-color
 * -------------------------------------------------------------------------- */
/**
 * @tokens Colors Base
 * @presenter Color
 */
/**
 * @tokens Colors Promo
 * @presenter Color
 */
/**
 * @tokens Colors System
 * @presenter Color
 */
/**
 * @tokens Colors Others
 * @presenter Color
 */
/*
$color__black: hsl(0, 0%, 0%);          // #000
$color__white: hsl(0, 0%, 100%);        // #fff

$color__nero: hsl(0, 0%, 14%);         //#242424
$color__matterhorn: hsl(0, 0%, 33%);         //#555555
$color__dark-gray: hsl(0, 0%, 66%);         //#A8A8A8
$color__gray: hsl(0, 0%, 78%);         //#C8C8C8
$color__white-smoke: hsl(0, 0%, 96%);         //#F4F4F4

$color__black20: hsla(0, 0%, 0%, 0.2);    //rgba(255, 255, 255, 20)
$color__gray50: hsla(0, 0%, 78%, 0.5);   //rgba(200, 200, 200, 50)

// Promo colors
$color__green: hsl(132, 100%, 49%);     // #00F830
$color__cookie: $color__green;
$color__red: hsl(0, 100%, 50%);       // #f00
$color__red-campaign: $color__red;
$color__international-orange: hsl(19, 100%, 50%);      // #ff5200
$color__sales: $color__international-orange;
$color__yellow: hsl(60, 100%, 50%);      // #FFFF00
$color__razzle-dazzle-rose: hsl(310, 100%, 64%);     // #FF45E0
$color__who-we-are: $color__razzle-dazzle-rose;

/// --------------------------------------------------------------------------
///    Old palette
/// --------------------------------------------------------------------------
$color__alabaster: hsl(0, 0%, 98%);         // #fafafa;
$color__alto: hsla(0, 0%, 0%, 0.33);   // #00000054 = #d3d3d3;
$color__blue: hsl(231, 100%, 50%);     // #0026FF
$color__silver: hsl(0, 0%, 51%);         // #838383
$color__early-dawn: hsl(44, 100%, 95%);      // #fff9e8
$color__orange: hsl(30, 100%, 53%);      // #ff8810
$color__malachite: hsl(122, 69%, 51%);      // #2dd933
$color__violet: hsl(275, 77%, 15%);      // #2c0945
$color__royal-blue: hsl(229, 73.1%, 57.6%);  // #4462e2
$color__sunset-orange: hsl(0, 100%, 64.7%);     // #ff4b4b
$color__transparent: hsla(360, 100%, 100%, 0); //rgba(255, 255, 255, 0)

//Social networks
$color__facebook: $color__royal-blue;
$color__google: $color__sunset-orange;
*/
/* 1025 is used instead of 1024 because touch devices design is not specified */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * @tokens Font Families
 * @presenter FontFamily
 */
/** System monospace */
/**
 * @tokens Font Weights
 * @presenter FontWeight
 */
/**
 * @tokens Font Sizes
 * @presenter FontSize
 */
/**
 * @tokens Line Height
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* Scrollbars customization */
/* Custom width */
/* Custom width */
/*
  NOTE: Setup the svg.
    1- export the svg from the sketch in abstract
    2- go to optimizer, https://jakearchibald.github.io/svgomg/
    3- Copy source, check if need to have some changes in the path or fill.
*/
/**
 * Payment cards used in account, visa, mastercard,
 */
/**
 * Returns an url encoded SVG with the given color
 * @param {String} $icon - SVG code
 * @param {String} $fill-color - Fill color
 * @param {String} $stroke-color - Stroke color
 * @return {String} URL encoded svg
 */
/* -------------------------------------------------------------------------- *\
==============
| The Search |
==============
MOBILE:  Header < Search            PDPModals must hide the main header
                                    to show only a back button (as APP)
                                    Reference: SF-7800
------------------------------------------------------------------------
TABLET:                             no relevance
------------------------------------------------------------------------
DESKTOP: Header > Search            Subcategories must be viewed over
                                    the search form and its results
                                    Reference: SF-11932
\* -------------------------------------------------------------------------- */
/* $theme-colors: map-merge(
    (
      "primary":    $primary,
      "secondary":  $secondary,
      "success":    $success,
      "info":       $info,
      "warning":    $warning,
      "danger":     $danger,
      "light":      $light,
      "dark":       $dark
    ),
    $theme-colors
); */
/*
$carousel-control-prev-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 7 7'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
$carousel-control-next-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
*/
/*
 * https://allyjs.io/tutorials/hiding-elements.html#2017-edition-of-visuallyhidden
 */
/**
 * Extends click zone by adding a pseudo overflowing on the element
 *
 * @param $margins: size overflowing the click zone
 * @param $pseudo: the pseudo where attach the hotzone
 * @param $debug: just to see the zone added
 */
/**
 * Calculate button icon size based on capital height
 *
 * $margin: 4px by default ($inset-inline-xxs)
 *
 * $icon-side: left or right (right by default) to apply margin properly
 *
 * $capital-height: (em) height of capital characters, in FK Grotesk is 0.72em
 **/
/**
 *  FLOATING ELEMENTS
 * --------------------------------------------------------------------------
 *  Works from 0 to 575px breakpoints.
 *
 *  Element with is equal to 100vw subtracting
 *    1. Page inset left: 16px
 *    2. Menu with: 45px
 *    3. Space between menu and element: 24px
 *    4. Menu right position: 8px
 *  Even if menu isn't present
 *
 *  bottom: menu offset bottom (24px) + 4px
 *
 *  When the element coexists with the floating menu on mobile:
 *  right: 24px + menu width (45px) + 8px
 *  left: page inset (16px)
 *
 *  When there is no menu, element is centered
 */
.input, .select {
  background-color: transparent;
  border-color: #909090;
  border-style: solid;
  border-width: 0 0 1px;
  border-radius: 0; }
  .input:not([blank]), .select:not([blank]) {
    border-color: black; }
  .input:not(:blank), .select:not(:blank) {
    border-color: black; }

.input--hero, .select--primary {
  border-width: 0 0 2px; }

.input--hero::-moz-placeholder, .input--hero-search::-moz-placeholder {
  font-size: inherit; }

.input--hero::placeholder, .input--hero-search::placeholder {
  font-size: inherit; }

/* Mixin to use if touch devices design is specified */
/* Ignore, hover Device with limited pointing accuracy (touch) */
/**
 * Hide scrollbars during width/height transition with keyframes
 * Source: https://css-tricks.com/hide-scrollbars-during-an-animation/
 */
@keyframes hide-scroll {
  from,
  to {
    overflow-y: hidden; } }

/*
 * Returns a transition with one or multiple properties and common speed, curve and delay.
 * @param {String,List} string with the property, or each value of the list is a property
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 * Examples of use:
 * @include byl-transition((border-color));
 * @include byl-transition((border-color, height), speed(t2));
 * @include byl-transition((border-color, height), null, curve(ease3));
*/
/*
 * Returns a transition with multiple properties and independent speed, curve and delay.
 * @param {List} each value of the list is in turn a list for each transition properties and values
 * Expected order in each transition will be property, speed, curve and delay
 * Examples of use:
 * @include byl-complex-transition((height, speed(t3)), (opacity, null, curve(ease3)));
*/
/*
 * Returns a set of selectors to apply some interaction styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Returns a set of selectors to apply some interaction active styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Adds content for an interaction state
*/
/**
 * The product tiles grows with the columns of the product grid. These columns
 * are defined using bootstrap:
 *
 * >=0     2 columns
 * >=768   4 columns
 *
 * Because of this, the design considers two product tile sizes (S, L) to define
 * the look&feel of the tiles depending on the space that those columns leave to
 * grow to a tile
 *
 * >=0     tileS  - non-fluid
 * >=375   tileS  ---- fluid ---> 767 tileL
 * >=768   tileS  - non-fluid
 * >=1025  tileS  ---- fluid ---> 1920 tileL
 * >=1920  tileL  - non-fluid
 *
 * This mixin eases the task of defining the fluid values of a property for
 * these workflow
 *
 * @param {string} $property - Property name
 * @param {any} $small-tile-value - Property vale for a tile of size S
 * @param {any} $big-tile-value - Property vale for a tile of size L
 */
.article-grid-table {
  display: grid;
  grid-template-columns: 100%;
  width: 100%;
  padding-bottom: 8px; }
  @media (min-width: 1025px) {
    .article-grid-table {
      padding-bottom: 4px; } }
  .article-grid-table p {
    margin: 0; }
  .article-grid-table__content {
    padding-bottom: 8px; }
    .article-grid-table__content .headline {
      display: inline-block;
      margin-right: 6px; }
    .article-grid-table__content > p {
      padding-bottom: 0; }
    .article-grid-table__content:last-child {
      padding-bottom: 0; }
  .article-grid-table__cell {
    padding: 6px 0;
    border-bottom: 1px solid black; }
  @media (min-width: 1025px) {
    .article-grid-table__mobile {
      display: none; } }
  .article-grid-table__desktop-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 0;
    border-bottom: 1px solid black; }
    @media (min-width: 1025px) {
      .article-grid-table__desktop-cell {
        flex-direction: row;
        align-items: center; } }
  .article-grid-table__desktop-content {
    padding-bottom: 12px; }
    @media (min-width: 1025px) {
      .article-grid-table__desktop-content {
        min-width: 80%;
        padding-right: 12px;
        padding-bottom: 0; }
        .article-grid-table__desktop-content:first-child {
          min-width: 25%; } }
    .article-grid-table__desktop-content:last-child {
      padding-right: 0;
      word-break: break-word; }
  .article-grid-table .table-md {
    margin-top: 12px;
    text-align: left;
    border-bottom: 0; }
    .article-grid-table .table-md th {
      width: 25%;
      padding-bottom: 6px; }
    .article-grid-table .table-md td {
      padding-bottom: 6px; }
      .article-grid-table .table-md td:last-child {
        padding-bottom: 0; }

.article-home {
  width: 100%;
  padding: 0 16px; }
  @media (min-width: 1025px) {
    .article-home {
      padding: 0 32px; } }
  .article-home__title {
    /* stylelint-disable */
    --uses-typography: 'article-home-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
    /* stylelint-enable */
    align-self: flex-start;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    margin: 32px 0; }
    @media (min-width: 1025px) {
      .article-home__title {
        font-size: 2.625rem; } }
    @media (min-width: 1025px) {
      .article-home__title {
        margin: 64px 0 80px; } }
  .article-home__content {
    display: grid;
    grid-auto-rows: 1fr;
    grid-template: 1fr / 1fr 1fr;
    grid-gap: 8px;
    gap: 8px;
    align-self: center;
    width: 100%; }
    @media (min-width: 1025px) {
      .article-home__content {
        grid-template: 1fr / 1fr 1fr 1fr 1fr;
        grid-gap: 16px;
        gap: 16px;
        max-width: 83rem; } }
  .article-home .content-asset {
    display: flex;
    flex-direction: column; }

.article-home-card {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
  padding: 12px 8px;
  background-color: whitesmoke; }
  .article-home-card__title {
    /* stylelint-disable */
    --uses-typography: 'article-home-card-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 9.375rem;
    text-decoration: none; }
    @media (min-width: 1025px) {
      .article-home-card__title {
        font-size: 1.125rem; } }
  .article-home-card__text {
    /* stylelint-disable */
    --uses-typography: 'article-home-card-text';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    /* stylelint-enable */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 9.375rem;
    margin: 0;
    text-decoration: none; }

/**
 * Returns a new string with some or all matches of a pattern replaced by a replacement
 * @param {String} $string - Initial string
 * @param {String} $search - Value to replace
 * @param {String} $replace - Replacement
 * @return {String} New string
 */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * Returns a curve from the $transition-curves list
 */
/**
 * Returns a speed from the $transition-times list
 */
/**
 * Returns a transition string
 * used internally by byl-transition and byl-complex-transition mixins
 * @param {string} property - property to be transitioned (i.e. width)
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 */
/* -------------------------------------------------------------------------- *\
 *  INSETS
 * --------------------------------------------------------------------------
 *  An inset offers indents content on all four sides like the matte of the
 *  framed photo on a wall
 *
 *  $inset-X : a b;
 *  $inset-stack-X : a;
 *  $inset-inline-X : b;
 *
 *  -----------------------
 *  |          a          |
 *  |   ---------------   |
 *  | b |             | b |
 *  |   ---------------   |
 *  |          a          |
 *  -----------------------
 *
\* -------------------------------------------------------------------------- */
/**
 * @tokens Inset Block
 * @presenter Spacing
 */
/**
 * @tokens Inset Inline
 * @presenter Spacing
 */
/**
 * @tokens Insets
 * @presenter Spacing
 */
/* -------------------------------------------------------------------------- *\
 *  Main header
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Footer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Main content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Landing pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Account pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Form Login content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Product Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Cart/Minicart
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Article pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Home Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Customizer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  CTA static buttons
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  IOS navigator bottom spacing
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Rest of variables
 * -------------------------------------------------------------------------- */
/*
 * Colors
 * (Named using "Name that color") - http://chir.ag/projects/name-that-color
 * -------------------------------------------------------------------------- */
/**
 * @tokens Colors Base
 * @presenter Color
 */
/**
 * @tokens Colors Promo
 * @presenter Color
 */
/**
 * @tokens Colors System
 * @presenter Color
 */
/**
 * @tokens Colors Others
 * @presenter Color
 */
/*
$color__black: hsl(0, 0%, 0%);          // #000
$color__white: hsl(0, 0%, 100%);        // #fff

$color__nero: hsl(0, 0%, 14%);         //#242424
$color__matterhorn: hsl(0, 0%, 33%);         //#555555
$color__dark-gray: hsl(0, 0%, 66%);         //#A8A8A8
$color__gray: hsl(0, 0%, 78%);         //#C8C8C8
$color__white-smoke: hsl(0, 0%, 96%);         //#F4F4F4

$color__black20: hsla(0, 0%, 0%, 0.2);    //rgba(255, 255, 255, 20)
$color__gray50: hsla(0, 0%, 78%, 0.5);   //rgba(200, 200, 200, 50)

// Promo colors
$color__green: hsl(132, 100%, 49%);     // #00F830
$color__cookie: $color__green;
$color__red: hsl(0, 100%, 50%);       // #f00
$color__red-campaign: $color__red;
$color__international-orange: hsl(19, 100%, 50%);      // #ff5200
$color__sales: $color__international-orange;
$color__yellow: hsl(60, 100%, 50%);      // #FFFF00
$color__razzle-dazzle-rose: hsl(310, 100%, 64%);     // #FF45E0
$color__who-we-are: $color__razzle-dazzle-rose;

/// --------------------------------------------------------------------------
///    Old palette
/// --------------------------------------------------------------------------
$color__alabaster: hsl(0, 0%, 98%);         // #fafafa;
$color__alto: hsla(0, 0%, 0%, 0.33);   // #00000054 = #d3d3d3;
$color__blue: hsl(231, 100%, 50%);     // #0026FF
$color__silver: hsl(0, 0%, 51%);         // #838383
$color__early-dawn: hsl(44, 100%, 95%);      // #fff9e8
$color__orange: hsl(30, 100%, 53%);      // #ff8810
$color__malachite: hsl(122, 69%, 51%);      // #2dd933
$color__violet: hsl(275, 77%, 15%);      // #2c0945
$color__royal-blue: hsl(229, 73.1%, 57.6%);  // #4462e2
$color__sunset-orange: hsl(0, 100%, 64.7%);     // #ff4b4b
$color__transparent: hsla(360, 100%, 100%, 0); //rgba(255, 255, 255, 0)

//Social networks
$color__facebook: $color__royal-blue;
$color__google: $color__sunset-orange;
*/
/* 1025 is used instead of 1024 because touch devices design is not specified */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * @tokens Font Families
 * @presenter FontFamily
 */
/** System monospace */
/**
 * @tokens Font Weights
 * @presenter FontWeight
 */
/**
 * @tokens Font Sizes
 * @presenter FontSize
 */
/**
 * @tokens Line Height
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* Scrollbars customization */
/* Custom width */
/* Custom width */
/*
  NOTE: Setup the svg.
    1- export the svg from the sketch in abstract
    2- go to optimizer, https://jakearchibald.github.io/svgomg/
    3- Copy source, check if need to have some changes in the path or fill.
*/
/**
 * Payment cards used in account, visa, mastercard,
 */
/**
 * Returns an url encoded SVG with the given color
 * @param {String} $icon - SVG code
 * @param {String} $fill-color - Fill color
 * @param {String} $stroke-color - Stroke color
 * @return {String} URL encoded svg
 */
/* -------------------------------------------------------------------------- *\
==============
| The Search |
==============
MOBILE:  Header < Search            PDPModals must hide the main header
                                    to show only a back button (as APP)
                                    Reference: SF-7800
------------------------------------------------------------------------
TABLET:                             no relevance
------------------------------------------------------------------------
DESKTOP: Header > Search            Subcategories must be viewed over
                                    the search form and its results
                                    Reference: SF-11932
\* -------------------------------------------------------------------------- */
/* $theme-colors: map-merge(
    (
      "primary":    $primary,
      "secondary":  $secondary,
      "success":    $success,
      "info":       $info,
      "warning":    $warning,
      "danger":     $danger,
      "light":      $light,
      "dark":       $dark
    ),
    $theme-colors
); */
/*
$carousel-control-prev-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 7 7'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
$carousel-control-next-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
*/
/*
 * https://allyjs.io/tutorials/hiding-elements.html#2017-edition-of-visuallyhidden
 */
/**
 * Extends click zone by adding a pseudo overflowing on the element
 *
 * @param $margins: size overflowing the click zone
 * @param $pseudo: the pseudo where attach the hotzone
 * @param $debug: just to see the zone added
 */
/**
 * Calculate button icon size based on capital height
 *
 * $margin: 4px by default ($inset-inline-xxs)
 *
 * $icon-side: left or right (right by default) to apply margin properly
 *
 * $capital-height: (em) height of capital characters, in FK Grotesk is 0.72em
 **/
/**
 *  FLOATING ELEMENTS
 * --------------------------------------------------------------------------
 *  Works from 0 to 575px breakpoints.
 *
 *  Element with is equal to 100vw subtracting
 *    1. Page inset left: 16px
 *    2. Menu with: 45px
 *    3. Space between menu and element: 24px
 *    4. Menu right position: 8px
 *  Even if menu isn't present
 *
 *  bottom: menu offset bottom (24px) + 4px
 *
 *  When the element coexists with the floating menu on mobile:
 *  right: 24px + menu width (45px) + 8px
 *  left: page inset (16px)
 *
 *  When there is no menu, element is centered
 */
.input, .select {
  background-color: transparent;
  border-color: #909090;
  border-style: solid;
  border-width: 0 0 1px;
  border-radius: 0; }
  .input:not([blank]), .select:not([blank]) {
    border-color: black; }
  .input:not(:blank), .select:not(:blank) {
    border-color: black; }

.input--hero, .select--primary {
  border-width: 0 0 2px; }

.input--hero::-moz-placeholder, .input--hero-search::-moz-placeholder {
  font-size: inherit; }

.input--hero::placeholder, .input--hero-search::placeholder {
  font-size: inherit; }

/* Mixin to use if touch devices design is specified */
/* Ignore, hover Device with limited pointing accuracy (touch) */
/**
 * Hide scrollbars during width/height transition with keyframes
 * Source: https://css-tricks.com/hide-scrollbars-during-an-animation/
 */
@keyframes hide-scroll {
  from,
  to {
    overflow-y: hidden; } }

/*
 * Returns a transition with one or multiple properties and common speed, curve and delay.
 * @param {String,List} string with the property, or each value of the list is a property
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 * Examples of use:
 * @include byl-transition((border-color));
 * @include byl-transition((border-color, height), speed(t2));
 * @include byl-transition((border-color, height), null, curve(ease3));
*/
/*
 * Returns a transition with multiple properties and independent speed, curve and delay.
 * @param {List} each value of the list is in turn a list for each transition properties and values
 * Expected order in each transition will be property, speed, curve and delay
 * Examples of use:
 * @include byl-complex-transition((height, speed(t3)), (opacity, null, curve(ease3)));
*/
/*
 * Returns a set of selectors to apply some interaction styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Returns a set of selectors to apply some interaction active styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Adds content for an interaction state
*/
/**
 * The product tiles grows with the columns of the product grid. These columns
 * are defined using bootstrap:
 *
 * >=0     2 columns
 * >=768   4 columns
 *
 * Because of this, the design considers two product tile sizes (S, L) to define
 * the look&feel of the tiles depending on the space that those columns leave to
 * grow to a tile
 *
 * >=0     tileS  - non-fluid
 * >=375   tileS  ---- fluid ---> 767 tileL
 * >=768   tileS  - non-fluid
 * >=1025  tileS  ---- fluid ---> 1920 tileL
 * >=1920  tileL  - non-fluid
 *
 * This mixin eases the task of defining the fluid values of a property for
 * these workflow
 *
 * @param {string} $property - Property name
 * @param {any} $small-tile-value - Property vale for a tile of size S
 * @param {any} $big-tile-value - Property vale for a tile of size L
 */
@media (min-width: 810px) {
  .main.main--moreinfo,
  .main.main--contact {
    display: flex;
    align-items: stretch; } }

.article-page {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 12px;
  word-break: break-word; }
  @media (min-width: 768px) {
    .article-page {
      padding: 24px 12px; } }
  @media (min-width: 810px) {
    .article-page {
      flex-direction: row;
      margin: 80px 0;
      padding: 0 12px; } }
  @media (min-width: 1025px) {
    .article-page {
      padding: 0 24px; } }
  @media (min-width: 1280px) {
    .article-page {
      padding: 0 32px; } }
  .article-page .nav-menu {
    overflow: -moz-scrollbars-none;
    list-style: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: calc(100% + (2 * 12px));
    margin-left: -12px;
    padding-bottom: 24px;
    overflow-x: auto; }
    .article-page .nav-menu::-webkit-scrollbar {
      display: none; }
    @media (min-width: 810px) {
      .article-page .nav-menu {
        width: auto;
        margin-right: 8%;
        margin-left: 0;
        padding-bottom: 0;
        overflow-x: visible; } }
    .article-page .nav-menu .content-asset {
      height: 100%; }
  .article-page .content {
    flex-grow: 1;
    max-width: 590px;
    margin-bottom: 0; }
    @media (min-width: 1025px) {
      .article-page .content {
        max-width: calc(0.40223 * 100vw + 177.7095px); } }
    @media (min-width: 1920px) {
      .article-page .content {
        max-width: 950px; } }
    .article-page .content .content-asset {
      display: flex;
      flex-direction: column;
      justify-content: flex-start; }
  .article-page .help-modal-menu {
    display: flex;
    flex-direction: row;
    grid-gap: 8px;
    gap: 8px;
    justify-content: flex-start;
    margin: 0;
    padding: 0 0 0 16px;
    white-space: nowrap;
    list-style: none; }
    @media (min-width: 810px) {
      .article-page .help-modal-menu {
        position: sticky;
        top: calc(var(--header-total-height) + 80px);
        z-index: 1;
        flex-direction: column;
        grid-gap: 0;
        gap: 0;
        padding: 0; }
        .article-page .help-modal-menu > li {
          margin-bottom: -2px; } }
    .article-page .help-modal-menu .selected:not(li) {
      color: black;
      background: rgba(200, 200, 200, 0.5);
      border-radius: 50px;
      pointer-events: none; }
    @media (min-width: 810px) {
      .article-page .help-modal-menu .outstanding {
        margin-top: 32px; } }
    @media (min-width: 810px) {
      .article-page .help-modal-menu .outstanding-down {
        margin-bottom: 32px; } }
    .article-page .help-modal-menu .tab-none {
      display: none; }
    .article-page .help-modal-menu a {
      /* stylelint-disable */
      --uses-typography: 'article-nav-link';
      font-family: "FKGrotesk", "Arial", sans-serif;
      font-size: 0.875rem;
      font-style: normal;
      font-weight: 900;
      text-decoration: none;
      text-transform: uppercase;
      /* stylelint-enable */
      padding: 4px 8px; }
      @media (min-width: 575px) {
        .article-page .help-modal-menu a {
          font-size: calc(0.01036 * 100vw + 8.04145px); } }
      @media (min-width: 810px) {
        .article-page .help-modal-menu a {
          font-size: 1.3125rem; } }
      @media (min-width: 1025px) {
        .article-page .help-modal-menu a {
          font-size: calc(0.00447 * 100vw + 16.41899px); } }
      @media (min-width: 1920px) {
        .article-page .help-modal-menu a {
          font-size: 1.5625rem; } }
      @media (min-width: 810px) {
        .article-page .help-modal-menu a {
          padding: 0 8px; } }
  .article-page .menu-link {
    /* stylelint-disable */
    --uses-typography: 'article-menu-link';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    padding: 0 12px;
    text-decoration: none; }
    @media (min-width: 575px) {
      .article-page .menu-link {
        font-size: calc(0.0052 * 100vw + 18.00743px); } }
    @media (min-width: 1920px) {
      .article-page .menu-link {
        font-size: 1.75rem; } }
    @media (min-width: 768px) {
      .article-page .menu-link {
        padding: 0 16px; } }
    @media (min-width: 810px) {
      .article-page .menu-link {
        padding: 0 32px; } }
    @media (min-width: 810px) {
      .article-page .menu-link {
        padding: 0; } }
  .article-page .tabs__tablist {
    margin-top: 0;
    margin-bottom: 32px; }
  .article-page .article {
    /* stylelint-disable */
    --uses-typography: 'article-page-base';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.0625rem;
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .article-page .article {
        font-size: calc(0.00223 * 100vw + 9.7095px); } }
    @media (min-width: 1920px) {
      .article-page .article {
        font-size: 0.875rem; } }
    @media (min-width: 1920px) {
      .article-page .article__block {
        width: 75%; } }
    @media (min-width: 810px) {
      .article-page .article__block:first-child .article__subtitle {
        padding-top: 0; } }
    .article-page .article__block-title {
      /* stylelint-disable */
      --uses-typography: 'article-page-block-title';
      color: black;
      font-family: "FKGrotesk", "Arial", sans-serif;
      font-size: 0.75rem;
      font-style: normal;
      font-weight: 900;
      text-transform: uppercase;
      /* stylelint-enable */ }
      @media (min-width: 575px) {
        .article-page .article__block-title {
          font-size: calc(0.00297 * 100vw + 10.28996px); } }
      @media (min-width: 1920px) {
        .article-page .article__block-title {
          font-size: 1rem; } }
    .article-page .article__title {
      display: none;
      padding: 0; }
    .article-page .article__content {
      width: 100%; }
    .article-page .article__nav {
      /* stylelint-disable */
      --uses-typography: 'article-page-nav-text';
      color: black;
      font-family: "FKGrotesk", "Arial", sans-serif;
      font-size: 1.125rem;
      font-style: normal;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.5rem;
      /* stylelint-enable */
      margin-top: 0;
      padding-top: 0; }
      @media (min-width: 575px) {
        .article-page .article__nav {
          font-size: calc(0.00372 * 100vw + 15.86245px); } }
      @media (min-width: 1920px) {
        .article-page .article__nav {
          font-size: 1.4375rem; } }
  .article-page .article__subtitle {
    /* stylelint-disable */
    --uses-typography: 'article-page-subtitle';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */ }
    @media (min-width: 575px) {
      .article-page .article__subtitle {
        font-size: calc(0.00372 * 100vw + 15.86245px); } }
    @media (min-width: 1920px) {
      .article-page .article__subtitle {
        font-size: 1.4375rem; } }
    .article-page .article__subtitle span {
      display: inline-block;
      min-width: 32px; }
      @media (min-width: 810px) {
        .article-page .article__subtitle span {
          min-width: 48px; } }
    .article-page .article__subtitle p {
      line-height: 1.25; }
  .article-page .article__block-title span,
  .article-page .article__nav span {
    display: inline-block;
    min-width: 32px; }
    @media (min-width: 810px) {
      .article-page .article__block-title span,
      .article-page .article__nav span {
        min-width: 48px; } }
  .article-page .tabs__tab {
    /* stylelint-disable */
    --uses-typography: 'article-table-tabs';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */ }
    @media (min-width: 810px) {
      .article-page .tabs__tab {
        font-size: 1.125rem; } }

/**
 * Returns a new string with some or all matches of a pattern replaced by a replacement
 * @param {String} $string - Initial string
 * @param {String} $search - Value to replace
 * @param {String} $replace - Replacement
 * @return {String} New string
 */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * Returns a curve from the $transition-curves list
 */
/**
 * Returns a speed from the $transition-times list
 */
/**
 * Returns a transition string
 * used internally by byl-transition and byl-complex-transition mixins
 * @param {string} property - property to be transitioned (i.e. width)
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 */
/* -------------------------------------------------------------------------- *\
 *  INSETS
 * --------------------------------------------------------------------------
 *  An inset offers indents content on all four sides like the matte of the
 *  framed photo on a wall
 *
 *  $inset-X : a b;
 *  $inset-stack-X : a;
 *  $inset-inline-X : b;
 *
 *  -----------------------
 *  |          a          |
 *  |   ---------------   |
 *  | b |             | b |
 *  |   ---------------   |
 *  |          a          |
 *  -----------------------
 *
\* -------------------------------------------------------------------------- */
/**
 * @tokens Inset Block
 * @presenter Spacing
 */
/**
 * @tokens Inset Inline
 * @presenter Spacing
 */
/**
 * @tokens Insets
 * @presenter Spacing
 */
/* -------------------------------------------------------------------------- *\
 *  Main header
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Footer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Main content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Landing pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Account pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Form Login content
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Product Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Cart/Minicart
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Article pages
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Home Page
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Customizer
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  CTA static buttons
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  IOS navigator bottom spacing
 * -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- *\
 *  Rest of variables
 * -------------------------------------------------------------------------- */
/*
 * Colors
 * (Named using "Name that color") - http://chir.ag/projects/name-that-color
 * -------------------------------------------------------------------------- */
/**
 * @tokens Colors Base
 * @presenter Color
 */
/**
 * @tokens Colors Promo
 * @presenter Color
 */
/**
 * @tokens Colors System
 * @presenter Color
 */
/**
 * @tokens Colors Others
 * @presenter Color
 */
/*
$color__black: hsl(0, 0%, 0%);          // #000
$color__white: hsl(0, 0%, 100%);        // #fff

$color__nero: hsl(0, 0%, 14%);         //#242424
$color__matterhorn: hsl(0, 0%, 33%);         //#555555
$color__dark-gray: hsl(0, 0%, 66%);         //#A8A8A8
$color__gray: hsl(0, 0%, 78%);         //#C8C8C8
$color__white-smoke: hsl(0, 0%, 96%);         //#F4F4F4

$color__black20: hsla(0, 0%, 0%, 0.2);    //rgba(255, 255, 255, 20)
$color__gray50: hsla(0, 0%, 78%, 0.5);   //rgba(200, 200, 200, 50)

// Promo colors
$color__green: hsl(132, 100%, 49%);     // #00F830
$color__cookie: $color__green;
$color__red: hsl(0, 100%, 50%);       // #f00
$color__red-campaign: $color__red;
$color__international-orange: hsl(19, 100%, 50%);      // #ff5200
$color__sales: $color__international-orange;
$color__yellow: hsl(60, 100%, 50%);      // #FFFF00
$color__razzle-dazzle-rose: hsl(310, 100%, 64%);     // #FF45E0
$color__who-we-are: $color__razzle-dazzle-rose;

/// --------------------------------------------------------------------------
///    Old palette
/// --------------------------------------------------------------------------
$color__alabaster: hsl(0, 0%, 98%);         // #fafafa;
$color__alto: hsla(0, 0%, 0%, 0.33);   // #00000054 = #d3d3d3;
$color__blue: hsl(231, 100%, 50%);     // #0026FF
$color__silver: hsl(0, 0%, 51%);         // #838383
$color__early-dawn: hsl(44, 100%, 95%);      // #fff9e8
$color__orange: hsl(30, 100%, 53%);      // #ff8810
$color__malachite: hsl(122, 69%, 51%);      // #2dd933
$color__violet: hsl(275, 77%, 15%);      // #2c0945
$color__royal-blue: hsl(229, 73.1%, 57.6%);  // #4462e2
$color__sunset-orange: hsl(0, 100%, 64.7%);     // #ff4b4b
$color__transparent: hsla(360, 100%, 100%, 0); //rgba(255, 255, 255, 0)

//Social networks
$color__facebook: $color__royal-blue;
$color__google: $color__sunset-orange;
*/
/* 1025 is used instead of 1024 because touch devices design is not specified */
/**
 * Map with all possible units to be used by other utilities (i.e. fluid value)
 */
/**
 * Adds unit to a number
 * @param {Number} $value - Value to add unit to
 * @param {String} $unit - String representation of the unit
 * @return {Number} - `$value` expressed in `$unit`
 */
/**
 * Returns a number without units
 */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/**
 * Returns a px value from a number of rems.
 * Its uses 16px as root font-size
 */
/**
 * Returns a rem value from a map
 */
/**
 * Returns a fluid value between two points in the viewport variable dimension.
 * This linear function can be applied to any property (width, font-size, ...).
 * @param {Number} $v1 - Value at init point - Linear function's Y1
 * @param {Number} $v2 - Value at end point - Linear function's Y2
 * @param {Number} $init - Init point in pixels - Linear function's X1
 * @param {Number} $end - End point in pixels - Linear function's X2
 * @param {Number} $var-dim - Variable dimension: 100vw as default, or 100vh, 100%
 * examples:
 * width: byl-linear-fluid-value(70vw, 58vw, 810px, 1024px);
 * padding-bottom: byl-linear-fluid-value(24px, 48px, 1025px, 1920px, 100%);
 * font-size: byl-linear-fluid-value(1rem, 2rem, 320px, 768px),
 * letter-spacing: byl-linear-fluid-value(0, 1px, 768px, 1024px),
 */
/**
 * @tokens Font Families
 * @presenter FontFamily
 */
/** System monospace */
/**
 * @tokens Font Weights
 * @presenter FontWeight
 */
/**
 * @tokens Font Sizes
 * @presenter FontSize
 */
/**
 * @tokens Line Height
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* @token Border
 * @presenter Spacing
 */
/* Scrollbars customization */
/* Custom width */
/* Custom width */
/*
  NOTE: Setup the svg.
    1- export the svg from the sketch in abstract
    2- go to optimizer, https://jakearchibald.github.io/svgomg/
    3- Copy source, check if need to have some changes in the path or fill.
*/
/**
 * Payment cards used in account, visa, mastercard,
 */
/**
 * Returns an url encoded SVG with the given color
 * @param {String} $icon - SVG code
 * @param {String} $fill-color - Fill color
 * @param {String} $stroke-color - Stroke color
 * @return {String} URL encoded svg
 */
/* -------------------------------------------------------------------------- *\
==============
| The Search |
==============
MOBILE:  Header < Search            PDPModals must hide the main header
                                    to show only a back button (as APP)
                                    Reference: SF-7800
------------------------------------------------------------------------
TABLET:                             no relevance
------------------------------------------------------------------------
DESKTOP: Header > Search            Subcategories must be viewed over
                                    the search form and its results
                                    Reference: SF-11932
\* -------------------------------------------------------------------------- */
/* $theme-colors: map-merge(
    (
      "primary":    $primary,
      "secondary":  $secondary,
      "success":    $success,
      "info":       $info,
      "warning":    $warning,
      "danger":     $danger,
      "light":      $light,
      "dark":       $dark
    ),
    $theme-colors
); */
/*
$carousel-control-prev-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 7 7'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
$carousel-control-next-icon-bg: str-replace(
  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"),
  "#",
  "%23"
);
*/
/*
 * https://allyjs.io/tutorials/hiding-elements.html#2017-edition-of-visuallyhidden
 */
/**
 * Extends click zone by adding a pseudo overflowing on the element
 *
 * @param $margins: size overflowing the click zone
 * @param $pseudo: the pseudo where attach the hotzone
 * @param $debug: just to see the zone added
 */
/**
 * Calculate button icon size based on capital height
 *
 * $margin: 4px by default ($inset-inline-xxs)
 *
 * $icon-side: left or right (right by default) to apply margin properly
 *
 * $capital-height: (em) height of capital characters, in FK Grotesk is 0.72em
 **/
/**
 *  FLOATING ELEMENTS
 * --------------------------------------------------------------------------
 *  Works from 0 to 575px breakpoints.
 *
 *  Element with is equal to 100vw subtracting
 *    1. Page inset left: 16px
 *    2. Menu with: 45px
 *    3. Space between menu and element: 24px
 *    4. Menu right position: 8px
 *  Even if menu isn't present
 *
 *  bottom: menu offset bottom (24px) + 4px
 *
 *  When the element coexists with the floating menu on mobile:
 *  right: 24px + menu width (45px) + 8px
 *  left: page inset (16px)
 *
 *  When there is no menu, element is centered
 */
.input, .select {
  background-color: transparent;
  border-color: #909090;
  border-style: solid;
  border-width: 0 0 1px;
  border-radius: 0; }
  .input:not([blank]), .select:not([blank]) {
    border-color: black; }
  .input:not(:blank), .select:not(:blank) {
    border-color: black; }

.input--hero, .select--primary {
  border-width: 0 0 2px; }

.input--hero::-moz-placeholder, .input--hero-search::-moz-placeholder {
  font-size: inherit; }

.input--hero::placeholder, .input--hero-search::placeholder {
  font-size: inherit; }

/* Mixin to use if touch devices design is specified */
/* Ignore, hover Device with limited pointing accuracy (touch) */
/**
 * Hide scrollbars during width/height transition with keyframes
 * Source: https://css-tricks.com/hide-scrollbars-during-an-animation/
 */
@keyframes hide-scroll {
  from,
  to {
    overflow-y: hidden; } }

/*
 * Returns a transition with one or multiple properties and common speed, curve and delay.
 * @param {String,List} string with the property, or each value of the list is a property
 * @param {number} speed - passed directly or through the speed function (i.e. 150ms or speed(t2))
 * @param {string} curve - passed directly or through the curve function (i.e. linear or curve(ease2))
 * @param {number} delay - passed directly or through the speed function (i.e. 10ms or speed(t1))
 * Examples of use:
 * @include byl-transition((border-color));
 * @include byl-transition((border-color, height), speed(t2));
 * @include byl-transition((border-color, height), null, curve(ease3));
*/
/*
 * Returns a transition with multiple properties and independent speed, curve and delay.
 * @param {List} each value of the list is in turn a list for each transition properties and values
 * Expected order in each transition will be property, speed, curve and delay
 * Examples of use:
 * @include byl-complex-transition((height, speed(t3)), (opacity, null, curve(ease3)));
*/
/*
 * Returns a set of selectors to apply some interaction styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Returns a set of selectors to apply some interaction active styles to,
 * when we need to style the element or its related nodes
*/
/*
 * Adds content for an interaction state
*/
/**
 * The product tiles grows with the columns of the product grid. These columns
 * are defined using bootstrap:
 *
 * >=0     2 columns
 * >=768   4 columns
 *
 * Because of this, the design considers two product tile sizes (S, L) to define
 * the look&feel of the tiles depending on the space that those columns leave to
 * grow to a tile
 *
 * >=0     tileS  - non-fluid
 * >=375   tileS  ---- fluid ---> 767 tileL
 * >=768   tileS  - non-fluid
 * >=1025  tileS  ---- fluid ---> 1920 tileL
 * >=1920  tileL  - non-fluid
 *
 * This mixin eases the task of defining the fluid values of a property for
 * these workflow
 *
 * @param {string} $property - Property name
 * @param {any} $small-tile-value - Property vale for a tile of size S
 * @param {any} $big-tile-value - Property vale for a tile of size L
 */
/*
  THIS PAGE IS OVERWRITING GLOBAL STYLES
  Need it because has a specific structure, typography and margin and paddings
  it going to use the data-querystring to overwrite the page
*/
[data-querystring*='aid=whoweare'] .main,
[data-querystring*='cid=whoweare'] .main,
.article-full .main {
  min-height: 100%; }

[data-querystring*='aid=whoweare'] p,
[data-querystring*='cid=whoweare'] p,
.article-full p {
  margin: 0; }

[data-querystring*='aid=whoweare'] .article-page,
[data-querystring*='cid=whoweare'] .article-page,
.article-full .article-page {
  margin: 0;
  padding: 0; }
  [data-querystring*='aid=whoweare'] .article-page .article__text,
  [data-querystring*='cid=whoweare'] .article-page .article__text,
  .article-full .article-page .article__text {
    margin-bottom: 0; }
    @media (min-width: 575px) {
      [data-querystring*='aid=whoweare'] .article-page .article__text,
      [data-querystring*='cid=whoweare'] .article-page .article__text,
      .article-full .article-page .article__text {
        padding-right: 8%; } }
  [data-querystring*='aid=whoweare'] .article-page .content,
  [data-querystring*='cid=whoweare'] .article-page .content,
  .article-full .article-page .content {
    flex: 1;
    max-width: 100%; }

[data-querystring*='aid=whoweare'] .article,
[data-querystring*='cid=whoweare'] .article,
.article-full .article {
  max-width: 100%;
  margin: 0; }
  [data-querystring*='aid=whoweare'] .article__space,
  [data-querystring*='cid=whoweare'] .article__space,
  .article-full .article__space {
    margin-top: 24px; }
  [data-querystring*='aid=whoweare'] .article__tags,
  [data-querystring*='cid=whoweare'] .article__tags,
  .article-full .article__tags {
    display: none; }
  [data-querystring*='aid=whoweare'] .article__message,
  [data-querystring*='cid=whoweare'] .article__message,
  .article-full .article__message {
    /* stylelint-disable */
    --uses-typography: 'article-message';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.04;
    /* stylelint-enable */
    padding: 32px 16px 80px; }
    @media (min-width: 575px) {
      [data-querystring*='aid=whoweare'] .article__message,
      [data-querystring*='cid=whoweare'] .article__message,
      .article-full .article__message {
        font-size: calc(0.0342 * 100vw + 12.33457px); } }
    @media (min-width: 1025px) {
      [data-querystring*='aid=whoweare'] .article__message,
      [data-querystring*='cid=whoweare'] .article__message,
      .article-full .article__message {
        line-height: 1; } }
    @media (min-width: 1920px) {
      [data-querystring*='aid=whoweare'] .article__message,
      [data-querystring*='cid=whoweare'] .article__message,
      .article-full .article__message {
        font-size: 4.875rem; } }
    @media (min-width: 575px) {
      [data-querystring*='aid=whoweare'] .article__message,
      [data-querystring*='cid=whoweare'] .article__message,
      .article-full .article__message {
        padding: calc(0.03569 * 100vw + 11.47955px) 0 160px 32px; } }

[data-querystring*='aid=whoweare'] .footer,
[data-querystring*='cid=whoweare'] .footer,
.article-full .footer {
  margin-top: 0; }

/* stylelint-disable no-descending-specificity */
[data-querystring*='aid=whoweare'] .main,
[data-querystring*='aid=whoweare'] .main .article-full,
[data-querystring*='aid=whoweare'] .main .content,
[data-querystring*='aid=whoweare'] .main .article,
[data-querystring*='cid=whoweare'] .main,
[data-querystring*='cid=whoweare'] .main .article-full,
[data-querystring*='cid=whoweare'] .main .content,
[data-querystring*='cid=whoweare'] .main .article {
  display: flex; }

[data-querystring*='aid=whoweare'] .main .article-full,
[data-querystring*='aid=whoweare'] .main .article-page,
[data-querystring*='aid=whoweare'] .main .content-asset,
[data-querystring*='aid=whoweare'] .main .article,
[data-querystring*='cid=whoweare'] .main .article-full,
[data-querystring*='cid=whoweare'] .main .article-page,
[data-querystring*='cid=whoweare'] .main .content-asset,
[data-querystring*='cid=whoweare'] .main .article {
  flex-grow: 1; }

/* stylelint-enable no-descending-specificity */
.article-table {
  display: none;
  width: 100%;
  text-align: left;
  border-spacing: 0; }
  @media (min-width: 1025px) {
    .article-table,
    .article .article-table {
      display: table; } }
  .article-table td {
    padding: 6px 0;
    border-bottom: 1px solid black; }
  .article-table th {
    /* stylelint-disable */
    --uses-typography: 'article-header-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    padding: 6px 0;
    border-bottom: 1px solid black; }
    @media (min-width: 1025px) {
      .article-table th {
        font-size: 0.875rem; } }
  .article-table__mobile {
    /* stylelint-disable */
    --uses-typography: 'article-table-mobile';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.625rem;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    /* stylelint-enable */
    display: table;
    text-align: center; }
    @media (min-width: 1025px) {
      .article-table__mobile {
        font-size: 0.75rem; } }
    @media (min-width: 1025px) {
      .article-table__mobile {
        text-align: left; } }
    .article-table__mobile th {
      /* stylelint-disable */
      --uses-typography: 'article-table-mobile';
      color: black;
      font-family: "FKGrotesk", "Arial", sans-serif;
      font-size: 0.625rem;
      font-style: normal;
      font-weight: 700;
      text-transform: uppercase;
      /* stylelint-enable */ }
      @media (min-width: 1025px) {
        .article-table__mobile th {
          font-size: 0.75rem; } }
  .article-table__md {
    width: 100%; }
    @media (min-width: 1280px) {
      .article-table__md {
        width: 75%; } }
    .article-table__md .fist-column {
      width: 25%; }
    .article-table__md td {
      width: 37.5%; }
      @media (min-width: 1280px) {
        .article-table__md td {
          width: 25%; } }
      .article-table__md td:first-child {
        width: 25%; }
  @media (min-width: 1025px) {
    .article-table__xxl br {
      display: none; } }
  .article-table__xxl th {
    min-width: 32px; }
  .article-table__xxl span {
    display: none; }
    @media (min-width: 1025px) {
      .article-table__xxl span {
        display: inline; } }
  .article-table--sizes {
    display: table;
    width: 100%;
    /* stylelint-disable-next-line no-descending-specificity */ }
    .article .article-table--sizes {
      border: 0; }
      @media (min-width: 1025px) {
        .article .article-table--sizes {
          padding-bottom: 8px;
          border-top: 1px solid black;
          border-bottom: 1px solid black; } }
      @media (min-width: 1920px) {
        .article .article-table--sizes {
          padding-bottom: 16px; } }
    .article-table--sizes td,
    .article-table--sizes th {
      /* stylelint-disable */
      --uses-typography: 'article-table-sizes';
      color: black;
      font-family: "FKGrotesk", "Arial", sans-serif;
      font-size: 0.75rem;
      font-style: normal;
      font-weight: 900;
      text-transform: uppercase;
      /* stylelint-enable */
      width: calc(100% / 8.5);
      min-width: 2.5rem;
      padding: 8px 6px 0 0;
      text-align: left;
      border: 0; }
      @media (min-width: 1920px) {
        .article-table--sizes td,
        .article-table--sizes th {
          font-size: 0.875rem; } }
      @media (max-width: 1024px) {
        .article-table--sizes td,
        .article-table--sizes th {
          text-transform: none; } }
      @media (min-width: 1025px) {
        .article-table--sizes td,
        .article-table--sizes th {
          width: calc(100% / 11); } }
      @media (min-width: 1920px) {
        .article-table--sizes td,
        .article-table--sizes th {
          padding-top: 16px;
          padding-right: 16px; } }
    @media (max-width: 1024px) {
      .article-table--sizes thead {
        /* stylelint-disable max-nesting-depth */
        /* stylelint-disable selector-max-compound-selectors */
        /* stylelint-enable selector-max-compound-selectors */
        /* stylelint-enable max-nesting-depth */ }
        .article-table--sizes thead th {
          padding-bottom: 4px;
          border-bottom: 1px solid black; }
        .article-table--sizes thead tr:first-child th {
          padding-top: 0; } }
    @media (max-width: 1024px) {
      .article-table--sizes tbody th {
        font-weight: 700; } }
    .article-table--sizes .article-table__first-col {
      position: sticky;
      left: 0;
      width: calc(100% / 8.5 * 1.5);
      background: white; }
      @media (max-width: 1024px) {
        .article-table--sizes .article-table__first-col {
          font-weight: 700; } }
      @media (min-width: 1025px) {
        .article-table--sizes .article-table__first-col {
          width: calc(100% / 11 * 2); } }
  .article-table--modal {
    /* stylelint-disable no-descending-specificity */
    /* stylelint-enable no-descending-specificity */ }
    @media (min-width: 375px) {
      .article-table--modal td,
      .article-table--modal th {
        width: calc((100vw - (16px * 2)) / 8.5 * 1);
        min-width: calc((100vw - (16px * 2)) / 8.5 * 1); } }
    @media (min-width: 575px) {
      .article-table--modal td,
      .article-table--modal th {
        width: calc((375px - (16px * 2)) / 8.5 * 1);
        min-width: calc((375px - (16px * 2)) / 8.5 * 1); } }
    @media (min-width: 768px) {
      .article-table--modal td,
      .article-table--modal th {
        width: calc((calc(0.74 * (100vw - (256px - 16px))) - (calc(0.74 * (100vw - (256px - 16px))) * 0.0428 * 2)) / 8.5 * 1);
        min-width: calc((calc(0.74 * (100vw - (256px - 16px))) - (calc(0.74 * (100vw - (256px - 16px))) * 0.0428 * 2)) / 8.5 * 1); } }
    @media (min-width: 1025px) {
      .article-table--modal td,
      .article-table--modal th {
        width: calc((59.28vw - (4.7424vw * 2)) / 11 * 1);
        min-width: calc((59.28vw - (4.7424vw * 2)) / 11 * 1); } }
    .article-table--modal .article-table__first-col {
      width: calc((100vw - (16px * 2)) / 8.5 * 1.5);
      min-width: calc((100vw - (16px * 2)) / 8.5 * 1.5); }
      @media (min-width: 575px) {
        .article-table--modal .article-table__first-col {
          width: calc((375px - (16px * 2)) / 8.5 * 1.5);
          min-width: calc((375px - (16px * 2)) / 8.5 * 1.5); } }
      @media (min-width: 768px) {
        .article-table--modal .article-table__first-col {
          width: calc((calc(0.74 * (100vw - (256px - 16px))) - (calc(0.74 * (100vw - (256px - 16px))) * 0.0428 * 2)) / 8.5 * 1.5);
          min-width: calc((calc(0.74 * (100vw - (256px - 16px))) - (calc(0.74 * (100vw - (256px - 16px))) * 0.0428 * 2)) / 8.5 * 1.5); } }
      @media (min-width: 1025px) {
        .article-table--modal .article-table__first-col {
          width: calc((59.28vw - (4.7424vw * 2)) / 11 * 2);
          min-width: calc((59.28vw - (4.7424vw * 2)) / 11 * 2); } }

/*
 * 1. Extend the width in 1px in each direction to assure that the logo is hidden
 *    by the back button.
 * 2. The size of the back button has to be enough to show the text "back" and
 *    to hide the logo of the header. Some min-width is needed in case the logo
 *    is too small.
 */
.base-back-button {
  position: fixed;
  top: 0;
  top: calc(var(--header-total-height) - var(--header-height));
  z-index: 30;
  display: grid;
  box-sizing: content-box;
  /* [1] */
  width: 60%;
  width: var(--header-logo-width, 60%);
  /* [2] */
  min-width: 60%;
  /* [2] */
  height: 40px;
  margin-left: -1px;
  /* [1] */
  padding: 0 1px;
  /* [1] */
  background: white; }
  @media (min-width: 1025px) {
    .base-back-button {
      display: none; } }
  .header-popup-open .base-back-button {
    opacity: 0;
    transition: opacity 0.1s linear 0.05s;
    pointer-events: none; }
  .base-back-button__btn {
    /* stylelint-disable */
    --uses-typography: 'header-base-back-button';
    font-size: 0.9375rem;
    /* stylelint-enable */
    margin-top: 6px;
    color: black; }
    .base-back-button__btn::before {
      background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path style="transform:rotate(180 12)" d="M3 0l9 6-9 6z" fill="black" fill-rule="evenodd" transform="matrix(-1, 0, 0, -1, 12, 12)" /></svg>'); }

.base-color-swatches {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 32px);
  margin-top: -0.125rem; }
  .base-color-swatches__color-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    font-size: calc(0.00065 * 100vw + 11.75728px);
    list-style: none; }
    @media (min-width: 1920px) {
      .base-color-swatches__color-container {
        font-size: 0.8125rem; } }
  .base-color-swatches__item {
    display: block;
    margin-bottom: 6px;
    margin-left: 0; }
    .base-color-swatches__item:not(:first-child) {
      margin-left: 20px; }
      @media (min-width: 1025px) {
        .base-color-swatches__item:not(:first-child) {
          margin-left: calc(-0.00894 * 100vw + 29.16201px); } }
      @media (min-width: 1920px) {
        .base-color-swatches__item:not(:first-child) {
          margin-left: 12px; } }
  .base-color-swatches__swatch {
    display: block;
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
    background-color: transparent;
    border-color: transparent;
    border-width: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
    @media (max-width: 574px) {
      .base-color-swatches__swatch {
        overflow: visible;
        position: relative;
        overflow: visible; }
        .base-color-swatches__swatch::after {
          --hotzone-margins: 8px;
          position: absolute;
          top: calc(-1 * var(--hotzone-margins));
          left: calc(-1 * var(--hotzone-margins));
          width: calc(100% + (2 * var(--hotzone-margins)));
          height: calc(100% + (2 * var(--hotzone-margins)));
          content: '';
          background: transparent; } }
    .base-color-swatches__swatch, .base-color-swatches__swatch:hover {
      color: inherit;
      font-size: 1em; }
    .base-color-swatches__swatch--selected {
      border-bottom: 1px solid black;
      cursor: auto; }
  .base-color-swatches__swatch-display {
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    -o-object-fit: fill;
       object-fit: fill; }
    @media (min-width: 1025px) {
      .base-color-swatches__swatch-display {
        width: calc(-0.00112 * 100vw + 15.14525px);
        height: calc(-0.00112 * 100vw + 15.14525px); } }
    @media (min-width: 1920px) {
      .base-color-swatches__swatch-display {
        width: 0.8125rem;
        height: 0.8125rem; } }
  .base-color-swatches__expand, .base-color-swatches__shrink {
    margin-bottom: 8px;
    margin-left: 20px;
    padding: 0;
    background-position: center center; }
    @media (min-width: 1025px) {
      .base-color-swatches__expand, .base-color-swatches__shrink {
        margin-left: calc(-0.00894 * 100vw + 29.16201px); } }
    @media (min-width: 1920px) {
      .base-color-swatches__expand, .base-color-swatches__shrink {
        margin-left: 12px; } }

.base-product-color-swatches {
  justify-content: flex-end; }
  .base-product-color-swatches__swatch-img.loading {
    border: 0.25px solid; }

.base-carousel {
  position: relative;
  width: 100%; }
  .base-carousel__carousel {
    overflow: hidden; }
  .base-carousel__control {
    transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    position: absolute;
    top: 10%;
    bottom: 10%;
    z-index: 1;
    width: 2rem;
    min-width: 44px;
    min-height: 44px;
    margin: 0;
    padding: 6px;
    background-color: transparent;
    border: 0;
    outline: none;
    opacity: 1;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-tap-highlight-color: transparent; }
    @media (min-width: 1025px) {
      .base-carousel__control, .base-carousel__control:focus {
        opacity: 0; }
      .base-carousel__control:hover {
        opacity: 1; } }
    @media (min-width: 1280px) {
      .base-carousel__control {
        width: calc(2rem + 0.75rem);
        min-width: 44px; } }
    .base-carousel__control--next {
      right: 0;
      text-align: right; }
    .base-carousel__control--prev {
      left: 0;
      text-align: left; }
  .base-carousel__indicator-container {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin: 16px;
    visibility: hidden; }
    @media (min-width: 1025px) {
      .base-carousel__indicator-container {
        display: none; } }
    .base-carousel__indicator-container--top {
      top: 0;
      bottom: auto; }
  .base-carousel__indicator {
    border-radius: 100%; }
  .base-carousel__item {
    flex-shrink: 0;
    height: 100%; }
  .base-carousel__pic {
    position: relative;
    display: block; }
    .base-carousel__pic::before {
      display: block;
      width: 0;
      padding-bottom: 125%;
      content: ''; }
    .base-carousel__pic > img,
    .base-carousel__pic > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
  .base-carousel__track {
    justify-content: flex-start;
    box-sizing: content-box; }
  .base-carousel.pointer-event {
    touch-action: pan-y pinch-zoom; }

@media (hover: hover) {
  .base-carousel:hover .base-carousel__control {
    opacity: 1; } }

.is-scrolling .base-carousel__control {
  opacity: 0; }

.base-filters {
  padding-bottom: 32px; }
  .base-filters__title {
    /* stylelint-disable */
    --uses-typography: 'base-filters-default';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: normal;
    font-weight: 900;
    /* stylelint-enable */
    /* stylelint-disable */
    --uses-typography: 'base-filters-title';
    color: black;
    font-size: 1.25rem;
    line-height: 1.2;
    text-transform: uppercase;
    /* stylelint-enable */
    margin-top: 0;
    margin-bottom: 6px; }
    @media (min-width: 768px) {
      .base-filters__title {
        font-size: 0.75rem;
        line-height: 1.0625rem;
        text-transform: none; } }
  .base-filters__content {
    display: grid;
    grid-column-gap: 16px;
    justify-items: start; }
  .base-filters__option {
    /* stylelint-disable */
    --uses-typography: 'base-filters-default';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: normal;
    font-weight: 900;
    /* stylelint-enable */
    /* stylelint-disable */
    --uses-typography: 'base-filters-option';
    font-size: 1rem;
    line-height: 2;
    text-transform: uppercase;
    /* stylelint-enable */ }
    @media (min-width: 768px) {
      .base-filters__option {
        font-size: 1.125rem;
        line-height: 1.25;
        letter-spacing: 0.0375rem; } }
    @media (min-width: 768px) {
      .base-filters__option {
        margin-bottom: 4px; }
        .base-filters__option:last-child {
          margin-bottom: 0; } }
    .base-filters__option--selected {
      /* stylelint-disable */
      --uses-typography: 'base-filters-option-selected';
      color: black;
      text-decoration: underline;
      /* stylelint-enable */ }
      .base-filters__option--selected:disabled {
        /* stylelint-disable */
        --uses-typography: 'base-filters-option-selected-disabled';
        color: black;
        /* stylelint-enable */ }

.base-filters-color__content {
  grid-auto-flow: row;
  grid-template-columns: repeat(2, 1fr); }

.base-filters-color__option {
  display: flex;
  align-items: center; }
  @media (min-width: 768px) {
    .base-filters-color__option:nth-last-child(2) {
      margin-bottom: 0; } }
  .base-filters-color__option-image {
    width: 12px;
    height: 12px;
    margin-right: 8px; }

.base-filters-price__content {
  display: flex;
  flex-direction: column;
  justify-items: auto; }

.base-filters-price__control {
  margin-left: 20px;
  margin-right: 20px; }
  @media (min-width: 768px) {
    .base-filters-price__control {
      margin-left: 0;
      margin-right: 0; } }

.base-filters-price__info {
  display: flex;
  justify-content: space-between;
  margin: 0; }

.base-filters-price__from, .base-filters-price__to {
  /* stylelint-disable */
  --uses-typography: 'base-filters-default';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-weight: 900;
  /* stylelint-enable */
  /* stylelint-disable */
  --uses-typography: 'base-filters-option';
  font-size: 1rem;
  line-height: 2;
  text-transform: uppercase;
  /* stylelint-enable */
  /* stylelint-disable */
  --uses-typography: 'base-filters-option-selected';
  color: black;
  text-decoration: underline;
  /* stylelint-enable */
  letter-spacing: normal;
  text-decoration: none;
  word-spacing: -0.25em; }
  @media (min-width: 768px) {
    .base-filters-price__from, .base-filters-price__to {
      font-size: 1.125rem;
      line-height: 1.25;
      letter-spacing: 0.0375rem; } }

.base-filters-size__content {
  grid-auto-flow: column;
  grid-template-rows: repeat(var(--grid-rows), 1fr);
  grid-template-columns: repeat(4, 1fr); }

@media (min-width: 768px) {
  .base-filters-size__option:nth-child(8n) {
    margin-bottom: 0; } }

.base-filters-size__option--col-break {
  grid-row: 1; }

.base-modal-cta__btn, .the-product-details__btn-modal, .the-product-details-stock-alert__form-submit[type='submit'], .the-product-details-stock-alert__success-button {
  /* stylelint-disable */
  --uses-typography: 'base-modal-cta-button';
  font-weight: 900;
  font-size: 0.875rem;
  font-style: normal;
  text-transform: uppercase;
  /* stylelint-enable */
  position: static;
  width: auto;
  border-radius: 0; }
  @media (min-width: 575px) {
    .base-modal-cta__btn, .the-product-details__btn-modal, .the-product-details-stock-alert__form-submit[type='submit'], .the-product-details-stock-alert__success-button {
      font-size: 1.3125rem; } }
  @media (min-width: 1025px) {
    .base-modal-cta__btn, .the-product-details__btn-modal, .the-product-details-stock-alert__form-submit[type='submit'], .the-product-details-stock-alert__success-button {
      font-size: calc(0.00447 * 100vw + 16.41899px);
      letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
  @media (min-width: 1920px) {
    .base-modal-cta__btn, .the-product-details__btn-modal, .the-product-details-stock-alert__form-submit[type='submit'], .the-product-details-stock-alert__success-button {
      font-size: 1.5625rem;
      letter-spacing: 0.05rem; } }

.base-modal-cta {
  position: fixed;
  bottom: calc(24px + 4px);
  width: calc(100vw - calc(0.6875rem + 50px + 8px) - 16px);
  max-width: calc(100vw - calc(0.6875rem + 50px + 8px) - 16px);
  border-radius: 1.15625rem;
  right: calc(0.6875rem + 50px + 8px);
  left: 16px;
  transition: max-height 400ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms, box-shadow 400ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  display: flex;
  flex-direction: column-reverse;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-height: 2.1875rem;
  overflow: hidden; }
  @media (min-width: 575px) {
    .base-modal-cta {
      position: static;
      position: initial;
      right: auto;
      right: initial;
      bottom: auto;
      bottom: initial;
      left: auto;
      left: initial;
      width: auto;
      max-width: none;
      margin-right: 0;
      margin-right: initial;
      margin-left: 0;
      margin-left: initial;
      border-radius: 0; } }
  @media (min-width: 575px) {
    .base-modal-cta {
      display: block;
      max-height: none;
      transition: none; } }
  .base-modal-cta--open {
    max-height: 70vh;
    box-shadow: 0 -3px 7px rgba(168, 168, 168, 0.4); }
    @media (min-width: 575px) {
      .base-modal-cta--open {
        max-height: none;
        box-shadow: none;
        transition: none; } }
  .base-modal-cta__content {
    padding: 16px 16px 0;
    background-color: white; }
    @media (min-width: 575px) {
      .base-modal-cta__content {
        padding: 0; } }
    .base-modal-cta__content-no-padding {
      padding: 0; }
    .base-modal-cta__content-modal-close {
      padding-top: 3.4375rem; }
  .base-modal-cta__btn-close {
    transition: opacity 300ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 0.875rem;
    background-color: transparent;
    opacity: 1; }
    .base-modal-cta__btn-close--hidden {
      opacity: 0;
      pointer-events: none; }

.base-page-render__loading-search {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: white; }
  .base-page-render__loading-search > * {
    -webkit-animation: loading-search 1s linear forwards;
            animation: loading-search 1s linear forwards;
    -webkit-animation: loading-search var(--loading-animation-delay, 1s) linear forwards;
            animation: loading-search var(--loading-animation-delay, 1s) linear forwards;
    /* stylelint-disable-next-line max-nesting-depth */ }

@-webkit-keyframes loading-search {
  0% {
    opacity: 0; }
  95% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes loading-search {
  0% {
    opacity: 0; }
  95% {
    opacity: 0; }
  100% {
    opacity: 1; } }
    .base-page-render__loading-search > * img {
      min-height: unset; }

.base-page-render__module[\:has\(.base-page-render__module--sticky\)] {
  position: sticky;
  top: var(--sticky-top);
  z-index: var(--sticky-zindex);
  width: auto; }

.base-page-render__module:has(.base-page-render__module--sticky) {
  position: sticky;
  top: var(--sticky-top);
  z-index: var(--sticky-zindex);
  width: auto; }
  @media (min-width: 1025px) {
    .base-page-render__module[\:has\(.base-page-render__module--sticky\)] {
      top: var(--sticky-top-desktop); }
    .base-page-render__module:has(.base-page-render__module--sticky) {
      top: var(--sticky-top-desktop); } }
  .base-page-render__module[\:has\(.base-page-render__module--sticky\)] .the-search-ai-form__form {
    position: sticky;
    top: var(--sticky-top);
    z-index: 1; }
  .base-page-render__module:has(.base-page-render__module--sticky) .the-search-ai-form__form {
    position: sticky;
    top: var(--sticky-top);
    z-index: 1; }
    @media (min-width: 1025px) {
      .base-page-render__module[\:has\(.base-page-render__module--sticky\)] .the-search-ai-form__form {
        top: var(--sticky-top-desktop); }
      .base-page-render__module:has(.base-page-render__module--sticky) .the-search-ai-form__form {
        top: var(--sticky-top-desktop); } }

.base-page-render__module[\:has\(.the-search-ai-form\%20\%3E\%20.base-modal--open\)] {
  --sticky-zindex: 300; }

.base-page-render__module:has(.the-search-ai-form > .base-modal--open) {
  --sticky-zindex: 300; }

.base-price {
  position: relative;
  display: inline-flex; }
  .base-price__title {
    padding-right: 4px; }
  .base-price__promo-text {
    /* stylelint-disable */
    --uses-typography: 'product-card-promo-text';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.25;
    color: #a8a8a8;
    /* stylelint-enable */
    position: absolute;
    top: 0;
    right: 0;
    white-space: nowrap;
    text-transform: none;
    transform: translateY(-100%); }
    @media (min-width: 768px) {
      .base-price__promo-text {
        font-size: 0.75rem; } }
  .base-price__original-price {
    color: black;
    font-weight: 700;
    text-decoration: line-through; }
  .base-price__price {
    color: black;
    text-decoration: none; }
  .base-price__original-price, .base-price__price {
    margin-right: 0.4375rem;
    white-space: nowrap;
    word-spacing: -0.167em; }
    @media (min-width: 575px) {
      .base-price__original-price, .base-price__price {
        margin-right: 0.5625rem; } }
    @media (min-width: 768px) {
      .base-price__original-price, .base-price__price {
        margin-right: 0.4375rem; } }
    @media (min-width: 1440px) {
      .base-price__original-price, .base-price__price {
        margin-right: 0.46875rem; } }
    @media (min-width: 1530px) {
      .base-price__original-price, .base-price__price {
        margin-right: 0.5rem; } }
  .base-price__discount {
    color: var(--sales-color);
    white-space: nowrap;
    text-decoration: none; }

.price-currency {
  word-spacing: -0.1875rem; }

.base-product-slider {
  /* Gliderjs customizations */ }
  .base-product-slider__heading {
    /* stylelint-disable */
    --uses-typography: 'product-slider-heading';
    font-weight: 900;
    font-size: 1.125rem;
    font-style: normal;
    line-height: 1.25;
    text-transform: uppercase;
    /* stylelint-enable */
    margin: 0;
    padding-left: 1rem; }
    @media (min-width: 1025px) {
      .base-product-slider__heading {
        font-size: calc(0.00782 * 100vw + 9.98324px);
        letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
    @media (min-width: 1920px) {
      .base-product-slider__heading {
        font-size: 1.5625rem;
        letter-spacing: 0.05rem; } }
    @media (min-width: 1280px) {
      .base-product-slider__heading {
        padding-left: 1.5rem; } }
  .base-product-slider__item {
    width: calc(100% / 2.5); }
    @media (min-width: 768px) {
      .base-product-slider__item {
        width: calc(100% / 3.5); } }
    @media (min-width: 1025px) {
      .base-product-slider__item {
        width: calc(100% / 6); } }
  .base-product-slider .glider-track {
    justify-content: flex-start;
    box-sizing: content-box; }
  .base-product-slider .glider-slide {
    justify-content: flex-start;
    box-sizing: border-box; }

.base-product-slider[data-context='minicart-slider'] .base-product-slider__heading {
  /* stylelint-disable */
  --uses-typography: 'product-slider--minicart-slider-heading';
  font-size: 1rem;
  /* stylelint-enable */
  margin-bottom: 6px;
  padding-left: 0; }

.base-product-slider[data-context='minicart-slider'] .base-product-slider__item {
  width: calc(100% / 3.5); }
  @media (min-width: 768px) {
    .base-product-slider[data-context='minicart-slider'] .base-product-slider__item {
      width: calc(100% / 5.5); } }

.base-product-slider[data-context='search-modal'] .base-product-slider__item {
  width: calc(100% / 3.5); }
  @media (min-width: 768px) {
    .base-product-slider[data-context='search-modal'] .base-product-slider__item {
      width: calc(100% / 8.5); } }

@-webkit-keyframes base-product-tile-quick-shop-added-msg {
  from {
    opacity: 0; }
  2% {
    opacity: 1; }
  98% {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes base-product-tile-quick-shop-added-msg {
  from {
    opacity: 0; }
  2% {
    opacity: 1; }
  98% {
    opacity: 1; }
  to {
    opacity: 0; } }

@-webkit-keyframes base-product-tile-quick-shop-checkout-link {
  from {
    transform: translateY(100%); }
  2% {
    transform: translateY(0); }
  98% {
    transform: translateY(0); }
  to {
    transform: translateY(100%); } }

@keyframes base-product-tile-quick-shop-checkout-link {
  from {
    transform: translateY(100%); }
  2% {
    transform: translateY(0); }
  98% {
    transform: translateY(0); }
  to {
    transform: translateY(100%); } }

@-webkit-keyframes base-product-tile-quick-shop-removed-msg {
  from {
    opacity: 0; }
  4% {
    opacity: 1; }
  96% {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes base-product-tile-quick-shop-removed-msg {
  from {
    opacity: 0; }
  4% {
    opacity: 1; }
  96% {
    opacity: 1; }
  to {
    opacity: 0; } }

.base-product-tile-quick-shop {
  /* stylelint-disable */
  --uses-typography: 'product-tiles-quick-shop';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.25;
  /* stylelint-enable */
  display: flex;
  flex-direction: row-reverse;
  pointer-events: none; }
  @media (min-width: 320px) {
    .base-product-tile-quick-shop {
      font-size: calc(0.02009 * 100vw + 7.57143px); } }
  @media (min-width: 768px) {
    .base-product-tile-quick-shop {
      font-size: 0.875rem; } }
  @media (min-width: 1025px) {
    .base-product-tile-quick-shop {
      font-size: calc(0.00782 * 100vw + 5.98324px); } }
  @media (min-width: 1920px) {
    .base-product-tile-quick-shop {
      font-size: 1.3125rem; } }
  .base-product-tile-quick-shop__add {
    padding: 4px 8px 8px;
    z-index: 1; }
    @media (min-width: 375px) {
      .base-product-tile-quick-shop__add {
        padding: calc(0.01018 * 100vw + 0.18321px) calc(0.02036 * 100vw + 0.36641px) calc(0.02036 * 100vw + 0.36641px); } }
    @media (min-width: 768px) {
      .base-product-tile-quick-shop__add {
        padding: 4px 8px 8px; } }
    @media (min-width: 1025px) {
      .base-product-tile-quick-shop__add {
        padding: calc(0.00447 * 100vw + -0.58101px) calc(0.00894 * 100vw + -1.16201px) calc(0.00894 * 100vw + -1.16201px); } }
    @media (min-width: 1920px) {
      .base-product-tile-quick-shop__add {
        padding: 8px 16px 16px; } }
    @media (max-width: 574px) {
      .base-product-tile-quick-shop__add {
        overflow: visible; }
        .base-product-tile-quick-shop__add::after {
          --hotzone-margins: 2px;
          position: absolute;
          top: calc(-1 * var(--hotzone-margins));
          left: calc(-1 * var(--hotzone-margins));
          width: calc(100% + (2 * var(--hotzone-margins)));
          height: calc(100% + (2 * var(--hotzone-margins)));
          content: '';
          background: transparent; } }
    @media (min-width: 1025px) {
      .base-product-tile-quick-shop__add {
        width: 0.75rem;
        height: 0.75rem; } }
    @media (min-width: 1025px) {
      .base-product-tile-quick-shop__add::before {
        top: auto;
        top: initial;
        width: 0.75rem;
        height: 0.75rem; } }
  .base-product-tile-quick-shop__content {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    overflow: hidden; }
  .base-product-tile-quick-shop__sizes, .base-product-tile-quick-shop__added, .base-product-tile-quick-shop__removed {
    padding-left: 6px;
    padding-right: 6px;
    display: flex;
    flex: 1 0 100%;
    align-items: flex-start;
    margin: 0;
    background-color: white;
    opacity: 0;
    transition: opacity 0.1s cubic-bezier(0.25, 0.1, 0.25, 1); }
    @media (min-width: 375px) {
      .base-product-tile-quick-shop__sizes, .base-product-tile-quick-shop__added, .base-product-tile-quick-shop__removed {
        padding-left: calc(-0.00446 * 100vw + 7.42857px);
        padding-right: calc(-0.00446 * 100vw + 7.42857px); } }
    @media (min-width: 768px) {
      .base-product-tile-quick-shop__sizes, .base-product-tile-quick-shop__added, .base-product-tile-quick-shop__removed {
        padding-left: 6px;
        padding-right: 6px; } }
    @media (min-width: 1025px) {
      .base-product-tile-quick-shop__sizes, .base-product-tile-quick-shop__added, .base-product-tile-quick-shop__removed {
        padding-left: calc(-0.00223 * 100vw + 8.2905px);
        padding-right: calc(-0.00223 * 100vw + 8.2905px); } }
    @media (min-width: 1920px) {
      .base-product-tile-quick-shop__sizes, .base-product-tile-quick-shop__added, .base-product-tile-quick-shop__removed {
        padding-left: 4px;
        padding-right: 4px; } }
  .base-product-tile-quick-shop__added, .base-product-tile-quick-shop__removed {
    /* stylelint-disable */
    --uses-typography: 'product-tiles-tag';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1.25;
    /* stylelint-enable */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: flex-start; }
    @media (min-width: 375px) {
      .base-product-tile-quick-shop__added, .base-product-tile-quick-shop__removed {
        font-size: calc(0.0229 * 100vw + 5.41221px); } }
    @media (min-width: 768px) {
      .base-product-tile-quick-shop__added, .base-product-tile-quick-shop__removed {
        font-size: 0.875rem; } }
    @media (min-width: 1025px) {
      .base-product-tile-quick-shop__added, .base-product-tile-quick-shop__removed {
        font-size: calc(0.00782 * 100vw + 5.98324px); } }
    @media (min-width: 1920px) {
      .base-product-tile-quick-shop__added, .base-product-tile-quick-shop__removed {
        font-size: 1.3125rem; } }
  .base-product-tile-quick-shop__checkout-link-container {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    transform: translateY(-100%); }
  .base-product-tile-quick-shop__checkout-link {
    /* stylelint-disable */
    --uses-typography: 'product-tiles-quick-shop-selector';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0.5px;
    line-height: 1.25;
    /* stylelint-enable */
    padding-left: 6px;
    padding-right: 6px;
    display: block;
    padding-top: 2px;
    padding-bottom: 3px;
    color: currentColor;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #a8a8a8;
    transform: translateY(calc(100% + 2px + 3px)); }
    @media (min-width: 375px) {
      .base-product-tile-quick-shop__checkout-link {
        font-size: calc(0.0229 * 100vw + 5.41221px); } }
    @media (min-width: 768px) {
      .base-product-tile-quick-shop__checkout-link {
        font-size: 0.875rem; } }
    @media (min-width: 1025px) {
      .base-product-tile-quick-shop__checkout-link {
        font-size: calc(0.00782 * 100vw + 5.98324px); } }
    @media (min-width: 1920px) {
      .base-product-tile-quick-shop__checkout-link {
        font-size: 1.3125rem; } }
    @media (min-width: 375px) {
      .base-product-tile-quick-shop__checkout-link {
        padding-left: calc(-0.00446 * 100vw + 7.42857px);
        padding-right: calc(-0.00446 * 100vw + 7.42857px); } }
    @media (min-width: 768px) {
      .base-product-tile-quick-shop__checkout-link {
        padding-left: 6px;
        padding-right: 6px; } }
    @media (min-width: 1025px) {
      .base-product-tile-quick-shop__checkout-link {
        padding-left: calc(-0.00223 * 100vw + 8.2905px);
        padding-right: calc(-0.00223 * 100vw + 8.2905px); } }
    @media (min-width: 1920px) {
      .base-product-tile-quick-shop__checkout-link {
        padding-left: 4px;
        padding-right: 4px; } }
    .base-product-tile-quick-shop__checkout-link-icon {
      margin-bottom: -0.1em;
      margin-left: 0.3em;
      font-size: 0.85714em; }
  .base-product-tile-quick-shop__sizes {
    pointer-events: none; }

.base-product-tile-quick-shop[data-context='minicart-slider'] .base-product-tile-quick-shop {
  /* stylelint-disable */
  --uses-typography: 'product-tiles--minicart-slider-quick-shop';
  font-size: 0.75rem;
  /* stylelint-enable */ }
  .base-product-tile-quick-shop[data-context='minicart-slider'] .base-product-tile-quick-shop__add {
    position: absolute;
    top: calc(90% - 36px);
    top: calc(var(--image-slider-height, 90%) - 36px);
    right: 0;
    padding: 12px; }
  .base-product-tile-quick-shop[data-context='minicart-slider'] .base-product-tile-quick-shop__sizes, .base-product-tile-quick-shop[data-context='minicart-slider'] .base-product-tile-quick-shop__added, .base-product-tile-quick-shop[data-context='minicart-slider'] .base-product-tile-quick-shop__removed {
    /* stylelint-disable */
    --uses-typography: 'product-tiles--minicart-slider-quick-shop';
    font-size: 0.75rem;
    /* stylelint-enable */
    padding-top: 28px; }

.base-product-tile-quick-shop[data-step='1'] .base-product-tile-quick-shop__sizes {
  opacity: 1;
  pointer-events: auto; }

.base-product-tile-quick-shop[data-step='2'] .base-product-tile-quick-shop__added {
  -webkit-animation-name: base-product-tile-quick-shop-added-msg;
          animation-name: base-product-tile-quick-shop-added-msg;
  -webkit-animation-duration: 4.2s;
          animation-duration: 4.2s; }

.base-product-tile-quick-shop[data-step='2'] .base-product-tile-quick-shop__checkout-link {
  -webkit-animation-name: base-product-tile-quick-shop-checkout-link;
          animation-name: base-product-tile-quick-shop-checkout-link;
  -webkit-animation-duration: 4.2s;
          animation-duration: 4.2s;
  pointer-events: auto; }

.base-product-tile-quick-shop[data-step='3'] .base-product-tile-quick-shop__removed {
  -webkit-animation-name: base-product-tile-quick-shop-removed-msg;
          animation-name: base-product-tile-quick-shop-removed-msg;
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s; }

.base-product-tile-size-selector {
  box-sizing: border-box; }
  .base-product-tile-size-selector__size-input {
    display: none; }
  .base-product-tile-size-selector__size-label {
    color: currentColor; }
  .base-product-tile-size-selector__size {
    display: inline-flex;
    margin-bottom: 8px; }
    .base-product-tile-size-selector__size:not(:last-child) {
      margin-right: 24px; }
      @media (min-width: 375px) {
        .base-product-tile-size-selector__size:not(:last-child) {
          margin-right: calc(-0.01786 * 100vw + 29.71429px); } }
      @media (min-width: 768px) {
        .base-product-tile-size-selector__size:not(:last-child) {
          margin-right: 24px; } }
      @media (min-width: 1025px) {
        .base-product-tile-size-selector__size:not(:last-child) {
          margin-right: calc(-0.00894 * 100vw + 33.16201px); } }
      @media (min-width: 1920px) {
        .base-product-tile-size-selector__size:not(:last-child) {
          margin-right: 16px; } }
    .base-product-tile-size-selector__size .base-product-tile-size-selector__size-label {
      /* stylelint-disable */
      --uses-typography: 'product-tiles-quick-shop-selector';
      font-family: "FKGrotesk", "Arial", sans-serif;
      font-size: 0.875rem;
      font-weight: 900;
      font-style: normal;
      letter-spacing: 0.5px;
      line-height: 1.25;
      /* stylelint-enable */
      padding: 0;
      color: inherit; }
      @media (min-width: 375px) {
        .base-product-tile-size-selector__size .base-product-tile-size-selector__size-label {
          font-size: calc(0.0229 * 100vw + 5.41221px); } }
      @media (min-width: 768px) {
        .base-product-tile-size-selector__size .base-product-tile-size-selector__size-label {
          font-size: 0.875rem; } }
      @media (min-width: 1025px) {
        .base-product-tile-size-selector__size .base-product-tile-size-selector__size-label {
          font-size: calc(0.00782 * 100vw + 5.98324px); } }
      @media (min-width: 1920px) {
        .base-product-tile-size-selector__size .base-product-tile-size-selector__size-label {
          font-size: 1.3125rem; } }
  .base-product-tile-size-selector__size--disabled {
    pointer-events: none;
    /* stylelint-disable max-nesting-depth */ }
    .base-product-tile-size-selector__size--disabled s {
      text-decoration: none; }
    .base-product-tile-size-selector__size--disabled .size-box {
      position: relative; }
      .base-product-tile-size-selector__size--disabled .size-box .strike {
        position: absolute;
        top: 50%;
        width: calc(100% + 4px);
        height: 0.0625rem;
        margin-right: 2px;
        margin-left: -2px;
        background: black;
        border: 0; }
        @media (min-width: 575px) {
          .base-product-tile-size-selector__size--disabled .size-box .strike {
            top: calc(50% + 1px);
            height: 0.125rem; } }
      .base-product-tile-size-selector__size--disabled .size-box.is-strike .strike {
        opacity: 1; }
  .base-product-tile-size-selector__size--selected, .base-product-tile-size-selector__size:hover {
    text-decoration: underline; }

.base-product-tile-size-selector[data-context='minicart-slider'] .base-product-tile-size-selector__sizes {
  display: flex;
  flex-wrap: wrap;
  width: 100%; }

.base-product-tile-size-selector[data-context='minicart-slider'] .base-product-tile-size-selector__size {
  flex-basis: 32%;
  justify-content: center;
  margin-right: 0;
  white-space: nowrap; }

.base-product-tile-size-selector[data-context='minicart-slider'] .base-product-tile-size-selector__size-label {
  /* stylelint-disable */
  --uses-typography: 'product-tiles--minicart-slider-quick-shop-selector';
  font-size: 0.875rem;
  /* stylelint-enable */ }

.base-modal-size-selector {
  /* stylelint-disable */
  --uses-typography: 'product-tiles--size-modal-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.25;
  /* stylelint-enable */ }
  .base-modal-size-selector__selector {
    display: flex;
    flex-direction: column;
    grid-gap: 16px;
    gap: 16px;
    margin: 32px 32px 48px; }
    .base-modal-size-selector__selector .the-product-details-size-selector__container:last-child {
      padding-bottom: 0 !important; }
  .base-modal-size-selector__added-msg {
    display: flex;
    flex-direction: row;
    grid-gap: 16px;
    gap: 16px;
    align-items: center;
    margin: 32px 24px 32px 32px; }
  .base-modal-size-selector__stock-alert {
    margin: 3.75rem 2.625rem 32px; }
    .base-modal-size-selector__stock-alert .the-product-details-stock-alert__title,
    .base-modal-size-selector__stock-alert .the-product-details-stock-alert__explanation,
    .base-modal-size-selector__stock-alert .the-product-details-stock-alert__mail.stock-alert-popup-mail {
      padding: 0; }
    .base-modal-size-selector__stock-alert .the-product-details-stock-alert__form-submit[type='submit'] {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: calc(100% - 32px - 32px);
      min-height: 2.1875rem;
      padding: 0;
      color: white;
      background-color: #242424;
      border-radius: 1.15625rem;
      /* Enable pointer events to prevent clicking other elements in page below floating btn
  * Disabled state shouldn't fire click events
  */
      align-self: center;
      max-width: 100%;
      margin: 24px 0 0; }
      @media (min-width: 575px) {
        .base-modal-size-selector__stock-alert .the-product-details-stock-alert__form-submit[type='submit'] {
          max-width: calc(100% - 6.875rem); } }
      @media (min-width: 768px) {
        .base-modal-size-selector__stock-alert .the-product-details-stock-alert__form-submit[type='submit'] {
          width: auto;
          max-width: 100%;
          text-align: center;
          background-color: transparent;
          border-radius: 0; } }
      .base-modal-size-selector__stock-alert .the-product-details-stock-alert__form-submit[type='submit']:active {
        background-color: rgba(36, 36, 36, 0.78); }
        @media (min-width: 768px) {
          .base-modal-size-selector__stock-alert .the-product-details-stock-alert__form-submit[type='submit']:active {
            color: black;
            background-color: transparent; } }
      .base-modal-size-selector__stock-alert .the-product-details-stock-alert__form-submit[type='submit'].disabled, .base-modal-size-selector__stock-alert .the-product-details-stock-alert__form-submit[type='submit']:disabled {
        color: white;
        background-color: #a8a8a8; }
        @media (min-width: 768px) {
          .base-modal-size-selector__stock-alert .the-product-details-stock-alert__form-submit[type='submit'].disabled, .base-modal-size-selector__stock-alert .the-product-details-stock-alert__form-submit[type='submit']:disabled {
            color: #909090;
            background-color: transparent; } }
      .base-modal-size-selector__stock-alert .the-product-details-stock-alert__form-submit[type='submit']:disabled {
        pointer-events: all; }
  .base-modal-size-selector__link {
    /* stylelint-disable */
    --uses-typography: 'product-tiles--size-modal-link';
    font-size: 0.9375rem;
    text-transform: none;
    /* stylelint-enable */
    display: block;
    margin-top: 24px; }
  .base-modal-size-selector__image {
    width: 80px; }
  .base-modal-size-selector__text {
    /* stylelint-disable */
    --uses-typography: 'product-tiles--size-modal-text';
    font-weight: 900;
    font-size: 0.9375rem;
    text-transform: uppercase;
    /* stylelint-enable */
    margin: 0; }
  .base-modal-size-selector__title {
    display: block; }

.base-product-tile {
  /* stylelint-disable */
  --uses-typography: 'product-tiles-base';
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  /* stylelint-enable */
  position: relative;
  display: grid;
  grid-template: 'image' auto 'body' auto / auto;
  overflow: hidden;
  font-style: normal; }
  @media (min-width: 375px) {
    .base-product-tile {
      font-size: calc(0.01018 * 100vw + 8.18321px); } }
  @media (min-width: 768px) {
    .base-product-tile {
      font-size: 0.75rem; } }
  @media (min-width: 1025px) {
    .base-product-tile {
      font-size: calc(0.00223 * 100vw + 9.7095px); } }
  @media (min-width: 1920px) {
    .base-product-tile {
      font-size: 0.875rem; } }
  @media (min-width: 768px) {
    .base-product-tile__swatches {
      opacity: 0;
      pointer-events: none; } }
  @media (hover: hover) {
    .base-product-tile__swatches {
      transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
      opacity: 0;
      pointer-events: none; }
    .base-product-tile:hover .base-product-tile__swatches {
      opacity: 1;
      pointer-events: auto; } }
  .base-product-tile__image {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: image;
    min-width: 0; }
  .base-product-tile__body {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    /*
    Leave space for quickshop button, in order to avoid text over it.

    padding:
      top: 0
      right: quickshop-icon-size + quickshop-button-padding-left + quickshop-button-padding-right
      bottom: 0
      left: inset-inline-start
    */
    padding-right: 1.75rem;
    padding-left: 6px;
    min-height: 70px;
    position: relative;
    display: flex;
    flex-direction: column;
    grid-area: body;
    padding-top: 0;
    padding-bottom: 0; }
    @media (min-width: 375px) {
      .base-product-tile__body {
        padding-right: calc(0.04464 * 100vw + 13.71429px); } }
    @media (min-width: 768px) {
      .base-product-tile__body {
        padding-right: 1.75rem; } }
    @media (min-width: 1025px) {
      .base-product-tile__body {
        padding-right: calc(0.02235 * 100vw + 5.09497px); } }
    @media (min-width: 1920px) {
      .base-product-tile__body {
        padding-right: 3rem; } }
    @media (min-width: 375px) {
      .base-product-tile__body {
        padding-left: calc(-0.00446 * 100vw + 7.42857px); } }
    @media (min-width: 768px) {
      .base-product-tile__body {
        padding-left: 6px; } }
    @media (min-width: 1025px) {
      .base-product-tile__body {
        padding-left: calc(-0.00223 * 100vw + 8.2905px); } }
    @media (min-width: 1920px) {
      .base-product-tile__body {
        padding-left: 4px; } }
    @media (min-width: 375px) {
      .base-product-tile__body {
        min-height: calc(0.04018 * 100vw + 57.14286px); } }
    @media (min-width: 768px) {
      .base-product-tile__body {
        min-height: 70px; } }
    @media (min-width: 1025px) {
      .base-product-tile__body {
        min-height: calc(0.02011 * 100vw + 49.38547px); } }
    @media (min-width: 1920px) {
      .base-product-tile__body {
        min-height: 88px; } }
  .base-product-tile__name, .base-product-tile__price {
    margin-bottom: 0; }
  .base-product-tile__price {
    /* stylelint-disable */
    --uses-typography: 'product-tiles-price';
    line-height: 1.25;
    letter-spacing: 0;
    font-weight: 900;
    text-decoration: none;
    font-size: 0.75rem;
    /* stylelint-enable */
    display: block; }
    @media (min-width: 375px) {
      .base-product-tile__price {
        font-size: calc(0.01018 * 100vw + 8.18321px); } }
    @media (min-width: 768px) {
      .base-product-tile__price {
        font-size: 0.75rem; } }
    @media (min-width: 1025px) {
      .base-product-tile__price {
        font-size: calc(0.00223 * 100vw + 9.7095px); } }
    @media (min-width: 1920px) {
      .base-product-tile__price {
        font-size: 0.875rem; } }
  .base-product-tile__main-label--overlap {
    left: 6px;
    position: absolute;
    right: 0;
    z-index: 20;
    padding-bottom: 2px;
    transform: translateY(-100%); }
    @media (min-width: 375px) {
      .base-product-tile__main-label--overlap {
        left: calc(-0.00446 * 100vw + 7.42857px); } }
    @media (min-width: 768px) {
      .base-product-tile__main-label--overlap {
        left: 6px; } }
    @media (min-width: 1025px) {
      .base-product-tile__main-label--overlap {
        left: calc(-0.00223 * 100vw + 8.2905px); } }
    @media (min-width: 1920px) {
      .base-product-tile__main-label--overlap {
        left: 4px; } }
    @media (min-width: 1025px) {
      .base-product-tile__main-label--overlap {
        padding-bottom: 4px; } }
  .base-product-tile__swatches {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    position: absolute;
    top: 32px;
    right: 24px;
    z-index: 2;
    grid-area: image; }
    @media (min-width: 1025px) {
      .base-product-tile__swatches {
        right: 16px; } }
  .base-product-tile__quick-shop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /*
    * 1. Show over the carousel indicators on mobile
    */ }
    .base-product-tile__quick-shop--opened {
      z-index: 20;
      /* [1] */ }

.base-product-tile-main-label {
  /* stylelint-disable */
  --uses-typography: 'product-tiles-mainLabel';
  font-size: 1.125rem;
  font-family: "EBGaramond", georgia, serif;
  /* stylelint-enable */ }
  @media (min-width: 810px) {
    .base-product-tile-main-label {
      font-weight: 600; } }

.base-product-tile-name {
  /**
   * 1. Ignore .link styles inheriting from antecessors.
   */ }
  .base-product-tile-name__link {
    display: block;
    font-weight: inherit;
    /* [1] */
    font-size: inherit;
    /* [1] */
    font-family: inherit;
    /* [1] */
    text-decoration: none;
    /**
     * 1. This h2 is for semantics (structured data), so we need to ignore the
     *    default h2 styles inheriting from the parent.
     */ }
    .base-product-tile-name__link h2 {
      margin: 0;
      font-weight: inherit;
      /* [1] */
      font-size: inherit;
      /* [1] */
      line-height: 1.3; }

.base-product-tile-image {
  position: relative;
  display: block; }
  .base-product-tile-image::before {
    display: block;
    width: 0;
    padding-bottom: 150%;
    content: ''; }
  .base-product-tile-image__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*
     * 1. Cancel the default :active styles of a link
     */ }
    .base-product-tile-image__link:active {
      background-color: inherit;
      /* [1] */ }

.base-product-tile-image__pic,
.base-product-tile-carousel__pic {
  position: relative;
  display: block; }
  .base-product-tile-image__pic::before,
  .base-product-tile-carousel__pic::before {
    display: block;
    width: 0;
    padding-bottom: 150%;
    content: ''; }
  .base-product-tile-image__pic > img,
  .base-product-tile-image__pic > .img,
  .base-product-tile-carousel__pic > img,
  .base-product-tile-carousel__pic > .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%; }

.base-product-tile[data-context='minicart-slider'] .base-product-tile-name {
  /* stylelint-disable */
  --uses-typography: 'product-tiles--minicart-slider-name';
  font-size: 0.625rem;
  /* stylelint-enable */ }

.base-product-tile[data-context='minicart-slider'] .base-product-tile__body {
  /* Remove the space for standard quickshop button */
  padding-right: 6px; }
  @media (min-width: 375px) {
    .base-product-tile[data-context='minicart-slider'] .base-product-tile__body {
      padding-right: calc(-0.00446 * 100vw + 7.42857px); } }
  @media (min-width: 768px) {
    .base-product-tile[data-context='minicart-slider'] .base-product-tile__body {
      padding-right: 6px; } }
  @media (min-width: 1025px) {
    .base-product-tile[data-context='minicart-slider'] .base-product-tile__body {
      padding-right: calc(-0.00223 * 100vw + 8.2905px); } }
  @media (min-width: 1920px) {
    .base-product-tile[data-context='minicart-slider'] .base-product-tile__body {
      padding-right: 4px; } }
  @media (min-width: 575px) {
    .base-product-tile[data-context='minicart-slider'] .base-product-tile__body {
      min-height: unset; } }

.base-product-tile[data-context='minicart-slider'] .base-product-tile__price {
  /* stylelint-disable */
  --uses-typography: 'product-tiles--minicart-slider-price';
  font-size: 0.75rem;
  /* stylelint-enable */ }

.base-progress-bar {
  --progress: 0%;
  display: flex;
  height: 1px;
  background: #a8a8a8;
  border-radius: 0; }
  .base-progress-bar__thumb {
    flex-basis: var(--progress);
    background: black;
    border-radius: 0; }

.base-order-or-rma-card {
  /* stylelint-disable */
  --uses-typography: 'base-order-or-rma-card-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  /* stylelint-enable */
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0 16px;
  text-transform: uppercase;
  border-bottom: 0.0625rem solid #a8a8a8; }
  @media (min-width: 1025px) {
    .base-order-or-rma-card {
      font-size: 0.875rem; } }
  @media (min-width: 1025px) {
    .base-order-or-rma-card {
      padding: 0 0 16px; } }
  .base-order-or-rma-card__title {
    /* stylelint-disable */
    --uses-typography: 'base-order-or-rma-card-title';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    /* stylelint-enable */
    margin-bottom: 6px; }
    @media (min-width: 1025px) {
      .base-order-or-rma-card__title {
        font-size: 1.125rem; } }
  .base-order-or-rma-card__title-link {
    /* stylelint-disable */
    --uses-typography: 'base-order-or-rma-card-title-link';
    color: black;
    text-decoration: underline;
    /* stylelint-enable */
    cursor: pointer; }
  .base-order-or-rma-card__price-quantity {
    margin-top: 4px; }
  .base-order-or-rma-card__quantity-items {
    /* stylelint-disable */
    --uses-typography: 'base-order-or-rma-card-quantity';
    font-weight: 500;
    text-transform: none;
    /* stylelint-enable */
    padding-left: 4px; }
  .base-order-or-rma-card__tracking {
    flex: 1 0 100%;
    margin: 8px 0; }
  .base-order-or-rma-card__info-extra {
    display: flex;
    justify-content: space-between; }
    @media (min-width: 1025px) {
      .base-order-or-rma-card__info-extra {
        position: absolute;
        right: 0;
        bottom: 16px;
        flex-direction: column-reverse;
        align-items: flex-end; } }
  .base-order-or-rma-card__bottom {
    display: flex;
    flex-direction: column; }
    @media (min-width: 1025px) {
      .base-order-or-rma-card__bottom {
        flex-direction: row;
        flex-wrap: wrap; } }
  .base-order-or-rma-card__additional-msg {
    /* stylelint-disable */
    --uses-typography: 'base-order-or-rma-card-additional-msg';
    color: #a8a8a8;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: none;
    /* stylelint-enable */
    flex: 1 100%;
    margin-top: 8px; }
    @media (min-width: 1025px) {
      .base-order-or-rma-card__additional-msg {
        order: 1; } }
  .base-order-or-rma-card__status {
    margin-bottom: 0; }
    @media (min-width: 1025px) {
      .base-order-or-rma-card__status {
        flex: 1; } }
  .base-order-or-rma-card__link {
    /* stylelint-disable */
    --uses-typography: 'base-order-or-rma-card-link';
    font-size: 0.75rem;
    text-transform: none;
    /* stylelint-enable */
    margin-top: 16px; }
    @media (min-width: 1025px) {
      .base-order-or-rma-card__link {
        margin-top: 0;
        margin-left: 24px; } }
  .base-order-or-rma-card__slider {
    margin: 8px 0 16px; }
    @media (min-width: 1025px) {
      .base-order-or-rma-card__slider {
        margin-top: 16px; } }
    .base-order-or-rma-card__slider .base-carousel__item {
      width: calc(100% / 4.5); }
      @media (min-width: 810px) {
        .base-order-or-rma-card__slider .base-carousel__item {
          width: calc(100% / 4); } }
    .base-order-or-rma-card__slider .base-carousel__pic {
      position: relative;
      display: block; }
      .base-order-or-rma-card__slider .base-carousel__pic::before {
        display: block;
        width: 0;
        padding-bottom: 150%;
        content: ''; }
      .base-order-or-rma-card__slider .base-carousel__pic > img,
      .base-order-or-rma-card__slider .base-carousel__pic > .img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: 50% 50%;
           object-position: 50% 50%; }
  .base-order-or-rma-card + .base-order-or-rma-card {
    margin-top: 16px; }

.base-order-delivery-note__download-delivery-note {
  /* stylelint-disable */
  --uses-typography: 'base-order-delivery-note-download-text';
  color: black;
  font-weight: 700;
  font-size: 0.75rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  /* stylelint-enable */ }

.base-order-details-return__other-returns-btn {
  display: block;
  margin: 48px 0 0 auto; }

.base-order-details-return__other-return {
  margin: 24px 0 0; }
  @media (min-width: 810px) {
    .base-order-details-return__other-return {
      margin-top: 16px; } }

.base-order-details {
  position: relative;
  width: 100%; }
  .base-order-details__cards-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 64px; }
    .base-order-details__cards-info + .base-order-invoice,
    .base-order-details__cards-info + .base-order-delivery-note {
      margin: 32px 0 0; }
  .base-order-details__text-card + .base-order-details__text-card {
    margin-top: 32px; }
    @media (min-width: 1025px) {
      .base-order-details__text-card + .base-order-details__text-card {
        margin-top: 16px; } }
  .base-order-details__order-invoice + .base-order-details__order-delivery-note {
    margin-top: 4px; }
  .base-order-details__orders {
    border-top: 0.0625rem solid rgba(168, 168, 168, 0.5); }

.base-order-info {
  /* stylelint-disable */
  --uses-typography: 'base-order-or-rma-card-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  /* stylelint-enable */
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  text-transform: uppercase; }
  @media (min-width: 1025px) {
    .base-order-info {
      font-size: 0.875rem; } }
  .base-order-info__header {
    display: inline-flex;
    grid-gap: 8px;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px; }
    @media (min-width: 1025px) {
      .base-order-info__header {
        margin-bottom: 4px; } }
  .base-order-info__title, .base-order-info__back {
    /* stylelint-disable */
    --uses-typography: 'base-order-or-rma-card-title';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .base-order-info__title, .base-order-info__back {
        font-size: 1.125rem; } }
  .base-order-info__link {
    margin: 8px 0 0;
    text-transform: none; }
    @media (min-width: 1025px) {
      .base-order-info__link {
        margin-top: 4px; } }
  .base-order-info__packages {
    margin: 16px 0 0; }
  .base-order-info__info-message {
    margin-top: 12px;
    padding: 12px;
    color: white;
    font-size: 0.625rem;
    text-transform: none;
    background-color: #c8c8c8;
    border-radius: 0.5rem; }

.base-order-invoice__download-invoice {
  /* stylelint-disable */
  --uses-typography: 'base-order-invoice-download-text';
  color: black;
  font-weight: 700;
  font-size: 0.75rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  /* stylelint-enable */ }

.base-packages__title {
  /* stylelint-disable */
  --uses-typography: 'base-order-or-rma-card-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  /* stylelint-enable */
  margin: 0; }
  @media (min-width: 1025px) {
    .base-packages__title {
      font-size: 0.875rem; } }
  .base-packages__title.btn {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: none;
    text-decoration: underline; }
  .base-packages__title[aria-expanded]::before {
    position: absolute;
    left: -12px;
    content: '+'; }
  .base-packages__title[aria-expanded='true']::before {
    transform: rotate(45deg); }

.base-packages__package:first-of-type:not(:only-of-type) {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.0625rem solid rgba(168, 168, 168, 0.5); }
  @media (min-width: 1025px) {
    .base-packages__package:first-of-type:not(:only-of-type) {
      margin-top: 8px;
      padding-top: 8px; } }

.base-packages > .base-packages__content {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  gap: 16px;
  margin: 0; }

.base-packages > .base-packages.expanded:last-of-type {
  margin-bottom: 0; }

.base-packages.expand-elements-wrapper {
  position: relative; }

.base-packages[\:has\(.base-packages__package\:only-of-type\)] .base-packages__title {
  display: none; }

.base-packages:has(.base-packages__package:only-of-type) .base-packages__title {
  display: none; }

@media (min-width: 1025px) {
  .base-packages[\:has\(.base-packages__package\:only-of-type\)] .base-package__text {
    font-size: 1.125rem; }
  .base-packages:has(.base-packages__package:only-of-type) .base-package__text {
    font-size: 1.125rem; } }

.base-packages[\:has\(.base-packages__package\:only-of-type\)].expand-elements-wrapper {
  margin-top: 24px; }

.base-packages:has(.base-packages__package:only-of-type).expand-elements-wrapper {
  margin-top: 24px; }
  @media (min-width: 1025px) {
    .base-packages[\:has\(.base-packages__package\:only-of-type\)].expand-elements-wrapper {
      margin-top: 8px; }
    .base-packages:has(.base-packages__package:only-of-type).expand-elements-wrapper {
      margin-top: 8px; } }

.base-package {
  /* stylelint-disable */
  --uses-typography: 'base-order-or-rma-card-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .base-package {
      font-size: 0.875rem; } }
  .base-package__delivery-note {
    text-transform: none; }
  .base-package__text {
    margin: 0;
    font-size: 0.875rem; }
  .base-package .base-package__tracking,
  .base-package .base-package__status {
    font-size: 0.75rem; }

.base-status-text {
  /* stylelint-disable */
  --uses-typography: 'base-order-or-rma-card-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  /* stylelint-enable */
  display: block; }
  @media (min-width: 1025px) {
    .base-status-text {
      font-size: 0.875rem; } }
  .base-status-text--color::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    background-color: none;
    background-color: var(--status-bg-color, none);
    border-radius: 50%;
    content: ''; }

/* stylelint-disable max-nesting-depth */
.base-steps {
  /* stylelint-disable */
  --uses-typography: 'list-selector-label';
  color: black;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  /* stylelint-enable */
  margin-top: 16px;
  margin-bottom: 24px; }
  @media (min-width: 1025px) {
    .base-steps {
      font-size: 0.875rem; } }
  .base-steps__title {
    /* stylelint-disable */
    --uses-typography: 'base-text-info-card-title';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    font-style: normal;
    /* stylelint-enable */
    margin-bottom: 8px; }
    @media (min-width: 1025px) {
      .base-steps__title {
        font-size: 1.125rem; } }
  .base-steps__step {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    margin-top: 4px;
    color: #a8a8a8; }
    .base-steps--states .base-steps__step + .base-steps__step {
      margin-top: 24px; }
  .base-steps__step-circle {
    display: none; }
    .base-steps--states .base-steps__step-circle {
      display: inline-block;
      align-self: center;
      width: 6px;
      height: 6px;
      margin-right: 0.625rem;
      margin-left: 2px;
      background-color: #a8a8a8;
      border-width: 0.375rem;
      border-radius: 100%; }
      .base-steps--states .base-steps__step-circle--active {
        z-index: 1;
        width: 0.625rem;
        height: 0.625rem;
        margin-right: 8px;
        margin-left: 0;
        border-width: 0.625rem; }
  .base-steps__step--done {
    color: black; }
    .base-steps__step--done .base-steps__step-circle {
      background-color: black; }
    .base-steps--states .base-steps__step--done {
      color: black; }
  .base-steps__step + .base-steps__step .base-steps__step-circle::before {
    display: block;
    width: 2px;
    height: 300%;
    margin-left: 2px;
    background-color: inherit;
    transform: scale(1, 2);
    transform-origin: 50% 200%;
    content: ' '; }
  .base-steps__step + .base-steps__step .base-steps__step-circle--active::before {
    height: 180%;
    margin-left: 4px; }
    @media (min-width: 1025px) {
      .base-steps__step + .base-steps__step .base-steps__step-circle--active::before {
        height: 200%; } }

.base-return-card__title {
  /* stylelint-disable */
  --uses-typography: 'base-order-or-rma-card-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  /* stylelint-enable */
  /* stylelint-disable */
  --uses-typography: 'base-order-or-rma-card-title';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  /* stylelint-enable */
  margin: 24px 0 0; }
  @media (min-width: 1025px) {
    .base-return-card__title {
      font-size: 0.875rem; } }
  @media (min-width: 1025px) {
    .base-return-card__title {
      font-size: 1.125rem; } }
  @media (min-width: 810px) {
    .base-return-card__title {
      margin-top: 32px; } }

.base-return-card__totals-row {
  margin: 12px 0 0; }
  @media (min-width: 810px) {
    .base-return-card__totals-row {
      margin-top: 8px; } }
  .base-return-card__totals-row p {
    margin: 0; }

.base-return-card__return-info {
  margin: 32px 0 0; }
  @media (min-width: 810px) {
    .base-return-card__return-info {
      margin-top: 48px; } }

.base-return-card__droppoint-info {
  margin: 32px 0 0; }

.base-return-card__invoice-container {
  margin: 16px 0 0; }

.base-return-card__download-file {
  /* stylelint-disable */
  --uses-typography: 'base-return-card-download-text';
  color: black;
  font-weight: 700;
  font-size: 0.75rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  /* stylelint-enable */ }

.base-rma-info {
  /* stylelint-disable */
  --uses-typography: 'base-order-or-rma-card-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  /* stylelint-enable */
  position: relative;
  display: flex;
  flex-direction: column;
  text-transform: uppercase; }
  @media (min-width: 1025px) {
    .base-rma-info {
      font-size: 0.875rem; } }
  .base-rma-info__header {
    display: inline-flex;
    grid-gap: 8px;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 8px; }
    @media (min-width: 1025px) {
      .base-rma-info__header {
        margin-bottom: 4px; } }
  .base-rma-info__title, .base-rma-info__back {
    /* stylelint-disable */
    --uses-typography: 'base-order-or-rma-card-title';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .base-rma-info__title, .base-rma-info__back {
        font-size: 1.125rem; } }
  .base-rma-info__ge-status-block {
    margin: 16px 0 12px; }
    @media (min-width: 1025px) {
      .base-rma-info__ge-status-block {
        margin-top: 24px; } }

.base-rma {
  width: 100%; }
  .base-rma__order-info {
    padding-bottom: 16px;
    color: #909090;
    pointer-events: none; }
  .base-rma__title {
    /* stylelint-disable */
    --uses-typography: 'rma-title';
    font-weight: 900;
    font-size: 1.125rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: normal;
    text-transform: uppercase;
    /* stylelint-enable */
    margin: 0; }
    .base-rma__title--small {
      /* stylelint-disable */
      --uses-typography: 'rma-title--small';
      text-transform: none;
      /* stylelint-enable */ }
      @media (min-width: 1025px) {
        .base-rma__title--small {
          font-size: calc(0.00447 * 100vw + 9.41899px); } }
      @media (min-width: 1920px) {
        .base-rma__title--small {
          font-size: 1.125rem; } }
  .base-rma__title-row {
    display: flex;
    margin: 8px 0 32px; }
    @media (min-width: 810px) {
      .base-rma__title-row {
        justify-content: flex-start; } }
  .base-rma__back {
    /* stylelint-disable */
    --uses-typography: 'rma-title';
    font-weight: 900;
    font-size: 1.125rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: normal;
    text-transform: uppercase;
    /* stylelint-enable */ }
    .base-rma__back + .base-rma__title {
      margin-left: 8px; }
  .base-rma__subtitle {
    /* stylelint-disable */
    --uses-typography: 'rma-title';
    font-weight: 900;
    font-size: 1.125rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: normal;
    text-transform: uppercase;
    /* stylelint-enable */
    margin: 0 0 16px; }
  .base-rma__message {
    /* stylelint-disable */
    --uses-typography: 'rma-message';
    font-weight: 700;
    font-size: 0.75rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    line-height: 1.25;
    /* stylelint-enable */
    margin: 0; }
    .base-rma__message--confirmation {
      margin-bottom: 32px;
      color: #66a942; }
  .base-rma__droppoint-info {
    margin-bottom: 24px; }
  .base-rma__product-card:first-of-type {
    padding-top: 0; }
  .base-rma__totals-row {
    margin: 12px 0 0; }
    .base-rma__totals-row p {
      margin: 0; }
  .base-rma .base-list-selector__description {
    font-size: 0.75rem; }
  .base-rma .base-list-selector__label {
    font-size: 0.75rem; }
    .base-rma .base-list-selector__label::before {
      position: relative;
      top: 0.0625rem; }

.base-rma-type-selector {
  margin: 8px 0; }
  .base-rma-type-selector__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; }
  .base-rma-type-selector__link {
    display: block;
    margin: 16px 0 0; }

.base-rma-item-selector__icon-check {
  position: absolute;
  top: 0;
  right: 0; }
  @media (min-width: 375px) {
    .base-rma-item-selector__icon-check {
      top: 16px; } }
  @media (min-width: 575px) {
    .base-rma-item-selector__icon-check {
      top: 0; } }

.base-rma-store-locator__store-locator-container {
  margin: 2px 0 0; }

.base-rma-store-locator .store-locator-grid__select-store-title {
  display: none; }

.base-rma-store-locator .store-locator-grid__search-form {
  margin-bottom: 2.5rem; }

.base-rma-store-locator .store-locator-grid__map {
  margin: 0 -16px; }
  @media (min-width: 768px) {
    .base-rma-store-locator .store-locator-grid__map {
      margin: 0; } }

.base-rma-confirmation__droppoint-info-card {
  margin-top: 24px;
  margin-bottom: 24px; }
  @media (min-width: 810px) {
    .base-rma-confirmation__droppoint-info-card {
      margin-top: 32px;
      margin-bottom: 32px; } }

.base-rma-confirmation__product-card:first-of-type {
  padding-top: 8px;
  border-top: 0.0625rem solid rgba(168, 168, 168, 0.5); }

.base-rma-summary .base-content-asset p {
  /* stylelint-disable */
  --uses-typography: 'rma-message';
  font-weight: 700;
  font-size: 0.75rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  line-height: 1.25;
  /* stylelint-enable */ }
  .base-rma-summary .base-content-asset p:not(:first-of-type) {
    margin-top: 16px; }

.base-rma-summary__droppoint-info-card {
  margin-top: 32px;
  margin-bottom: 32px; }
  @media (min-width: 810px) {
    .base-rma-summary__droppoint-info-card {
      margin-top: 48px;
      margin-bottom: 48px; } }

.base-rma-summary .base-rma {
  margin-bottom: 24px;
  padding-bottom: 8px; }

.base-rma-summary .base-rma__title {
  margin-bottom: 16px;
  color: #66a942; }

.base-return-info__row {
  /* stylelint-disable */
  --uses-typography: 'base-order-or-rma-card-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.25;
  /* stylelint-enable */
  margin: 0;
  text-transform: uppercase; }
  @media (min-width: 1025px) {
    .base-return-info__row {
      font-size: 0.875rem; } }

.base-return-info__message {
  /* stylelint-disable */
  --uses-typography: 'rma-message';
  font-weight: 700;
  font-size: 0.75rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  line-height: 1.25;
  /* stylelint-enable */
  margin: 4px 0 0; }

.base-address-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%; }
  .base-address-info-card__title {
    /* stylelint-disable */
    --uses-typography: 'base-text-info-card-title';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    font-style: normal;
    /* stylelint-enable */
    margin-bottom: 2px;
    text-transform: uppercase; }
    @media (min-width: 1025px) {
      .base-address-info-card__title {
        font-size: 1.125rem; } }
    @media (min-width: 1025px) {
      .base-address-info-card__title {
        margin-bottom: 4px; } }
  .base-address-info-card__subtitle {
    /* stylelint-disable */
    --uses-typography: 'base-text-info-card-subtitle';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    font-style: normal;
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .base-address-info-card__subtitle {
        font-size: 0.875rem; } }
  .base-address-info-card__info {
    /* stylelint-disable */
    --uses-typography: 'base-text-info-card-info';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    font-style: normal;
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .base-address-info-card__info {
        font-size: 0.875rem; } }

.base-droppoint-info-card {
  position: relative;
  display: flex;
  flex-direction: column; }
  .base-droppoint-info-card__title {
    /* stylelint-disable */
    --uses-typography: 'base-text-info-card-title';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    font-style: normal;
    /* stylelint-enable */
    margin-bottom: 2px;
    text-transform: uppercase; }
    @media (min-width: 1025px) {
      .base-droppoint-info-card__title {
        font-size: 1.125rem; } }
    @media (min-width: 1025px) {
      .base-droppoint-info-card__title {
        margin-bottom: 4px; } }
  .base-droppoint-info-card__subtitle {
    /* stylelint-disable */
    --uses-typography: 'base-text-info-card-subtitle';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    font-style: normal;
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .base-droppoint-info-card__subtitle {
        font-size: 0.875rem; } }
  .base-droppoint-info-card__info {
    /* stylelint-disable */
    --uses-typography: 'base-text-info-card-info';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    font-style: normal;
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .base-droppoint-info-card__info {
        font-size: 0.875rem; } }

.base-payment-info-card {
  /* stylelint-disable */
  --uses-typography: 'base-text-info-card-info';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  font-style: normal;
  /* stylelint-enable */
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%; }
  @media (min-width: 1025px) {
    .base-payment-info-card {
      font-size: 0.875rem; } }
  .base-payment-info-card__title {
    /* stylelint-disable */
    --uses-typography: 'base-text-info-card-title';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    font-style: normal;
    /* stylelint-enable */
    margin-bottom: 4px;
    text-transform: uppercase; }
    @media (min-width: 1025px) {
      .base-payment-info-card__title {
        font-size: 1.125rem; } }
    @media (min-width: 1025px) {
      .base-payment-info-card__title {
        margin-bottom: 6px; } }
  .base-payment-info-card__type-icon {
    margin-bottom: -0.1875rem; }

/* Hide container content slot when is inactive */
.base-slot > p {
  margin-top: 0;
  color: #66a842;
  font-weight: bold;
  font-size: 0.6875rem; }

.checkout-message, .checkout-message p {
  color: #1500ff;
  font-weight: 700;
  font-size: 0.75rem; }

.checkout-message p {
  margin: 0; }

/* stylelint-disable-next-line selector-class-pattern */
.slot-promo-checkout-message {
  position: relative;
  margin: -32px 0 24px; }
  @media (min-width: 1025px) {
    .slot-promo-checkout-message {
      margin: 0 0 16px; } }

.slot-checkout-shipping-message,
.slot-checkout-payment-message {
  margin: 0 0 16px; }

.slot-checkout-confirmation-shipping-message,
.slot-checkout-confirmation-payment-message {
  margin: 24px 0 0; }

/* stylelint-disable-next-line selector-class-pattern */
.slot-success-promo-message {
  margin-top: 24px;
  padding: 0 18px; }
  @media (min-width: 1025px) {
    .slot-success-promo-message {
      margin-top: 48px;
      padding: 0; } }

/* stylelint-disable-next-line selector-class-pattern */
.slot-cart-header-message {
  padding: 16px 16px 0; }
  @media (min-width: 575px) {
    .slot-cart-header-message {
      padding: 0 0 16px; } }

.base-slot--hidden {
  display: none; }

.base-tag {
  display: inline-flex; }
  .base-tag--detail {
    /* stylelint-disable */
    --uses-typography: 'product-details-tag';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-weight: 900;
    /* stylelint-enable */
    line-height: 1.25; }
    .base-tag--detail.iframe-tag {
      z-index: 3;
      margin-top: 0.625rem;
      padding: 4px 0.625rem;
      color: black;
      background-color: white;
      border-radius: 3.125rem; }
      @media (min-width: 575px) {
        .base-tag--detail.iframe-tag {
          position: static;
          margin-top: 24px;
          background-color: #e0e0e0;
          cursor: pointer; } }
  .base-tag--detail-primary {
    color: #909090;
    font-size: 1.3125rem;
    letter-spacing: 0.6px; }
    @media (min-width: 1025px) {
      .base-tag--detail-primary {
        font-size: 1.5625rem;
        letter-spacing: 0.8px; } }
  .base-tag--detail-secondary {
    font-size: 0.875rem; }
    @media (min-width: 1025px) {
      .base-tag--detail-secondary {
        font-size: 1rem; } }
  .base-tag--grid {
    /* stylelint-disable */
    --uses-typography: 'product-tiles-tag';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1.25;
    /* stylelint-enable */ }
    @media (min-width: 375px) {
      .base-tag--grid {
        font-size: calc(0.0229 * 100vw + 5.41221px); } }
    @media (min-width: 768px) {
      .base-tag--grid {
        font-size: 0.875rem; } }
    @media (min-width: 1025px) {
      .base-tag--grid {
        font-size: calc(0.00782 * 100vw + 5.98324px); } }
    @media (min-width: 1920px) {
      .base-tag--grid {
        font-size: 1.3125rem; } }
    .base-tag--grid.iframe-tag {
      color: #909090;
      pointer-events: none; }
  .base-tag--uppercase {
    text-transform: uppercase; }
  .base-tag--grid-secondary {
    color: #a8a8a8; }

.iframe-tag {
  /* stylelint-disable */
  --uses-typography: 'forms-label--select';
  color: #909090;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  /* stylelint-enable */
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  align-items: center;
  text-transform: none; }
  @media (min-width: 1025px) {
    .iframe-tag {
      top: 32px; } }
  .iframe-tag::before {
    display: inline-block;
    width: 0.889em;
    height: 1em;
    margin-right: 4px;
    background-color: currentColor;
    content: '';
    -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 18"><path d="m3.065 5.903 4.774 2.968m0 0 4.774-2.968M7.839 8.871v5.42M1 4.612 7.839 1l7.096 3.613v8.258L7.84 17 1 12.871V4.613Z" stroke="black"/></svg>');
            mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 18"><path d="m3.065 5.903 4.774 2.968m0 0 4.774-2.968M7.839 8.871v5.42M1 4.612 7.839 1l7.096 3.613v8.258L7.84 17 1 12.871V4.613Z" stroke="black"/></svg>');
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center; }

.base-tracking {
  /* stylelint-disable */
  --uses-typography: 'base-tracking-base';
  color: black;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .base-tracking {
      font-size: 0.875rem; } }
  .base-tracking__link {
    /* stylelint-disable */
    --uses-typography: 'base-tracking-base';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    /* stylelint-enable */
    /* stylelint-disable */
    --uses-typography: 'base-tracking-link';
    text-decoration: underline;
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .base-tracking__link {
        font-size: 0.875rem; } }

.country-prefix-selector {
  position: relative; }

/*
  <dialog class="dialog-modal">
      <button class="btn-close dialog-modal__close"></button>

      CUSTOM CONTENT
  </dialog>
*/
.dialog-modal {
  max-width: 100%;
  max-height: 100%;
  padding: 1rem;
  background-color: white;
  border: 0;
  border-radius: unset; }
  .dialog-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.125rem; }
  .dialog-modal--no-close .dialog-modal__close {
    display: none; }

.modal,
.modal-fix {
  padding-right: 0 !important; }

.modal-backdrop {
  background-color: rgba(135, 135, 135, 0.38);
  opacity: 0.8; }
  .modal-backdrop.fade:not(.fade-visible) {
    transition: unset; }
    .modal-backdrop.fade:not(.fade-visible).show {
      opacity: 0; }
  .modal-backdrop.fade.show.fade-visible {
    opacity: 0.08; }

.modal-dialog,
.base-modal__dialog {
  display: flex;
  align-items: center;
  height: 100%;
  margin: auto; }

.modal-actions {
  position: relative;
  z-index: 1; }

.modal-close-action,
.base-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  font-size: 1.125rem;
  cursor: pointer;
  pointer-events: initial; }
  @media (min-width: 810px) {
    .modal-close-action,
    .base-modal__close {
      font-size: calc(0.02791 * 100vw + -4.60465px); } }
  @media (min-width: 1025px) {
    .modal-close-action,
    .base-modal__close {
      top: 1.5rem;
      right: 1.5rem;
      font-size: 1.5rem; } }

.modal-content,
.base-modal__content {
  z-index: 0;
  padding: 1rem 0.875rem 1.5rem;
  background-color: white;
  border: 0;
  border-radius: unset;
  box-shadow: 0 0 4px 0 #909090; }
  @media (min-width: 1025px) {
    .modal-content,
    .base-modal__content {
      padding: 3rem; } }

@supports (-webkit-touch-callout: none) {
  .modal-open {
    box-sizing: border-box;
    max-height: calc((1vh * 100) - 1px);
    max-height: calc((var(--vh, 1vh) * 100) - 1px); } }

.modal-header,
.base-modal__header {
  padding: 0;
  border: 0; }

.modal-title {
  /* stylelint-disable */
  --uses-typography: 'byl-modal-title';
  font-size: 0.875rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.25;
  /* stylelint-enable */
  margin: 0; }
  @media (min-width: 575px) {
    .modal-title {
      font-size: calc(0.00297 * 100vw + 12.28996px); } }
  @media (min-width: 1920px) {
    .modal-title {
      font-size: 1.125rem; } }

.modal-body,
.base-modal__body {
  margin: 1rem 0 2rem;
  padding: 0; }

.modal-footer {
  display: flex;
  justify-content: center;
  padding: 0;
  border: 0; }
  @media (min-width: 1025px) {
    .modal-footer {
      justify-content: flex-end; } }
  .modal-footer button + button {
    margin-left: 1.5rem; }

.modal-scrollbar-measure {
  width: 9px;
  height: 9px; }

.modal__action-button-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  float: none;
  margin: 48px 0 0;
  padding: 0; }
  @media (min-width: 575px) {
    .modal__action-button-container {
      flex-direction: row-reverse;
      align-items: center;
      margin-top: 3.125rem;
      padding-right: 2.5vw; } }
  @media (min-width: 810px) {
    .modal__action-button-container {
      margin-top: 3.3125rem; } }
  @media (min-width: 1025px) {
    .modal__action-button-container {
      margin-top: 64px; } }
  .modal__action-button-container .btn--modal {
    display: inline-block;
    float: none;
    width: unset;
    max-width: none;
    margin: 0 0 0.625rem;
    padding: 0;
    font-size: 1.4375rem;
    letter-spacing: 0.6px;
    text-align: left; }
    @media (min-width: 575px) {
      .modal__action-button-container .btn--modal {
        margin-bottom: 0; } }
    .modal__action-button-container .btn--modal-secondary {
      color: black;
      font-weight: bold;
      font-size: 1.125rem;
      letter-spacing: unset;
      text-transform: none;
      text-decoration: none; }
      @media (min-width: 575px) {
        .modal__action-button-container .btn--modal-secondary {
          margin-right: 2.5vw;
          margin-bottom: 0;
          font-size: calc(0.00223 * 100vw + 16.71747px);
          text-align: center; } }
      @media (min-width: 1920px) {
        .modal__action-button-container .btn--modal-secondary {
          font-size: 1.3125rem; } }

.modal.fade:not(.show) {
  opacity: unset; }

.modal.fade .modal-dialog {
  transform: unset;
  transition: unset; }

.modal[data-modal-type='size-guide'] .modal-dialog {
  justify-content: center; }
  @media (min-width: 375px) {
    .modal[data-modal-type='size-guide'] .modal-dialog {
      max-width: 100%; } }
  @media (min-width: 768px) {
    .modal[data-modal-type='size-guide'] .modal-dialog {
      left: -13%; } }
  @media (min-width: 1025px) {
    .modal[data-modal-type='size-guide'] .modal-dialog {
      left: -12%; } }

.modal[data-modal-type='size-guide'] .modal-content-wrapper {
  position: relative;
  width: 100%;
  height: 100%; }
  @media (max-width: 574px) {
    .modal[data-modal-type='size-guide'] .modal-content-wrapper {
      transition: transform 300ms cubic-bezier(0.03, 0.12, 0.36, 1.31) 0ms;
      transform: translateY(100%); } }
  @media (min-width: 575px) {
    .modal[data-modal-type='size-guide'] .modal-content-wrapper {
      transition: opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
      max-width: 375px;
      height: 76%;
      opacity: 0; } }
  @media (min-width: 768px) {
    .modal[data-modal-type='size-guide'] .modal-content-wrapper {
      max-width: calc(0.74 * (100% - (256px - 16px))); } }
  @media (min-width: 1025px) {
    .modal[data-modal-type='size-guide'] .modal-content-wrapper {
      max-width: 59.28%; } }

.modal[data-modal-type='size-guide'] .modal-close-action {
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.125rem; }
  @media (min-width: 1920px) {
    .modal[data-modal-type='size-guide'] .modal-close-action {
      top: 1rem;
      right: 1rem;
      font-size: 1.5rem; } }

.modal[data-modal-type='size-guide'] .modal-body {
  /* Internet Explorer */
  scrollbar-face-color: #a8a8a8;
  scrollbar-track-color: transparent;
  /* W3C Working Draft */
  scrollbar-color: #a8a8a8 transparent;
  /* stylelint-disable-line property-no-unknown */
  margin: 48px 0 0;
  padding: 0 16px 48px;
  overflow-y: auto; }
  .modal[data-modal-type='size-guide'] .modal-body::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 0; }
  .modal[data-modal-type='size-guide'] .modal-body::-webkit-scrollbar-track {
    background-color: transparent; }
  .modal[data-modal-type='size-guide'] .modal-body::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #ebebeb; }
  @media (min-width: 575px) {
    .modal[data-modal-type='size-guide'] .modal-body {
      margin: 48px 0;
      padding-bottom: 0; } }
  @media (min-width: 768px) {
    .modal[data-modal-type='size-guide'] .modal-body {
      padding: 0 4.28%; } }
  @media (min-width: 1025px) {
    .modal[data-modal-type='size-guide'] .modal-body {
      padding: 0 8%; } }

.modal[data-modal-type='size-guide'] .modal-content {
  width: 100%;
  height: 100%;
  padding: 0;
  box-shadow: none; }

.modal[data-modal-type='size-guide'] .tabs__tablist {
  margin-top: 0;
  margin-bottom: 16px; }

@media (max-width: 574px) {
  .modal[data-modal-type='size-guide'].show .modal-content-wrapper {
    transform: translateY(0); } }

@media (min-width: 575px) {
  .modal[data-modal-type='size-guide'].show .modal-content-wrapper {
    opacity: 1; } }

.modal[data-modal-type='newsletter'] .modal-dialog {
  max-width: 960px;
  min-height: 245px;
  margin: 0 24px; }
  @media (min-width: 768px) {
    .modal[data-modal-type='newsletter'] .modal-dialog {
      margin: auto; } }

.modal[data-modal-type='newsletter'] .modal-content,
.modal[data-modal-type='newsletter'] .base-modal__content {
  padding: 0;
  box-shadow: none; }

.modal[data-modal-type='newsletter'] .modal-body {
  margin: 0; }

.modal[data-modal-type='newsletter'] .modal-close-action {
  top: 0.75rem;
  right: 0.75rem; }
  @media (min-width: 768px) {
    .modal[data-modal-type='newsletter'] .modal-close-action {
      top: 1rem;
      right: 1rem;
      font-size: 1rem; } }

.base-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: block;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0; }
  .base-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
  .base-modal__btn-back {
    /* stylelint-disable */
    --uses-typography: 'header-base-back-button';
    font-size: 0.9375rem;
    /* stylelint-enable */
    overflow: visible;
    position: relative;
    height: var(--header-height);
    color: black; }
    .base-modal__btn-back::after {
      --hotzone-margins: 8px;
      position: absolute;
      top: calc(-1 * var(--hotzone-margins));
      left: calc(-1 * var(--hotzone-margins));
      width: calc(100% + (2 * var(--hotzone-margins)));
      height: calc(100% + (2 * var(--hotzone-margins)));
      content: '';
      background: transparent; }
    .base-modal__btn-back::before {
      background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path style="transform:rotate(180 12)" d="M3 0l9 6-9 6z" fill="black" fill-rule="evenodd" transform="matrix(-1, 0, 0, -1, 12, 12)" /></svg>'); }
  .base-modal__close {
    z-index: 1051; }
  .base-modal__dialog {
    position: relative;
    z-index: 1050;
    width: auto;
    pointer-events: none; }
    .base-modal__dialog--scrollable {
      display: flex; }
    .base-modal__dialog--scrollable .base-modal__header,
    .base-modal__dialog--scrollable .base-modal__footer {
      flex-shrink: 0; }
    .base-modal__dialog--scrollable .base-modal__body {
      overflow-y: auto; }
    .base-modal__dialog .base-modal__content {
      max-height: 100dvh; }
  .base-modal__content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-clip: padding-box;
    outline: 0;
    pointer-events: auto; }
  .base-modal__body {
    position: relative;
    flex: 1 1 auto; }
  .base-modal__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1049;
    width: 100vw;
    height: 100vh;
    background-color: rgba(135, 135, 135, 0.38);
    opacity: 0.8;
    pointer-events: none; }
    .base-modal__backdrop--interaction {
      pointer-events: all; }
  .base-modal--bottom .base-modal__backdrop {
    display: none; }
  .base-modal--bottom .base-modal__body {
    margin: 0; }
  .base-modal--bottom .base-modal__content {
    min-height: 80px;
    padding: 0;
    border-radius: 0.875rem 0.875rem 0 0;
    box-shadow: 0 0 0.25rem 0 #c8c8c8; }
  .base-modal--bottom .base-modal__close {
    top: 16px;
    right: 24px;
    font-size: 0.875rem; }
  .base-modal--bottom .base-modal__dialog {
    align-items: flex-end; }
  .base-modal--fullscreen {
    transition: transform 300ms cubic-bezier(0.03, 0.12, 0.36, 1.31) 0ms;
    transform: translateY(100%); }
    .base-modal--fullscreen.base-modal--open {
      transform: translateY(0); }
    .base-modal--fullscreen .base-modal__header {
      align-items: center;
      height: var(--header-height);
      padding-left: 16px;
      padding-right: 16px; }
    .base-modal--fullscreen .base-modal__content {
      padding: 0; }
    .base-modal--fullscreen .base-modal__body {
      margin: 0;
      overscroll-behavior: contain; }
  .base-modal--pdp .base-modal__dialog, .base-modal--pdp-customization-modal .base-modal__dialog {
    justify-content: center; }
    @media (min-width: 375px) {
      .base-modal--pdp .base-modal__dialog, .base-modal--pdp-customization-modal .base-modal__dialog {
        max-width: 100%; } }
    @media (min-width: 768px) {
      .base-modal--pdp .base-modal__dialog, .base-modal--pdp-customization-modal .base-modal__dialog {
        left: -13%; } }
    @media (min-width: 1025px) {
      .base-modal--pdp .base-modal__dialog, .base-modal--pdp-customization-modal .base-modal__dialog {
        left: -12%; } }
  .base-modal--pdp .base-modal__content, .base-modal--pdp-customization-modal .base-modal__content {
    height: 100%;
    padding: 0;
    box-shadow: none; }
    @media (max-width: 574px) {
      .base-modal--pdp .base-modal__content, .base-modal--pdp-customization-modal .base-modal__content {
        transition: transform 300ms cubic-bezier(0.03, 0.12, 0.36, 1.31) 0ms;
        transform: translateY(100%); } }
    @media (min-width: 575px) {
      .base-modal--pdp .base-modal__content, .base-modal--pdp-customization-modal .base-modal__content {
        transition: opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
        max-width: 375px;
        height: 76%;
        opacity: 0; } }
    @media (min-width: 768px) {
      .base-modal--pdp .base-modal__content, .base-modal--pdp-customization-modal .base-modal__content {
        max-width: calc(0.74 * (100% - (256px - 16px))); } }
    @media (min-width: 1025px) {
      .base-modal--pdp .base-modal__content, .base-modal--pdp-customization-modal .base-modal__content {
        max-width: 59.28%; } }
  .base-modal--pdp .base-modal__body, .base-modal--pdp-customization-modal .base-modal__body {
    /* Internet Explorer */
    scrollbar-face-color: #a8a8a8;
    scrollbar-track-color: transparent;
    /* W3C Working Draft */
    scrollbar-color: #a8a8a8 transparent;
    /* stylelint-disable-line property-no-unknown */
    display: flex;
    flex-direction: row;
    margin: 0;
    overflow-y: auto; }
    .base-modal--pdp .base-modal__body::-webkit-scrollbar-thumb, .base-modal--pdp-customization-modal .base-modal__body::-webkit-scrollbar-thumb {
      background-color: #a8a8a8;
      border-radius: 0; }
    .base-modal--pdp .base-modal__body::-webkit-scrollbar-track, .base-modal--pdp-customization-modal .base-modal__body::-webkit-scrollbar-track {
      background-color: transparent; }
    .base-modal--pdp .base-modal__body::-webkit-scrollbar, .base-modal--pdp-customization-modal .base-modal__body::-webkit-scrollbar {
      width: 9px;
      height: 9px;
      background-color: #ebebeb; }
  @media (max-width: 574px) {
    .base-modal--pdp.base-modal--open .base-modal__content, .base-modal--pdp-customization-modal.base-modal--open .base-modal__content {
      transform: translateY(0); } }
  @media (min-width: 575px) {
    .base-modal--pdp.base-modal--open .base-modal__content, .base-modal--pdp-customization-modal.base-modal--open .base-modal__content {
      opacity: 1; } }
  .base-modal--ar-try-on {
    display: flex;
    align-items: center;
    justify-content: center; }
    .base-modal--ar-try-on .base-modal__body,
    .base-modal--ar-try-on .base-modal__content,
    .base-modal--ar-try-on .base-modal__dialog {
      width: 100%;
      max-width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      overflow: hidden; }
    @media (min-width: 1025px) {
      .base-modal--ar-try-on .base-modal__dialog {
        max-width: 57.5625rem;
        max-height: 36.875rem; } }
  @media (min-width: 768px) {
    .base-modal--pdp-customization-modal .base-modal__content {
      height: unset; } }

.base-modal-open {
  overflow: hidden; }

/*
  HTML resume
--------------------------------------------------------------------------------

  div.store-locator-grid__search-form.search-form
    form.form.store-locator
      div.field-text.required
        label.field-text__label.visually-hidden
        input.field-text__input.input.input--secondar. form-control
        div.invalid-feedback
      div.form__actions.form__actions--fluid
        button.u-btn-clean.link detect-location
        button.btn.btn--primary.btn--fluid.btn-storelocator-search
        p.visually-hidden#storelocator-use-my-location-desc

  div.store-locator-grid__results.results-container
    div.radius-filter
      label
      select.form-control.custom-select.radius.is-filled
    div.results-container
      p.text-center.store-locator-no-results

      div.results

        LOOP=>
        div.result.arrow
          div.store-details
            button.store-name.store-view-in-map.u-btn-clean
            address.store-address
              span.store-address__physical-address.store-view-in-map
              span.store-address__postal-code-city.store-view-in-map
              p.store-hours
              p.store-phone
                a.store-phone__call.mobile
                a.store-phone__number.desktop
              a.store-how-to-get
        <=LOOP
*/
/* -------------------------------------------------------------------------- *\
    Select store title
\* -------------------------------------------------------------------------- */
.store-locator-grid__select-store-title {
  /* stylelint-disable */
  --uses-typography: 'checkout-section-title';
  font-weight: 900;
  font-size: 0.9375rem;
  text-transform: uppercase;
  /* stylelint-enable */
  margin: 32px 0 8px; }
  @media (min-width: 575px) {
    .store-locator-grid__select-store-title {
      font-size: calc(0.00419 * 100vw + 13.59162px); } }
  @media (min-width: 1530px) {
    .store-locator-grid__select-store-title {
      font-size: calc(0.01282 * 100vw + 0.38462px); } }
  @media (min-width: 1920px) {
    .store-locator-grid__select-store-title {
      font-size: 1.5625rem; } }

.store-locator-grid__select-store-subtitle {
  /* stylelint-disable */
  --uses-typography: 'checkout-section-subtitle';
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: none;
  line-height: 1.25;
  /* stylelint-enable */
  margin: 0 0 16px; }

/* -------------------------------------------------------------------------- *\
    Search form
\* -------------------------------------------------------------------------- */
.store-locator-search-form .form {
  text-align: right; }

.store-locator-search-form .detect-location {
  /* stylelint-disable */
  --uses-typography: 'stores-nearest-stores-btn';
  font-size: 0.875rem;
  font-weight: 700;
  font-style: italic;
  font-family: "EBGaramond", georgia, serif;
  /* stylelint-enable */
  margin-top: 16px; }
  @media (min-width: 1025px) {
    .store-locator-search-form .detect-location {
      font-size: 1.125rem; } }

.store-locator-search-form .btn-storelocator-search {
  /* stylelint-disable */
  --uses-typography: 'stores-storelocator-search';
  font-size: 1rem;
  /* stylelint-enable */
  margin: 8px 0 0; }
  @media (min-width: 575px) {
    .store-locator-search-form .btn-storelocator-search {
      font-size: 1.4375rem; } }
  @media (min-width: 810px) {
    .store-locator-search-form .btn-storelocator-search {
      font-size: 1.5625rem; } }

.storelocator-deselect-country {
  display: none; }

/* -------------------------------------------------------------------------- *\
    Result list
\* -------------------------------------------------------------------------- */
.store-locator-grid__search-results {
  position: relative;
  margin-top: 24px;
  overflow: auto;
  /*
   *  Result
  \* ------------------------------------------------------------------------ */ }
  .store-locator-grid__search-results .radius-filter {
    display: none; }
  .store-locator-grid__search-results .store-locator-no-results {
    /* stylelint-disable */
    --uses-typography: 'stores-storelocator-no-results';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    color: #909090;
    line-height: 1.25;
    /* stylelint-enable */
    display: none; }
  .store-locator-grid__search-results .result {
    position: relative;
    display: flex;
    margin-bottom: 24px;
    padding: 0;
    /**
     * 1. Make last result visible before the floating menu on wearables when
     *    scrolling into view.
     */ }
    @media (min-width: 768px) {
      .store-locator-grid__search-results .result {
        margin-bottom: 32px; } }
    .store-locator-grid__search-results .result:last-child {
      margin-bottom: 0;
      padding-bottom: 6rem;
      /* [1] */ }

.store-locator-grid {
  display: grid;
  grid-template: 'search-form' auto 'store-title' auto 'store-subtitle' auto 'tabs' auto 'tabpanel' 1fr / auto;
  height: calc(100vh - 40px);
  height: calc(100vh - var(--header-total-height)); }
  .store-locator-grid__hero:not(:focus):not(:active) {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%); }
  .store-locator-grid__select-store-title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: store-title; }
  .store-locator-grid__select-store-subtitle {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: store-subtitle; }
  .store-locator-grid__map {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    position: relative;
    grid-area: tabpanel;
    min-height: 20rem;
    margin: 0; }
  .store-locator-grid--standalone > .store-locator-grid__map {
  -ms-grid-row: 3;
  -ms-grid-column: 1; }
  .store-locator-grid__search-form {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: search-form; }
  .store-locator-grid--standalone > .store-locator-grid__search-form {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1; }
  .store-locator-grid__search-results {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    grid-area: tabpanel;
    padding-left: 16px;
    padding-right: 16px; }
  .store-locator-grid--standalone > .store-locator-grid__search-results {
  -ms-grid-row: 3;
  -ms-grid-column: 1; }
  .store-locator-grid__tabs {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    grid-area: tabs;
    margin: 0 0 24px 50%; }
  .store-locator-grid--standalone > .store-locator-grid__tabs {
  -ms-grid-row: 2;
  -ms-grid-column: 1; }
    .store-locator-grid__tabs .tabs__tab {
      /* stylelint-disable */
      --uses-typography: 'tabs-grid';
      font-size: 0.8125rem;
      /* stylelint-enable */ }

/* -------------------------------------------------------------------------- *\
 *  MODIFIER: ATTACHED
 * -------------------------------------
 * Target:  Grid for attached grid into another page. P.E. Checkout & RMAs
 * Specific styles for checkout or rmas are in:
 *   _checkoutStoreLocator.scss & _base-rma-store-locator.scss respectively
\* -------------------------------------------------------------------------- */
.store-locator-grid--attached .store-actions {
  display: none; }

.store-locator-grid--attached .store-locator-grid__search-results {
  max-height: 38.75rem;
  overflow-x: hidden;
  overflow-y: auto; }
  @media (min-width: 768px) {
    .store-locator-grid--attached .store-locator-grid__search-results {
      max-height: 45rem; } }

.store-locator-grid--attached .store-locator-grid__map {
  position: relative;
  min-height: 550px; }

.store-locator-grid--attached .store-locator-search-form .form__actions {
  justify-content: space-between;
  margin: 0 8px 0 0; }
  @media (min-width: 768px) {
    .store-locator-grid--attached .store-locator-search-form .form__actions {
      margin: 0 8px; } }

.store-locator-grid--attached .result {
  /* stylelint-disable */
  --uses-typography: 'stores-store-name';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 900;
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .store-locator-grid--attached .result {
      font-size: 1.125rem; } }

.store-locator-grid--attached .select-store-input {
  font-size: inherit; }

/* Only attached version for Checkout must change to no-tabs in desktop-1530 */
@media (min-width: 1530px) {
  .checkout-container .store-locator-grid--attached .store-locator-grid__tabs:not(:focus):not(:active) {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%); }
  .checkout-container .store-locator-grid--attached .store-locator-grid__search-results {
    grid-area: search-results;
    max-height: 40rem; }
  .checkout-container .store-locator-grid--attached .store-locator-grid__map {
    display: block;
    grid-area: map;
    max-height: 40rem; }
  .checkout-container .store-locator-grid--attached .tabs__tabpanel[hidden] {
    display: block; }
  .checkout-container .store-locator-grid--attached .storelocator-map-popup {
    display: none !important; }
  .checkout-container .store-locator-grid--attached .btn-storelocator-search {
    margin-top: 4px; } }

@media (min-width: 1530px) {
  .checkout-container .store-locator-grid--attached {
    grid-template: 'search-form search-form' auto 'store-title store-title' auto 'store-subtitle store-subtitle' auto 'map search-results' 1fr / auto 44%; }
  .checkout-container .store-locator-grid--attached > .store-locator-grid__select-store-title {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; }
  .checkout-container .store-locator-grid--attached > .store-locator-grid__select-store-subtitle {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; }
  .checkout-container .store-locator-grid--attached > .store-locator-grid__search-form {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; }
  .checkout-container .store-locator-grid--attached .store-locator-grid__search-results {
    -ms-grid-row: 4;
    -ms-grid-column: 2; }
  .checkout-container .store-locator-grid--attached .store-locator-grid__map {
    -ms-grid-row: 4;
    -ms-grid-column: 1; } }

@media (min-width: 1530px) {
  .checkout-container .store-locator-grid--attached .results {
    margin-top: 0; } }

@media (min-width: 1530px) {
  .checkout-container .store-locator-search-form .form__actions {
    margin: 0 16px; } }

/* -------------------------------------------------------------------------- *\
 *  MODIFIER: STANDALONE
 * -------------------------------------
 * Target:  Grid for storeLocator page
 * URL:     /on/demandware.store/Sites-byl-sg-Site/en_SG/Stores-Find
\* -------------------------------------------------------------------------- */
.store-locator-grid--standalone {
  position: sticky;
  top: var(--header-total-height);
  z-index: 2;
  grid-template: "search-form" auto "tabs" auto "tabpanel" 1fr/auto;
  width: 100%;
  height: auto;
  background-color: white; }
  @media (min-width: 768px) {
    .store-locator-grid--standalone {
      position: fixed;
      grid-template: "map search-form" auto "map search-results" 1fr/calc(100vw - 362px) 362px;
      margin: 0;
      background-color: transparent; }
      .store-locator-grid--standalone .store-locator-grid__tabs:not(:focus):not(:active) {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        white-space: nowrap;
        border: 0;
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(100%);
                clip-path: inset(100%); }
      .store-locator-grid--standalone .store-locator-grid__search-results {
        grid-area: search-results;
        max-height: 40rem; }
      .store-locator-grid--standalone .store-locator-grid__map {
        display: block;
        grid-area: map;
        max-height: 40rem; }
      .store-locator-grid--standalone .tabs__tabpanel[hidden] {
        display: block; }
      .store-locator-grid--standalone .storelocator-map-popup {
        display: none !important; }
      .store-locator-grid--standalone .btn-storelocator-search {
        margin-top: 4px; }
    .store-locator-grid--standalone > .store-locator-grid__search-form {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1; }
    .checkout-container .store-locator-grid--attached .store-locator-grid__search-results {
    -ms-grid-row: 2;
    -ms-grid-column: 2; }
    .checkout-container .store-locator-grid--attached .store-locator-grid__map {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1; } }
  .store-locator-grid--standalone .store-locator-grid {
    /**
    * 1. Search form shows over the map in desktop
    */ }
    .store-locator-grid--standalone .store-locator-grid__search-form {
      z-index: 20;
      display: flex;
      flex-direction: column;
      /* stylelint-disable-next-line max-nesting-depth */
      /* stylelint-disable-next-line max-nesting-depth */ }
      @media (min-width: 768px) {
        .store-locator-grid--standalone .store-locator-grid__search-form {
          position: sticky;
          top: 40px;
          top: var(--header-total-height);
          z-index: 2;
          /* [1] */
          margin-left: 0; } }
      .store-locator-grid--standalone .store-locator-grid__search-form .form {
        width: 100%;
        padding-top: 24px;
        padding-right: 16px;
        padding-bottom: 32px;
        padding-left: 16px; }
        @media (min-width: 768px) {
          .store-locator-grid--standalone .store-locator-grid__search-form .form {
            width: 362px;
            padding-top: 64px;
            padding-right: 24px;
            padding-bottom: 64px; } }
        @media (min-width: 1025px) {
          .store-locator-grid--standalone .store-locator-grid__search-form .form {
            padding-top: calc(0.01788 * 100vw + 45.67598px);
            padding-right: calc(0.00894 * 100vw + 14.83799px); } }
      .store-locator-grid--standalone .store-locator-grid__search-form .form__actions {
        margin: 0; }
    @media (min-width: 768px) {
      .store-locator-grid--standalone .store-locator-grid__search-results {
        margin-right: 24px; } }
    @media (min-width: 1025px) {
      .store-locator-grid--standalone .store-locator-grid__search-results {
        margin-right: calc(0.00894 * 100vw + 14.83799px); } }
    .store-locator-grid--standalone .store-locator-grid__select-store-title, .store-locator-grid--standalone .store-locator-grid__select-store-subtitle {
      display: none; }
    .store-locator-grid--standalone .store-locator-grid__tabs {
      margin-right: 16px; }
  .store-locator-grid--standalone .store-locator-search-form__wrapper {
    background-color: white; }
  @media (min-width: 768px) {
    .store-locator-grid--standalone .store-address {
      margin-left: 1.25rem; } }
  .store-locator-grid--standalone:not([data-has-results='true']) .tabs__tablist {
    display: none; }
  .store-locator-grid--standalone:not([data-has-results='true']) .tabs__tabpanel {
    display: none; }
  @media (min-width: 768px) {
    .store-locator-grid--standalone[data-has-results='true'] {
      position: sticky;
      height: calc(100vh - 40px);
      height: calc(100vh - var(--header-total-height)); } }
  .store-locator-grid--standalone[data-has-results='true'].map-show {
    height: calc(100vh - 40px);
    height: calc(100vh - var(--header-total-height)); }
  .store-locator-grid--standalone[data-has-results='true'] .store-locator-grid {
    /* stylelint-disable-next-line max-nesting-depth */ }
    .store-locator-grid--standalone[data-has-results='true'] .store-locator-grid__map {
      max-width: 100%;
      max-height: 100%; }
  @media (min-width: 768px) {
    .store-locator-grid--standalone[data-has-results='true'] .store-name {
      position: relative;
      padding-left: 1.25rem; }
      .store-locator-grid--standalone[data-has-results='true'] .store-name::before {
        position: absolute;
        top: 0.0625rem;
        left: 0;
        box-sizing: border-box;
        width: 12px;
        height: 12px;
        margin: 0;
        padding: 0;
        border: 0.0625rem solid black;
        cursor: pointer;
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
        display: inline-block;
        border-radius: 50%;
        content: ''; } }
    @media (min-width: 768px) and (min-width: 1025px) {
      .store-locator-grid--standalone[data-has-results='true'] .store-name::before {
        top: 2px; } }
  .store-locator-grid--standalone[data-has-results='true'] .result.is-selected .store-name::before {
    background-color: black; }

.map-canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0; }

.map-marker {
  position: relative;
  float: left;
  width: 2em;
  height: 2em;
  color: #fff;
  line-height: 2em;
  text-align: center;
  background-color: #7ed0ee;
  border-radius: 0.375em; }
  .map-marker::after {
    position: absolute;
    bottom: -0.625em;
    left: 50%;
    width: 0;
    height: 0;
    border-color: #7ed0ee transparent transparent transparent;
    border-style: solid;
    border-width: 1em 0.5em 0;
    transform: translate(-50%, 0);
    content: ''; }

.storelocator-map-popup {
  position: absolute;
  top: 24px;
  right: 16px;
  z-index: 1;
  display: none;
  max-width: 292px;
  padding: 24px 50px 24px 16px;
  background-color: white; }
  .storelocator-map-popup .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    padding: 0 16px;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem; }
  .storelocator-map-popup .store-details {
    max-width: 550px;
    margin-right: auto;
    margin-left: auto; }
  .storelocator-map-popup .btn-ok {
    position: relative;
    bottom: 0;
    float: right;
    margin-top: 32px;
    margin-right: -16px; }
    @media (min-width: 1530px) {
      .storelocator-map-popup .btn-ok {
        display: none; } }

.store-details {
  flex-grow: 1; }

.store-name {
  /* stylelint-disable */
  --uses-typography: 'stores-store-name';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 900;
  /* stylelint-enable */
  margin: 0;
  text-transform: uppercase;
  cursor: pointer; }
  @media (min-width: 1025px) {
    .store-name {
      font-size: 1.125rem; } }

.store-address__physical-address {
  /* stylelint-disable */
  --uses-typography: 'stores-store-details';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  /* stylelint-enable */
  margin-top: 0;
  margin-bottom: 0.6em; }
  @media (min-width: 1025px) {
    .store-address__physical-address {
      font-size: 0.875rem; } }

.store-phone {
  /* stylelint-disable */
  --uses-typography: 'stores-store-details';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  /* stylelint-enable */
  margin-top: 0;
  margin-bottom: 0.6em; }
  @media (min-width: 1025px) {
    .store-phone {
      font-size: 0.875rem; } }
  .store-phone__call {
    color: #1500ff; }
    @media (min-width: 1025px) {
      .store-phone__call {
        color: black;
        text-decoration: none; } }

.store-hours {
  /* stylelint-disable */
  --uses-typography: 'stores-store-details';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  /* stylelint-enable */
  margin: 0;
  white-space: pre-line; }
  @media (min-width: 1025px) {
    .store-hours {
      font-size: 0.875rem; } }
  @media (min-width: 1025px) {
    .store-hours {
      display: block; } }

.store-opening-times {
  /* stylelint-disable */
  --uses-typography: 'stores-store-details';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .store-opening-times {
      font-size: 0.875rem; } }
  .store-opening-times__toggler {
    text-decoration: underline; }
    .store-opening-times__toggler--open {
      display: block; }
    .store-opening-times__toggler--close {
      display: none; }
  .store-opening-times__content {
    display: none;
    width: calc(100% - 32px);
    margin-top: 16px;
    font-size: 0.625rem; }
    @media (min-width: 1025px) {
      .store-opening-times__content {
        width: calc(100% - 2px); } }
  .store-opening-times__day {
    text-align: left; }
    .store-opening-times__day--full {
      display: block; }
      @media (min-width: 1025px) {
        .store-opening-times__day--full {
          display: none; } }
    .store-opening-times__day--reduce {
      display: none; }
      @media (min-width: 1025px) {
        .store-opening-times__day--reduce {
          display: block; } }
  .store-opening-times__hour {
    font-weight: 500;
    text-align: right;
    text-transform: uppercase; }
  .store-opening-times--open .store-opening-times__toggler--open {
    display: none; }
  .store-opening-times--open .store-opening-times__toggler--close {
    display: block; }
  .store-opening-times--open .store-opening-times__content {
    display: table; }

.store-how-to-get {
  margin-right: 1rem; }
  .store-how-to-get:hover {
    color: black; }

.store-availability {
  /* stylelint-disable */
  --uses-typography: 'stores-store-details';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .store-availability {
      font-size: 0.875rem; } }
  .store-availability__info {
    margin-top: 0;
    margin-bottom: 0; }
    .store-availability__info::before {
      display: inline-block;
      width: 8px;
      height: 8px;
      margin: 0 4px 0.2rem 0;
      vertical-align: bottom;
      border-radius: 50%;
      content: ''; }
      @media (min-width: 1025px) {
        .store-availability__info::before {
          margin-bottom: 0.275rem; } }
    .store-availability__info--available::before {
      background: #00fa32; }
    .store-availability__info--partially-available::before {
      background-color: #ffb700; }
    .store-availability__info--unavailable::before {
      background: red; }
  .store-availability__line-item-images {
    /* Internet Explorer */
    scrollbar-face-color: #a8a8a8;
    scrollbar-track-color: transparent;
    /* W3C Working Draft */
    scrollbar-color: #a8a8a8 transparent;
    /* stylelint-disable-line property-no-unknown */
    display: flex;
    margin: 12px 0 0 0;
    overflow: auto;
    grid-column-gap: 0.125rem;
    -moz-column-gap: 0.125rem;
         column-gap: 0.125rem; }
    .store-availability__line-item-images::-webkit-scrollbar-thumb {
      background-color: #a8a8a8;
      border-radius: 0; }
    .store-availability__line-item-images::-webkit-scrollbar-track {
      background-color: transparent; }
    .store-availability__line-item-images::-webkit-scrollbar {
      width: 9px;
      height: 9px;
      background-color: #ebebeb; }
    .store-availability__line-item-images .product-image {
      width: 3.125rem; }
  .store-availability__unavailable-line-item {
    opacity: 0.5; }
  .store-availability__wishlist-message {
    /* stylelint-disable */
    --uses-typography: 'stores-informative-claim';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.6875rem;
    font-style: normal;
    font-weight: 700;
    color: #909090;
    /* stylelint-enable */
    margin: 8px 0 0; }
    @media (min-width: 1025px) {
      .store-availability__wishlist-message {
        font-size: 0.75rem; } }

.store-name + .store-availability {
  margin-top: 8px; }

.store-availability + .store-address {
  margin-top: 8px; }

.store-address + .store-availability {
  margin-top: 8px; }
  @media (min-width: 768px) {
    .store-address + .store-availability {
      margin-top: 12px; } }

.storelocator-map-popup .store-hours,
.is-selected .store-hours {
  display: block; }

.store-actions {
  margin-top: 8px; }
  @media (min-width: 768px) {
    .store-actions {
      margin-top: 16px; } }

.store-stock-changed-modal__dialog {
  max-width: calc(min(64.0625rem, 80vw)); }

.store-stock-changed-modal__body {
  margin: 4px 0 32px; }
  @media (min-width: 768px) {
    .store-stock-changed-modal__body {
      margin-bottom: 12px; } }

.store-stock-changed-modal__text {
  /* stylelint-disable */
  --uses-typography: 'byl-modal-text';
  font-size: 0.75rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: black;
  text-transform: none;
  text-decoration: none;
  line-height: 1.25;
  /* stylelint-enable */
  margin: 0 0 16px; }
  @media (min-width: 575px) {
    .store-stock-changed-modal__text {
      font-size: calc(0.00149 * 100vw + 11.14498px); } }
  @media (min-width: 1920px) {
    .store-stock-changed-modal__text {
      font-size: 0.875rem; } }

.store-stock-changed-modal__change-store-button.btn--primary, .store-stock-changed-modal__change-store-button.btn--round-black-mobile {
  max-width: calc(100% - 48px);
  text-transform: uppercase; }

.store-stock-changed-modal__change-store-button.btn--link {
  font-weight: 500;
  text-align: left;
  text-transform: none; }

.store-stock-changed-modal__change-store-button.btn--text-italic {
  text-transform: none; }

.store-stock-changed-modal__change-store-button.btn {
  margin: 0; }

.store-stock-changed-modal__place-order-button.btn {
  margin: 0 0 0 16px; }
  @media (min-width: 768px) {
    .store-stock-changed-modal__place-order-button.btn {
      margin-left: 48px; } }

.store-stock-changed-modal .modal-content {
  box-shadow: none; }

@media (max-width: 1024px) {
  .store-stock-changed-modal .modal-footer[\:has\(\:only-child\)] {
    justify-content: flex-end;
    margin-right: 8px; }
  .store-stock-changed-modal .modal-footer:has(:only-child) {
    justify-content: flex-end;
    margin-right: 8px; } }

.store-locator-no-apikey {
  display: none; }

.base-store-locator {
  display: flex;
  flex-direction: column;
  flex-grow: 1; }
  @media (min-width: 1025px) {
    .base-store-locator {
      overflow: hidden; } }
  .base-store-locator__container {
    display: flex;
    flex-direction: column;
    flex-grow: 1; }
    @media (min-width: 768px) {
      .base-store-locator__container {
        margin-left: -4.28%;
        margin-right: -4.28%; } }
    @media (min-width: 1025px) {
      .base-store-locator__container {
        margin-left: 0;
        margin-right: 0;
        overflow: hidden; } }

.store-locator-grid--modal {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: auto; }
  @media (min-width: 1025px) {
    .store-locator-grid--modal {
      overflow: hidden; }
      .store-locator-grid--modal .store-locator-grid__tabs:not(:focus):not(:active) {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        white-space: nowrap;
        border: 0;
        clip: rect(0 0 0 0);
        -webkit-clip-path: inset(100%);
                clip-path: inset(100%); }
      .store-locator-grid--modal .store-locator-grid__search-results {
        grid-area: search-results;
        max-height: 40rem; }
      .store-locator-grid--modal .store-locator-grid__map {
        display: block;
        grid-area: map;
        max-height: 40rem; }
      .store-locator-grid--modal .tabs__tabpanel[hidden] {
        display: block; }
      .store-locator-grid--modal .storelocator-map-popup {
        display: none !important; }
      .store-locator-grid--modal .btn-storelocator-search {
        margin-top: 4px; } }
  @media (min-width: 1530px) {
  .store-locator-grid--standalone .store-locator-grid__search-results {
    -ms-grid-row: 4;
    -ms-grid-column: 2; }
  .store-locator-grid--standalone .store-locator-grid__map {
    -ms-grid-row: 4;
    -ms-grid-column: 1; }
  .store-locator-grid--modal .store-locator-grid__search-results {
    -ms-grid-row: 4;
    -ms-grid-column: 2; }
  .store-locator-grid--modal .store-locator-grid__map {
    -ms-grid-row: 4;
    -ms-grid-column: 1; } }
  @media (min-width: 768px) {
    .store-locator-grid--standalone .store-locator-grid__search-results {
    -ms-grid-row: 2;
    -ms-grid-column: 2; }
    .store-locator-grid--standalone .store-locator-grid__map {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1; }
    .store-locator-grid--modal .store-locator-grid__search-results {
    -ms-grid-row: 2;
    -ms-grid-column: 2; }
    .store-locator-grid--modal .store-locator-grid__map {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1; } }
  .store-locator-grid--modal .store-locator-grid__search-results {
    max-height: none;
    margin-top: 0; }
    @media (min-width: 768px) {
      .store-locator-grid--modal .store-locator-grid__search-results {
        padding-left: 4.28%;
        padding-right: 4.28%; } }
    @media (min-width: 1025px) {
      .store-locator-grid--modal .store-locator-grid__search-results {
        display: flex;
        flex-direction: column;
        margin-right: 16px;
        padding-left: 0;
        padding-right: 0; } }
  .store-locator-grid--modal .store-locator-grid__informative-claim {
    /* stylelint-disable */
    --uses-typography: 'stores-informative-claim';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.6875rem;
    font-style: normal;
    font-weight: 700;
    color: #909090;
    /* stylelint-enable */
    margin-top: 16px;
    margin-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px; }
    @media (min-width: 1025px) {
      .store-locator-grid--modal .store-locator-grid__informative-claim {
        font-size: 0.75rem; } }
    @media (min-width: 768px) {
      .store-locator-grid--modal .store-locator-grid__informative-claim {
        padding-left: 4.28%;
        padding-right: 4.28%; } }
    @media (min-width: 1025px) {
      .store-locator-grid--modal .store-locator-grid__informative-claim {
        margin-top: 0;
        padding-right: 5vw;
        padding-left: 0; } }
  .store-locator-grid--modal .store-locator-grid__map {
    flex-grow: 1; }
    @media (min-width: 1025px) {
      .store-locator-grid--modal .store-locator-grid__map {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        aspect-ratio: 2/3;
        max-height: 100%; } }
  .store-locator-grid--modal .store-details__btn-ok {
    display: none; }
  @media (min-width: 1025px) {
    .store-locator-grid--modal [data-has-results='true'] .store-details {
      padding-left: 1.25rem; } }
  @media (min-width: 1025px) {
    .store-locator-grid--modal [data-has-results='true'] .store-name::before {
      position: absolute;
      top: 0.0625rem;
      left: 0;
      box-sizing: border-box;
      width: 12px;
      height: 12px;
      margin: 0;
      padding: 0;
      border: 0.0625rem solid black;
      cursor: pointer;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      display: inline-block;
      border-radius: 50%;
      content: ''; } }
  @media (min-width: 1025px) and (min-width: 1025px) {
    .store-locator-grid--modal [data-has-results='true'] .store-name::before {
      top: 2px; } }
  .store-locator-grid--modal .result:last-child {
    padding-bottom: 64px; }
  .store-locator-grid--modal .result.is-selected .store-name::before {
    background-color: black; }

@media (min-width: 1025px) {
  .base-store-locator-form {
    padding-right: 5vw; } }

.base-store-locator-form .form__field {
  margin-bottom: 0; }

.base-store-locator-form__submit[type='submit'] {
  /* stylelint-disable */
  --uses-typography: 'product-details-in-store-btn';
  font-size: 1rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: black;
  line-height: 1.25;
  /* stylelint-enable */
  align-self: flex-start;
  margin-top: 8px;
  margin-left: auto; }
  @media (min-width: 575px) {
    .base-store-locator-form__submit[type='submit'] {
      font-size: calc(0.00669 * 100vw + 12.15242px); } }
  @media (min-width: 1025px) {
    .base-store-locator-form__submit[type='submit'] {
      font-size: 1.5625rem; } }
  @media (min-width: 1025px) {
    .base-store-locator-form__submit[type='submit'] {
      margin: 4px 0 0 auto; } }

.base-store-locator-form__detect-location {
  margin-top: 16px; }
  @media (min-width: 1025px) {
    .base-store-locator-form__detect-location {
      font-size: 0.875rem; } }

.base-store-locator-form .form__actions {
  margin-top: 0;
  margin-bottom: 32px; }
  @media (min-width: 1025px) {
    .base-store-locator-form .form__actions {
      margin-bottom: 24px;
      padding-right: auto; } }

.base-store-locator-form__error-message {
  /* stylelint-disable */
  --uses-typography: 'forms-invalid-feedback';
  font-size: 0.6875rem;
  color: red;
  font-style: normal;
  font-weight: 700;
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .base-store-locator-form__error-message {
      font-size: 0.75rem; } }

.cart-recovery-modal__dialog {
  justify-content: center;
  max-width: none; }

.cart-recovery-modal__content {
  width: 80vw;
  max-width: 67.1875rem;
  padding: 48px 16px 1.875rem;
  box-shadow: none; }
  @media (min-width: 575px) {
    .cart-recovery-modal__content {
      width: calc(0.4574 * 100vw + 196.99628px);
      padding: calc(0.0119 * 100vw + 41.15985px) calc(0.04758 * 100vw + -11.36059px) calc(0.02528 * 100vw + 15.46468px); } }
  @media (min-width: 1920px) {
    .cart-recovery-modal__content {
      padding: 64px 80px; } }

.cart-recovery-modal__body {
  margin: 0; }

.cart-recovery-modal__title {
  /* stylelint-disable */
  --uses-typography: 'byl-modal-title';
  font-size: 0.875rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.25;
  /* stylelint-enable */
  margin: 0 0 4px; }
  @media (min-width: 575px) {
    .cart-recovery-modal__title {
      font-size: calc(0.00297 * 100vw + 12.28996px); } }
  @media (min-width: 1920px) {
    .cart-recovery-modal__title {
      font-size: 1.125rem; } }

.cart-recovery-modal__text-container {
  margin: 0 0 calc(0.0119 * 100vw + 41.15985px); }
  @media (min-width: 1920px) {
    .cart-recovery-modal__text-container {
      margin-bottom: 64px; } }

.cart-recovery-modal__text {
  /* stylelint-disable */
  --uses-typography: 'byl-modal-text';
  font-size: 0.75rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: black;
  text-transform: none;
  text-decoration: none;
  line-height: 1.25;
  /* stylelint-enable */ }
  @media (min-width: 575px) {
    .cart-recovery-modal__text {
      font-size: calc(0.00149 * 100vw + 11.14498px); } }
  @media (min-width: 1920px) {
    .cart-recovery-modal__text {
      font-size: 0.875rem; } }

.cart-recovery-modal__action-button-container {
  width: 100%;
  margin-top: 1.875rem; }
  @media (min-width: 575px) {
    .cart-recovery-modal__action-button-container {
      margin-top: calc(0.0223 * 100vw + 17.17472px);
      padding-right: 16px; } }
  @media (min-width: 1920px) {
    .cart-recovery-modal__action-button-container {
      margin-top: 3.75rem; } }

.country-selector-modal {
  /* Internet Explorer */
  scrollbar-face-color: #a8a8a8;
  scrollbar-track-color: transparent;
  /* W3C Working Draft */
  scrollbar-color: #a8a8a8 transparent;
  /* stylelint-disable-line property-no-unknown */
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  padding: 80px 32px 0;
  overflow-y: auto;
  background-color: white; }
  .country-selector-modal::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 0; }
  .country-selector-modal::-webkit-scrollbar-track {
    background-color: transparent; }
  .country-selector-modal::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #ebebeb; }
  @media (min-width: 1025px) {
    .country-selector-modal {
      width: 50%;
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content;
      max-height: 65vh;
      padding: 32px 24px 32px; } }
  @media (min-width: 1920px) {
    .country-selector-modal {
      width: 60rem; } }
  .country-selector-modal__language-section {
    display: flex;
    flex-direction: column; }
    .country-selector-modal__language-section .country-selector-modal__title {
      margin-left: 16px; }
      @media (min-width: 1025px) {
        .country-selector-modal__language-section .country-selector-modal__title {
          margin-left: 0; } }
    .country-selector-modal__language-section .btn--back-black {
      font-size: 0.9375rem; }
  .country-selector-modal__title {
    /* stylelint-disable */
    --uses-typography: 'country-selector-modal-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
    /* stylelint-enable */
    margin: 0; }
  .country-selector-modal__subtitle {
    /* stylelint-disable */
    --uses-typography: 'country-selector-modal-text';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.25;
    /* stylelint-enable */
    margin: 0; }
  .country-selector-modal__title + .country-selector-modal__subtitle {
    margin-top: 8px; }
    @media (min-width: 1025px) {
      .country-selector-modal__title + .country-selector-modal__subtitle {
        margin-top: 2px; } }
  .country-selector-modal__search-group {
    margin: 24px 0 64px; }
    @media (min-width: 1025px) {
      .country-selector-modal__search-group {
        margin: 12px 0 48px; } }
  .country-selector-modal__search-input::-moz-placeholder {
    color: #909090; }
  .country-selector-modal__search-input::placeholder {
    color: #909090; }
  .country-selector-modal__group + .country-selector-modal__group {
    margin-top: 16px; }
    @media (min-width: 1025px) {
      .country-selector-modal__group + .country-selector-modal__group {
        margin-top: 8px; } }
  .country-selector-modal__group-title {
    /* stylelint-disable */
    --uses-typography: 'country-selector-modal-group-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1.25;
    /* stylelint-enable */
    text-transform: uppercase;
    list-style: none;
    cursor: pointer; }
  .country-selector-modal__countries-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none; }
    @media (min-width: 1025px) {
      .country-selector-modal__countries-list {
        margin-top: 8px; } }
  .country-selector-modal__languages-list {
    margin: 32px 0 0 16px;
    padding: 0;
    list-style: none; }
    @media (min-width: 1025px) {
      .country-selector-modal__languages-list {
        margin-bottom: 14vh;
        margin-left: 0; } }
  .country-selector-modal__country-item + .country-selector-modal__country-item {
    margin-top: 8px; }
    @media (min-width: 1025px) {
      .country-selector-modal__country-item + .country-selector-modal__country-item {
        margin-top: 4px; } }
  .country-selector-modal__language-item:not(.country-selector-modal__language-item--template) + .country-selector-modal__language-item {
    margin-top: 16px; }
  .country-selector-modal__country-item-label {
    /* stylelint-disable */
    --uses-typography: 'country-selector-modal-text';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.25;
    /* stylelint-enable */ }
  .country-selector-modal__language-item-label {
    /* stylelint-disable */
    --uses-typography: 'country-selector-modal-language';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1.25;
    /* stylelint-enable */ }
    @media (min-width: 1025px) {
      .country-selector-modal__language-item-label {
        font-size: 1rem; } }
  @media (min-width: 1025px) {
    .country-selector-modal__countries-list--grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 4px;
      gap: 4px; } }
  @media (min-width: 1025px) {
    .country-selector-modal__countries-list--grid .country-selector-modal__country-item {
      margin: 0; } }
  .country-selector-modal__all-countries-group--searching .country-selector-modal__country-item-label {
    /* stylelint-disable */
    --uses-typography: 'country-selector-modal-search-text';
    color: #909090;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    /* stylelint-enable */ }
  .country-selector-modal__all-countries-group--searching .country-selector-modal__search-match {
    color: black; }
  .country-selector-modal .btn--back-black + .country-selector-modal__title {
    margin-top: 12px; }
    @media (min-width: 1025px) {
      .country-selector-modal .btn--back-black + .country-selector-modal__title {
        margin-top: 2px; } }

.base-list-navigation__wrapper {
  position: relative;
  display: block;
  border-bottom: unset;
  /* [1] */ }
  @media (min-width: 810px) {
    .base-list-navigation__wrapper::before, .base-list-navigation__wrapper::after {
      content: none; } }
  .base-list-navigation__wrapper::before, .base-list-navigation__wrapper::after {
    position: absolute;
    top: 0;
    z-index: 3;
    display: block;
    width: 20vw;
    height: 100%;
    content: '';
    pointer-events: none; }

.base-list-navigation--title .base-list-navigation__scroller, .base-list-navigation--no-title .base-list-navigation__scroller {
  overflow: -moz-scrollbars-none;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  display: flex;
  grid-gap: 8px;
  gap: 8px;
  padding: 0 16px;
  overflow-x: auto;
  white-space: nowrap; }
  .base-list-navigation--title .base-list-navigation__scroller::-webkit-scrollbar, .base-list-navigation--no-title .base-list-navigation__scroller::-webkit-scrollbar {
    display: none; }
  @media (min-width: 810px) {
    .base-list-navigation--title .base-list-navigation__scroller, .base-list-navigation--no-title .base-list-navigation__scroller {
      flex-direction: column;
      grid-gap: 0;
      gap: 0;
      margin: 0;
      padding: 0; } }

/**
 * 1. Revert bootstrap inherited styles
 */
.base-list-navigation__tablist-item {
  position: relative;
  z-index: 2;
  flex: 1;
  list-style: none; }
  @media (min-width: 810px) {
    .base-list-navigation__tablist-item {
      flex-basis: auto;
      flex-grow: 0;
      margin: 0; } }

/**
 * 1. Revert bootstrap inherited styles
 */
.base-list-navigation__tab {
  /* stylelint-disable */
  --uses-typography: 'list-navigation-base';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  color: #909090;
  /* stylelint-enable */
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  padding: 4px 8px;
  background-color: inherit;
  /* [1] */
  border: 0;
  cursor: pointer; }
  @media (min-width: 575px) {
    .base-list-navigation__tab {
      font-size: calc(0.01036 * 100vw + 8.04145px); } }
  @media (min-width: 810px) {
    .base-list-navigation__tab {
      font-size: 1.3125rem; } }
  @media (min-width: 1025px) {
    .base-list-navigation__tab {
      font-size: calc(0.00447 * 100vw + 16.41899px); } }
  @media (min-width: 1920px) {
    .base-list-navigation__tab {
      font-size: 1.5625rem; } }
  @media (min-width: 810px) {
    .base-list-navigation__tab {
      display: inline-block;
      padding-top: 0;
      padding-bottom: 0; } }
  .base-list-navigation__tab:active {
    background-color: rgba(200, 200, 200, 0.5);
    border-radius: 50px; }
    .keynav-mode .base-list-navigation__tab:active {
      background-color: rgba(200, 200, 200, 0.5);
      border-radius: 50px; }

.base-list-navigation__tab.active, .base-list-navigation__tab[aria-selected='true'],
.base-list-navigation__tab :checked + label,
.base-list-navigation__tab :checked + [class*='label'] {
  color: black;
  background: rgba(200, 200, 200, 0.5);
  border-radius: 50px;
  pointer-events: none; }

.base-list-navigation {
  display: block; }
  .base-list-navigation__title {
    /* stylelint-disable */
    --uses-typography: 'headings-page-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    margin: 0;
    padding-left: 16px; }
    @media (min-width: 1025px) {
      .base-list-navigation__title {
        font-size: 3.125rem; } }
    @media (min-width: 810px) {
      .base-list-navigation__title {
        padding-left: 0; } }
  .base-list-navigation__wrapper--overflowing-left::before {
    left: 0;
    background: linear-gradient(270deg, transparent, #fafafa); }
  .base-list-navigation__wrapper--overflowing-right::after {
    right: 0;
    background: linear-gradient(90deg, transparent, #fafafa); }
  .base-list-navigation__scroller {
    margin: 0;
    padding: 0;
    list-style: none; }
  @media (min-width: 810px) {
    .base-list-navigation__tablist-item--separator {
      margin-top: 32px; } }
  .base-list-navigation__tab {
    /**
     * It's recommended to use <a> like bootstrap
     * Disable label styles when using radios or checkboxes inside a tab
     */ }
    .base-list-navigation__tab label,
    .base-list-navigation__tab [class*='label'] {
      color: inherit;
      font-weight: inherit;
      font-size: inherit;
      font-family: inherit;
      font-style: inherit;
      cursor: inherit; }
  .base-list-navigation__spacer {
    display: none; }
  .base-list-navigation__tabpanel[hidden] {
    display: none; }

@media (min-width: 810px) {
  .base-list-navigation--title .base-list-navigation__tablist-spacer {
    display: block;
    height: 65px; } }

@media (min-width: 1025px) {
  .base-list-navigation--no-title .base-list-navigation__tablist-spacer {
    display: block;
    height: calc(0.03575 * 100vw + -4.64804px); } }

@media (min-width: 1920px) {
  .base-list-navigation--no-title .base-list-navigation__tablist-spacer {
    height: 64px; } }

.base-list-navigation--modal .base-list-navigation__tab {
  /* stylelint-disable */
  --uses-typography: 'list-navigation-modal';
  font-size: 1.5625rem;
  /* stylelint-enable */
  justify-content: flex-start;
  min-width: 275px;
  padding: 0;
  border: 0; }
  @media (min-width: 1025px) {
    .base-list-navigation--modal .base-list-navigation__tab {
      font-size: calc(0.00335 * 100vw + 21.56425px); } }
  @media (min-width: 1920px) {
    .base-list-navigation--modal .base-list-navigation__tab {
      font-size: 1.75rem; } }

.base-list-navigation--modal .base-list-navigation__tablist-spacer {
  display: block;
  height: 16px; }
  @media (min-width: 1025px) {
    .base-list-navigation--modal .base-list-navigation__tablist-spacer {
      height: calc(0.00894 * 100vw + 6.83799px); } }
  @media (min-width: 1920px) {
    .base-list-navigation--modal .base-list-navigation__tablist-spacer {
      height: 24px; } }

.base-list-selector {
  margin: 0;
  padding: 0; }
  .base-list-selector__item {
    position: relative;
    padding-bottom: 16px;
    list-style: none; }
    .base-list-selector__item + .base-list-selector__item {
      padding-top: 16px;
      border-top: 0.0625rem solid #a8a8a8;
      /* stylelint-disable max-nesting-depth */ }
      .base-list-selector__item + .base-list-selector__item--separator-title {
        border-top: 0; }
    .base-list-selector__item:last-child {
      border-bottom: 0.0625rem solid #a8a8a8; }
    .base-list-selector__item--selected .base-list-selector__label::before {
      background: black; }
  .base-list-selector__separator-title {
    /* stylelint-disable */
    --uses-typography: 'list-selector-separator-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    display: block;
    margin: 0 0 16px;
    padding: 0;
    pointer-events: none; }
    @media (min-width: 1025px) {
      .base-list-selector__separator-title {
        font-size: 1rem; } }
  .base-list-selector__label {
    /* stylelint-disable */
    --uses-typography: 'list-selector-label';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    cursor: pointer; }
    @media (min-width: 1025px) {
      .base-list-selector__label {
        font-size: 0.875rem; } }
    .base-list-selector__label::before {
      position: absolute;
      top: 0.0625rem;
      left: 0;
      box-sizing: border-box;
      width: 12px;
      height: 12px;
      margin: 0;
      padding: 0;
      border: 0.0625rem solid black;
      cursor: pointer;
      -webkit-appearance: none;
         -moz-appearance: none;
              appearance: none;
      position: static;
      display: inline-block;
      margin-right: 8px;
      border-radius: 50%;
      content: ''; }
      @media (min-width: 1025px) {
        .base-list-selector__label::before {
          top: 2px; } }
  .base-list-selector__description {
    /* stylelint-disable */
    --uses-typography: 'list-selector-description';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    /* stylelint-enable */
    margin: 4px 0 0;
    padding: 0; }
    @media (min-width: 1025px) {
      .base-list-selector__description {
        font-size: 0.875rem; } }

.base-accordion h2 {
  margin: inherit;
  font-weight: inherit;
  font-size: inherit; }

.base-accordion__title {
  /* stylelint-disable */
  --uses-typography: 'base-accordion-title';
  font-size: 1.125rem;
  /* stylelint-enable */
  margin: 0;
  padding: 0; }
  @media (min-width: 1025px) {
    .base-accordion__title {
      font-size: calc(0.00782 * 100vw + 9.98324px); } }
  @media (min-width: 1920px) {
    .base-accordion__title {
      font-size: 1.5625rem; } }

.base-accordion.expanded .base-accordion__title {
  text-decoration: underline; }

.base-accordion.expanded + .base-accordion {
  margin-top: 16px; }
  @media (min-width: 575px) {
    .base-accordion.expanded + .base-accordion {
      margin-top: 24px; } }

.base-accordion.expanded:last-of-type {
  margin-bottom: 16px; }
  @media (min-width: 575px) {
    .base-accordion.expanded:last-of-type {
      margin-bottom: 24px; } }

.base-accordion__content {
  /* stylelint-disable */
  --uses-typography: 'base-accordion-content';
  font-weight: 500;
  font-size: 0.75rem;
  font-style: normal;
  line-height: 1.25;
  /* stylelint-enable */
  margin: 4px 0; }
  @media (min-width: 1025px) {
    .base-accordion__content {
      font-size: 0.875rem; } }
  @media (min-width: 575px) {
    .base-accordion__content {
      /* Internet Explorer */
      scrollbar-face-color: #a8a8a8;
      scrollbar-track-color: transparent;
      /* W3C Working Draft */
      scrollbar-color: #a8a8a8 transparent;
      /* stylelint-disable-line property-no-unknown */
      margin: 8px 0;
      overflow-y: auto; }
      .base-accordion__content::-webkit-scrollbar-thumb {
        background-color: #a8a8a8;
        border-radius: 0; }
      .base-accordion__content::-webkit-scrollbar-track {
        background-color: transparent; }
      .base-accordion__content::-webkit-scrollbar {
        width: 9px;
        height: 9px;
        background-color: #ebebeb; } }
  .base-accordion__content ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
  .base-accordion__content li {
    margin-top: 16px; }
    .base-accordion__content li:first-child {
      margin-top: 0; }

.contact-text {
  font-weight: 500;
  font-size: 0.75rem;
  font-family: "FKGrotesk", "Arial", sans-serif; }
  @media (min-width: 768px) {
    .contact-text {
      font-size: 0.8125rem; } }
  @media (min-width: 575px) {
    .contact-text--mobile {
      display: none; } }
  @media (min-width: 1025px) {
    .contact-text--mobile-tablet {
      display: none; } }
  .contact-text--phone-575 {
    display: none; }
    @media (min-width: 575px) {
      .contact-text--phone-575 {
        display: block; } }
  .contact-text--desktop {
    display: none; }
    @media (min-width: 1025px) {
      .contact-text--desktop {
        display: block; } }
  .contact-text__help {
    margin-right: 0.75rem; }
  @media (min-width: 1025px) {
    .contact-text__number {
      color: inherit;
      text-decoration: none;
      pointer-events: none; } }
  .contact-text__schedule {
    display: inline-block; }

/*

  <div class="drop-down-check">
    <div class="drop-down-check__toggler">
        <button type="button" class="u-btn-clean btn-radio drop-down-check__button">
            ...
        </button>
        <p class="drop-down-check__close transition-c2">
            ${Resource.msg('option.close', 'cart', null)}
        </p>
    </div>

    <div class="drop-down-check__content transition-m2">
      ...
    </div>
  </div>

  If multiple elements iside a group:
  <div class="drop-down-check-container">
    <div class="drop-down-check">...</div>
    <div class="drop-down-check">...</div>
    <div class="drop-down-check">...</div>
    ...
  </div>
*/
.drop-down-check__close {
  display: none;
  margin: 0;
  text-transform: lowercase;
  cursor: pointer; }

.drop-down-check--opened .drop-down-check__close {
  display: inline-block; }

.drop-down-check--opened .drop-down-check__content:not(.interaction--expand) {
  max-height: 100%; }

.drop-down-check__button {
  padding-left: 1.25rem; }

.drop-down-check__toggler {
  display: flex;
  justify-content: space-between; }
  .drop-down-check__toggler .drop-down-check__button,
  .drop-down-check__toggler .drop-down-check__close {
    /* stylelint-disable */
    --uses-typography: 'forms-label';
    color: #909090;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: italic;
    font-weight: 500;
    text-overflow: ellipsis;
    text-transform: lowercase;
    /* stylelint-enable */
    /* stylelint-disable */
    --uses-typography: 'forms-label--checkbox';
    color: black;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    line-height: 1.25;
    /* stylelint-enable */ }

.full-page-banner-element {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: white; }

.navlinks {
  position: relative; }
  .navlinks__toggler {
    /* stylelint-disable */
    --uses-typography: 'navlinks-toggler';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    /* stylelint-enable */
    display: flex;
    white-space: nowrap;
    text-decoration: none; }
    @media (min-width: 575px) {
      .navlinks__toggler {
        font-size: calc(-0.00851 * 100vw + 20.89362px); } }
    @media (min-width: 810px) {
      .navlinks__toggler {
        font-size: 0.875rem; } }
    @media (min-width: 1025px) {
      .navlinks__toggler {
        font-size: calc(0.00447 * 100vw + 9.41899px); } }
    @media (min-width: 1920px) {
      .navlinks__toggler {
        font-size: 1.125rem; } }
    .navlinks__toggler:hover {
      text-decoration: none; }
    .navlinks__toggler:active, .navlinks__toggler:visited {
      color: black; }
    .navlinks__toggler.interaction-active {
      text-decoration: underline; }
      @media (min-width: 1025px) {
        .navlinks__toggler.interaction-active {
          text-decoration: none; } }
    .navlinks__toggler-newsletter {
      color: red; }
    .navlinks__toggler-newsletter:active, .navlinks__toggler-newsletter:visited {
      color: red; }
    .navlinks__toggler-newsletter--show {
      color: black; }
  .navlinks__link {
    /* stylelint-disable */
    --uses-typography: 'navlinks-link';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    /* stylelint-enable */
    color: black; }
    @media (min-width: 1025px) {
      .navlinks__link {
        font-size: calc(0.00447 * 100vw + 9.41899px);
        font-weight: 900;
        text-transform: uppercase; } }
    @media (min-width: 1920px) {
      .navlinks__link {
        font-size: 1.125rem; } }
  .navlinks__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 8px;
    margin-bottom: 24px;
    cursor: default;
    pointer-events: none; }
    @media (min-width: 810px) {
      .navlinks__content {
        position: absolute;
        top: calc(100% - 8px);
        padding-top: 4px; } }
    .navlinks__content.interaction-active {
      pointer-events: all; }
    .navlinks__content .navlinks__link {
      width: -webkit-min-content;
      width: -moz-min-content;
      width: min-content;
      white-space: nowrap; }
    .navlinks__content .navlinks__link:not(:last-child) {
      margin-bottom: 8px; }
      @media (min-width: 810px) {
        .navlinks__content .navlinks__link:not(:last-child) {
          width: auto;
          margin-bottom: 0; } }
    @media (min-width: 1025px) {
      .navlinks__content .navlinks__link:hover {
        text-decoration: underline; } }
    .navlinks__content .content-asset {
      display: flex;
      flex: 1 0 auto;
      flex-direction: column; }
  @media (min-width: 1025px) {
    .navlinks > a:hover {
      text-decoration: none; } }

/* ------------------ *\
 *  BUTTON SUBSCRIBE
/* ------------------ */
.newsletter-modal-container .subscribe-email, .newsletter-modal-container--home .subscribe-email, .newsletter-popup-form__submit {
  /* stylelint-disable */
  --uses-typography: 'newsletter-subscribe-home';
  color: black;
  font-weight: 900;
  font-size: 0.875rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  /* stylelint-enable */
  position: static;
  width: auto;
  padding: 8px 0.8125rem 0.4375rem;
  background-color: white;
  border-radius: 1.15625rem; }
  @media (min-width: 768px) {
    .newsletter-modal-container .subscribe-email, .newsletter-modal-container--home .subscribe-email, .newsletter-popup-form__submit {
      color: red;
      font-size: 1.3125rem;
      letter-spacing: 0.0375rem; } }
  @media (min-width: 1025px) {
    .newsletter-modal-container .subscribe-email, .newsletter-modal-container--home .subscribe-email, .newsletter-popup-form__submit {
      font-size: calc(0.01676 * 100vw + 3.82123px);
      letter-spacing: 0.0625rem; } }
  @media (min-width: 1920px) {
    .newsletter-modal-container .subscribe-email, .newsletter-modal-container--home .subscribe-email, .newsletter-popup-form__submit {
      font-size: 2.25rem; } }
  @media (min-width: 768px) {
    .newsletter-modal-container .subscribe-email, .newsletter-modal-container--home .subscribe-email, .newsletter-popup-form__submit {
      z-index: 10;
      padding: 0;
      background-color: transparent;
      border-radius: 0; } }
  @media (min-width: 1025px) {
    .newsletter-modal-container .subscribe-email, .newsletter-modal-container--home .subscribe-email, .newsletter-popup-form__submit {
      margin-top: 16px;
      margin-right: 16px; } }
  @media (min-width: 1280px) {
    .newsletter-modal-container .subscribe-email, .newsletter-modal-container--home .subscribe-email, .newsletter-popup-form__submit {
      margin-right: 32px; } }
  @media (min-width: 1920px) {
    .newsletter-modal-container .subscribe-email, .newsletter-modal-container--home .subscribe-email, .newsletter-popup-form__submit {
      margin-right: 48px; } }

/* ------------ *\
 *  FIELD TEXT
/* ------------ */
.newsletter-modal-container .field-text, .newsletter-modal-container--home .field-text {
  order: 3; }
  @media (min-width: 768px) {
    .newsletter-modal-container .field-text, .newsletter-modal-container--home .field-text {
      order: 4; } }
  .newsletter-modal-container .field-text .field-text__label, .newsletter-modal-container--home .field-text .field-text__label {
    margin-top: 0; }
  .newsletter-modal-container .field-text .field-text__error-message, .newsletter-modal-container--home .field-text .field-text__error-message {
    display: none; }
  .newsletter-modal-container .field-text .invalid-feedback, .newsletter-modal-container--home .field-text .invalid-feedback {
    margin-top: 4px; }

.newsletter-modal-container .field-checkbox {
  flex-direction: column; }

/* stylelint-disable selector-no-qualifying-type */
/* ------------------ *\
 *  FOOTER COMPONENT
/* ------------------ */
.newsletter-modal-container {
  padding: 24px 16px;
  background-color: #242424; }
  @media (min-width: 575px) {
    .newsletter-modal-container {
      padding: 24px 16px 24px 16px; } }
  @media (min-width: 768px) {
    .newsletter-modal-container {
      position: relative;
      min-height: 100%;
      padding: 16px 24px 64px 24px;
      opacity: 0; }
      .newsletter-modal-container form[\:has\(input.is-invalid\)] button {
        margin-top: -60px; }
      .newsletter-modal-container form:has(input.is-invalid) button {
        margin-top: -60px; } }
  @media (min-width: 900px) {
    .newsletter-modal-container {
      padding: 24px 24px 64px 80px; } }
  @media (min-width: 1025px) {
    .newsletter-modal-container {
      max-height: 230px; } }
  .newsletter-modal-container .btn-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><g fill-rule="evenodd"><path d="M0 11.326L.647 12 12 .674 11.353 0z" fill="white"/><path d="M11.353 12l.647-.674L.647 0 0 .674z" fill="white"/></g></svg>'); }
    @media (min-width: 768px) {
      .newsletter-modal-container .btn-close {
        top: 12px;
        right: 24px; } }
    @media (min-width: 1530px) {
      .newsletter-modal-container .btn-close {
        top: 16px;
        right: 32px; } }
  .newsletter-modal-container .newsletter-form {
    transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    display: flex;
    flex-direction: column;
    cursor: auto; }
  .newsletter-modal-container .communications {
    width: 85%;
    margin-top: 24px;
    margin-bottom: 0; }
    @media (min-width: 768px) {
      .newsletter-modal-container .communications {
        width: 100%; } }
    .newsletter-modal-container .communications a,
    .newsletter-modal-container .communications a:hover,
    .newsletter-modal-container .communications a:visited {
      color: white; }
  .newsletter-modal-container .field-text input {
    /* stylelint-disable */
    --uses-typography: 'newsletter-hpEmailSignUp-footer';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.0375rem;
    text-transform: none;
    color: white;
    /* stylelint-enable */
    padding-top: 32px;
    border-bottom-width: 0.125rem; }
    @media (min-width: 768px) {
      .newsletter-modal-container .field-text input {
        font-size: 1.125rem; } }
    @media (min-width: 768px) {
      .newsletter-modal-container .field-text input {
        padding-top: 24px; } }
    .newsletter-modal-container .field-text input:placeholder {
      color: white;
      opacity: 1; }
  .newsletter-modal-container .invalid-feedback {
    display: flex;
    text-transform: none; }
  .newsletter-modal-container .form-empty-check {
    position: relative;
    top: 0;
    padding-left: 1.25rem;
    text-transform: none; }
  .newsletter-modal-container .newsletter-form .input--newsletter {
    /* stylelint-disable */
    --uses-typography: 'newsletter-hpEmailSignUp-footer';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.0375rem;
    text-transform: none;
    color: white;
    /* stylelint-enable */
    padding-top: 32px;
    border-bottom-color: white;
    border-bottom-width: 0.125rem; }
    @media (min-width: 768px) {
      .newsletter-modal-container .newsletter-form .input--newsletter {
        font-size: 1.125rem; } }
    @media (min-width: 768px) {
      .newsletter-modal-container .newsletter-form .input--newsletter {
        padding-top: 24px; } }
  .newsletter-modal-container .newsletter-form .input--newsletter::-moz-placeholder {
    color: white;
    opacity: 1; }
  .newsletter-modal-container .newsletter-form .input--newsletter::placeholder {
    color: white;
    opacity: 1; }
  .newsletter-modal-container .field-checkbox {
    order: 4; }
    @media (min-width: 768px) {
      .newsletter-modal-container .field-checkbox {
        order: 3; } }
  .newsletter-modal-container .subscribe-email {
    /* stylelint-disable */
    --uses-typography: 'newsletter-button';
    color: black;
    font-weight: 900;
    font-size: 0.875rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    /* stylelint-enable */
    /* stylelint-disable */
    --uses-typography: 'newsletter-button--footer';
    /* stylelint-enable */
    order: 5;
    margin-top: 8px;
    margin-left: auto;
    white-space: nowrap !important; }
    @media (min-width: 768px) {
      .newsletter-modal-container .subscribe-email {
        color: red;
        font-size: 1.3125rem; } }
    @media (min-width: 1280px) {
      .newsletter-modal-container .subscribe-email {
        font-size: 1rem;
        color: #909090; } }
    @media (min-width: 1530px) {
      .newsletter-modal-container .subscribe-email {
        font-size: 1.5625rem; } }
    @media (min-width: 768px) {
      .newsletter-modal-container .subscribe-email {
        margin-top: -44px;
        margin-right: 48px;
        padding: 0;
        background-color: transparent;
        border-radius: 0; } }
    @media (min-width: 1025px) {
      .newsletter-modal-container .subscribe-email {
        margin-right: 16px; } }
    @media (min-width: 1280px) {
      .newsletter-modal-container .subscribe-email {
        margin-right: 32px; } }
    @media (min-width: 1920px) {
      .newsletter-modal-container .subscribe-email {
        margin-right: 48px; } }
  .newsletter-modal-container .newsletter-claim,
  .newsletter-modal-container .newsletter-popup-form__claim {
    /* stylelint-disable */
    --uses-typography: 'newsletter-claim';
    font-weight: 700;
    font-size: 1.0625rem;
    font-family: "EBGaramond", georgia, serif;
    font-style: italic;
    text-transform: none;
    /* stylelint-enable */
    display: block;
    order: 2;
    width: 87%;
    margin-bottom: 24px;
    color: white;
    line-height: 1.4375rem; }
    @media (min-width: 768px) {
      .newsletter-modal-container .newsletter-claim,
      .newsletter-modal-container .newsletter-popup-form__claim {
        width: 65%;
        margin-bottom: 16px;
        line-height: normal; } }
    @media (min-width: 1025px) {
      .newsletter-modal-container .newsletter-claim,
      .newsletter-modal-container .newsletter-popup-form__claim {
        width: 90%;
        margin-right: 4.5rem; } }
    @media (min-width: 1280px) {
      .newsletter-modal-container .newsletter-claim,
      .newsletter-modal-container .newsletter-popup-form__claim {
        margin: 0 4.5rem 0 0; } }
    @media (min-width: 1530px) {
      .newsletter-modal-container .newsletter-claim,
      .newsletter-modal-container .newsletter-popup-form__claim {
        width: 100%;
        margin-top: 0; } }
  .newsletter-modal-container .newsletter-title,
  .newsletter-modal-container .newsletter-popup-form__title {
    /* stylelint-disable */
    --uses-typography: 'newsletter-title';
    font-weight: 900;
    font-size: 1.25rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    text-transform: none;
    line-height: 1;
    /* stylelint-enable */
    order: 1;
    margin-top: 0;
    color: white;
    margin-bottom: 0; }
    @media (min-width: 768px) {
      .newsletter-modal-container .newsletter-title,
      .newsletter-modal-container .newsletter-popup-form__title {
        font-size: 1.5rem; } }
  .newsletter-modal-container .newsletter-modal-container__coupon {
    /* stylelint-disable */
    --uses-typography: 'newsletter-coupon';
    color: white;
    font-weight: 600;
    font-size: calc(0.00313 * 100vw + 15px);
    font-family: "EBGaramond", georgia, serif;
    font-style: italic;
    text-transform: none;
    /* stylelint-enable */
    margin-top: 24px; }
    @media (min-width: 1025px) {
      .newsletter-modal-container .newsletter-modal-container__coupon {
        font-size: 1.125rem; } }
    @media (min-width: 1920px) {
      .newsletter-modal-container .newsletter-modal-container__coupon {
        font-size: 1.3125rem; } }
    @media (min-width: 768px) {
      .newsletter-modal-container .newsletter-modal-container__coupon {
        position: absolute;
        top: 100%; } }
  .newsletter-modal-container .newsletter-modal-container__feedback,
  .newsletter-modal-container .newsletter-submitting {
    display: none; }
  .newsletter-modal-container .newsletter-modal-container__feedback {
    top: 25%; }
    @media (min-width: 768px) {
      .newsletter-modal-container .newsletter-modal-container__feedback {
        top: 50%; } }

.newsletter-modal-container--submitting .newsletter-submitting {
  position: absolute;
  top: 50%;
  display: block;
  width: 1.25rem;
  transform: translateY(-50%); }

.newsletter-modal-container--submitting .newsletter-form,
.newsletter-modal-container--submitting .newsletter-title {
  opacity: 0;
  pointer-events: none; }

.newsletter-modal-container--feedback .newsletter-modal-container__feedback {
  position: absolute;
  display: block;
  transform: translateY(-50%); }
  .newsletter-modal-container--feedback .newsletter-modal-container__feedback p {
    /* stylelint-disable */
    --uses-typography: 'newsletter-title';
    font-weight: 900;
    font-size: 1.25rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    text-transform: none;
    line-height: 1;
    /* stylelint-enable */
    /* stylelint-disable */
    --uses-typography: 'newsletter-title--footer';
    color: red;
    /* stylelint-enable */
    margin: 0 0 8px;
    color: white;
    white-space: break-spaces; }
    @media (min-width: 768px) {
      .newsletter-modal-container--feedback .newsletter-modal-container__feedback p {
        font-size: 1.5rem; } }
    @media (min-width: 768px) {
      .newsletter-modal-container--feedback .newsletter-modal-container__feedback p {
        color: white; } }
    @media (min-width: 1280px) {
      .newsletter-modal-container--feedback .newsletter-modal-container__feedback p {
        color: red;
        text-transform: uppercase; } }
    @media (min-width: 768px) {
      .newsletter-modal-container--feedback .newsletter-modal-container__feedback p {
        margin-bottom: 16px; } }
    @media (min-width: 1280px) {
      .newsletter-modal-container--feedback .newsletter-modal-container__feedback p {
        color: white; } }
  .newsletter-modal-container--feedback .newsletter-modal-container__feedback span {
    /* stylelint-disable */
    --uses-typography: 'newsletter-claim';
    font-weight: 700;
    font-size: 1.0625rem;
    font-family: "EBGaramond", georgia, serif;
    font-style: italic;
    text-transform: none;
    /* stylelint-enable */
    color: white; }

.newsletter-modal-container--feedback .newsletter-form,
.newsletter-modal-container--feedback .newsletter-title,
.newsletter-modal-container--feedback .newsletter-submitting {
  opacity: 0;
  pointer-events: none; }

/* ---------------- *\
 *  HOME COMPONENT
/* ---------------- */
.newsletter-modal-container--home {
  position: relative;
  box-sizing: content-box;
  width: auto;
  height: auto;
  max-height: none;
  max-height: initial;
  padding: 24px 16px;
  background-color: #242424; }
  @media (min-width: 575px) {
    .newsletter-modal-container--home {
      padding: 24px 24px; } }
  @media (min-width: 768px) {
    .newsletter-modal-container--home {
      min-height: 0;
      padding: 24px 24px 64px;
      opacity: 1; } }
  @media (min-width: 1025px) {
    .newsletter-modal-container--home {
      padding: 1.25% 8.33% 7%; } }
  @media (min-width: 1280px) {
    .newsletter-modal-container--home {
      padding-bottom: 6%; } }
  @media (min-width: 1530px) {
    .newsletter-modal-container--home {
      padding-bottom: 5%; } }
  @media (min-width: 1025px) {
    .newsletter-modal-container--home .btn.btn-close {
      display: none; } }
  .newsletter-modal-container--home .form-empty-check {
    color: red; }
  .newsletter-modal-container--home .field-text input {
    /* stylelint-disable */
    --uses-typography: 'newsletter-hpEmailSignUp-home';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.0375rem;
    text-transform: none;
    color: white;
    /* stylelint-enable */
    padding-top: 32px;
    border-color: white; }
    @media (min-width: 768px) {
      .newsletter-modal-container--home .field-text input {
        font-size: 1.125rem; } }
    @media (min-width: 768px) {
      .newsletter-modal-container--home .field-text input {
        padding-top: 24px; } }
    @media (min-width: 1440px) {
      .newsletter-modal-container--home .field-text input {
        padding-bottom: 8px; } }
  .newsletter-modal-container--home .field-text input::-moz-placeholder {
    color: white;
    opacity: 1; }
  .newsletter-modal-container--home .field-text input::placeholder {
    color: white;
    opacity: 1; }
  .newsletter-modal-container--home .field-text .input--dark:-webkit-autofill {
    -webkit-text-fill-color: #fff !important; }
  .newsletter-modal-container--home .field-checkbox {
    /* stylelint-disable */
    --uses-typography: 'newsletter-checks-home';
    font-size: 0.6875rem;
    color: white;
    /* stylelint-enable */ }
    @media (min-width: 575px) {
      .newsletter-modal-container--home .field-checkbox {
        font-size: 0.8125rem; } }
    @media (min-width: 1025px) {
      .newsletter-modal-container--home .field-checkbox {
        font-size: 0.6875rem; } }
    @media (min-width: 1280px) {
      .newsletter-modal-container--home .field-checkbox {
        font-size: 0.8125rem; } }
    .newsletter-modal-container--home .field-checkbox input {
      border-color: white; }
      .newsletter-modal-container--home .field-checkbox input:checked {
        background: white; }
  .newsletter-modal-container--home .newsletter-form {
    transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    display: flex;
    flex-direction: column;
    cursor: auto; }
  .newsletter-modal-container--home .subscribe-email {
    bottom: 0;
    margin-top: 8px;
    margin-left: auto;
    letter-spacing: 0; }
    @media (min-width: 768px) {
      .newsletter-modal-container--home .subscribe-email {
        margin-top: -44px; } }
  .newsletter-modal-container--home .newsletter-title {
    /* stylelint-disable */
    --uses-typography: 'newsletter-title-home';
    color: white;
    font-weight: 900;
    font-size: 1.875rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    line-height: 1;
    letter-spacing: 0.05rem;
    text-transform: none;
    /* stylelint-enable */
    margin-top: 0; }
    @media (min-width: 575px) {
      .newsletter-modal-container--home .newsletter-title {
        font-size: calc(0.02379 * 100vw + 14.3197px);
        letter-spacing: 0.06813rem; } }
    @media (min-width: 1025px) {
      .newsletter-modal-container--home .newsletter-title {
        letter-spacing: 0.075rem; } }
    @media (min-width: 1920px) {
      .newsletter-modal-container--home .newsletter-title {
        font-size: 3.75rem; } }
    @media (min-width: 1280px) {
      .newsletter-modal-container--home .newsletter-title {
        display: block; } }
  .newsletter-modal-container--home .newsletter-modal-container__feedback {
    top: 50%; }
    .newsletter-modal-container--home .newsletter-modal-container__feedback p {
      color: white; }
      @media (min-width: 1280px) {
        .newsletter-modal-container--home .newsletter-modal-container__feedback p {
          color: white; } }
    .newsletter-modal-container--home .newsletter-modal-container__feedback span {
      color: white; }

.newsletter-popup {
  min-height: 245px; }
  @media (min-width: 768px) {
    .newsletter-popup {
      align-items: flex-start;
      min-height: auto;
      /* stylelint-disable-next-line selector-no-qualifying-type */ }
      .newsletter-popup .newsletter-popup-form[\:has\(input.is-invalid\)] button {
        bottom: 24px; }
      .newsletter-popup .newsletter-popup-form:has(input.is-invalid) button {
        bottom: 24px; } }
  .newsletter-popup__content {
    position: relative;
    margin: 20px 20px 24px 24px; }
    @media (min-width: 768px) {
      .newsletter-popup__content {
        margin-right: 48px; } }
  .newsletter-popup__pic img {
    display: block; }

.newsletter-popup-form {
  display: grid;
  grid-template: "title title" auto "_0 _0" 4px "claim claim" auto "_1 _1" 24px "input input" auto "_2 _2" 16px "checkbox checkbox" auto "_3 _3" 16px "_4 submit" auto/1fr auto;
  /**
   * 1. Force higher specificity (see _footer.scss) to override colors
   */ }
  @media (min-width: 768px) {
    .newsletter-popup-form {
      grid-template: "title title" auto "_0 _0" 4px "claim claim" auto "_1 _1" 16px "checkbox checkbox" auto "_2 _2" 16px "input submit" auto/1fr auto; } }
  .newsletter-popup-form .newsletter-popup-form__title, .newsletter-popup-form .newsletter-popup-form__claim {
    color: inherit; }
  .newsletter-popup-form__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    /* stylelint-disable */
    --uses-typography: 'newsletter-title';
    font-weight: 900;
    font-size: 1.25rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    text-transform: none;
    line-height: 1;
    /* stylelint-enable */
    grid-area: title;
    margin-top: auto !important;
    margin-bottom: auto !important;
    white-space: pre-line; }
  .the-product-details-customization-modal__content > .newsletter-popup-form__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2; }
    @media (min-width: 768px) {
      .newsletter-popup-form__title {
        font-size: 1.5rem; } }
    @media (min-width: 768px) {
      .newsletter-popup-form__title {
        white-space: collapse; } }
  .newsletter-popup-form__claim {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    /* stylelint-disable */
    --uses-typography: 'newsletter-claim';
    font-weight: 700;
    font-size: 1.0625rem;
    font-family: "EBGaramond", georgia, serif;
    font-style: italic;
    text-transform: none;
    /* stylelint-enable */
    grid-area: claim;
    margin-top: auto !important;
    margin-bottom: auto !important;
    white-space: pre-line; }
    @media (min-width: 768px) {
      .newsletter-popup-form__claim {
        white-space: collapse; } }
  .newsletter-popup-form__checkbox {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    /* stylelint-disable */
    --uses-typography: 'newsletter-checkbox';
    font-size: 0.625rem;
    font-weight: 500;
    font-style: normal;
    text-transform: none;
    /* stylelint-enable */
    grid-area: checkbox;
    margin-top: auto !important;
    margin-bottom: auto !important; }
    @media (min-width: 768px) {
      .newsletter-popup-form__checkbox {
        font-size: 0.75rem; } }
    .newsletter-popup-form__checkbox a {
      color: currentColor; }
  .newsletter-popup-form__input {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: input;
    width: auto;
    font-weight: 700;
    margin-top: auto !important;
    margin-bottom: auto !important;
    /* stylelint-disable-next-line selector-max-id */ }
    .newsletter-popup-form__input input::-moz-placeholder {
      color: #242424;
      opacity: 1; }
    .newsletter-popup-form__input input::placeholder {
      color: #242424;
      opacity: 1; }
    .newsletter-popup-form__input .invalid-feedback {
      margin-top: 4px; }
    .newsletter-popup-form__input #hpEmailSignUp {
      padding-top: 0;
      padding-top: initial;
      color: #242424;
      font-weight: 700;
      font-size: 1rem;
      border-color: #242424;
      border-width: 0 0 2px; }
  .newsletter-popup-form__submit {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
    /* stylelint-disable */
    --uses-typography: 'newsletter-button';
    color: black;
    font-weight: 900;
    font-size: 0.875rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    /* stylelint-enable */
    grid-area: submit;
    align-self: flex-end;
    color: white;
    font-size: 0.8125rem;
    line-height: 0.8125rem;
    background-color: black; }
    @media (min-width: 768px) {
      .newsletter-popup-form__submit {
        position: absolute;
        right: 24px;
        bottom: 6px;
        margin-right: auto;
        margin-bottom: 6px;
        color: #909090;
        font-size: 1.5625rem;
        line-height: 1.5625rem;
        background-color: transparent; } }
    .newsletter-popup-form__submit:active {
      color: white;
      background-color: rgba(36, 36, 36, 0.78); }
  .newsletter-popup-form__invalid-feedback {
    grid-area: _5; }

.newsletter-popup-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 201px; }
  @media (min-width: 768px) {
    .newsletter-popup-success {
      min-height: 126px; } }
  .newsletter-popup-success :nth-child(1) {
    /* stylelint-disable */
    --uses-typography: 'newsletter-title';
    font-weight: 900;
    font-size: 1.25rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    text-transform: none;
    line-height: 1;
    /* stylelint-enable */
    margin: 0; }
    @media (min-width: 768px) {
      .newsletter-popup-success :nth-child(1) {
        font-size: 1.5rem; } }
  .newsletter-popup-success :nth-child(2) {
    /* stylelint-disable */
    --uses-typography: 'newsletter-claim';
    font-weight: 700;
    font-size: 1.0625rem;
    font-family: "EBGaramond", georgia, serif;
    font-style: italic;
    text-transform: none;
    /* stylelint-enable */ }

/* STATES */
.newsletter-popup[data-state=''] .newsletter-popup-loader {
  display: none; }

.newsletter-popup[data-state=''] .newsletter-popup-success {
  display: none; }

.newsletter-popup[data-state='submitting'] .newsletter-popup-form {
  visibility: hidden; }

.newsletter-popup[data-state='submitting'] .newsletter-popup-success {
  display: none; }

.newsletter-popup[data-state='success'] .newsletter-popup-loader {
  display: none; }

.newsletter-popup[data-state='success'] .newsletter-popup-form {
  display: none; }

/*

  <div class="phone-fields">
      <p class="phone-fields__legend">
          ${Resource.msg('label.input.phone.profile', 'forms', null)}
      </p>
      <span class="phone-fields__country-prefix">
          <isset name="isPrimary" value="${true|false}" scope="page" />
          <isset name="isRequired" value="${true|false}" scope="page" />
          <isinclude template="components/countryPrefixSelector" />
      </span>

      <span class="phone-fields__phone-number field-text">
          <label class="form-control-label field-text__label" for="phone">
            ${Resource.msg('label.input.phone.profile', 'forms', null)}
          </label>
          <input type="tel" class="..." id="..."
              data-missing-error="${Resource.msg('error.message.required', 'forms', null)}"
              data-pattern-mismatch="${Resource.msg('error.message.validation.phone', 'forms', null)}"
              pattern="^\(?([2-9][0-8][0-9])\)?[\-\. ]?([2-9][0-9]{2})[\-\. ]?([0-9]{4})(\s*x[0-9]+)?$"
          />
      </span>
  </div>

*/
.phone-fields {
  display: flex;
  flex-flow: row wrap;
  grid-gap: 24px;
  gap: 24px;
  justify-content: space-between; }
  .phone-fields__country-prefix {
    flex-basis: 43%;
    max-width: 9.25rem; }
    @media (min-width: 1025px) {
      .phone-fields__country-prefix {
        flex-basis: 28%;
        max-width: none; } }
  .phone-fields__phone-number {
    flex-basis: 43%;
    flex-grow: 1; }
    @media (min-width: 1025px) {
      .phone-fields__phone-number {
        flex-basis: 65%;
        flex-grow: 0; } }

.the-menu-submenu {
  transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  padding: 0 24px 0 16px;
  overflow-y: hidden;
  opacity: 0;
  pointer-events: none; }

.the-menu-submenu__wrapper {
  /* Internet Explorer */
  scrollbar-face-color: rgba(168, 168, 168, 0.5);
  scrollbar-track-color: #f1f3f4;
  /* W3C Working Draft */
  scrollbar-color: rgba(168, 168, 168, 0.5) #f1f3f4;
  /* stylelint-disable-line property-no-unknown */
  height: calc(100% - var(--menu-inset-top));
  margin-top: var(--menu-inset-top);
  overflow-y: hidden; }
  .the-menu-submenu__wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(168, 168, 168, 0.5);
    border-radius: 0; }
  .the-menu-submenu__wrapper::-webkit-scrollbar-track {
    background-color: #f1f3f4; }
  .the-menu-submenu__wrapper::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #ebebeb; }

.the-menu-submenu__list {
  /* Internet Explorer */
  scrollbar-face-color: rgba(168, 168, 168, 0.5);
  scrollbar-track-color: #f1f3f4;
  /* W3C Working Draft */
  scrollbar-color: rgba(168, 168, 168, 0.5) #f1f3f4;
  /* stylelint-disable-line property-no-unknown */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: auto; }
  .the-menu-submenu__list::-webkit-scrollbar-thumb {
    background-color: rgba(168, 168, 168, 0.5);
    border-radius: 0; }
  .the-menu-submenu__list::-webkit-scrollbar-track {
    background-color: #f1f3f4; }
  .the-menu-submenu__list::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #ebebeb; }

.the-menu-submenu {
  /* stylelint-disable length-zero-no-unit */
  --submenu-width: 0px;
  /* stylelint-enable length-zero-no-unit */
  background-color: white;
  background-color: var(--subcategory-bg-color, white); }
  @media (min-width: 1025px) {
    .the-menu-submenu {
      top: 100%;
      bottom: auto;
      bottom: initial;
      left: calc(var(--menu-position) * -1);
      margin-top: 0.4375rem;
      padding: 8px 32px 8px var(--item-position);
      overflow-y: visible;
      background-color: white;
      background-color: var(--subcategory-bg-color-desktop, white);
      transition: none;
      will-change: opacity; }
      .the-menu-submenu:not(.the-menu-submenu--open) {
        pointer-events: none; } }
  @media (min-width: 1280px) {
    .the-menu-submenu {
      margin-top: 0.5625rem; } }
  @media (min-width: 1530px) {
    .the-menu-submenu {
      margin-top: 8px; } }
  .the-menu-submenu--hidden {
    visibility: hidden;
    transition: none; }
  .the-menu-submenu--open {
    z-index: 2;
    opacity: 1;
    pointer-events: auto; }
    @media (min-width: 1025px) {
      .the-menu-submenu--open {
        width: 100vw; }
        .the-menu-submenu--open .the-menu-submenu {
          pointer-events: auto; } }
    .the-menu-submenu--open .the-menu-submenu__wrapper {
      -webkit-animation: hide-scroll 300ms backwards;
              animation: hide-scroll 300ms backwards;
      overflow-y: auto; }
      @media (min-width: 1025px) {
        .the-menu-submenu--open .the-menu-submenu__wrapper {
          -webkit-animation: none;
                  animation: none; } }
  @media (min-width: 1025px) {
    .the-menu-submenu--complex {
      padding-left: var(--menu-position); } }
  @media (min-width: 1025px) {
    .the-menu-submenu--complex .the-menu-submenu {
      position: static;
      height: auto;
      margin-left: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0;
      opacity: 1; } }
  @media (min-width: 1025px) {
    .the-menu-submenu--complex .the-menu-submenu__wrapper .the-menu-submenu__wrapper {
      overflow-y: visible; } }
  @media (min-width: 1025px) {
    .the-menu-submenu--complex .the-menu-submenu__list {
      justify-content: center;
      overflow: visible; } }
  @media (min-width: 1025px) {
    .the-menu-submenu--block {
      left: 16px;
      width: var(--submenu-width);
      padding: 3.3% 24px 2.5% 0; } }
  @media (min-width: 1025px) {
    .the-menu-submenu--block .the-menu-submenu__list {
      align-items: flex-end;
      padding: 0; } }
  .the-menu-submenu--special-category {
    padding: 0.5rem;
    background-color: var(--category-bg-color);
    border-radius: 22px; }
    @media (min-width: 1025px) {
      .the-menu-submenu--special-category {
        background: none;
        border-radius: 0; } }
  @media (min-width: 1025px) {
    .the-menu-submenu:not(.the-menu-submenu--complex) .the-menu-item--with-separator:not(:first-of-type) {
      padding-top: calc(16px - 8px);
      padding-left: unset; } }
  .the-menu-submenu__back {
    position: absolute;
    top: 16px; }
    @media (min-width: 1025px) {
      .the-menu-submenu__back {
        display: none; } }
  @media (min-width: 1025px) {
    .the-menu-submenu__list {
      align-items: flex-start;
      margin: 0;
      padding: 0; }
      .the-menu-submenu__list--complex {
        flex-direction: row;
        grid-gap: 2vw;
        gap: 2vw; } }
  .the-menu-submenu__list::before {
    /* stylelint-disable */
    --uses-typography: 'menu-base';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    /* stylelint-enable */
    /* stylelint-disable */
    --uses-typography: 'menu-category-title';
    text-decoration: underline;
    /* stylelint-enable */
    display: block;
    padding-bottom: 16px;
    color: black;
    color: var(--subcategory-color, var(--category-color, black));
    content: attr(title); }
    @media (min-width: 810px) {
      .the-menu-submenu__list::before {
        font-size: calc(0.00465 * 100vw + 9.23256px); } }
    @media (min-width: 1025px) {
      .the-menu-submenu__list::before {
        font-size: calc(0.00594 * 100vw + 6.91089px);
        font-weight: 900; } }
    @media (min-width: 1530px) {
      .the-menu-submenu__list::before {
        font-size: 1rem; } }
    @media (min-width: 1025px) {
      .the-menu-submenu__list::before {
        content: none; } }

.the-grid-banner {
  position: relative; }
  .the-grid-banner__pic {
    position: relative;
    display: block; }
    .the-grid-banner__pic::before {
      display: block;
      width: 0;
      padding-bottom: 150%;
      content: ''; }
    .the-grid-banner__pic > img,
    .the-grid-banner__pic > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
  .the-grid-banner--simple-image, .the-grid-banner--image-simple, .the-grid-banner--image-double, .the-grid-banner--image-full {
    margin-bottom: 24px; }
    .the-grid-banner--simple-image .the-grid-banner__title-subtitle, .the-grid-banner--image-simple .the-grid-banner__title-subtitle, .the-grid-banner--image-double .the-grid-banner__title-subtitle, .the-grid-banner--image-full .the-grid-banner__title-subtitle {
      position: absolute;
      margin: 8px 8px 0;
      color: #242424;
      color: var(--title-subtitle-color, #242424);
      pointer-events: none; }
      @media (min-width: 768px) {
        .the-grid-banner--simple-image .the-grid-banner__title-subtitle, .the-grid-banner--image-simple .the-grid-banner__title-subtitle, .the-grid-banner--image-double .the-grid-banner__title-subtitle, .the-grid-banner--image-full .the-grid-banner__title-subtitle {
          margin: calc(0.02083 * 100vw + -8px) calc(0.01389 * 100vw + -2.66667px) 0; } }
      @media (min-width: 1920px) {
        .the-grid-banner--simple-image .the-grid-banner__title-subtitle, .the-grid-banner--image-simple .the-grid-banner__title-subtitle, .the-grid-banner--image-double .the-grid-banner__title-subtitle, .the-grid-banner--image-full .the-grid-banner__title-subtitle {
          margin: 32px 24px 0; } }
    .the-grid-banner--simple-image .base-title-subtitle__title, .the-grid-banner--image-simple .base-title-subtitle__title, .the-grid-banner--image-double .base-title-subtitle__title, .the-grid-banner--image-full .base-title-subtitle__title {
      /* stylelint-disable */
      --uses-typography: 'the-product-list-banner-header-title';
      font-family: "FKGrotesk", "Arial", sans-serif;
      font-weight: 900;
      font-size: 0.875rem;
      line-height: 1.25;
      text-transform: uppercase;
      /* stylelint-enable */ }
      @media (min-width: 768px) {
        .the-grid-banner--simple-image .base-title-subtitle__title, .the-grid-banner--image-simple .base-title-subtitle__title, .the-grid-banner--image-double .base-title-subtitle__title, .the-grid-banner--image-full .base-title-subtitle__title {
          font-size: calc(0.00608 * 100vw + 9.33333px); } }
      @media (min-width: 1920px) {
        .the-grid-banner--simple-image .base-title-subtitle__title, .the-grid-banner--image-simple .base-title-subtitle__title, .the-grid-banner--image-double .base-title-subtitle__title, .the-grid-banner--image-full .base-title-subtitle__title {
          font-size: 1.3125rem; } }
    .the-grid-banner--simple-image .base-title-subtitle__subtitle, .the-grid-banner--image-simple .base-title-subtitle__subtitle, .the-grid-banner--image-double .base-title-subtitle__subtitle, .the-grid-banner--image-full .base-title-subtitle__subtitle {
      /* stylelint-disable */
      --uses-typography: 'the-product-list-banner-header-subtitle';
      font-family: "EBGaramond", georgia, serif;
      font-weight: 700;
      font-size: 0.875rem;
      font-style: italic;
      line-height: 1.25;
      /* stylelint-enable */ }
      @media (min-width: 768px) {
        .the-grid-banner--simple-image .base-title-subtitle__subtitle, .the-grid-banner--image-simple .base-title-subtitle__subtitle, .the-grid-banner--image-double .base-title-subtitle__subtitle, .the-grid-banner--image-full .base-title-subtitle__subtitle {
          font-size: calc(0.00347 * 100vw + 11.33333px);
          line-height: 1; } }
      @media (min-width: 1920px) {
        .the-grid-banner--simple-image .base-title-subtitle__subtitle, .the-grid-banner--image-simple .base-title-subtitle__subtitle, .the-grid-banner--image-double .base-title-subtitle__subtitle, .the-grid-banner--image-full .base-title-subtitle__subtitle {
          font-size: 1.125rem; } }
  .the-grid-banner--image-double .the-grid-banner__pic {
    position: relative;
    display: block; }
    .the-grid-banner--image-double .the-grid-banner__pic::before {
      display: block;
      width: 0;
      padding-bottom: 75%;
      content: ''; }
    .the-grid-banner--image-double .the-grid-banner__pic > img,
    .the-grid-banner--image-double .the-grid-banner__pic > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
  .the-grid-banner--image-double .the-grid-banner__title-subtitle {
    margin: 8px 16px 0; }
    @media (min-width: 768px) {
      .the-grid-banner--image-double .the-grid-banner__title-subtitle {
        margin: calc(0.02083 * 100vw + -8px) calc(0.02778 * 100vw + -5.33333px) 0; } }
    @media (min-width: 1920px) {
      .the-grid-banner--image-double .the-grid-banner__title-subtitle {
        margin: 32px 48px 0; } }
  .the-grid-banner--image-double .base-title-subtitle__title {
    /* stylelint-disable */
    --uses-typography: 'the-product-list-banner-header-title-doble-full';
    line-height: 1.25;
    /* stylelint-enable */ }
    @media (min-width: 768px) {
      .the-grid-banner--image-double .base-title-subtitle__title {
        line-height: 1; } }
  .the-grid-banner--image-double .base-title-subtitle__subtitle {
    /* stylelint-disable */
    --uses-typography: 'the-product-list-banner-header-subtitle-doble-full';
    /* stylelint-enable */ }
    @media (min-width: 768px) {
      .the-grid-banner--image-double .base-title-subtitle__subtitle {
        font-size: calc(0.00868 * 100vw + 7.33333px); } }
    @media (min-width: 1920px) {
      .the-grid-banner--image-double .base-title-subtitle__subtitle {
        font-size: 1.5rem; } }
  .the-grid-banner--image-full .the-grid-banner__pic {
    position: relative;
    display: block; }
    .the-grid-banner--image-full .the-grid-banner__pic::before {
      display: block;
      width: 0;
      padding-bottom: 56.25%;
      content: ''; }
    .the-grid-banner--image-full .the-grid-banner__pic > img,
    .the-grid-banner--image-full .the-grid-banner__pic > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
    @media (min-width: 768px) {
      .the-grid-banner--image-full .the-grid-banner__pic {
        position: relative;
        display: block; }
        .the-grid-banner--image-full .the-grid-banner__pic::before {
          display: block;
          width: 0;
          padding-bottom: 37.5%;
          content: ''; }
        .the-grid-banner--image-full .the-grid-banner__pic > img,
        .the-grid-banner--image-full .the-grid-banner__pic > .img {
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
          -o-object-position: 50% 50%;
             object-position: 50% 50%; } }
  .the-grid-banner--image-full .the-grid-banner__title-subtitle {
    margin: 8px 16px 0; }
    @media (min-width: 768px) {
      .the-grid-banner--image-full .the-grid-banner__title-subtitle {
        margin: calc(0.02083 * 100vw + -8px) calc(0.02257 * 100vw + -1.33333px) 0; } }
    @media (min-width: 1920px) {
      .the-grid-banner--image-full .the-grid-banner__title-subtitle {
        margin: 32px 2.625rem 0; } }
  .the-grid-banner--image-full.the-grid-banner--minimal .the-grid-banner__pic {
    position: relative;
    display: block; }
    .the-grid-banner--image-full.the-grid-banner--minimal .the-grid-banner__pic::before {
      display: block;
      width: 0;
      padding-bottom: 75%;
      content: ''; }
    .the-grid-banner--image-full.the-grid-banner--minimal .the-grid-banner__pic > img,
    .the-grid-banner--image-full.the-grid-banner--minimal .the-grid-banner__pic > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
  .the-grid-banner--image-full .base-title-subtitle__title {
    /* stylelint-disable */
    --uses-typography: 'the-product-list-banner-header-title-doble-full';
    line-height: 1.25;
    /* stylelint-enable */ }
    @media (min-width: 768px) {
      .the-grid-banner--image-full .base-title-subtitle__title {
        line-height: 1; } }
  .the-grid-banner--image-full .base-title-subtitle__subtitle {
    /* stylelint-disable */
    --uses-typography: 'the-product-list-banner-header-subtitle-doble-full';
    /* stylelint-enable */ }
    @media (min-width: 768px) {
      .the-grid-banner--image-full .base-title-subtitle__subtitle {
        font-size: calc(0.00868 * 100vw + 7.33333px); } }
    @media (min-width: 1920px) {
      .the-grid-banner--image-full .base-title-subtitle__subtitle {
        font-size: 1.5rem; } }
  @media (min-width: 768px) {
    .the-grid-banner--mobile-slider {
      width: 100%; } }
  .the-grid-banner--mobile-slider .the-grid-banner__title-subtitle {
    margin-left: 16px;
    margin-right: 16px; }
  .the-grid-banner--mobile-slider .base-carousel__carousel {
    margin-top: 8px;
    padding-left: 16px; }
  .the-grid-banner--mobile-slider .base-carousel__item {
    width: calc(100% / 2.5); }
  .the-grid-banner--mobile-slider .the-grid-banner__pic img {
    padding-left: 0.0625rem;
    padding-right: 0.0625rem; }
  .the-grid-banner .base-product-tile__body {
    min-height: auto;
    padding-right: 0; }

.the-product-customizer__unit-price {
  /* stylelint-disable */
  --uses-typography: 'product-details-product-description';
  color: black;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  /* stylelint-enable */
  margin-top: 16px;
  margin-bottom: 0; }
  @media (min-width: 1025px) {
    .the-product-customizer__unit-price {
      font-size: calc(0.00335 * 100vw + 9.56425px); } }
  @media (min-width: 1920px) {
    .the-product-customizer__unit-price {
      font-size: 1rem; } }
  .the-product-customizer__unit-price + .the-product-customizer__unit-price {
    margin-top: 4px; }

.the-product-customizer__customize-btn {
  /* stylelint-disable */
  --uses-typography: 'product-customizer-action-button';
  /* stylelint-enable */
  z-index: 11; }
  @media (min-width: 575px) {
    .the-product-customizer__customize-btn {
      font-family: "FKGrotesk", "Arial", sans-serif;
      font-size: 2rem;
      font-style: normal;
      font-weight: 900;
      line-height: 1;
      text-transform: uppercase; } }
  @media (min-width: 575px) {
    .the-product-customizer__customize-btn {
      z-index: unset;
      margin-top: 9.6875rem; } }
  .the-product-customizer__customize-btn--full-width {
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none; }

.the-product-customizer__controls {
  display: flex;
  flex-wrap: wrap;
  padding-top: 24px;
  padding-bottom: 48px;
  align-items: center; }
  @media (min-width: 1280px) {
    .the-product-customizer__controls {
      padding-top: 6.25rem;
      padding-bottom: 160px;
      flex-wrap: nowrap; } }

.the-product-customizer__selector {
  flex: 1 0 100%; }
  @media (min-width: 1280px) {
    .the-product-customizer__selector {
      flex: 1 1 auto; } }

.the-product-customizer__visualizer {
  flex: 1 0 100%; }
  @media (min-width: 1280px) {
    .the-product-customizer__visualizer {
      flex: 0 1 calc(100vw - 29.1875rem - (8.3vw * 2)); } }

.the-product-customizer__slider .base-carousel__carousel {
  margin-left: -16px;
  margin-right: -16px; }

.the-product-customizer__slider .base-carousel__item {
  width: calc(100% / 2.5); }
  @media (min-width: 768px) {
    .the-product-customizer__slider .base-carousel__item {
      width: calc(100% / 3); } }
  @media (min-width: 1025px) {
    .the-product-customizer__slider .base-carousel__item {
      width: calc(100% / 4); } }

.the-product-customizer__slider .base-carousel__pic img,
.the-product-customizer__slider .base-carousel__pic .img {
  padding-left: 0;
  padding-right: 0; }

.the-product-customizer__slider .swiper {
  padding-left: 16px; }
  @media (min-width: 1280px) {
    .the-product-customizer__slider .swiper {
      padding-left: calc(0.04916 * 100vw + -34.39106px); } }
  @media (min-width: 1920px) {
    .the-product-customizer__slider .swiper {
      padding-left: 3.75rem; } }

.the-product-customizer-complement {
  position: relative;
  display: inline-block;
  height: 4.25rem;
  padding-top: 8px;
  text-align: center;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent; }
  .the-product-customizer-complement--disabled {
    opacity: 0.3;
    pointer-events: none; }
  .the-product-customizer-complement__image {
    display: block;
    height: 2.75rem;
    margin: 0 auto 8px; }
  .the-product-customizer-complement__amount-indicator {
    position: absolute;
    top: 0;
    left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 1.125rem;
    text-align: center;
    background-color: black;
    border-radius: 50%; }
  .the-product-customizer-complement__amount-number {
    /* stylelint-disable */
    --uses-typography: 'product-customizer-charm-amount';
    font-family: "FKGrotesk", "Arial", sans-serif;
    color: white;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
    text-transform: none;
    /* stylelint-enable */ }
  .the-product-customizer-complement__image-underline {
    width: 48px;
    height: 2px;
    margin: 0 auto;
    background-color: black; }

@media (min-width: 575px) {
  .the-product-customizer-complement-selector {
    margin-bottom: 2.25rem; } }

.the-product-customizer-complement-selector__title {
  /* stylelint-disable */
  --uses-typography: 'product-details-product-title';
  color: black;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
  /* stylelint-enable */
  margin-top: 0;
  margin-bottom: 16px; }
  @media (min-width: 375px) {
    .the-product-customizer-complement-selector__title {
      font-size: 1.3125rem; } }
  @media (min-width: 1025px) {
    .the-product-customizer-complement-selector__title {
      font-size: calc(0.00447 * 100vw + 16.41899px);
      line-height: 1.1;
      letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
  @media (min-width: 1920px) {
    .the-product-customizer-complement-selector__title {
      font-size: 1.5625rem;
      letter-spacing: 0.05rem; } }

.the-product-customizer-complement-selector__filters {
  display: flex;
  grid-gap: 24px;
  gap: 24px;
  padding-bottom: 1.375rem; }

.the-product-customizer-complement-selector__filter-button {
  /* stylelint-disable */
  --uses-typography: 'product-customizer-filter-button';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
  color: #909090;
  text-transform: uppercase;
  /* stylelint-enable */
  overflow: visible;
  position: relative;
  display: flex;
  grid-gap: 8px;
  gap: 8px;
  align-items: center;
  line-height: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding-bottom: 0.1875rem; }
  .the-product-customizer-complement-selector__filter-button::after {
    --hotzone-margins: 8px;
    position: absolute;
    top: calc(-1 * var(--hotzone-margins));
    left: calc(-1 * var(--hotzone-margins));
    width: calc(100% + (2 * var(--hotzone-margins)));
    height: calc(100% + (2 * var(--hotzone-margins)));
    content: '';
    background: transparent; }
  .the-product-customizer-complement-selector__filter-button--selected {
    /* stylelint-disable */
    --uses-typography: 'product-customizer-filter-button-selected';
    color: black;
    text-decoration: underline;
    /* stylelint-enable */
    cursor: auto;
    pointer-events: none; }

.the-product-customizer-complement-selector__swatch-img {
  width: 16px;
  height: 16px; }

.the-product-customizer-complement-selector__products {
  overflow: -moz-scrollbars-none;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  max-width: 29.1875rem;
  overflow: auto;
  margin-left: -16px;
  margin-right: -16px; }
  .the-product-customizer-complement-selector__products::-webkit-scrollbar {
    display: none; }
  @media (min-width: calc(29.1875rem + 32px)) {
    .the-product-customizer-complement-selector__products {
      margin-left: 0;
      margin-right: 0; } }

.the-product-customizer-complement-selector__product-set {
  display: grid;
  flex: 1 0 auto;
  grid-template-columns: repeat(7, 1fr);
  grid-template-columns: repeat(var(--grid-columns, 7), 1fr);
  grid-gap: 0 12px;
  gap: 0 12px;
  padding: 0 16px 0.625rem; }
  @media (min-width: calc(29.1875rem + 32px)) {
    .the-product-customizer-complement-selector__product-set {
      padding-left: 0;
      padding-right: 0; } }

.the-product-customizer-complement-selector__message {
  /* stylelint-disable */
  --uses-typography: 'product-customizer-selector-message';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
  color: #909090;
  /* stylelint-enable */
  margin-top: 1.3125rem;
  margin-bottom: 0; }

.the-product-customizer-complement-visualizer {
  position: relative;
  display: inline-block;
  padding: 0.4375rem 0; }
  .the-product-customizer-complement-visualizer__img {
    height: 3.5625rem; }
  .the-product-customizer-complement-visualizer__remove-button {
    /* stylelint-disable */
    --uses-typography: 'product-customizer-remove-button';
    font-family: "FKGrotesk", "Arial", sans-serif;
    color: white;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
    text-transform: none;
    /* stylelint-enable */
    position: absolute;
    top: 0;
    right: 0;
    width: 1.125rem;
    height: 1.125rem;
    padding: 0;
    background-color: black;
    border-radius: 50%;
    transform: rotate(45deg); }

.the-product-customizer-main__button {
  overflow: visible;
  position: relative;
  line-height: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding-bottom: 0.1875rem; }
  .the-product-customizer-main__button::after {
    --hotzone-margins: 8px;
    position: absolute;
    top: calc(-1 * var(--hotzone-margins));
    left: calc(-1 * var(--hotzone-margins));
    width: calc(100% + (2 * var(--hotzone-margins)));
    height: calc(100% + (2 * var(--hotzone-margins)));
    content: '';
    background: transparent; }
  .the-product-customizer-main__button--selected {
    border-bottom: 2px solid black;
    cursor: auto;
    pointer-events: none; }
  .the-product-customizer-main__button--disabled {
    cursor: auto;
    pointer-events: none; }

.the-product-customizer-main__disabled-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><g fill-rule="evenodd"><path d="M0 11.326L.647 12 12 .674 11.353 0z" fill="black"/><path d="M11.353 12l.647-.674L.647 0 0 .674z" fill="black"/></g></svg>'); }
  .the-product-customizer-main__disabled-icon--light {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><g fill-rule="evenodd"><path d="M0 11.326L.647 12 12 .674 11.353 0z" fill="%23c8c8c8"/><path d="M11.353 12l.647-.674L.647 0 0 .674z" fill="%23c8c8c8"/></g></svg>'); }

.the-product-customizer-main__swatch-img {
  width: 24px;
  height: 24px;
  -o-object-fit: fill;
     object-fit: fill; }

.the-product-customizer-main-selector {
  margin-bottom: 48px; }
  .the-product-customizer-main-selector__title {
    /* stylelint-disable */
    --uses-typography: 'product-details-product-title';
    color: black;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: 0.0375rem;
    text-transform: uppercase;
    /* stylelint-enable */
    margin-top: 0;
    margin-bottom: 16px; }
    @media (min-width: 375px) {
      .the-product-customizer-main-selector__title {
        font-size: 1.3125rem; } }
    @media (min-width: 1025px) {
      .the-product-customizer-main-selector__title {
        font-size: calc(0.00447 * 100vw + 16.41899px);
        line-height: 1.1;
        letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
    @media (min-width: 1920px) {
      .the-product-customizer-main-selector__title {
        font-size: 1.5625rem;
        letter-spacing: 0.05rem; } }
  .the-product-customizer-main-selector__products {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 24px;
    gap: 24px; }

.the-product-customizer-selector {
  overflow: -moz-scrollbars-none;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 100vw; }
  .the-product-customizer-selector::-webkit-scrollbar {
    display: none; }
  @media (min-width: 575px) {
    .the-product-customizer-selector {
      align-items: center; } }
  .the-product-customizer-selector.the-product-details {
    padding: 0; }
  .the-product-customizer-selector__content {
    display: flex;
    flex-direction: column; }
  .the-product-customizer-selector__actions.cart-and-ipay {
    margin-top: 0; }
    @media (min-width: 575px) {
      .the-product-customizer-selector__actions.cart-and-ipay {
        display: flex;
        flex-direction: column; } }
  .the-product-customizer-selector__total-price--mobile {
    margin-right: 8px;
    padding-right: 8px;
    border-right: 1px solid white; }
  .the-product-customizer-selector__total-price--desktop {
    /* stylelint-disable */
    --uses-typography: 'product-customizer-total-price-desktop';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.25;
    color: black;
    text-transform: uppercase;
    /* stylelint-enable */
    margin-bottom: 8px; }
  .the-product-customizer-selector__add-to-cart, .the-product-customizer-selector__app-exclusive {
    display: none; }
    @media (min-width: 575px) {
      .the-product-customizer-selector__add-to-cart, .the-product-customizer-selector__app-exclusive {
        display: block; } }
  .the-product-customizer-selector .the-product-customizer-selector__add-to-cart-btn--full-width {
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none; }
  .the-product-customizer-selector .the-product-customizer-selector__add-to-cart-btn--desktop {
    /* stylelint-disable */
    --uses-typography: 'product-customizer-action-button';
    /* stylelint-enable */ }
    @media (min-width: 575px) {
      .the-product-customizer-selector .the-product-customizer-selector__add-to-cart-btn--desktop {
        font-family: "FKGrotesk", "Arial", sans-serif;
        font-size: 2rem;
        font-style: normal;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase; } }
    .the-product-customizer-selector .the-product-customizer-selector__add-to-cart-btn--desktop:disabled {
      color: #a8a8a8; }
  .the-product-customizer-selector__btn-modal {
    width: 100%; }

.the-product-customizer-visualizer {
  position: relative;
  padding-top: 5.9375rem;
  padding-bottom: 5.9375rem; }
  @media (min-width: 1280px) {
    .the-product-customizer-visualizer {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      padding-top: 7.5rem;
      padding-bottom: 7.5rem; } }
  .the-product-customizer-visualizer__products {
    overflow: -moz-scrollbars-none;
    list-style: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    overflow: auto;
    margin-left: calc(16px * -1);
    margin-right: calc(16px * -1); }
    .the-product-customizer-visualizer__products::-webkit-scrollbar {
      display: none; }
    @media (min-width: 1280px) {
      .the-product-customizer-visualizer__products {
        max-width: calc(100vw + (16px * 2) - 29.1875rem - (8.3vw * 2)); } }
  .the-product-customizer-visualizer__main {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: calc(100vw + 140px);
    height: 74px;
    margin-left: calc(140px * -1);
    padding-right: 16px;
    border-style: inset;
    border-width: 0 0 0 190px;
    border-width: var(--border-width, 0 0 0 190px);
    border-image-source: var(--main-bg-image);
    border-image-slice: 0 216 0 190 fill;
    border-image-slice: var(--border-image-slice, 0 216 0 190 fill); }
    @media (min-width: 768px) {
      .the-product-customizer-visualizer__main {
        min-width: 754px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 0;
        border-width: 0 216px;
        border-width: var(--border-width-desktop, 0 216px);
        border-image-slice: 0 216 fill;
        border-image-slice: var(--border-image-slice-desktop, 0 216 fill); } }
    @media (min-width: 1280px) {
      .the-product-customizer-visualizer__main {
        margin-right: 0; } }
  .the-product-customizer-visualizer__edit {
    /* stylelint-disable */
    --uses-typography: 'product-customizer-edit-button';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: underline;
    text-transform: none;
    /* stylelint-enable */
    position: absolute;
    right: 0;
    bottom: 2.5rem;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent; }
    @media (min-width: 1280px) {
      .the-product-customizer-visualizer__edit {
        bottom: 0; } }
    .the-product-customizer-visualizer__edit:active {
      background-color: rgba(199, 199, 199, 0.5);
      /* mouse, touch pad */ }
      @media (hover: hover) and (pointer: fine) {
        .the-product-customizer-visualizer__edit:active {
          background-color: transparent; } }

.the-product-details-customization-modal__content {
  /* Internet Explorer */
  scrollbar-face-color: #a8a8a8;
  scrollbar-track-color: transparent;
  /* W3C Working Draft */
  scrollbar-color: #a8a8a8 transparent;
  /* stylelint-disable-line property-no-unknown */
  display: grid;
  grid-template-areas: 'title title' 'image form' 'image .' 'conditions conditions' 'add-to-cart-mobile add-to-cart-mobile';
  grid-template-rows: repeat(5, -webkit-min-content);
  grid-template-rows: repeat(5, min-content);
  grid-template-columns: 126px auto;
  padding: 48px 16px 0;
  overflow-y: auto; }
  .the-product-details-customization-modal__content::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 0; }
  .the-product-details-customization-modal__content::-webkit-scrollbar-track {
    background-color: transparent; }
  .the-product-details-customization-modal__content::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #ebebeb; }
  @media (min-width: 768px) {
    .the-product-details-customization-modal__content {
      padding-left: 4.28%;
      padding-right: 4.28%; } }
  @media (min-width: 1025px) {
    .the-product-details-customization-modal__content {
      grid-template-areas: 'image title' 'image form' 'image .' 'image conditions';
      grid-template-rows: repeat(3, -webkit-min-content) auto;
      grid-template-rows: repeat(3, min-content) auto;
      grid-template-columns: auto auto;
      padding: 0;
      overflow: hidden; }
    .the-product-details-customization-modal__content > .newsletter-popup-form__title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1; } }

.the-product-details-customization-modal__image {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  position: relative;
  grid-area: image;
  max-width: 523px;
  margin-top: auto;
  margin-bottom: auto; }
  .the-product-details-customization-modal__image .base-image__img {
    display: block;
    width: 100%; }

@media (min-width: 1025px) {
  .the-product-details-customization-modal__title, .the-product-details-customization-modal__form, .the-product-details-customization-modal__conditions {
    max-width: 95%; } }

@media (min-width: 1920px) {
  .the-product-details-customization-modal__title, .the-product-details-customization-modal__form, .the-product-details-customization-modal__conditions {
    max-width: 80%; } }

.the-product-details-customization-modal__title.the-product-details__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: title;
  margin-bottom: 0;
  padding-bottom: 24px;
  font-size: 1.5rem; }

.the-product-details-customization-modal__content > .the-product-details-customization-modal__title.the-product-details__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2; }
  @media (min-width: 1025px) {
    .the-product-details-customization-modal__title.the-product-details__title {
      padding-top: 48px;
      padding-bottom: 16px;
      padding-left: 32px; } }
  @media (min-width: 1280px) {
    .the-product-details-customization-modal__title.the-product-details__title {
      padding-bottom: 24px; } }
  .the-product-details-customization-modal__title.the-product-details__title .title-text {
    display: block; }

.the-product-details-customization-modal__subtitle {
  /* stylelint-disable */
  --uses-typography: 'byl-modal-options-title';
  font-size: 0.75rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.25;
  /* stylelint-enable */
  margin-top: 24px;
  margin-bottom: unset;
  font-size: 0.875rem; }

.the-product-details-customization-modal__form {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: form;
  margin-top: 24px;
  padding-right: 16px;
  padding-left: 16px; }
  @media (min-width: 1025px) {
    .the-product-details-customization-modal__form {
      margin-top: unset;
      padding-right: 32px;
      padding-left: 32px; } }

.the-product-details-customization-modal__input {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: input; }

.the-product-details-customization-modal__colors-wrapper {
  grid-area: colors; }

.the-product-details-customization-modal__swatch-display {
  width: 1.125rem;
  height: 1.125rem; }

.the-product-details-customization-modal__conditions {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: conditions;
  margin: 32px 0 32px;
  color: #c8c8c8;
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 1.25; }
  @media (min-width: 1025px) {
    .the-product-details-customization-modal__conditions {
      margin-bottom: 24px;
      padding-left: 32px; } }
  @media (min-width: 1280px) {
    .the-product-details-customization-modal__conditions {
      margin-bottom: 48px;
      padding-right: 32px;
      padding-left: 32px; } }

.the-product-details-customization-modal__add-to-cart--desktop.cart-and-ipay {
  grid-area: add-to-cart; }
  @media (min-width: 575px) {
    .the-product-details-customization-modal__add-to-cart--desktop.cart-and-ipay {
      margin: unset; } }
  @media (min-width: 1530px) {
    .the-product-details-customization-modal__add-to-cart--desktop.cart-and-ipay {
      margin-top: 32px; } }
  @media (max-width: 767px) {
    .the-product-details-customization-modal__add-to-cart--desktop.cart-and-ipay .swap-content {
      white-space: wrap; } }

.the-product-details-customization-modal__add-to-cart--mobile {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  position: relative;
  grid-area: add-to-cart-mobile; }

@media (min-width: 768px) {
    .newsletter-popup-form__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; }
    .newsletter-popup-form__claim {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; }
    .newsletter-popup-form__checkbox {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; }
    .newsletter-popup-form__input {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1; }
    .newsletter-popup-form__submit {
    -ms-grid-row: 7;
    -ms-grid-column: 2; }
    .the-product-details-customization-modal__title.the-product-details__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2; }
    .the-product-details-customization-modal__input {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1; } }

@media (min-width: 1025px) {
    .the-product-details-customization-modal__content > .the-product-details-customization-modal__title.the-product-details__title {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1; }
    .the-product-details-customization-modal__form {
    -ms-grid-row: 2;
    -ms-grid-column: 2; }
    .the-product-details-customization-modal__conditions {
    -ms-grid-row: 4;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1; } }
  @media (min-width: 575px) {
    .the-product-details-customization-modal__add-to-cart--mobile {
      display: none; } }

.the-product-details-customization-modal__customized-text {
  position: absolute;
  bottom: 24%;
  left: 47%;
  margin: unset;
  font-weight: 100;
  font-size: 0.625rem;
  font-family: "FKGrotesk";
  letter-spacing: 0.075rem;
  transform: translateX(-50%); }
  @media (min-width: 375px) {
    .the-product-details-customization-modal__customized-text {
      font-size: 0.625rem; } }
  @media (min-width: 1025px) {
    .the-product-details-customization-modal__customized-text {
      font-size: calc(0.01676 * 100vw + 3.82123px); } }
  @media (min-width: 1920px) {
    .the-product-details-customization-modal__customized-text {
      font-size: 2.25rem; } }

@media (min-width: 1025px) {
  .the-in-store-stock-modal__content-aside {
    flex: 0 0 auto;
    height: 100%;
    aspect-ratio: 2/3; } }

.the-in-store-stock-modal .the-in-store-stock-modal__pic-aside .base-image__img {
  display: block;
  width: auto;
  height: 100%; }

.the-in-store-stock-modal__main-content {
  /* Internet Explorer */
  scrollbar-face-color: #a8a8a8;
  scrollbar-track-color: transparent;
  /* W3C Working Draft */
  scrollbar-color: #a8a8a8 transparent;
  /* stylelint-disable-line property-no-unknown */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 48px 16px 0;
  overflow-y: auto; }
  .the-in-store-stock-modal__main-content::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 0; }
  .the-in-store-stock-modal__main-content::-webkit-scrollbar-track {
    background-color: transparent; }
  .the-in-store-stock-modal__main-content::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #ebebeb; }
  @media (min-width: 768px) {
    .the-in-store-stock-modal__main-content {
      padding-left: 4.28%;
      padding-right: 4.28%; } }
  @media (min-width: 1025px) {
    .the-in-store-stock-modal__main-content {
      padding: 48px 0 0 24px;
      overflow: hidden; } }

.the-in-store-stock-modal__subtitle {
  /* stylelint-disable */
  --uses-typography: 'product-details-in-store-subtitle';
  font-size: 0.75rem;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-weight: 900;
  color: black;
  line-height: 1.25;
  /* stylelint-enable */
  margin: 0 0 32px; }
  @media (min-width: 1025px) {
    .the-in-store-stock-modal__subtitle {
      padding-right: 5vw; } }

@media (max-width: 574px) {
  .the-in-store-stock-modal .the-in-store-stock-modal__title {
    margin: 16px 0 4px; } }

@media (min-width: 575px) {
  .the-in-store-stock-modal .the-in-store-stock-modal__title {
    margin: 0 0 8px; } }

@media (min-width: 1025px) {
  .the-in-store-stock-modal .the-in-store-stock-modal__title {
    padding-right: 5vw; } }

.the-in-store-stock-modal-size-selector {
  display: flex;
  flex-direction: column; }
  @media (min-width: 1025px) {
    .the-in-store-stock-modal-size-selector {
      padding-right: 5vw; } }
  .the-in-store-stock-modal-size-selector__continue {
    /* stylelint-disable */
    --uses-typography: 'product-details-in-store-btn';
    font-size: 1rem;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: normal;
    font-weight: 900;
    color: black;
    line-height: 1.25;
    /* stylelint-enable */
    display: flex;
    align-self: flex-end;
    margin-right: 8px; }
    @media (min-width: 575px) {
      .the-in-store-stock-modal-size-selector__continue {
        font-size: calc(0.00669 * 100vw + 12.15242px); } }
    @media (min-width: 1025px) {
      .the-in-store-stock-modal-size-selector__continue {
        font-size: 1.5625rem; } }
    @media (min-width: 575px) {
      .the-in-store-stock-modal-size-selector__continue {
        margin: calc(0.0223 * 100vw + 5.17472px) calc(0.0119 * 100vw + 1.15985px) 0 0; } }
    @media (min-width: 1920px) {
      .the-in-store-stock-modal-size-selector__continue {
        margin: 48px 24px 0 0; } }
  .the-in-store-stock-modal-size-selector .the-product-details-size-selector {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
    margin-right: -1.875rem;
    overflow-y: unset; }
    @media (max-width: 574px) {
      .the-in-store-stock-modal-size-selector .the-product-details-size-selector {
        font-weight: 900;
        font-size: 1.125rem; } }
    .the-in-store-stock-modal-size-selector .the-product-details-size-selector__container {
      margin-right: 32px;
      padding: 0 4px 1.3125rem; }
    .the-in-store-stock-modal-size-selector .the-product-details-size-selector__container .size-box {
      min-width: auto; }
    .the-in-store-stock-modal-size-selector .the-product-details-size-selector__container--disabled {
      flex-direction: column;
      min-width: auto; }
    .the-in-store-stock-modal-size-selector .the-product-details-size-selector__container--disabled .strike {
      top: calc(50% + 1px);
      height: 0.125rem; }
    .the-in-store-stock-modal-size-selector .the-product-details-size-selector__container:first-child {
      padding-left: 4px; }
    .the-in-store-stock-modal-size-selector .the-product-details-size-selector__container:last-child {
      padding-right: 4px;
      padding-bottom: 8px; }
    .the-in-store-stock-modal-size-selector .the-product-details-size-selector__container:nth-child(2):last-child, .the-in-store-stock-modal-size-selector .the-product-details-size-selector__container:nth-child(3):last-child {
      padding-bottom: 0; }

.the-product-details {
  padding: 0 16px;
  background-color: white;
  opacity: 1; }
  .the-product-details > .product-detail {
    display: grid;
    grid-template-areas: 'carousel' 'text-container';
    grid-template-columns: 1fr; }
    @media (min-width: 575px) {
      .the-product-details > .product-detail {
        grid-template-areas: 'product-images text-container' 'product-images text-container';
        grid-template-columns: auto calc(256px - 16px); } }
    @media (min-width: 1025px) {
      .the-product-details > .product-detail {
        grid-template-columns: 76% 24%; } }
  .the-product-details__sold-out {
    position: fixed;
    bottom: calc(24px + 4px);
    width: calc(100vw - calc(0.6875rem + 50px + 8px) - 16px);
    max-width: calc(100vw - calc(0.6875rem + 50px + 8px) - 16px);
    border-radius: 1.15625rem;
    right: calc(0.6875rem + 50px + 8px);
    left: 16px;
    /* stylelint-disable */
    --uses-typography: 'product-details-sold-out';
    color: white;
    font-weight: 900;
    font-size: 0.875rem;
    font-style: normal;
    text-transform: uppercase;
    /* stylelint-enable */
    margin: 0;
    padding: 0; }
    @media (min-width: 575px) {
      .the-product-details__sold-out {
        position: static;
        position: initial;
        right: auto;
        right: initial;
        bottom: auto;
        bottom: initial;
        left: auto;
        left: initial;
        width: auto;
        max-width: none;
        margin-right: 0;
        margin-right: initial;
        margin-left: 0;
        margin-left: initial;
        border-radius: 0; } }
    @media (min-width: 575px) {
      .the-product-details__sold-out {
        color: #909090;
        font-size: 1.3125rem; } }
    @media (min-width: 1025px) {
      .the-product-details__sold-out {
        font-size: calc(0.00447 * 100vw + 16.41899px);
        letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
    @media (min-width: 1920px) {
      .the-product-details__sold-out {
        font-size: 1.5625rem;
        letter-spacing: 0.05rem; } }
    @media (max-width: 574px) {
      .the-product-details__sold-out {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 2.1875rem;
        background-color: #a8a8a8; } }
    @media (min-width: 575px) {
      .the-product-details__sold-out {
        margin: 3.5rem 0 24px; } }
  .the-product-details__btn-link {
    width: auto;
    margin: 0; }
  .the-product-details__images-container {
    position: relative;
    display: none;
    grid-area: product-images;
    grid-gap: 0;
    grid-template-columns: 1fr;
    margin: 0 0 0 -16px; }
    @media (min-width: 575px) {
      .the-product-details__images-container {
        display: grid; } }
    @media (min-width: 1025px) {
      .the-product-details__images-container {
        grid-template-columns: 1fr 1fr; } }
  .the-product-details__pre-placeholder {
    position: relative;
    display: block;
    display: block;
    background-color: whitesmoke; }
    .the-product-details__pre-placeholder::before {
      display: block;
      width: 0;
      padding-bottom: 150%;
      content: ''; }
    .the-product-details__pre-placeholder > img,
    .the-product-details__pre-placeholder > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
    @media (min-width: 575px) {
      .the-product-details__pre-placeholder {
        display: none; } }
  .the-product-details__carousel-container {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    position: relative;
    grid-area: carousel;
    min-width: 0;
    margin: 0 -16px; }
    .the-product-details__carousel-container[\:has\(.the-product-details-swatches__shrink\)] .iframe-tag {
      display: none; }
    .the-product-details__carousel-container:has(.the-product-details-swatches__shrink) .iframe-tag {
      display: none; }
  .the-product-details__carousel {
    display: block; }
    @media (min-width: 575px) {
      .the-product-details__carousel {
        display: none; } }
    .the-product-details__carousel .base-carousel__pic {
      position: relative;
      display: block; }
      .the-product-details__carousel .base-carousel__pic::before {
        display: block;
        width: 0;
        padding-bottom: 150%;
        content: ''; }
      .the-product-details__carousel .base-carousel__pic > img,
      .the-product-details__carousel .base-carousel__pic > .img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: 50% 50%;
           object-position: 50% 50%; }
    .the-product-details__carousel .base-carousel__control {
      opacity: 1; }
  .the-product-details__pic {
    position: relative;
    display: block;
    display: none;
    cursor: zoom-in; }
    .the-product-details__pic::before {
      display: block;
      width: 0;
      padding-bottom: 150%;
      content: ''; }
    .the-product-details__pic > img,
    .the-product-details__pic > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
    @media (min-width: 575px) {
      .the-product-details__pic {
        display: block; } }
  .the-product-details__swatches {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
    z-index: 2; }
    @media (min-width: 1025px) {
      .the-product-details__swatches {
        top: 3rem;
        right: 2rem; } }
  .the-product-details__text-container {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    grid-area: text-container; }
    @media (min-width: 575px) {
      .the-product-details__text-container {
        position: relative;
        padding-left: 0.375rem; } }
    @media (min-width: 900px) {
      .the-product-details__text-container {
        padding-left: 0.5rem; } }
  @media (min-width: 575px) {
    .the-product-details__sticky-container {
      /* Internet Explorer */
      scrollbar-face-color: #a8a8a8;
      scrollbar-track-color: transparent;
      /* W3C Working Draft */
      scrollbar-color: #a8a8a8 transparent;
      /* stylelint-disable-line property-no-unknown */
      position: sticky;
      top: 40px;
      top: var(--header-total-height);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      height: calc(100vh - 40px);
      height: calc(100vh - var(--header-total-height));
      margin-right: -0.625rem;
      padding-right: 0.625rem;
      padding-bottom: 7.5rem;
      overflow-x: hidden;
      overflow-y: auto; }
      .the-product-details__sticky-container::-webkit-scrollbar-thumb {
        background-color: #a8a8a8;
        border-radius: 0; }
      .the-product-details__sticky-container::-webkit-scrollbar-track {
        background-color: transparent; }
      .the-product-details__sticky-container::-webkit-scrollbar {
        width: 9px;
        height: 9px;
        background-color: #ebebeb; } }
  @media (min-width: 1025px) {
    .the-product-details__sticky-container {
      /* Vars to shorten the line length of the mixin call and avoid conflicts
      between formatters and linters */
      padding-bottom: calc(0.02682 * 100vw + -3.48603px); } }
  @media (min-width: 1920px) {
    .the-product-details__sticky-container {
      padding-bottom: 3rem; } }
  .the-product-details .loading-content .spinner {
    top: 12px;
    left: 8px; }
    @media (min-width: 1025px) {
      .the-product-details .loading-content .spinner {
        top: 60px;
        left: 16px; } }
  @media (min-width: 575px) {
    .the-product-details__sticky-child-container {
      position: sticky;
      top: 0;
      z-index: 1;
      width: 100%;
      background-color: white; } }
  .the-product-details__tag {
    position: absolute;
    z-index: 1;
    margin: 0;
    transform: translateY(-100%); }
    @media (min-width: 575px) {
      .the-product-details__tag {
        position: relative;
        display: flex;
        align-items: flex-end;
        min-height: 32px;
        padding-top: 6px;
        transform: none; } }
    @media (min-width: 1280px) {
      .the-product-details__tag {
        min-height: 48px;
        padding-top: 16px; } }
  .the-product-details__title-wrapper {
    display: flex;
    justify-content: space-between; }
    @media (min-width: 575px) {
      .the-product-details__title-wrapper {
        margin-top: 48px; } }
  .the-product-details__title {
    /* stylelint-disable */
    --uses-typography: 'product-details-product-title';
    color: black;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: 0.0375rem;
    text-transform: uppercase;
    /* stylelint-enable */
    margin-top: 0;
    margin-bottom: 6px;
    padding-right: 16px; }
    @media (min-width: 375px) {
      .the-product-details__title {
        font-size: 1.3125rem; } }
    @media (min-width: 1025px) {
      .the-product-details__title {
        font-size: calc(0.00447 * 100vw + 16.41899px);
        line-height: 1.1;
        letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
    @media (min-width: 1920px) {
      .the-product-details__title {
        font-size: 1.5625rem;
        letter-spacing: 0.05rem; } }
  .the-product-details__add-to-wishlist {
    flex-shrink: 0;
    margin-top: 6px; }
    @media (min-width: 575px) {
      .the-product-details__add-to-wishlist {
        margin-top: 0.5625rem; } }
  @media (min-width: 575px) {
    .the-product-details__tag + .the-product-details__title-wrapper {
      margin-top: 0; } }
  .the-product-details__description {
    /* stylelint-disable */
    --uses-typography: 'product-details-product-description';
    color: black;
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
    /* stylelint-enable */
    margin: 1rem 0 0;
    white-space: pre-line; }
    @media (min-width: 1025px) {
      .the-product-details__description {
        font-size: calc(0.00335 * 100vw + 9.56425px); } }
    @media (min-width: 1920px) {
      .the-product-details__description {
        font-size: 1rem; } }
    @media (min-width: 575px) {
      .the-product-details__description {
        margin-top: 1.5rem; } }
    @media (min-width: 1280px) {
      .the-product-details__description {
        margin-top: 2rem; } }
    @media (min-width: 1920px) {
      .the-product-details__description {
        padding-right: 3rem; } }
  .the-product-details__additional-info {
    margin: 1rem 0 0; }
  .the-product-details__sizes.the-product-details-size-selector {
    display: none; }
    @media (min-width: 575px) {
      .the-product-details__sizes.the-product-details-size-selector {
        display: flex;
        margin-top: 2rem; } }
    @media (min-width: 1280px) {
      .the-product-details__sizes.the-product-details-size-selector {
        margin-top: 3rem; } }
  .the-product-details__actions {
    z-index: 11; }
    @media (min-width: 575px) {
      .the-product-details__actions {
        z-index: auto;
        z-index: initial;
        margin: 1.1875rem 0 0; } }
    @media (min-width: 1280px) {
      .the-product-details__actions {
        margin: 2.1875rem 0 0; } }
  .the-product-details__add-to-cart, .the-product-details__app-exclusive {
    display: none; }
    @media (min-width: 575px) {
      .the-product-details__add-to-cart, .the-product-details__app-exclusive {
        display: block; } }
  .the-product-details__add-to-cart-btn, .the-product-details__app-exclusive-btn {
    /* stylelint-disable */
    --uses-typography: 'product-details-cta';
    font-size: 0.875rem;
    /* stylelint-enable */ }
    @media (min-width: 575px) {
      .the-product-details__add-to-cart-btn, .the-product-details__app-exclusive-btn {
        font-size: 1.3125rem; } }
    @media (min-width: 1025px) {
      .the-product-details__add-to-cart-btn, .the-product-details__app-exclusive-btn {
        font-size: calc(0.00447 * 100vw + 16.41899px);
        letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
    @media (min-width: 1920px) {
      .the-product-details__add-to-cart-btn, .the-product-details__app-exclusive-btn {
        font-size: 1.5625rem;
        letter-spacing: 0.05rem; } }
    @media (min-width: 575px) {
      .the-product-details__add-to-cart-btn, .the-product-details__app-exclusive-btn {
        text-align: left; } }
    .the-product-details__add-to-cart-btn .default-content, .the-product-details__app-exclusive-btn .default-content {
      width: 100%; }
  .the-product-details__app-exclusive-btn {
    background-color: transparent; }
  .the-product-details__add-to-cart-error {
    /* stylelint-disable */
    --uses-typography: 'product-details-add-to-cart-error';
    font-weight: 900;
    font-size: 0.875rem;
    /* stylelint-enable */
    display: none;
    margin: 0.375rem 0 0;
    color: red; }
    @media (min-width: 1280px) {
      .the-product-details__add-to-cart-error {
        font-size: 1rem; } }
    .the-product-details__add-to-cart-error--show {
      display: block; }
  .the-product-details__find-stores {
    /* stylelint-disable */
    --uses-typography: 'product-details-cta';
    font-size: 0.875rem;
    /* stylelint-enable */ }
    @media (min-width: 575px) {
      .the-product-details__find-stores {
        font-size: 1.3125rem; } }
    @media (min-width: 1025px) {
      .the-product-details__find-stores {
        font-size: calc(0.00447 * 100vw + 16.41899px);
        letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
    @media (min-width: 1920px) {
      .the-product-details__find-stores {
        font-size: 1.5625rem;
        letter-spacing: 0.05rem; } }
    @media (min-width: 575px) {
      .the-product-details__find-stores {
        text-align: left; } }
  .the-product-details__informative-claim {
    /* stylelint-disable */
    --uses-typography: 'product-details-informative-claim';
    color: #c8c8c8;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    line-height: 1.25;
    /* stylelint-enable */
    margin: 3rem 0 0 0; }
    @media (min-width: 1025px) {
      .the-product-details__informative-claim {
        font-weight: 700;
        font-size: 1rem; } }
  .the-product-details .the-product-details__product-card {
    padding: 0;
    border-bottom: 0; }
    .the-product-details .the-product-details__product-card .product-image {
      width: 4.5625rem; }
  .the-product-details .base-product-slider {
    margin: 4rem -16px 0; }
    @media (min-width: 575px) {
      .the-product-details .base-product-slider {
        margin-top: 14rem; } }
    .the-product-details .base-product-slider + .base-product-slider {
      margin-top: 3rem; }
      @media (min-width: 575px) {
        .the-product-details .base-product-slider + .base-product-slider {
          margin-top: 2rem; } }
  @media (min-width: 1025px) {
    .the-product-details__sizes.product-sizes {
      display: inline-flex; } }
  .the-product-details__size-guide-btn, .the-product-details__chat-button, .the-product-details__store-stock-btn {
    /* stylelint-disable */
    --uses-typography: 'base-accordion-title';
    font-size: 1.125rem;
    /* stylelint-enable */
    padding: 0; }
    @media (min-width: 1025px) {
      .the-product-details__size-guide-btn, .the-product-details__chat-button, .the-product-details__store-stock-btn {
        font-size: calc(0.00782 * 100vw + 9.98324px); } }
    @media (min-width: 1920px) {
      .the-product-details__size-guide-btn, .the-product-details__chat-button, .the-product-details__store-stock-btn {
        font-size: 1.5625rem; } }
  @media (max-width: 1024px) {
    .the-product-details__size-guide {
      position: fixed;
      right: 0;
      bottom: 0;
      left: 0;
      flex-direction: column;
      box-sizing: border-box;
      height: auto;
      max-height: 90vh;
      padding: 0 15px 24px;
      overflow-y: scroll;
      background-color: white;
      box-shadow: 0 0 0.25rem 0 rgba(0, 0, 0, 0.14); } }
  @media (min-width: 1025px) {
    .the-product-details__size-guide {
      top: 0;
      bottom: auto;
      left: auto;
      overflow: hidden; } }
  .the-product-details__accordion-container {
    margin: 4rem 0 0; }
    @media (min-width: 575px) {
      .the-product-details__accordion-container {
        position: sticky;
        top: 100%;
        margin-top: 3rem; } }
    .the-product-details__accordion-container .btn {
      display: block;
      text-align: left; }
  .the-product-details__details-additional, .the-product-details__composition {
    white-space: pre-line; }
  .the-product-details__share-btn {
    /* stylelint-disable */
    --uses-typography: 'product-details-share';
    color: black;
    font-size: 1.125rem;
    /* stylelint-enable */
    display: block;
    padding: 0; }
    @media (min-width: 1025px) {
      .the-product-details__share-btn {
        font-size: calc(0.00782 * 100vw + 9.98324px); } }
    @media (min-width: 1920px) {
      .the-product-details__share-btn {
        font-size: 1.5625rem; } }
  .the-product-details__text {
    /* stylelint-disable */
    --uses-typography: 'base-modal-cta-text';
    font-weight: 900;
    font-size: 0.875rem;
    text-align: center;
    text-transform: none;
    /* stylelint-enable */
    margin: 0;
    padding: 12px 12px; }
  .the-product-details__details-list {
    white-space: pre-line; }
  .the-product-details__details-item {
    display: block; }
  .the-product-details__customize--mobile {
    display: block; }
    @media (min-width: 575px) {
      .the-product-details__customize--mobile {
        display: none; } }
  .the-product-details__customize--desktop {
    display: none; }
    @media (min-width: 575px) {
      .the-product-details__customize--desktop {
        display: block; } }
  .the-product-details__customize-btn {
    /* stylelint-disable */
    --uses-typography: 'product-details-cta';
    font-size: 0.875rem;
    /* stylelint-enable */ }
    @media (min-width: 575px) {
      .the-product-details__customize-btn {
        font-size: 1.3125rem; } }
    @media (min-width: 1025px) {
      .the-product-details__customize-btn {
        font-size: calc(0.00447 * 100vw + 16.41899px);
        letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
    @media (min-width: 1920px) {
      .the-product-details__customize-btn {
        font-size: 1.5625rem;
        letter-spacing: 0.05rem; } }

.the-product-details--modal {
  /* As there is no menu in PDP modal (z-index conflicts), make CTAs to use the
   * free space available.
   * The next mixin has a $menu param
   * @include byl-fixed-floating-element(false);
   * But it cannot be used here to revert de max-width because resets some
   * .banner-modal-cta styles for messaging rendering (height)
   */ }
  @media (max-width: 574px) {
    .the-product-details--modal {
      padding-bottom: 5rem; } }
  .the-product-details--modal .btn--cta,
  .the-product-details--modal .base-modal-cta {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    left: 16px;
    right: 16px; }
  .the-product-details--modal .base-modal-cta .btn--cta {
    width: 100%;
    max-width: 100%;
    left: unset;
    right: unset; }

.add-to-cart-mobile {
  overflow: -moz-scrollbars-none;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 0;
  /* Increase specificity to override radio-checkbox styles */ }
  .add-to-cart-mobile::-webkit-scrollbar {
    display: none; }
  .add-to-cart-mobile:active {
    background-color: #242424; }
  .add-to-cart-mobile .the-product-details-size-selector__size-input:active + label {
    background-color: transparent; }

.customize--mobile {
  overflow: -moz-scrollbars-none;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 0;
  /* Increase specificity to override radio-checkbox styles */ }
  .customize--mobile::-webkit-scrollbar {
    display: none; }
  .customize--mobile:active {
    background-color: #242424; }
  .customize--mobile .the-product-details-size-selector__size-input:active + label {
    background-color: transparent; }

.customize-btn--mobile:active {
  background-color: #242424; }

@media (max-width: 574px) {
  .the-product-details-isml {
    padding: 0; } }

.the-product-details__isml-image-container {
  position: relative; }
  @media (min-width: 575px) {
    .the-product-details__isml-image-container {
      display: grid;
      grid-area: product-images;
      grid-gap: 0;
      grid-template-columns: 1fr;
      margin: 0 0 0 -16px; } }
  @media (min-width: 575px) {
      .the-product-details__images-container {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1; }
      .the-product-details__text-container {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2; }
      .the-product-details__isml-image-container {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1; } }
  @media (min-width: 1025px) {
    .the-product-details__isml-image-container {
      grid-template-columns: 1fr 1fr; } }
  .the-product-details__isml-image-container .base-image {
    position: relative;
    display: block; }
    .the-product-details__isml-image-container .base-image::before {
      display: block;
      width: 0;
      padding-bottom: 150%;
      content: ''; }
    .the-product-details__isml-image-container .base-image > img,
    .the-product-details__isml-image-container .base-image > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }

@media (max-width: 574px) {
  .base-image-isml + .base-image-isml {
    display: none; } }

.the-product-details-isml .the-product-details__text-container {
  padding: 0 16px; }

.app-exclusive-block__description-text {
  /* stylelint-disable */
  --uses-typography: 'product-details-product-description';
  color: black;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  /* stylelint-enable */
  margin: 0 0 32px;
  text-align: left;
  text-transform: none; }
  @media (min-width: 1025px) {
    .app-exclusive-block__description-text {
      font-size: calc(0.00335 * 100vw + 9.56425px); } }
  @media (min-width: 1920px) {
    .app-exclusive-block__description-text {
      font-size: 1rem; } }
  @media (min-width: 575px) {
    .app-exclusive-block__description-text {
      color: #d97dba; } }

.app-exclusive-block__link {
  /* stylelint-disable */
  --uses-typography: 'product-details-product-description';
  color: black;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  /* stylelint-enable */
  margin: 0 0 32px; }
  @media (min-width: 1025px) {
    .app-exclusive-block__link {
      font-size: calc(0.00335 * 100vw + 9.56425px); } }
  @media (min-width: 1920px) {
    .app-exclusive-block__link {
      font-size: 1rem; } }
  @media (min-width: 575px) {
    .app-exclusive-block__link {
      margin: 0;
      color: #d97dba; } }

.app-exclusive-block .base-modal-cta__content {
  background-color: #f9ff8f; }

.app-exclusive-block .base-modal-cta__btn {
  color: black;
  background-color: #f4c3e4;
  border-color: #f4c3e4; }

.the-product-details-additional-info__text-line {
  /* stylelint-disable */
  --uses-typography: 'product-details-product-description';
  color: black;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .the-product-details-additional-info__text-line {
      font-size: calc(0.00335 * 100vw + 9.56425px); } }
  @media (min-width: 1920px) {
    .the-product-details-additional-info__text-line {
      font-size: 1rem; } }

.the-product-details-additional-info__made-in-country, .the-product-details-additional-info__color-name {
  display: inline-block;
  text-transform: lowercase; }
  .the-product-details-additional-info__made-in-country::first-letter, .the-product-details-additional-info__color-name::first-letter {
    text-transform: uppercase; }

.the-product-details-additional-info p {
  margin: 0; }

.the-product-details-size-selector {
  /* stylelint-disable */
  --uses-typography: 'product-details-product-sizes';
  color: black;
  font-size: 0.875rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.25;
  /* stylelint-enable */
  /* Internet Explorer */
  scrollbar-face-color: #a8a8a8;
  scrollbar-track-color: transparent;
  /* W3C Working Draft */
  scrollbar-color: #a8a8a8 transparent;
  /* stylelint-disable-line property-no-unknown */
  display: flex;
  flex-direction: column;
  max-height: calc(70vh - (3.4375rem + 37px));
  overflow-x: hidden;
  overflow-y: auto;
  /**
  * 1. Disable inherited styles from base forms
  *    [type="radio"] + [class*="label"]
  *    Up selector specificity to 0,2,0
  */ }
  @media (min-width: 575px) {
    .the-product-details-size-selector {
      font-size: 1.3125rem;
      font-weight: 900;
      letter-spacing: 0.0375rem; } }
  @media (min-width: 1025px) {
    .the-product-details-size-selector {
      font-size: calc(0.00447 * 100vw + 16.41899px);
      letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
  @media (min-width: 1920px) {
    .the-product-details-size-selector {
      font-size: 1.5625rem;
      letter-spacing: 0.05rem; } }
  .the-product-details-size-selector::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 0; }
  .the-product-details-size-selector::-webkit-scrollbar-track {
    background-color: transparent; }
  .the-product-details-size-selector::-webkit-scrollbar {
    width: 2px;
    height: 2px;
    background-color: #ebebeb; }
  @media (min-width: 575px) {
    .the-product-details-size-selector {
      flex-direction: row;
      flex-wrap: wrap;
      max-width: 100%;
      margin-right: -1.875rem;
      overflow-y: unset; } }
  .the-product-details-size-selector__container {
    padding-bottom: 16px;
    overflow: visible; }
    @media (min-width: 575px) {
      .the-product-details-size-selector__container {
        margin-right: 32px;
        padding: 0 4px 1.3125rem; } }
    .the-product-details-size-selector__container .size-box {
      display: flex;
      min-width: 2.625rem; }
      @media (min-width: 575px) {
        .the-product-details-size-selector__container .size-box {
          min-width: auto; } }
    .the-product-details-size-selector__container--no-sale {
      pointer-events: none; }
    .the-product-details-size-selector__container--disabled {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: baseline;
      /* stylelint-disable max-nesting-depth */ }
      @media (min-width: 575px) {
        .the-product-details-size-selector__container--disabled {
          flex-direction: column; } }
      .the-product-details-size-selector__container--disabled s {
        text-decoration: none; }
      .the-product-details-size-selector__container--disabled .size-box {
        position: relative; }
        @media (min-width: 575px) {
          .the-product-details-size-selector__container--disabled .size-box {
            min-width: auto; } }
        .the-product-details-size-selector__container--disabled .size-box .strike {
          position: absolute;
          top: 50%;
          width: calc(100% - 0.75rem);
          height: 0.0625rem;
          margin-right: 2px;
          margin-left: -2px;
          background: black;
          border: 0; }
          @media (min-width: 575px) {
            .the-product-details-size-selector__container--disabled .size-box .strike {
              top: calc(50% + 1px);
              height: 0.125rem; } }
        .the-product-details-size-selector__container--disabled .size-box.is-strike .strike {
          opacity: 1; }
    @media (min-width: 575px) {
      .the-product-details-size-selector__container:first-child {
        padding-left: 4px; } }
    .the-product-details-size-selector__container:last-child {
      padding-bottom: 0.875rem; }
      @media (min-width: 575px) {
        .the-product-details-size-selector__container:last-child {
          padding-right: 4px;
          padding-bottom: 8px; } }
    @media (max-width: 574px) {
      .the-product-details-size-selector__container:nth-child(2):last-child, .the-product-details-size-selector__container:nth-child(3):last-child {
        padding-bottom: 2.8125rem; } }
  .the-product-details-size-selector__size-label {
    position: relative;
    line-height: 1;
    cursor: pointer; }
    .the-product-details-size-selector__size-label--selected {
      text-decoration: underline; }
      @media (min-width: 575px) {
        .the-product-details-size-selector__size-label--selected {
          text-decoration: none; } }
  .the-product-details-size-selector .the-product-details-size-selector__size-label {
    margin: -0.5rem;
    /* [1] */
    padding: 0.5rem;
    /* [1] */
    color: inherit;
    /* [1] */
    font-weight: inherit;
    /* [1] */
    font-size: inherit;
    /* [1] */
    font-style: inherit;
    /* [1] */ }
  .the-product-details-size-selector__size-input {
    display: none; }
    @media (min-width: 575px) {
      .the-product-details-size-selector__size-input:checked + .size-box .the-product-details-size-selector__size-label {
        text-decoration: underline; } }
  .the-product-details-size-selector[data-is-locked] {
    pointer-events: none; }
  .the-product-details-size-selector__btn-notify-me {
    display: inline;
    padding: 0;
    text-align: left; }
    @media (min-width: 575px) {
      .the-product-details-size-selector__btn-notify-me {
        height: 16px;
        padding-top: 2px; } }
    .the-product-details-size-selector__btn-notify-me span {
      /* stylelint-disable */
      --uses-typography: 'product-details-product-sizes-notify-me';
      color: black;
      font-size: 0.75rem;
      font-weight: 700;
      font-style: normal;
      letter-spacing: 0;
      line-height: 1.25;
      text-transform: none;
      text-decoration: underline;
      /* stylelint-enable */ }
      @media (min-width: 575px) {
        .the-product-details-size-selector__btn-notify-me span {
          display: none; } }
  .the-product-details-size-selector__icon-notify-me {
    display: inline-block;
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 4px;
    background: no-repeat bottom url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 9.1" style="enable-background:new 0 0 14 9.1" xml:space="preserve"><style>.st0{fill:black}</style><path class="st0" d="m.7 8.7-.4-.6 5.9-5c.4-.4 1.2-.4 1.6 0l5.8 5-.5.5-5.9-5c-.2-.2-.5-.2-.7 0L.7 8.7z"/><path d="M13.6.6 7.6 6c-.3.3-.8.3-1.2 0L.3.6" style="fill:%23fff"/><path class="st0" d="M7 6.6c-.3 0-.6-.1-.8-.3L.1.9.6.4l6.1 5.4c.2.2.5.2.6 0l6-5.4.5.5-6 5.4c-.2.2-.5.3-.8.3z"/><path class="st0" d="M14 9.1H0V0h14v9.1zM.7 8.4h12.6V.7H.7v7.7z"/></svg>'); }
    @media (min-width: 575px) {
      .the-product-details-size-selector__icon-notify-me {
        width: 16px;
        height: 16px;
        margin-left: 0;
        background-position-y: center; } }

.the-product-details-swatches__color-container {
  margin: 0;
  font-size: calc(0.00388 * 100vw + 10.54369px); }
  @media (min-width: 1920px) {
    .the-product-details-swatches__color-container {
      font-size: 1.125rem; } }

.the-product-details-swatches__item {
  margin-left: 0; }
  .the-product-details-swatches__item:not(:first-child) {
    margin-left: 20px; }
    @media (min-width: 1025px) {
      .the-product-details-swatches__item:not(:first-child) {
        margin-left: calc(-0.00447 * 100vw + 24.58101px); } }
    @media (min-width: 1920px) {
      .the-product-details-swatches__item:not(:first-child) {
        margin-left: 16px; } }

@media (min-width: 1025px) {
  .the-product-details-swatches__swatch--selected {
    border-bottom-width: 2px; } }

.the-product-details-swatches__swatch-img {
  width: 0.875rem;
  height: 0.875rem; }
  @media (min-width: 1025px) {
    .the-product-details-swatches__swatch-img {
      width: calc(0.00447 * 100vw + 9.41899px);
      height: calc(0.00447 * 100vw + 9.41899px); } }
  @media (min-width: 1920px) {
    .the-product-details-swatches__swatch-img {
      width: 1.125rem;
      height: 1.125rem; } }

.the-product-details-swatches__expand, .the-product-details-swatches__shrink {
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 20px;
  background-size: cover; }
  @media (min-width: 1025px) {
    .the-product-details-swatches__expand, .the-product-details-swatches__shrink {
      margin-left: calc(-0.00447 * 100vw + 24.58101px); } }
  @media (min-width: 1920px) {
    .the-product-details-swatches__expand, .the-product-details-swatches__shrink {
      margin-left: 16px; } }

.the-product-details-stock-alert {
  display: flex;
  flex-direction: column; }
  @media (min-width: 575px) {
    .the-product-details-stock-alert {
      padding: 0; } }
  .the-product-details-stock-alert__title {
    /* stylelint-disable */
    --uses-typography: 'base-modal-cta-button';
    font-weight: 900;
    font-size: 0.875rem;
    font-style: normal;
    text-transform: uppercase;
    /* stylelint-enable */
    margin: 0 0 8px;
    padding: 8px 16px 0; }
    @media (min-width: 575px) {
      .the-product-details-stock-alert__title {
        font-size: 1.3125rem; } }
    @media (min-width: 1025px) {
      .the-product-details-stock-alert__title {
        font-size: calc(0.00447 * 100vw + 16.41899px);
        letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
    @media (min-width: 1920px) {
      .the-product-details-stock-alert__title {
        font-size: 1.5625rem;
        letter-spacing: 0.05rem; } }
    @media (min-width: 575px) {
      .the-product-details-stock-alert__title {
        margin-bottom: 1.5rem;
        padding: 0; } }
    .the-product-details-stock-alert__title--disabled {
      color: #909090; }
  .the-product-details-stock-alert__explanation {
    margin: 0 0 0.625rem;
    padding: 0 16px;
    font-weight: 700;
    font-size: 0.75rem;
    font-style: normal; }
    @media (min-width: 575px) {
      .the-product-details-stock-alert__explanation {
        margin: 0 0 8px;
        padding: 0; } }
    @media (min-width: 1280px) {
      .the-product-details-stock-alert__explanation {
        font-size: 1rem; } }
  .the-product-details-stock-alert__form {
    display: flex;
    flex-direction: column; }
  .the-product-details-stock-alert__form-submit[type='submit'] {
    align-items: center;
    width: 100%;
    margin: 24px 0 0; }
    @media (min-width: 575px) {
      .the-product-details-stock-alert__form-submit[type='submit'] {
        width: auto;
        margin: 1.5rem 1.5rem 0 auto;
        font-size: 1.3125rem; } }
    @media (min-width: 1280px) {
      .the-product-details-stock-alert__form-submit[type='submit'] {
        font-size: 1.5625rem; } }
  .the-product-details-stock-alert__success-button {
    align-items: center;
    width: 100%;
    margin: 24px 0 0; }
  .the-product-details-stock-alert__message {
    margin: 0;
    padding: 0 16px 8px;
    font-weight: 700;
    font-size: 0.75rem;
    font-style: normal; }
    @media (min-width: 575px) {
      .the-product-details-stock-alert__message {
        padding: 0 0 8px; } }
    @media (min-width: 1280px) {
      .the-product-details-stock-alert__message {
        font-size: 1rem; } }
    .the-product-details-stock-alert__message--error {
      color: red; }
    .the-product-details-stock-alert__message--success {
      color: #66a942; }
  .the-product-details-stock-alert .stock-alert-popup-mail {
    padding: 0 16px; }
    @media (min-width: 575px) {
      .the-product-details-stock-alert .stock-alert-popup-mail {
        padding: 0; } }
    .the-product-details-stock-alert .stock-alert-popup-mail__label {
      left: auto; }

.page.zoom-open {
  overflow: hidden; }

.the-product-details-zoom {
  /* Internet Explorer */
  scrollbar-face-color: #a8a8a8;
  scrollbar-track-color: transparent;
  /* W3C Working Draft */
  scrollbar-color: #a8a8a8 transparent;
  /* stylelint-disable-line property-no-unknown */
  transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 31;
  width: 100vw;
  height: 0;
  overflow-y: auto;
  background-color: white;
  visibility: hidden;
  opacity: 0; }
  .the-product-details-zoom::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 0; }
  .the-product-details-zoom::-webkit-scrollbar-track {
    background-color: transparent; }
  .the-product-details-zoom::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #ebebeb; }
  .the-product-details-zoom__btn-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1;
    font-size: 1.5rem; }
    @media (min-width: 1025px) {
      .the-product-details-zoom__btn-close {
        top: 2rem;
        right: 2rem;
        font-size: 3rem; } }
  .the-product-details-zoom__pic {
    position: relative;
    display: block; }
    .the-product-details-zoom__pic::before {
      display: block;
      width: 0;
      padding-bottom: 150%;
      content: ''; }
    .the-product-details-zoom__pic > img,
    .the-product-details-zoom__pic > .img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: 50% 50%;
         object-position: 50% 50%; }
  .the-product-details-zoom.is-visible {
    height: 100vh;
    visibility: visible;
    opacity: 1; }

.the-product-details-price {
  /* stylelint-disable */
  --uses-typography: 'product-details-product-title';
  color: black;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
  /* stylelint-enable */
  display: block;
  margin: 0; }
  @media (min-width: 375px) {
    .the-product-details-price {
      font-size: 1.3125rem; } }
  @media (min-width: 1025px) {
    .the-product-details-price {
      font-size: calc(0.00447 * 100vw + 16.41899px);
      line-height: 1.1;
      letter-spacing: calc(0.00022 * 100vw + 0.37095px); } }
  @media (min-width: 1920px) {
    .the-product-details-price {
      font-size: 1.5625rem;
      letter-spacing: 0.05rem; } }
  @media (min-width: 575px) {
    .the-product-details-price {
      margin-top: 6px; } }
  .the-product-details-price__original-price {
    font-weight: 900; }
  .the-product-details-price__original-price, .the-product-details-price__price {
    word-spacing: -0.25em; }

.the-product-list-filters {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 80px 16px;
  overflow-y: auto; }
  @media (min-width: 768px) {
    .the-product-list-filters {
      width: auto;
      min-width: 22.625rem;
      max-width: 70vw;
      height: auto;
      padding-bottom: 32px;
      padding-left: 32px;
      padding-right: 32px; } }
  .the-product-list-filters__header {
    position: absolute;
    top: 1.125rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr); }
    @media (min-width: 768px) {
      .the-product-list-filters__header {
        top: 1.5rem; } }
  .the-product-list-filters__header-text {
    /* stylelint-disable */
    --uses-typography: 'the-product-list-filters-header-text';
    font-family: "FKGrotesk", "Arial", sans-serif;
    color: black;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1.25;
    text-transform: capitalize;
    /* stylelint-enable */ }
    @media (min-width: 768px) {
      .the-product-list-filters__header-text {
        font-size: 0.875rem; } }
    .the-product-list-filters__header-text + .the-product-list-filters__header-text {
      margin-left: 32px; }
  .the-product-list-filters__filters-count-text {
    font-weight: 900;
    text-transform: uppercase; }
    @media (min-width: 768px) {
      .the-product-list-filters__filters-count-text {
        font-weight: 700;
        text-transform: inherit; } }
  .the-product-list-filters__filters-clear-all {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0; }
  .the-product-list-filters__btn-close.btn-close {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><g fill-rule="evenodd"><path d="M0 1.944L1.944 0l15.91 15.91-1.944 1.944z" fill="black"/><path d="M15.91 0l1.944 1.944-15.91 15.91L0 15.91z" fill="black"/></g></svg>'); }
    @media (min-width: 810px) {
      .the-product-list-filters__btn-close.btn-close {
        font-size: 1.125rem; } }
  .the-product-list-filters__btn-apply {
    /* stylelint-disable */
    --uses-typography: 'the-product-list-filters-apply-button';
    font-weight: 900;
    /* stylelint-enable */ }
    @media (min-width: 768px) {
      .the-product-list-filters__btn-apply {
        font-size: 1.5rem; } }
    @media (min-width: 768px) {
      .the-product-list-filters__btn-apply {
        padding-right: 12px; } }
    .the-product-list-filters__btn-apply.btn--primary {
      align-self: flex-end;
      justify-self: flex-end;
      margin-top: auto; }
    .the-product-list-filters__btn-apply.btn--cta {
      right: 0;
      left: 50%;
      z-index: 1;
      transform: translateX(-50%); }

.the-search-suggestion {
  /* stylelint-disable */
  --uses-typography: 'the-search-suggestion';
  font-size: 0.875rem;
  font-weight: 900;
  /* stylelint-enable */
  list-style: none; }
  @media (min-width: 1025px) {
    .the-search-suggestion {
      font-size: 1rem; } }
  .the-search-suggestion__link {
    color: #909090;
    font-weight: inherit;
    font-size: inherit;
    font-style: inherit;
    text-decoration: none; }
  .the-search-suggestion__link:focus {
    text-decoration: underline;
    outline: none; }
  .the-search-suggestion__match {
    color: black; }

.the-search-field {
  flex-basis: 60%;
  flex-grow: 1; }
  .the-search-field .the-search-field__input {
    /* stylelint-disable */
    --uses-typography: 'the-search-input';
    font-size: 1.3125rem;
    font-weight: 900;
    /* stylelint-enable */
    padding-top: 0;
    padding-bottom: 4px;
    color: black; }
    @media (min-width: 1025px) {
      .the-search-field .the-search-field__input {
        font-size: 2.25rem; } }
    .the-search-field .the-search-field__input::-moz-placeholder {
      color: #909090;
      font-weight: inherit;
      font-size: inherit;
      font-style: inherit; }
    .the-search-field .the-search-field__input::placeholder {
      color: #909090;
      font-weight: inherit;
      font-size: inherit;
      font-style: inherit; }
  .the-search-field__label:not(:focus):not(:active) {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%); }

.the-search-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: white; }
  @media (min-width: 810px) {
    .the-search-form {
      padding-left: 12px;
      padding-right: 12px; } }
  @media (min-width: 1025px) {
    .the-search-form {
      padding-top: 12px;
      padding-bottom: 12px; } }
  @media (min-width: 1530px) {
    .the-search-form {
      padding-left: 16px;
      padding-right: 16px; } }
  .the-search-form > * {
    margin-left: 8px;
    margin-right: 8px; }
    @media (min-width: 810px) {
      .the-search-form > * {
        margin-left: 12px;
        margin-right: 12px; } }
    @media (min-width: 1530px) {
      .the-search-form > * {
        margin-left: 16px;
        margin-right: 16px; } }
  .the-search-form__btn-close {
    display: flex;
    font-size: 1rem;
    background-color: inherit;
    border: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
    @media (min-width: 1025px) {
      .the-search-form__btn-close {
        font-size: 1.5rem; } }
  .the-search-form__btn-reset {
    /* stylelint-disable */
    --uses-typography: 'the-search-ai-input';
    font-family: "FKGrotesk", "Arial", sans-serif;
    color: black;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.25;
    transform: none;
    /* stylelint-enable */
    position: absolute;
    top: 6px;
    right: 12px;
    margin: 6px 0;
    color: #616161;
    font-weight: 500;
    text-transform: none; }
  .the-search-form__image-search + .the-search-form__btn-reset {
    right: 48px; }
  .the-search-form__hero-message {
    /* stylelint-disable */
    --uses-typography: 'the-search-input';
    font-size: 1.3125rem;
    font-weight: 900;
    /* stylelint-enable */
    position: absolute;
    align-self: flex-start;
    margin-top: 0;
    margin-bottom: 0;
    padding: 1px 0;
    color: black;
    background-color: inherit; }
    @media (min-width: 1025px) {
      .the-search-form__hero-message {
        font-size: 2.25rem; } }
  .the-search-form__message {
    /* stylelint-disable */
    --uses-typography: 'the-search-message';
    font-size: 0.875rem;
    font-weight: 900;
    /* stylelint-enable */
    flex: 1 1 100%;
    margin-top: 8px;
    margin-bottom: 0;
    color: #909090; }
    @media (min-width: 1025px) {
      .the-search-form__message {
        font-size: 1rem; } }
  .the-search-form__suggestions {
    /* stylelint-disable */
    --uses-typography: 'the-search-suggestion';
    font-size: 0.875rem;
    font-weight: 900;
    /* stylelint-enable */
    transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    display: flex;
    flex-basis: 100%;
    flex-shrink: 1;
    margin: 0;
    padding: 0;
    overflow: auto;
    opacity: 1;
    /* mouse, touch pad */ }
    @media (min-width: 1025px) {
      .the-search-form__suggestions {
        font-size: 1rem; } }
    @media (hover: hover) and (pointer: fine) {
      .the-search-form__suggestions {
        flex-wrap: wrap;
        overflow: hidden; } }
    .the-search-form__suggestions .the-search-suggestion {
      flex-shrink: 0;
      margin-right: 16px; }
      @media (min-width: 1025px) {
        .the-search-form__suggestions .the-search-suggestion {
          margin-right: 32px; } }

.the-search-form__suggestions-wrapper {
  position: relative;
  width: 100%;
  height: 1.0625rem;
  margin-top: 8px;
  margin-bottom: 0;
  padding: 0; }
  .the-search-form__suggestions-wrapper .spinner-wrapper {
    transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0; }
  .the-search-form__suggestions-wrapper--loading .spinner-wrapper {
    opacity: 1; }
  .the-search-form__suggestions-wrapper--loading .the-search-form__suggestions {
    opacity: 0; }

.byl-tooltip--account::after, .byl-tooltip--minicart::after, .byl-tooltip--the-search-ai::after {
  position: absolute;
  top: calc(7px * -1);
  top: calc(var(--tooltip-triangle, 7px) * -1);
  right: 1.3125rem;
  width: 0;
  height: 7px;
  height: var(--tooltip-triangle, 7px);
  border: 8px solid transparent;
  border-top: 0;
  border-bottom: 7px solid black;
  border-bottom: var(--tooltip-triangle, 7px) solid var(--byl-tooltip-background, black);
  content: ''; }

.byl-tooltip {
  --tooltip-triangle: 7px;
  /* stylelint-disable */
  --uses-typography: 'byl-tooltip-header';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.25;
  color: white;
  color: var(--byl-tooltip-color, white);
  /* stylelint-enable */
  transition: opacity 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 100ms;
  position: absolute;
  top: calc(var(--header-height-not-search) + 7px);
  top: calc(var(--header-height-not-search) + var(--tooltip-triangle, 7px));
  right: 32px;
  width: 12.625rem;
  background-color: black;
  background-color: var(--byl-tooltip-background, black);
  border-radius: 0.875rem;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem; }
  @media (min-width: 1025px) {
    .byl-tooltip {
      font-size: 0.75rem; } }
  @media (min-width: 1025px) {
    .byl-tooltip {
      width: 14.3125rem;
      padding-top: 12px;
      padding-bottom: 12px; } }
  .byl-tooltip__title {
    text-transform: uppercase; }
  .byl-tooltip p {
    margin: 0; }
  .byl-tooltip__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 24px;
    height: 24px;
    background-color: white;
    background-color: var(--byl-tooltip-close-color, white);
    border: 0;
    cursor: pointer;
    -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><g fill-rule="evenodd"><path d="M0 1.944L1.944 0l15.91 15.91-1.944 1.944z" fill="black"/><path d="M15.91 0l1.944 1.944-15.91 15.91L0 15.91z" fill="black"/></g></svg>');
            mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18"><g fill-rule="evenodd"><path d="M0 1.944L1.944 0l15.91 15.91-1.944 1.944z" fill="black"/><path d="M15.91 0l1.944 1.944-15.91 15.91L0 15.91z" fill="black"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: 8px;
            mask-size: 8px;
    -webkit-tap-highlight-color: transparent; }
    @media (min-width: 1025px) {
      .byl-tooltip__close {
        width: 32px;
        height: 32px;
        -webkit-mask-size: 0.625rem;
                mask-size: 0.625rem; } }
  .byl-tooltip--account {
    right: 32px; }
    @media (min-width: 1025px) {
      .byl-tooltip--account {
        right: 16px; } }
    @media (min-width: 1440px) {
      .byl-tooltip--account {
        right: 24px; } }
    .byl-tooltip--account::after {
      right: 1.3125rem; }
      @media (min-width: 575px) {
        .byl-tooltip--account::after {
          right: 1.125rem; } }
      @media (min-width: 1025px) {
        .byl-tooltip--account::after {
          right: 2.125rem; } }
      @media (min-width: 1280px) {
        .byl-tooltip--account::after {
          right: 2.1875rem; } }
      @media (min-width: 1440px) {
        .byl-tooltip--account::after {
          right: 2.34375rem; } }
  .byl-tooltip--minicart {
    right: 0.3125rem; }
    @media (min-width: 1440px) {
      .byl-tooltip--minicart {
        right: 0.8125rem; } }
    .byl-tooltip--minicart::after {
      right: 0.875rem; }
  .byl-tooltip--the-search-ai {
    --tooltip-triangle: 0.5625rem;
    /* stylelint-disable */
    --uses-typography: 'byl-tooltip-search-ai-texts';
    font-family: "EBGaramond", georgia, serif;
    font-size: 0.9375rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.25;
    color: white;
    color: var(--byl-tooltip-color, white);
    /* stylelint-enable */
    top: calc(100% - 0.25rem);
    right: unset;
    left: 8px;
    width: 20rem;
    max-width: calc(100% - 16px);
    margin: 0;
    padding-right: 2.6875rem;
    padding-bottom: 16px; }
    @media (min-width: 1025px) {
      .byl-tooltip--the-search-ai {
        top: 7px;
        top: var(--tooltip-triangle, 7px);
        right: 64px;
        left: unset; } }
    .byl-tooltip--the-search-ai::after {
      right: unset;
      left: 1.1875rem; }
      @media (min-width: 1025px) {
        .byl-tooltip--the-search-ai::after {
          right: 24px;
          left: unset; } }
    .byl-tooltip--the-search-ai .byl-tooltip__close {
      width: 2.6875rem;
      height: 2.6875rem;
      -webkit-mask-size: 0.875rem;
              mask-size: 0.875rem; }
    .byl-tooltip--the-search-ai .byl-tooltip__title {
      text-transform: none; }
    .byl-tooltip--the-search-ai .byl-tooltip__button {
      /* stylelint-disable */
      --uses-typography: 'byl-tooltip-search-ai-button';
      font-family: "FKGrotesk", "Arial", sans-serif;
      font-size: 0.875rem;
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: 0.02312rem;
      text-transform: uppercase;
      text-decoration: underline;
      color: white;
      color: var(--byl-tooltip-color, white);
      /* stylelint-enable */
      float: right; }

.prices-qty-row .sales,
.prices-qty-row .value, .line-item-total-price-amount, .line-item-total-price__non-adjusted-price {
  word-spacing: -0.1875rem; }
  @media (min-width: 575px) {
    .prices-qty-row .sales,
    .prices-qty-row .value, .line-item-total-price-amount, .line-item-total-price__non-adjusted-price {
      word-spacing: -0.20312rem; } }

.product-card {
  /* stylelint-disable */
  --uses-typography: 'product-card-base';
  color: black;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  /* stylelint-enable */
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 12px 0;
  background-color: white; }
  .product-card__remove-row {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .product-card p {
    margin: 0; }
  .product-card .quantity-form {
    display: flex;
    margin: -0.3125rem -0.3125rem -0.3125rem 1rem; }
    @media (min-width: 575px) {
      .product-card .quantity-form {
        margin-left: 24px; } }
  .product-card .minus-product-qty {
    margin: 0 calc(1.5rem - 0.3125rem * 2) 0 0; }
  .product-card .plus-product-qty {
    margin: 0; }
  .product-card__link {
    color: black;
    text-decoration: none; }
  .product-card__edit {
    /* stylelint-disable */
    --uses-typography: 'product-card-edit-button';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.6875rem;
    font-weight: 900;
    line-height: 1.25;
    color: black;
    /* stylelint-enable */
    text-transform: capitalize; }

.base-product-card__price-qty-row {
  display: flex;
  align-items: center; }

.base-product-card__price-total {
  align-self: flex-end;
  margin-top: auto; }
  .base-product-card__price-total .base-price__price {
    margin-right: 0; }

.base-product-card__quantity::before {
  display: inline-block;
  margin-right: 2px;
  text-transform: lowercase;
  content: 'x'; }

.base-totals {
  margin-top: 8px; }
  .base-totals p {
    margin: 0; }

.product-image {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 6.25rem;
  height: auto;
  background-color: #fafafa; }
  .product-image::before {
    display: block;
    width: 0;
    padding-bottom: 150%;
    content: ''; }
  .product-image > img,
  .product-image > .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%; }
  @media (min-width: 575px) {
    .product-image {
      width: 5rem; } }
  .product-image .product-card__link {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%; }

.product-info {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 0 0 0 8px; }
  .product-info__container {
    display: flex;
    flex-direction: column;
    height: 100%; }
  .product-info__customization {
    overflow: hidden;
    font-weight: 700;
    white-space: nowrap;
    text-transform: none;
    text-overflow: ellipsis; }
  .product-info__customization-text {
    font-weight: 900; }

.product-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px; }
  @media (min-width: 375px) {
    .product-name-row {
      margin-top: 16px; } }
  @media (min-width: 575px) {
    .product-name-row {
      margin-top: 0;
      margin-bottom: 0; } }
  .product-name-row--card-selector {
    margin-right: 1.125rem; }
    @media (min-width: 1025px) {
      .product-name-row--card-selector {
        margin-right: 1.25rem; } }

.product-name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

.line-item-name {
  margin: 0; }

.product-attributes {
  display: inline; }
  @media (min-width: 575px) {
    .product-attributes {
      display: inline-block;
      font-weight: 700; }
      .product-attributes.color {
        text-transform: lowercase; }
        .product-attributes.color::first-letter {
          text-transform: uppercase; } }

.prices-qty-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px; }
  @media (min-width: 575px) {
    .prices-qty-row {
      margin-bottom: 16px; } }
  .prices-qty-row .price .strike-through {
    margin: 0 0.4375rem 0 0;
    font-weight: 700;
    text-decoration: line-through; }
    @media (min-width: 575px) {
      .prices-qty-row .price .strike-through {
        margin-right: 8px; } }
  .prices-qty-row .discount {
    margin-left: 0.4375rem;
    color: var(--color-sales); }
    @media (min-width: 575px) {
      .prices-qty-row .discount {
        margin-left: 8px; } }

.item-attributes + .prices-qty-row {
  margin-top: 8px; }

.product-info__customization + .prices-qty-row {
  margin-top: auto; }

.btn-save-for-later,
.add-to-cart--btn-save-for-later,
.add-to-cart--btn-wishlist,
.cart__add-to-wishlist {
  margin: 0;
  font-size: 0.75rem; }
  @media (min-width: 575px) {
    .btn-save-for-later,
    .add-to-cart--btn-save-for-later,
    .add-to-cart--btn-wishlist,
    .cart__add-to-wishlist {
      font-size: 0.875rem; } }

.line-item-total-price {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 8px; }
  @media (min-width: 575px) {
    .line-item-total-price {
      margin-top: 8px;
      margin-bottom: 0rem; } }
  .line-item-total-price .price {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
    grid-column-gap: 6px;
    -moz-column-gap: 6px;
         column-gap: 6px; }
    @media (min-width: 575px) {
      .line-item-total-price .price {
        grid-column-gap: 8px;
        -moz-column-gap: 8px;
             column-gap: 8px; } }
  .line-item-total-price__promo-text {
    /* stylelint-disable */
    --uses-typography: 'product-card-promo-text';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.25;
    color: #a8a8a8;
    /* stylelint-enable */
    position: absolute;
    top: 0;
    right: 0;
    white-space: nowrap;
    text-transform: none;
    transform: translateY(-100%); }
    @media (min-width: 768px) {
      .line-item-total-price__promo-text {
        font-size: 0.75rem; } }
  .line-item-total-price__non-adjusted-price {
    margin: 0;
    font-weight: 700;
    text-decoration: line-through; }

.line-item-quantity {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
  margin-bottom: 8px; }
  @media (min-width: 575px) {
    .line-item-quantity {
      margin-bottom: 4px; } }

.line-item-price {
  margin-right: 0.4375rem;
  margin-bottom: 8px; }
  @media (min-width: 575px) {
    .line-item-price {
      margin-right: 8px;
      margin-bottom: 4px; } }

.quantity-label {
  flex-basis: 3rem;
  text-transform: lowercase; }
  @media (min-width: 575px) {
    .quantity-label {
      flex-basis: 3.5rem; } }

.line-product-availability {
  /* stylelint-disable */
  --uses-typography: 'product-card-unavailable';
  color: red;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  /* stylelint-enable */
  display: none; }
  @media (min-width: 575px) {
    .line-product-availability {
      font-size: 1rem; } }

.availability-false .product-image,
.availability-false .product-name-row,
.availability-false .item-attributes,
.availability-false .prices-qty-row,
.availability-false .line-item-total-price .price,
.availability-limited .product-image,
.availability-limited .product-name-row,
.availability-limited .item-attributes,
.availability-limited .prices-qty-row,
.availability-limited .line-item-total-price .price {
  opacity: 0.3;
  pointer-events: none; }

.availability-false .line-product-availability,
.availability-limited .line-product-availability {
  display: block; }

.availability-false .add-to-cart--btn-save-for-later,
.availability-false .add-to-cart--btn-wishlist {
  pointer-events: none; }

.line-item-total-text {
  font-size: 0.813em; }

.line-item-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.bundled-line-item + .bundled-line-item {
  margin-top: 0.625em; }

.bundle-includes {
  margin-bottom: 0.625em;
  font-size: 0.813em; }

.line-item-divider {
  margin: 0.625em -1.225em 0.625em -1.325em; }

.line-dotted {
  border-top: 0.063em dashed #ccc; }

.line-item-availability {
  font-size: 0.813rem; }

.product-line-item-details {
  overflow-y: auto; }

.base-quantity-selector__btn-minus {
  margin-right: calc(1.5rem - 0.3125rem * 2);
  margin-left: 16px; }
  @media (min-width: 575px) {
    .base-quantity-selector__btn-minus {
      margin-left: 24px; } }

.base-quantity-selector__btn-plus {
  margin-right: -0.3125rem; }

.base-quantity-selector__btn-minus, .base-quantity-selector__btn-plus {
  margin-top: -0.3125rem;
  margin-bottom: -0.3125rem;
  padding: 0.3125rem; }
  .base-quantity-selector__btn-minus.disabled, .base-quantity-selector__btn-plus.disabled {
    cursor: default;
    opacity: 0.3;
    pointer-events: none; }

.cart-container__tabs {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%; }
  @media (min-width: 575px) {
    .cart-container__tabs {
      width: 500px;
      margin-right: auto;
      margin-left: auto; } }
  @media (min-width: 768px) {
    .cart-container__tabs {
      width: 550px;
      max-width: 100%; } }

.cart-container__tab {
  display: inline-block;
  align-self: flex-end;
  padding-right: 0;
  padding-left: 0; }

.cart-container__tablist {
  margin: 0 16px; }
  @media (min-width: 575px) {
    .cart-container__tablist {
      margin: 0 0 1rem; } }

.cart-container__tabpanel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: hidden; }
  @media (min-width: 575px) {
    .cart-container__tabpanel {
      margin-right: -1rem; } }

.cart-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0 11px 0 auto; }
  .cart-content p {
    margin: 0; }
  .cart-content__scrolling-area {
    /* Internet Explorer */
    scrollbar-face-color: #a8a8a8;
    scrollbar-track-color: transparent;
    /* W3C Working Draft */
    scrollbar-color: #a8a8a8 transparent;
    /* stylelint-disable-line property-no-unknown */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 7.5rem;
    margin-bottom: 8.5rem;
    padding-right: 1rem;
    padding-bottom: 2.75rem;
    padding-left: 1rem;
    overflow-y: auto; }
    .cart-content__scrolling-area::-webkit-scrollbar-thumb {
      background-color: #a8a8a8;
      border-radius: 0; }
    .cart-content__scrolling-area::-webkit-scrollbar-track {
      background-color: transparent; }
    .cart-content__scrolling-area::-webkit-scrollbar {
      width: 4px;
      height: 4px;
      background-color: #ebebeb; }
    @media (min-width: 575px) {
      .cart-content__scrolling-area {
        margin-bottom: 0;
        padding-bottom: 0;
        padding-left: 0; } }
  .cart-content__scrolling-area-fullcart {
    min-height: unset;
    margin-top: 16px;
    margin-bottom: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    overflow-x: hidden;
    overflow-y: inherit; }
    @media (min-width: 575px) {
      .cart-content__scrolling-area-fullcart {
        margin-top: 0;
        padding-bottom: 2.75rem;
        overflow-y: auto; } }
  .cart-content__product-container {
    /* Internet Explorer */
    scrollbar-face-color: #a8a8a8;
    scrollbar-track-color: transparent;
    /* W3C Working Draft */
    scrollbar-color: #a8a8a8 transparent;
    /* stylelint-disable-line property-no-unknown */
    position: relative;
    padding: 0; }
    .cart-content__product-container::-webkit-scrollbar-thumb {
      background-color: #a8a8a8;
      border-radius: 0; }
    .cart-content__product-container::-webkit-scrollbar-track {
      background-color: transparent; }
    .cart-content__product-container::-webkit-scrollbar {
      width: 9px;
      height: 9px;
      background-color: #ebebeb; }
  .cart-content__option-container .cart-option {
    margin: 24px 0 0; }
  .cart-content__sticky-container {
    position: fixed;
    bottom: 0;
    z-index: 11;
    width: 100vw;
    margin: 0;
    padding: 0 16px;
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    background-color: whitesmoke; }
    @media (min-width: 575px) {
      .cart-content__sticky-container {
        position: relative;
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
        justify-content: space-between;
        width: calc(100% - 16px);
        margin: 4px 16px 0 0;
        padding: 0;
        background-color: white;
        border-top: 0.0625rem solid rgba(168, 168, 168, 0.5); } }
    @media (min-width: 1280px) {
      .cart-content__sticky-container {
        margin: 4px 16px 0 auto; } }
  .cart-content__recommended-products-container {
    margin: 32px 0 24px; }
    @media (min-width: 575px) {
      .cart-content__recommended-products-container {
        margin-top: 0; } }
    .cart-content__recommended-products-container--mobile {
      display: block; }
      @media (min-width: 575px) {
        .cart-content__recommended-products-container--mobile {
          display: none; } }
    .cart-content__recommended-products-container--desktop {
      display: none; }
      @media (min-width: 575px) {
        .cart-content__recommended-products-container--desktop {
          display: block; } }
  .cart-content__totals {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0 5.0625rem; }
    @media (min-width: 575px) {
      .cart-content__totals {
        padding-bottom: 0; } }

.save-for-later-container,
.wishlist-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow-y: auto; }
  .save-for-later-container__scrolling-area,
  .wishlist-container__scrolling-area {
    /* Internet Explorer */
    scrollbar-face-color: #a8a8a8;
    scrollbar-track-color: transparent;
    /* W3C Working Draft */
    scrollbar-color: #a8a8a8 transparent;
    /* stylelint-disable-line property-no-unknown */
    overflow-y: auto; }
    .save-for-later-container__scrolling-area::-webkit-scrollbar-thumb,
    .wishlist-container__scrolling-area::-webkit-scrollbar-thumb {
      background-color: #a8a8a8;
      border-radius: 0; }
    .save-for-later-container__scrolling-area::-webkit-scrollbar-track,
    .wishlist-container__scrolling-area::-webkit-scrollbar-track {
      background-color: transparent; }
    .save-for-later-container__scrolling-area::-webkit-scrollbar,
    .wishlist-container__scrolling-area::-webkit-scrollbar {
      width: 9px;
      height: 9px;
      background-color: #ebebeb; }
  .save-for-later-container p,
  .wishlist-container p {
    margin: 0; }
  .save-for-later-container .cart-content__product-container,
  .wishlist-container .cart-content__product-container {
    margin-bottom: 24px;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: unset; }
    @media (min-width: 575px) {
      .save-for-later-container .cart-content__product-container,
      .wishlist-container .cart-content__product-container {
        padding-left: 0; } }
  .save-for-later-container .contact-text,
  .wishlist-container .contact-text {
    margin-top: auto;
    padding: 0 1rem; }
    @media (min-width: 575px) {
      .save-for-later-container .contact-text,
      .wishlist-container .contact-text {
        padding-left: 0; } }

.save-for-later-size,
.number-of-items,
.wishlist-size {
  margin-left: 4px; }

.cart-page {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 40px);
  min-height: calc((1vh * 100) - var(--header-total-height));
  min-height: calc((var(--vh, 1vh) * 100) - var(--header-total-height));
  padding-top: 24px; }
  @media (min-width: 575px) {
    .cart-page {
      align-items: center;
      padding-top: 32px; } }
  @media (min-width: 810px) {
    .cart-page {
      padding: 48px 24px 0; } }
  @media (min-width: 1025px) {
    .cart-page {
      padding-top: 64px; } }
  @media (min-width: 1920px) {
    .cart-page {
      padding-top: 80px; } }
  @media (min-width: 575px) {
    .cart-page .tabs {
      width: 500px; } }
  @media (min-width: 810px) {
    .cart-page .tabs {
      flex-direction: row;
      align-items: flex-start;
      justify-content: center;
      width: 100%;
      max-width: none; } }
  @media (min-width: 810px) {
    .cart-page .tabs__tablist {
      flex-shrink: 0;
      padding-right: 64px; } }
  .cart-page .tabs__tabpanel {
    margin-right: 0;
    overflow-y: visible; }
    @media (min-width: 575px) {
      .cart-page .tabs__tabpanel {
        flex: 0 0 500px; } }
    @media (min-width: 768px) {
      .cart-page .tabs__tabpanel {
        overflow-x: hidden; } }
  .cart-page .cart-container__tabs {
    flex: 1 0 auto; }
    @media (min-width: 575px) {
      .cart-page .cart-container__tabs {
        flex-basis: 500px; } }
    @media (min-width: 810px) {
      .cart-page .cart-container__tabs {
        min-height: 10vw; } }
  .cart-page .cart-container__tabpanel {
    flex: 1 0 auto;
    align-self: stretch;
    height: auto; }
    @media (min-width: 810px) {
      .cart-page .cart-container__tabpanel {
        flex: 0 1 500px; } }
  @media (min-width: 810px) {
    .cart-page .cart-container__tablist {
      position: sticky; } }
  .cart-page .cart-content {
    margin-right: 0; }
    .cart-page .cart-content__scrolling-area {
      margin-bottom: 0;
      padding-bottom: 0;
      overflow-x: hidden; }
      @media (min-width: 810px) {
        .cart-page .cart-content__scrolling-area {
          margin-right: -1rem; } }
    .cart-page .cart-content__scrolling-area-fullcart {
      min-height: unset;
      margin-top: unset;
      margin-bottom: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0;
      overflow-y: inherit; }
    .cart-page .cart-content__sticky-container {
      position: sticky;
      margin-top: 24px; }
      @media (min-width: 575px) {
        .cart-page .cart-content__sticky-container {
          display: flex;
          flex-direction: column;
          flex-grow: 1;
          justify-content: space-between;
          margin-top: 0;
          margin-left: 0;
          padding-right: 0;
          padding-bottom: 8px; } }
      @media (min-width: 810px) {
        .cart-page .cart-content__sticky-container {
          padding-bottom: 0; } }
    .cart-page .cart-content__totals {
      padding-bottom: 5.125rem; }
      @media (min-width: 575px) {
        .cart-page .cart-content__totals {
          padding-bottom: 1.8125rem; } }
  .cart-page .cart-content,
  .cart-page .save-for-later-container,
  .cart-page .wishlist-container {
    flex: 1 0 auto; }
    @media (min-width: 810px) {
      .cart-page .cart-content,
      .cart-page .save-for-later-container,
      .cart-page .wishlist-container {
        padding-bottom: 24px; } }
  .cart-page .cart-empty,
  .cart-page .save-for-later-empty {
    flex: 1 0 auto; }
  .cart-page .cart-contact {
    margin-bottom: 24px; }
  @media (min-width: 810px) {
    .cart-page .save-for-later-size,
    .cart-page .number-of-items {
      width: 2rem; } }

.cart-error,
.cart-error-sku-amount-exceeded,
.cart-error-max-price-exceeded {
  display: none;
  padding: 16px 16px 0;
  color: red;
  font-weight: 700;
  font-size: 0.6875rem; }
  @media (min-width: 575px) {
    .cart-error,
    .cart-error-sku-amount-exceeded,
    .cart-error-max-price-exceeded {
      padding: 0 0 16px;
      font-size: 0.75rem; } }
  .cart-error--show,
  .cart-error-sku-amount-exceeded--show,
  .cart-error-max-price-exceeded--show {
    display: block; }
  .cart-error__link,
  .cart-error-sku-amount-exceeded__link,
  .cart-error-max-price-exceeded__link {
    text-decoration: underline;
    cursor: pointer; }

.cart-content .cart-empty,
.save-for-later-container .save-for-later-empty,
.wishlist-container .wishlist-empty {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 9.8125rem;
  margin: 0 1rem;
  padding-top: 24px; }
  @media (min-width: 575px) {
    .cart-content .cart-empty,
    .save-for-later-container .save-for-later-empty,
    .wishlist-container .wishlist-empty {
      margin-left: 0; } }
  .cart-content .cart-empty__text,
  .save-for-later-container .save-for-later-empty__text,
  .wishlist-container .wishlist-empty__text {
    color: black;
    font-weight: 900;
    font-size: 0.875rem;
    text-align: left;
    text-transform: uppercase; }
    @media (min-width: 1025px) {
      .cart-content .cart-empty__text,
      .save-for-later-container .save-for-later-empty__text,
      .wishlist-container .wishlist-empty__text {
        font-size: 1rem; } }
  .cart-content .cart-empty__contact-text,
  .save-for-later-container .save-for-later-empty__contact-text,
  .wishlist-container .wishlist-empty__contact-text {
    padding-right: 24px;
    padding-left: 0; }
    @media (min-width: 575px) {
      .cart-content .cart-empty__contact-text,
      .save-for-later-container .save-for-later-empty__contact-text,
      .wishlist-container .wishlist-empty__contact-text {
        padding-right: 0; } }

.hide-line-item-attributes {
  display: none; }

.cart-option__close {
  display: none;
  text-transform: lowercase;
  cursor: pointer; }

.cart-option__content {
  display: flex;
  flex-direction: column;
  max-height: 0;
  margin: 0 0 0 19px; }
  @media (min-width: 768px) {
    .cart-option__content {
      margin: 0 0 0 20px; } }

.cart-option--opened .cart-option__content {
  margin-top: 14px; }
  @media (min-width: 768px) {
    .cart-option--opened .cart-option__content {
      margin-top: 24px; } }

.cart-option--opened .cart-option__close {
  display: inline-block; }

.cart-option--personalize .btn-checkbox,
.cart-option--personalize .btn-radio {
  color: black;
  color: var(--custom-color-cart-option, black); }
  .cart-option--personalize .btn-checkbox::before,
  .cart-option--personalize .btn-radio::before {
    border-color: currentColor;
    border-color: var(--custom-color-cart-option, currentColor); }
  .cart-option--personalize .btn-checkbox--selected::before,
  .cart-option--personalize .btn-radio--selected::before {
    background: currentColor;
    background: var(--custom-color-cart-option, currentColor); }

[dir="ltr"] .cart-option__button {
  text-align: left; }

[dir="rtl"] .cart-option__button {
  text-align: right; }

.cart-option__title {
  display: flex;
  justify-content: space-between; }
  .cart-option__title .cart-option__button,
  .cart-option__title .cart-option__close {
    /* stylelint-disable */
    --uses-typography: 'cart-options-title';
    color: black;
    font-family: "EBGaramond", georgia, serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 700;
    /* stylelint-enable */ }
    @media (min-width: 810px) {
      .cart-option__title .cart-option__button,
      .cart-option__title .cart-option__close {
        font-weight: 600; } }

.cart-option__buttons-row {
  display: flex;
  justify-content: flex-end;
  padding: 0 18px; }
  @media (min-width: 768px) {
    .cart-option__buttons-row {
      padding: 0; } }
  .cart-option__buttons-row button + button {
    margin-left: 24px; }

.cart-option__delete-button {
  font-weight: 700;
  font-size: 0.875rem;
  font-style: italic;
  text-decoration: underline;
  cursor: pointer; }

.cart-option__submit-button {
  font-weight: 700;
  background-color: inherit;
  cursor: pointer; }

.cart-option .btn-checkbox,
.cart-option .btn-radio {
  /* stylelint-disable */
  --uses-typography: 'cart-cart-option';
  font-size: 0.75rem;
  font-weight: 700;
  /* stylelint-enable */ }
  .cart-option .btn-checkbox::before,
  .cart-option .btn-radio::before {
    left: 0; }

.cart-option--coupon {
  display: flex;
  flex-wrap: wrap;
  min-width: 100%; }

.cart-option + .cart-option {
  margin-top: 2px; }

.coupons-and-promos {
  /* stylelint-disable */
  --uses-typography: 'cart-coupon';
  color: #909090;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  /* stylelint-enable */
  flex-grow: 1; }

.promo-code-form__input {
  margin: 0 0 24px; }

.coupon-error {
  color: red; }

.coupon-missing-error {
  display: none; }

.coupon-display {
  display: flex;
  align-items: center;
  margin-left: 3.375rem; }
  .coupon-display__remove-coupon {
    width: 8px;
    height: 8px;
    margin: 0 8px 0 2px;
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><g fill-rule="evenodd"><path d="M0 11.326L.647 12 12 .674 11.353 0z" fill="%23909090"/><path d="M11.353 12l.647-.674L.647 0 0 .674z" fill="%23909090"/></g></svg>'); }

.option-personalize__conditions {
  margin-top: 0.375rem;
  font-weight: 500;
  font-size: 0.6875rem;
  font-family: "FKGrotesk", "Arial", sans-serif; }

.option-personalize__form {
  margin: 0.375rem 0 0; }
  .option-personalize__form .option-personalize__gift-text {
    height: 120px;
    margin-bottom: -33.333333px;
    line-height: 19.999999995px; }
    @media (min-width: 768px) {
      .option-personalize__form .option-personalize__gift-text {
        height: 90px;
        margin-bottom: 0;
        line-height: 0.9375rem; } }

.option-personalize__gift-text {
  margin: 0.375rem 0 0; }

.option-coupon {
  flex-basis: 100%;
  margin-top: 6px;
  margin-bottom: 6px; }
  .option-coupon .cart-option__submit-button[type='submit'] {
    /* stylelint-disable */
    --uses-typography: 'cart-option-submit';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: normal;
    line-height: 1.25;
    font-size: 1rem;
    font-weight: 900;
    /* stylelint-enable */
    margin: 0 0 0 16px; }
  .option-coupon .form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
  .option-coupon .coupon-code-field {
    /* stylelint-disable */
    --uses-typography: 'cart-option-input';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: normal;
    line-height: 1.25;
    font-size: 0.8125rem;
    font-weight: 400;
    /* stylelint-enable */
    max-width: 12.5625rem; }
  .option-coupon .coupon-error {
    /* stylelint-disable */
    --uses-typography: 'cart-option-input-error';
    color: red;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-style: normal;
    line-height: 1.25;
    font-size: 0.6875rem;
    font-weight: 700;
    /* stylelint-enable */
    flex-basis: 100%;
    padding-top: 8px; }

.sub-total-container__price,
.discount-total-container__price {
  word-spacing: -0.1875rem; }
  @media (min-width: 1025px) {
    .sub-total-container__price,
    .discount-total-container__price {
      word-spacing: -0.20312rem; } }

.grand-total-container__price {
  word-spacing: -0.21875rem; }
  @media (min-width: 1025px) {
    .grand-total-container__price {
      word-spacing: -0.4375rem; } }

.totals__total {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase; }
  @media (min-width: 1025px) {
    .totals__total {
      font-size: 0.875rem; } }
  .totals__total--main-title {
    font-size: 1rem; }
    @media (min-width: 1025px) {
      .totals__total--main-title {
        font-size: 1.5625rem; } }

.totals__total + .totals__total {
  margin-top: 0.125rem; }

.grand-total-container__priceContainer {
  text-align: right; }

.grand-total-container__taxMsg {
  font-weight: 500;
  font-size: 0.5625rem;
  font-style: normal;
  text-transform: none; }
  @media (min-width: 1025px) {
    .grand-total-container__taxMsg {
      font-size: 0.6875rem; } }

.checkout-btn--desktop {
  /* stylelint-disable */
  --uses-typography: 'cart-checkout-btn--desktop';
  font-size: 1.875rem;
  /* stylelint-enable */
  display: none; }
  @media (min-width: 1025px) {
    .checkout-btn--desktop {
      font-size: calc(0.00223 * 100vw + 27.7095px); } }
  @media (min-width: 1920px) {
    .checkout-btn--desktop {
      font-size: 2rem; } }
  @media (min-width: 575px) {
    .checkout-btn--desktop {
      display: inline;
      align-self: flex-end;
      margin: 16px 8px 0 0; } }
  @media (min-width: 1025px) {
    .checkout-btn--desktop {
      margin-right: 16px; } }

.checkout-btn--mobile {
  display: flex;
  align-items: center;
  margin: 0; }
  @media (min-width: 575px) {
    .checkout-btn--mobile {
      display: none; } }

.checkout-btn.disabled {
  cursor: pointer;
  pointer-events: auto; }

.hide-order-discount {
  display: none; }

.hide-shipping-discount {
  display: none; }

.promotion-discount-container {
  width: 100%; }

.landing-apps {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: calc(100vh - var(--header-total-height)); }
  @media (min-width: 1025px) {
    .landing-apps {
      flex-direction: row-reverse;
      justify-content: flex-end; } }
  .landing-apps__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 50%;
    padding: 0 1.125rem; }
    @media (min-width: 1025px) {
      .landing-apps__content {
        flex-basis: 50%;
        flex-grow: 0;
        align-items: center;
        height: 100%; } }
    .landing-apps__content-wrapper {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content; }
    .landing-apps__content h1 {
      /* stylelint-disable */
      --uses-typography: 'landing-apps-title-h1';
      font-family: "FKGrotesk", "Arial", sans-serif;
      font-size: 2.25rem;
      font-weight: 900;
      color: black;
      text-transform: uppercase;
      text-decoration: none;
      letter-spacing: 0.0625rem;
      line-height: 1;
      /* stylelint-enable */
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin: 0; }
      @media (min-width: 575px) {
        .landing-apps__content h1 {
          font-size: calc(0.01784 * 100vw + 25.73978px);
          letter-spacing: calc(0.00015 * 100vw + 0.9145px); } }
      @media (min-width: 1920px) {
        .landing-apps__content h1 {
          letter-spacing: 0.075rem; } }
    .landing-apps__content h3 {
      /* stylelint-disable */
      --uses-typography: 'landing-apps-title-h3';
      font-family: "EBGaramond", georgia, serif;
      font-size: 1.625rem;
      font-style: italic;
      font-weight: 700;
      color: black;
      text-transform: none;
      text-decoration: none;
      letter-spacing: 0.04625rem;
      line-height: 1;
      /* stylelint-enable */
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin: 0 0 8px; }
      @media (min-width: 575px) {
        .landing-apps__content h3 {
          font-size: calc(0.01784 * 100vw + 15.73978px); } }
    .landing-apps__content .register {
      /* stylelint-disable */
      --uses-typography: 'landing-apps-register';
      font-size: 1.5625rem;
      /* stylelint-enable */
      vertical-align: top; }
      @media (min-width: 575px) {
        .landing-apps__content .register {
          font-size: calc(0.0052 * 100vw + 22.00743px); } }
    .landing-apps__content .buttons {
      display: flex;
      margin-top: 16px; }
    .landing-apps__content .ios {
      margin-right: 16px; }
      @media (min-width: 575px) {
        .landing-apps__content .ios {
          margin-right: calc(0.00595 * 100vw + 12.57993px); } }
    .landing-apps__content img {
      height: 2.625rem; }
      @media (min-width: 575px) {
        .landing-apps__content img {
          height: calc(0.02156 * 100vw + 29.60223px); } }
  .landing-apps__background {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50%; }
    @media (min-width: 1025px) {
      .landing-apps__background {
        flex-basis: 50%;
        flex-grow: 0;
        align-items: center;
        height: 100%; } }
    .landing-apps__background img {
      position: absolute;
      bottom: 0;
      width: auto;
      max-height: 100%; }
      @media (min-width: 1025px) {
        .landing-apps__background img {
          bottom: auto; } }

.landing-seo-bf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%; }
  .landing-seo-bf__content {
    position: relative;
    margin: 16px 16px 0; }
    @media (min-width: 768px) {
      .landing-seo-bf__content {
        margin: 48px 0 0 48px; } }
    @media (min-width: 1025px) {
      .landing-seo-bf__content {
        max-width: 80%;
        margin: 0; } }
  .landing-seo-bf__item {
    padding-bottom: 32px; }
    @media (min-width: 1025px) {
      .landing-seo-bf__item {
        padding: 0 6px 24px 0; } }
  .landing-seo-bf h1 {
    /* stylelint-disable */
    --uses-typography: 'landing-seo-bf-seo-bf-h1';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.125rem;
    font-weight: 900;
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    /* stylelint-enable */
    margin-top: 0;
    margin-bottom: 64px; }
    @media (min-width: 575px) {
      .landing-seo-bf h1 {
        font-size: calc(0.00892 * 100vw + 12.86989px); } }
    @media (min-width: 1920px) {
      .landing-seo-bf h1 {
        font-size: 1.875rem; } }
    @media (min-width: 1025px) {
      .landing-seo-bf h1 {
        margin-bottom: 32px; } }
  .landing-seo-bf h2 {
    /* stylelint-disable */
    --uses-typography: 'landing-seo-bf-seo-bf-h2';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: black;
    text-decoration: none;
    /* stylelint-enable */
    margin: 24px 0 12px; }
    @media (min-width: 575px) {
      .landing-seo-bf h2 {
        font-size: calc(0.00595 * 100vw + 12.57993px); } }
    @media (min-width: 1920px) {
      .landing-seo-bf h2 {
        font-size: 1.5rem; } }
    @media (min-width: 1025px) {
      .landing-seo-bf h2 {
        margin-top: 64px;
        margin-bottom: 16px; } }
  .landing-seo-bf .seo-searching {
    /* stylelint-disable */
    --uses-typography: 'landing-seo-bf-seo-bf-searching';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.125rem;
    font-weight: 900;
    color: #a8a8a8;
    text-decoration: none;
    /* stylelint-enable */
    margin-bottom: 0; }
    @media (min-width: 575px) {
      .landing-seo-bf .seo-searching {
        font-size: calc(0.01041 * 100vw + 10.01487px); } }
    @media (min-width: 1920px) {
      .landing-seo-bf .seo-searching {
        font-size: 1.875rem; } }
  .landing-seo-bf .seo-claim {
    /* stylelint-disable */
    --uses-typography: 'landing-seo-bf-seo-bf-description';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #c8c8c8;
    line-height: 0.9375rem;
    /* stylelint-enable */ }
  .landing-seo-bf a {
    color: black;
    text-decoration: none; }

.market-redirect-country-selector__list-wrapper {
  transition: opacity 200ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  position: absolute;
  top: 100%;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  padding: 16px 16px 24px 16px;
  background: white;
  border: 1px solid black;
  opacity: 1; }
  .market-redirect-country-selector__list-wrapper:not(.market-redirect-country-selector__list-wrapper--open) {
    max-height: 0;
    opacity: 0;
    pointer-events: none; }

.market-redirect-country-selector__dropdown {
  /* stylelint-disable */
  --uses-typography: 'market-redirect-country-selector-dropdown';
  color: black;
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  /* stylelint-enable */
  box-sizing: border-box;
  margin-bottom: 16px;
  padding-right: 0;
  background-position: right 8px bottom 8px, 0 0;
  background-size: 0.5rem;
  border-color: black; }
  @media (min-width: 1025px) {
    .market-redirect-country-selector__dropdown {
      font-size: calc(0.00223 * 100vw + 13.7095px); } }
  @media (min-width: 1920px) {
    .market-redirect-country-selector__dropdown {
      font-size: 1.125rem; } }
  .market-redirect-country-selector__dropdown, .market-redirect-country-selector__dropdown:focus {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path style="transform:rotate(180 12)" d="M3 0l9 6-9 6z" fill="black" fill-rule="evenodd" transform="matrix(0, 0, -1, 15, 12)" /></svg>'); }
  .market-redirect-country-selector__dropdown:first-child {
    margin-bottom: 0.8125rem; }
  .market-redirect-country-selector__dropdown:is(select) {
    white-space: pre;
    text-overflow: ellipsis; }
  .market-redirect-country-selector__dropdown:not(select):not(.market-redirect-country-selector__dropdown--hidden) {
    position: relative;
    display: flex;
    flex-direction: column; }
  .market-redirect-country-selector__dropdown--open, .market-redirect-country-selector__dropdown--open:focus {
    background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M 0 0 l 12 0 l -6 8 z" fill="black" fill-rule="evenodd"/></svg>');
    background-position-y: 0.625rem; }
  .market-redirect-country-selector__dropdown--hidden {
    display: none; }

.market-redirect-country-selector__dropdown-list {
  /* Internet Explorer */
  scrollbar-face-color: #a8a8a8;
  scrollbar-track-color: transparent;
  /* W3C Working Draft */
  scrollbar-color: #a8a8a8 transparent;
  /* stylelint-disable-line property-no-unknown */
  box-sizing: border-box;
  width: 100%;
  max-height: 360px;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  color: #909090;
  list-style: none; }
  .market-redirect-country-selector__dropdown-list::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 0; }
  .market-redirect-country-selector__dropdown-list::-webkit-scrollbar-track {
    background-color: transparent; }
  .market-redirect-country-selector__dropdown-list::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #ebebeb; }

.market-redirect-country-selector__dropdown-value {
  display: flex;
  align-items: baseline; }
  .market-redirect-country-selector__dropdown-value .market-redirect-country-selector__dropdown-market-with-sale {
    background-image: url('data:image/svg+xml;utf-8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 12 14"><style type="text/css">.st0{fill:none;stroke-miterlimit:10;}</style><path id="Stroke-1" class="st0" stroke="black" d="M3,4c0-1.7,1.3-3,3-3s3,1.3,3,3S7.7,7,6,7S3,5.7,3,4z"/><rect id="Rectangle" x="0" y="4" class="st1" fill-rule="evenodd" clip-rule="evenodd" width="12" height="10" fill="black"/></svg>'); }

.market-redirect-country-selector__dropdown-item {
  transition: color 100ms cubic-bezier(0.25, 0.1, 0.25, 1) 0ms;
  display: flex;
  align-items: baseline;
  color: #909090; }
  .market-redirect-country-selector__dropdown-item + .market-redirect-country-selector__dropdown-item {
    margin-top: 4px; }
  .market-redirect-country-selector__dropdown-item:hover, .market-redirect-country-selector__dropdown-item--selected {
    color: black; }
    .market-redirect-country-selector__dropdown-item:hover .market-redirect-country-selector__dropdown-market-with-sale, .market-redirect-country-selector__dropdown-item--selected .market-redirect-country-selector__dropdown-market-with-sale {
      background-image: url('data:image/svg+xml;utf-8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 12 14"><style type="text/css">.st0{fill:none;stroke-miterlimit:10;}</style><path id="Stroke-1" class="st0" stroke="black" d="M3,4c0-1.7,1.3-3,3-3s3,1.3,3,3S7.7,7,6,7S3,5.7,3,4z"/><rect id="Rectangle" x="0" y="4" class="st1" fill-rule="evenodd" clip-rule="evenodd" width="12" height="10" fill="black"/></svg>'); }

.market-redirect-country-selector__form {
  margin-top: 48px; }

.market-redirect,
.market-redirect-global {
  justify-content: center;
  width: 100%;
  max-width: calc(100% - 16px - 16px); }
  @media (min-width: 768px) {
    .market-redirect,
    .market-redirect-global {
      max-width: 43.125rem;
      padding: 24px 24px; } }
  .market-redirect__dialog,
  .market-redirect-global__dialog {
    justify-content: center;
    width: 100%;
    max-width: unset; }
  .market-redirect__content,
  .market-redirect-global__content {
    margin: 0;
    padding: 0;
    box-shadow: none; }
  .market-redirect__text,
  .market-redirect-global__text {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0;
    font-weight: 900;
    font-size: 0.75rem;
    font-family: "FKGrotesk", "Arial", sans-serif; }
    @media (min-width: 575px) {
      .market-redirect__text,
      .market-redirect-global__text {
        font-size: calc(0.00297 * 100vw + 10.28996px); } }
    @media (min-width: 1920px) {
      .market-redirect__text,
      .market-redirect-global__text {
        font-size: 1rem; } }
  .market-redirect__body,
  .market-redirect-global__body {
    margin: 0; }
  .market-redirect__link-dispatcher,
  .market-redirect-global__link-dispatcher {
    color: black; }

.market-redirect {
  overflow: visible; }
  .market-redirect-country-selector__label {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0;
    font-weight: 900;
    font-size: 0.75rem;
    font-family: "FKGrotesk", "Arial", sans-serif; }
  .market-redirect__first-text {
    margin-bottom: 4px; }
  .market-redirect__form {
    margin: 0; }
  .market-redirect__selector-container {
    margin: 0;
    padding: 16px 0 0; }
    @media (min-width: 575px) {
      .market-redirect__selector-container {
        padding: calc(0.00595 * 100vw + 12.57993px) 1.125rem 0; } }
    @media (min-width: 1025px) {
      .market-redirect__selector-container {
        padding-top: 24px; } }
  .market-redirect-country-selector__dropdown {
    margin-top: 8px;
    font-size: 0.875rem;
    border-color: black; }
    @media (min-width: 575px) {
      .market-redirect-country-selector__dropdown {
        font-size: calc(0.00149 * 100vw + 15.14498px); } }
    @media (min-width: 1920px) {
      .market-redirect-country-selector__dropdown {
        font-size: 1.125rem; } }
  .market-redirect-country-selector__form {
    margin-top: 48px; }

.market-redirect-global__body {
  margin-top: 8px;
  margin-bottom: 32px; }
  @media (min-width: 768px) {
    .market-redirect-global__body {
      margin-top: 12px;
      margin-bottom: 48px; } }

.market-redirect-global__body span + span {
  display: block; }
  @media (min-width: 768px) {
    .market-redirect-global__body span + span {
      display: inline; } }

.market-redirect-global .modal-footer {
  justify-content: space-between; }
  @media (min-width: 768px) {
    .market-redirect-global .modal-footer {
      justify-content: flex-end; } }
  .market-redirect-global .modal-footer > :not(:first-child) {
    margin-left: 32px; }

.market-redirect-global__continue-btn {
  max-width: 12.0625rem;
  max-width: unset;
  white-space: nowrap; }
  @media (min-width: 768px) {
    .market-redirect-global__continue-btn {
      padding-right: 32px;
      padding-left: 32px; } }

.size-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 76%;
  margin-top: 6px; }
  .size-row__container {
    margin-top: 8px;
    margin-right: 24px;
    line-height: 1; }
    .size-row__container:last-child {
      margin-right: 0; }
    .size-row__container + .size-row__container {
      margin-left: 0; }
    .size-row__container--disabled {
      pointer-events: none; }
  .size-row__size-input {
    display: none; }
  .size-row__size-label {
    /* stylelint-disable */
    --uses-typography: 'the-home__shop-the-look-product-size';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    font-style: normal;
    text-transform: uppercase;
    /* stylelint-enable */
    cursor: pointer; }
    @media (min-width: 575px) {
      .size-row__size-label {
        font-size: 0.875rem; } }
  .size-row .size-box {
    min-width: auto; }
  .size-row__size-input:checked + .size-box {
    text-decoration: underline; }
  .size-row::after, .size-row::before {
    content: none; }
  .size-row .size-box .strike {
    background: black; }
    @media (min-width: 575px) {
      .size-row .size-box .strike {
        top: 50%; } }

.add-to-wishlist--heart {
  width: 1.1875rem;
  height: 1rem;
  padding-right: 0;
  padding-left: 0;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 16"><path fill="black" d="M16.55 1.401A5.082 5.082 0 0 0 13.025.018c-1.335 0-2.584.49-3.524 1.383l-.492.464-.501-.473A5.112 5.112 0 0 0 4.975 0a5.07 5.07 0 0 0-3.516 1.392C.519 2.284 0 3.472 0 4.729c0 1.267.527 2.445 1.468 3.338l7.172 6.79A.5.5 0 0 0 9 15a.5.5 0 0 0 .36-.143l7.181-6.781C17.481 7.183 18 5.996 18 4.738s-.51-2.445-1.45-3.337Zm-.73 5.987L9 13.822 2.188 7.38a3.627 3.627 0 0 1-1.16-2.65c0-1 .405-1.946 1.16-2.65A4.054 4.054 0 0 1 4.983.981c1.055 0 2.057.392 2.804 1.097l.861.821a.544.544 0 0 0 .73 0l.852-.812A4.054 4.054 0 0 1 13.025.99c1.055 0 2.048.393 2.795 1.098a3.627 3.627 0 0 1 1.16 2.65c0 1-.404 1.946-1.16 2.65Z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain; }
  @media (min-width: 575px) {
    .add-to-wishlist--heart {
      width: 1.125rem;
      height: 0.9375rem; } }

.add-to-wishlist .add-to-wishlist__text {
  display: none; }
  .add-to-wishlist .add-to-wishlist__text--add {
    display: block; }

.add-to-wishlist--filled .add-to-wishlist__text--add {
  display: none; }

.add-to-wishlist--filled .add-to-wishlist__text--added {
  display: block;
  color: black; }

.add-to-wishlist--filled.add-to-wishlist--heart {
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 19 16" fill="none"><path fill="black" d="M16.55 1.401A5.082 5.082 0 0 0 13.025.018c-1.335 0-2.584.49-3.524 1.383l-.492.464-.501-.473A5.112 5.112 0 0 0 4.975 0a5.07 5.07 0 0 0-3.516 1.392C.519 2.284 0 3.472 0 4.729c0 1.267.527 2.445 1.468 3.338l7.172 6.79A.5.5 0 0 0 9 15a.5.5 0 0 0 .36-.143l7.181-6.781C17.481 7.183 18 5.996 18 4.738s-.51-2.445-1.45-3.337Z"/></svg>'); }

.wishlist-edit-product-modal.show,
.share-wishilst-modal.modal.show {
  display: block;
  background-color: rgba(42, 43, 50, 0.3);
  opacity: 1; }

.wishlist-edit-product-modal .btn-close,
.share-wishilst-modal.modal .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  float: right;
  width: 1.125rem;
  height: 1.125rem;
  padding: 16px;
  background-color: white; }
  @media (min-width: 575px) {
    .wishlist-edit-product-modal .btn-close,
    .share-wishilst-modal.modal .btn-close {
      margin-top: 12px;
      margin-right: 24px; } }

.wishlist-edit-product-modal .modal-content,
.share-wishilst-modal.modal .modal-content {
  padding: 16px 16px;
  background-color: white; }

.wishlist-edit-product-modal .modal-title,
.share-wishilst-modal.modal .modal-title {
  text-transform: uppercase; }

.wishlist-edit-product-modal.modal .modal-dialog {
  z-index: 1050;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  height: 100vh; }
  @media (min-width: 375px) {
    .wishlist-edit-product-modal.modal .modal-dialog {
      max-width: 100vw; } }
  @media (min-width: 575px) {
    .wishlist-edit-product-modal.modal .modal-dialog {
      width: calc(0.4574 * 100vw + 196.99628px);
      max-width: 548px; } }

.wishlist-edit-product-modal.modal .modal-content {
  display: block;
  width: 100%;
  height: 100%; }
  @media (min-width: 575px) {
    .wishlist-edit-product-modal.modal .modal-content {
      max-height: 510px;
      padding: 28px; } }

.wishlist-edit-product-modal.modal .modal-text {
  /* stylelint-disable */
  --uses-typography: 'base-text-info-card-subtitle';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  font-style: normal;
  /* stylelint-enable */ }
  @media (min-width: 1025px) {
    .wishlist-edit-product-modal.modal .modal-text {
      font-size: 0.875rem; } }

.wishlist-edit-product-modal.modal .modal-body {
  margin-top: 32px;
  margin-bottom: 0; }
  @media (min-width: 575px) {
    .wishlist-edit-product-modal.modal .modal-body {
      margin-top: 24px; } }

.wishlist-edit-product-modal.modal .modal-footer {
  justify-content: flex-end;
  margin-top: 32px;
  margin-right: 6px; }
  @media (min-width: 575px) {
    .wishlist-edit-product-modal.modal .modal-footer {
      margin-right: 36px; } }

.product-quickview .product-info__container {
  margin-top: 16px; }

.product-quickview.product-card {
  padding-top: 24px;
  border-bottom: 0; }
  @media (min-width: 575px) {
    .product-quickview.product-card {
      padding-top: 32px; } }

@media (min-width: 575px) {
  .product-quickview .product-image {
    width: 140px; } }

.product-quickview .product-name {
  margin-bottom: 8px; }

.product-quickview .prices-qty-row,
.product-quickview .line-item-price {
  margin-bottom: 0; }

.share-wishilst-modal.modal .btn-close {
  z-index: 1;
  width: 1.125rem;
  height: 1.125rem; }
  @media (min-width: 575px) {
    .share-wishilst-modal.modal .btn-close {
      width: 1.5rem;
      height: 1.5rem;
      margin-top: 0;
      margin-right: 0;
      padding: 1.125rem; } }

.share-wishilst-modal.modal .modal-dialog {
  width: 80%; }
  @media (min-width: 575px) {
    .share-wishilst-modal.modal .modal-dialog {
      width: calc(0.4574 * 100vw + 196.99628px);
      max-width: 67.1875rem; } }

.share-wishilst-modal.modal .modal-body {
  margin-top: 0;
  margin-bottom: 24px; }
  @media (min-width: 575px) {
    .share-wishilst-modal.modal .modal-body {
      margin-bottom: 3.0625rem; } }

.share-wishilst-modal.modal .modal-content {
  padding: 3.5625rem 16px 32px; }
  @media (min-width: 575px) {
    .share-wishilst-modal.modal .modal-content {
      padding: 64px 80px 32px; } }

.share-wishilst-modal.modal .modal-text {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700; }

.share-wishilst-modal.modal .modal-footer {
  justify-content: flex-end;
  margin-right: 8px; }
  @media (min-width: 575px) {
    .share-wishilst-modal.modal .modal-footer {
      margin-right: 24px; } }

@media (min-width: 575px) {
  .share-wishilst-modal.modal .btn-share-confirm {
    margin-left: 64px; } }

.share-wishlist-error,
.wishlist-size-error {
  /* stylelint-disable */
  --uses-typography: 'product-card-wishlist-error';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.25;
  color: red;
  /* stylelint-enable */ }

.shared-wishlist-size-error {
  /* stylelint-disable */
  --uses-typography: 'product-card-shared-wishlist-error';
  font-family: "FKGrotesk", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: #909090;
  /* stylelint-enable */
  display: none; }

.share-wishlist-error,
.share-your-wishlist-not-logged {
  padding: 16px 16px; }
  @media (min-width: 810px) {
    .share-wishlist-error,
    .share-your-wishlist-not-logged {
      padding: 0 0 16px 0; } }

.share-wishlist-error {
  display: none; }
  .share-wishlist-error--show {
    display: block; }
    .share-wishlist-error--show + .wishlist-container__scrolling-area .wishlist-item-cards,
    .share-wishlist-error--show + .save-for-later-container__scrolling-area .wishlist-item-cards {
      padding-top: 0; }

.share-your-wishlist-not-logged {
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1.25; }
  .share-your-wishlist-not-logged + .wishlist-container__scrolling-area .wishlist-item-cards,
  .share-your-wishlist-not-logged + .save-for-later-container__scrolling-area .wishlist-item-cards {
    padding-top: 0; }
  .share-your-wishlist-not-logged a {
    color: black; }

.cart-page .share-wishlist-error,
.cart-page .share-your-wishlist-not-logged {
  padding-top: 0;
  padding-bottom: 8px; }
  @media (min-width: 575px) {
    .cart-page .share-wishlist-error,
    .cart-page .share-your-wishlist-not-logged {
      padding: 0 0 16px 0; } }

.wishlist-size-error {
  position: absolute;
  bottom: 0;
  text-transform: none; }
  @media (min-width: 375px) {
    .wishlist-size-error {
      top: 0;
      bottom: auto;
      bottom: initial; } }
  @media (min-width: 575px) {
    .wishlist-size-error {
      top: auto;
      top: initial;
      right: 0;
      bottom: 21px; } }

.btn-share-your-wishlist {
  display: block;
  margin-top: 24px;
  margin-left: auto; }

.icon-share {
  display: inline-block;
  width: 0.75rem;
  height: 1.0625rem;
  margin-left: 8px;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23a)"><path fill="black" d="M3.83 4.55 2.72 3.54 5.94 0l3.22 3.54-1.1 1.01-2.12-2.32-2.11 2.32Z"/><path fill="black" d="M6.691 1.38h-1.5v11.2h1.5V1.38Z"/><path fill="black" d="M8.85 5.28v1.5h1.54v8.89H1.5V6.78h1.53v-1.5H0v11.89h11.89V5.28H8.85Z"/></g><defs><clipPath id="a"><path fill="white" d="M0 0h11.89v17.17H0z"/></clipPath></defs></svg>'); }

.wishlist-page {
  flex: 1 0 auto;
  margin-top: 2.25rem; }
  .wishlist-page__list {
    flex: 1 0 auto;
    align-self: stretch;
    height: auto; }
    @media (min-width: 810px) {
      .wishlist-page__list {
        flex: 0 1 500px;
        margin-top: 16px; } }
  .wishlist-page__title {
    /* stylelint-disable */
    --uses-typography: 'tabs-base';
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    color: #909090;
    /* stylelint-enable */
    margin-top: 1.125rem;
    color: black; }
    @media (min-width: 375px) {
      .wishlist-page__title {
        font-size: calc(0.00453 * 100vw + 12.30097px); } }
    @media (min-width: 1920px) {
      .wishlist-page__title {
        font-size: 1.3125rem; } }
    @media (min-width: 768px) {
      .wishlist-page__title {
        /* stylelint-disable */
        --uses-typography: 'tabs-vertical';
        font-size: calc(0.0026 * 100vw + 16px);
        /* stylelint-enable */ } }
  @media (min-width: 768px) and (min-width: 1920px) {
    .wishlist-page__title {
      font-size: 1.3125rem; } }
    @media (min-width: 810px) {
      .wishlist-page__title {
        /* stylelint-disable */
        --uses-typography: 'tabs-vertical-active';
        font-size: calc(0.0026 * 100vw + 23px);
        /* stylelint-enable */
        min-width: 275px;
        margin-top: 0;
        padding-right: 64px; } }
  @media (min-width: 810px) and (min-width: 1920px) {
    .wishlist-page__title {
      font-size: 1.75rem; } }
    @media (min-width: 1025px) {
      .wishlist-page__title {
        padding-right: 9.0625rem; } }
  .wishlist-page .product-info__container {
    justify-content: space-between; }
  .wishlist-page .prices-qty-row {
    margin-bottom: auto; }
  .wishlist-page .product-card__remove-row {
    justify-content: flex-end; }
  .wishlist-page .shared-wishlist-limited:not(.availability-false) .add-to-cart--btn-wishlist {
    display: none; }
  .wishlist-page .shared-wishlist-limited:not(.availability-false) .shared-wishlist-size-error {
    display: block;
    text-transform: none;
    text-transform: initial; }
  .wishlist-page .wishlist-empty {
    margin: 24px 0 0;
    padding-top: 0; }
    @media (min-width: 810px) {
      .wishlist-page .wishlist-empty {
        margin-top: 0; } }
    .wishlist-page .wishlist-empty__text {
      margin-top: 0; }

.landing-page {
  display: flex;
  flex-direction: column;
  margin: 16px 12px 0 12px; }
  @media (min-width: 810px) {
    .landing-page {
      flex-direction: row;
      align-items: flex-start;
      justify-content: center;
      margin-top: 48px; } }
  @media (min-width: 1280px) {
    .landing-page {
      margin-top: 80px; } }
  @media (min-width: 810px) {
    .landing-page__header-container {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      margin-right: 8%; } }
  @media (min-width: 810px) {
    .landing-page__header {
      text-align: left; } }
  .landing-page__subtitle-container {
    display: flex;
    flex-wrap: nowrap;
    margin: 1.3rem 0 1.8rem;
    -webkit-mask-image: linear-gradient(to right, black 90%, transparent);
            mask-image: linear-gradient(to right, black 90%, transparent);
    -webkit-mask-position: right;
            mask-position: right;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover; }
    @media (min-width: 810px) {
      .landing-page__subtitle-container {
        flex-flow: column wrap;
        align-items: flex-start;
        margin: 0;
        line-height: calc(0.015 * 100vw + 7.2px);
        -webkit-mask-image: none;
                mask-image: none; } }
  @media (min-width: 810px) and (min-width: 1920px) {
    .landing-page__subtitle-container {
      line-height: 2.25rem; } }
    @media (min-width: 810px) {
      .landing-page__subtitle-container .txtbtn {
        line-height: calc(0.015 * 100vw + 7.2px); } }
  @media (min-width: 810px) and (min-width: 1920px) {
    .landing-page__subtitle-container .txtbtn {
      line-height: 2.25rem; } }
    .landing-page__subtitle-container::-webkit-scrollbar {
      width: 0;
      height: 0; }
  .landing-page__subtitle {
    /* stylelint-disable */
    --uses-typography: 'headings-landing-page-subtitle';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    padding: 0 1rem 0 0;
    white-space: nowrap;
    cursor: pointer; }
    @media (min-width: 1025px) {
      .landing-page__subtitle {
        font-size: 1.3125rem; } }
    @media (min-width: 810px) {
      .landing-page__subtitle {
        padding: 0;
        white-space: normal; } }
  .landing-page__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 32px auto auto; }
    @media (min-width: 575px) {
      .landing-page__content {
        max-width: 500px; } }
    @media (min-width: 810px) {
      .landing-page__content {
        align-items: flex-start;
        margin: 70px 0 0;
        margin: 70px initial initial; } }
    @media (min-width: 1025px) {
      .landing-page__content {
        max-width: 550px;
        margin: 114px 0 0;
        margin: 114px initial initial; } }
  .landing-page__title {
    /* stylelint-disable */
    --uses-typography: 'headings-page-title';
    color: black;
    font-family: "FKGrotesk", "Arial", sans-serif;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    /* stylelint-enable */
    margin: 0; }
    @media (min-width: 1025px) {
      .landing-page__title {
        font-size: 3.125rem; } }

/* Change autofill styles */
input:-webkit-autofill,
select:-webkit-autofill {
  background-color: transparent !important;
  transition: background-color 1e10s; }

.input--dark:-webkit-autofill {
  -webkit-text-fill-color: #fff !important; }

/* END Change autofill styles */
/* Temporary method to highlight errors */
.error {
  border: 1px solid red; }

/* stylelint-disable */
.modal-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5; }

.error-messaging {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%; }

.error-hero {
  margin-bottom: 0.625em;
  background-image: url("../images/storelocator.jpg"); }

.error-message {
  margin-top: 3.125rem; }

.error.continue-shopping {
  margin-bottom: 6.25em; }

.error-unassigned-category {
  color: #ff5100; }

.skip {
  position: absolute;
  top: -4.2em;
  left: 0;
  padding: 1em 1.5em;
  overflow: hidden;
  background: #fff;
  transition: all 0.2s ease-in-out; }

a.skip:active,
a.skip:focus,
a.skip:hover {
  top: 0;
  left: 0;
  z-index: 10000000;
  width: auto;
  height: auto;
  background: #fff;
  transition: all 0.2s ease-in-out; }

.card-header-custom {
  margin-bottom: 0;
  font-size: 1.5rem; }

/* Logo as h1 for SEO ajustments */
div.page > .logo {
  position: fixed;
  top: var(--top-header-banner);
  z-index: 9999;
  display: block;
  width: 160px;
  height: 15px;
  margin-top: 14px;
  margin-right: auto;
  margin-left: 14px; }

@media (min-width: 1025px) {
  div.page > div.logo {
    margin-top: 5px;
    margin-left: 56px; } }
  @media (min-width: 1025px) and (min-width: 1440px) {
    div.page > div.logo {
      margin-top: 30px; } }

div.page > div.logo h1 {
  margin: 0;
  font-size: 1rem;
  line-height: 1; }

div.page > div.logo > a#logo {
  display: block;
  width: 160px;
  height: 15px;
  overflow: hidden;
  white-space: nowrap;
  background-image: url("../images/logo.svg");
  background-size: 160px auto;
  opacity: 1;
  filter: alpha(opacity=100);
  transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out; }
  @media (min-width: 1025px) {
    div.page > div.logo > a#logo {
      background-image: url("../images/logo-white.svg");
      background-repeat: no-repeat;
      background-position: 50%;
      background-size: 160px auto; } }
  div.page > div.logo > a#logo:active {
    opacity: 0.5;
    filter: alpha(opacity=50); }

div.page > div.logo img {
  content: url("../images/logo.svg"); }
  @media (min-width: 1025px) {
    div.page > div.logo img {
      content: url("../images/logo-white.svg"); } }

/*
Add a new directory to 7-1 pattern:

ITCSS's "trumps" or "utilities"

This layer beats other layers. This is where utility and helper styles are
defined. It is specificity heavy, can override previous styles and is the
tip of the triangle.

- Only affect one piece of the DOM at a time.
- Usually carry !important.
- Class names usually begin with "u-" namespace
*/
/* Remove button appearance */
.u-btn-clean {
  background-color: inherit;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: transparent; }
  .u-btn-clean--transparent {
    background-color: transparent; }

.u-input-radio-clean__input {
  display: none; }

.u-input-radio-clean__label.u-input-radio-clean__label {
  padding: 0; }

/*
* data-color selectors
*/
[data-color='black'] {
  color: black; }

[data-color='matterhorn'] {
  color: #545454; }

[data-color='green'] {
  color: #00fa32; }

[data-color='red'] {
  color: red; }

[data-color='international-orange'] {
  color: #ff5100; }

[data-color='yellow'] {
  color: yellow; }

[data-color='razzle-dazzle-rose'] {
  color: #ff45e0; }

/*
* data-background-color selectors
*/
[data-background-color='black'] {
  background-color: black; }

[data-background-color='matterhorn'] {
  background-color: #545454; }

[data-background-color='green'] {
  background-color: #00fa32; }

[data-background-color='red'] {
  background-color: red; }

[data-background-color='international-orange'] {
  background-color: #ff5100; }

[data-background-color='yellow'] {
  background-color: yellow; }

[data-background-color='razzle-dazzle-rose'] {
  background-color: #ff45e0; }

[data-background-color='emerald'] {
  background-color: #49d742; }

/*
* data-font-style
*/
[data-font-style='normal'] {
  font-style: normal; }

[data-font-style='italic'] {
  font-style: italic; }

/*
* data-font-weight
*/
[data-font-weight='light'] {
  font-weight: 100; }

[data-font-weight='regular'] {
  font-weight: 400; }

[data-font-weight='medium'] {
  font-weight: 500; }

[data-font-weight='bold'] {
  font-weight: 700; }

[data-font-weight='semibold'] {
  font-weight: 600; }

[data-font-weight='black'] {
  font-weight: 900; }

/*
* data-font-family
*/
[data-font-family='sans-serif'] {
  font-family: "FKGrotesk", "Arial", sans-serif; }

[data-font-family='serif'] {
  font-family: "EBGaramond", georgia, serif; }

/**
 * As header is floating on desktop, this class can be applied to a pop up or
 * a layout.
 * Doing this the layer can be visible, not hidden behind the header
 */
@media (min-width: 1025px) {
  .u-next-to-header {
    margin-top: 92px;
    margin-top: var(--header-total-height); } }

/**
 * This modifier adds to a layer the ability of being visible and adding a fake
 * background to the header
 */
@media (min-width: 1025px) {
  .u-next-to-header--colorize-header {
    margin-top: 0;
    padding-top: 92px;
    padding-top: var(--header-total-height);
    background-image: linear-gradient(180deg, whitesmoke 0, whitesmoke 92px, transparent 92px, transparent);
    background-image: linear-gradient(180deg, whitesmoke 0, whitesmoke var(--header-total-height), transparent var(--header-total-height), transparent); } }

.u-nowrap {
  white-space: nowrap; }

.u-scrollbar-byl {
  /* Internet Explorer */
  scrollbar-face-color: #a8a8a8;
  scrollbar-track-color: transparent;
  /* W3C Working Draft */
  scrollbar-color: #a8a8a8 transparent;
  /* stylelint-disable-line property-no-unknown */ }
  .u-scrollbar-byl::-webkit-scrollbar-thumb {
    background-color: #a8a8a8;
    border-radius: 0; }
  .u-scrollbar-byl::-webkit-scrollbar-track {
    background-color: transparent; }
  .u-scrollbar-byl::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #ebebeb; }

.u-scrollbar-none {
  /* Internet Explorer */
  scrollbar-face-color: transparent;
  scrollbar-track-color: transparent;
  /* W3C Working Draft */
  scrollbar-color: transparent transparent;
  /* stylelint-disable-line property-no-unknown */
  overflow: -moz-scrollbars-none;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none; }
  .u-scrollbar-none::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 0; }
  .u-scrollbar-none::-webkit-scrollbar-track {
    background-color: transparent; }
  .u-scrollbar-none::-webkit-scrollbar {
    width: 0;
    height: 0;
    background-color: #ebebeb; }
  .u-scrollbar-none::-webkit-scrollbar {
    display: none; }

.u-scroll-disabled {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden; }

/*# sourceMappingURL=global.css.map*/