/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.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);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}



:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

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


.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

.visually-hidden{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.overlay-search{background-color:rgba(0,0,0,.5);bottom:0;height:100vh;left:0;position:fixed;right:0;top:0;z-index:30}.overlay-search,.overlay-search.hide{transition:visibility .3s,opacity 1s ease}.overlay-search.hide{opacity:0;visibility:hidden}.hide{display:none}.hide-for-large,.hide-for-medium,.hide-for-x-large,.show-for-small{display:block!important}.hide-for-large-flex,.hide-for-medium-flex,.hide-for-small,.show-for-large,.show-for-medium,.show-for-small-flex,.show-for-x-large{display:none!important}.hide-for-large-inline,.hide-for-medium-inline,.show-for-small-inline{display:inline-block!important}.hide-for-small-inline,.show-for-large-inline,.show-for-medium-inline{display:none!important}@media screen and (min-width:768px){.hide-for-large,.hide-for-small,.hide-for-x-large,.show-for-medium{display:block!important}.hide-for-large-flex,.hide-for-medium,.hide-for-small-flex,.show-for-large,.show-for-medium-flex,.show-for-small,.show-for-x-large{display:none!important}.hide-for-large-inline,.hide-for-small-inline,.show-for-medium-inline{display:inline-block!important}.hide-for-medium-inline,.show-for-large-inline,.show-for-small-inline{display:none!important}}@media screen and (min-width:1024px){.hide-for-medium,.hide-for-small,.show-for-large{display:block!important}.hide-for-medium,.hide-for-small,.show-for-large-flex{display:flex!important}.hide-for-large,.show-for-medium,.show-for-small{display:none!important}.hide-for-medium-inline,.hide-for-small-inline,.show-for-large-inline{display:inline-block!important}.hide-for-large-inline,.show-for-medium-inline,.show-for-small-inline{display:none!important}}@media screen and (min-width:1280px){.hide-for-x-large{display:none!important}.show-for-x-large{display:block!important}}.clearfix:after,.clearfix:before,.group:after,.group:before{content:" ";display:table}.clear,.clearfix:after,.group:after{clear:both}.pull-left{float:left!important}.pull-right{float:right!important}.reset-border{border:none!important}.hidden{display:none!important}.no-styling-list{list-style:none;margin:0;padding:0}.overflow-hidden{overflow:hidden}.body-fixed{height:100vh;position:fixed;width:100vw}.bold{font-weight:700}.relative{position:relative}.text-center{text-align:center}.swiper{-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;align-items:center;box-sizing:border-box;display:flex;position:relative;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swiper .swiper-wrapper.dragging{cursor:pointer;cursor:hand}.swiper .swiper-slide img{display:block}.swiper .swiper-slide.swiper-slide-dragging img{pointer-events:none}.swiper .swiper-slide>div,.swiper .swiper-slide>div>div{height:100%}.swiper .swiper-button-next,.swiper .swiper-button-prev{background-color:transparent;color:#1b1b1b;cursor:pointer;font-size:1.6rem;height:3rem;padding:0;position:absolute;width:3rem;z-index:1}.swiper .swiper-button-next:hover,.swiper .swiper-button-prev:hover{background-color:transparent}.swiper .swiper-button-next:after,.swiper .swiper-button-prev:after{font-size:1.6rem;line-height:1.2}.swiper .swiper-button-prev{left:0}.swiper .swiper-button-next{right:0}.swiper .swiper-pagination{bottom:0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;list-style-type:none;margin:0;padding:1rem 0;position:absolute;right:0}.swiper .swiper-pagination .swiper-pagination-bullet{background-color:rgba(27,27,27,.3);border:0;border-radius:100%;display:block;height:1rem;margin:0 .25rem;opacity:1;padding:0;text-indent:-999rem;width:1rem}.swiper .swiper-pagination .swiper-pagination-bullet-active{background-color:#1b1b1b}.product-images.mobile .swiper-pagination{bottom:0;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;margin:0;padding:1rem 0;position:absolute;right:0}.product-images.mobile .swiper-pagination .swiper-pagination-bullet{background:rgba(27,27,27,.3);border:0;border-radius:100%;display:block;height:1rem;margin:0 .25rem;opacity:1;padding:0;width:1rem}.product-images.mobile .swiper-pagination .swiper-pagination-bullet-active{background:#1b1b1b}.blog-carousel,.content-carousel,.product-carousel{opacity:0;transition:opacity 1s;visibility:hidden}.blog-carousel.swiper-initialized,.content-carousel.swiper-initialized,.product-carousel.swiper-initialized{opacity:1;visibility:visible}.blog-carousel .swiper-slide,.content-carousel .swiper-slide,.product-carousel .swiper-slide{visibility:hidden}.blog-carousel .swiper-slide:first-child,.content-carousel .swiper-slide:first-child,.product-carousel .swiper-slide:first-child{display:block;visibility:hidden}.blog-carousel.swiper-initialized .swiper-slide,.content-carousel.swiper-initialized .swiper-slide,.product-carousel.swiper-initialized .swiper-slide{display:block;visibility:visible!important}.collapsible{border-bottom:.1rem solid #dadada;border-top:.1rem solid #dadada;margin:-.1rem 0}.collapsible-header{cursor:pointer}.collapsible-header>.title{color:#1b1b1b;display:block;font-size:1.8rem;font-weight:700;line-height:1.2;padding:1.5rem 2rem 1.5rem 0;position:relative;text-decoration:none}.collapsible-header>.title:after{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;speak:none;content:"\61";font-family:bodystore-icons!important;font-size:1.6rem;font-style:normal!important;font-variant:normal!important;font-weight:400!important;line-height:1.2;position:absolute;right:0;text-transform:none!important;top:50%;transform:translateY(-50%)}.collapsible-header>.title button{background:transparent;color:transparent;height:2rem;padding:0;position:absolute;right:0;top:50%;transform:translateY(-50%);width:1.6rem;z-index:1}.collapsible-content{font-size:1.6rem;height:0;line-height:1.2;line-height:1.5;overflow:hidden;transition:height .3s ease-in-out}.collapsible-content iframe{border:.1rem solid #dadada;margin-top:2rem}.collapsible:not(.active) .collapsible-content:not(.footer-wrapper-content){display:none}.collapsible.active{border-top-color:#dadada}.collapsible.active>.collapsible-header>.title{font-weight:700}.collapsible.active>.collapsible-header>.title:after{content:"\77"}.collapsible.active>.collapsible-content{height:auto;padding-bottom:1.5rem}.dropdown__container{height:5rem;position:relative}.dropdown{background-color:#fff;border:.1rem solid #1b1b1b;position:relative}.dropdown-header{background-color:#fff;cursor:pointer}.dropdown-header>.title{color:#1b1b1b;display:block;font-size:1.4rem;line-height:1.2;line-height:2.18;margin:0 1.5rem;padding:.55rem 4.4rem .55rem 0;position:relative;text-decoration:none}.dropdown-header>.title:hover{text-decoration:none}.dropdown-header>.title:after{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;speak:none;border-left:.1rem solid #1b1b1b;content:"\70";font-family:bodystore-icons!important;font-size:1.9rem;font-style:normal!important;font-variant:normal!important;font-weight:400!important;line-height:1.58;padding-left:1.3rem;position:absolute;right:0;text-transform:none!important}.dropdown-content{display:none}.dropdown-content>.item{cursor:pointer;margin:0;padding-left:1.5rem;padding-right:1.5rem}.dropdown .dropdown-header>.title:after{border-left:.1rem solid rgba(27,27,27,.2)}.dropdown.active{box-shadow:0 .2rem .6rem 0 rgba(0,0,0,.2);z-index:100}.dropdown.active .dropdown-header>.title{border-bottom:.1rem solid #1b1b1b}.dropdown.active .dropdown-header>.title:after{border-left:.1rem solid #1b1b1b}.dropdown.active .dropdown-content{background-color:#fff;display:block;padding:1.1rem 0 2.3rem;position:relative;z-index:1}.dropdown.active .dropdown-content>.item{margin:0;padding-left:1.5rem;padding-right:1.5rem}@media screen and (min-width:1024px){.dropdown__container{height:6rem}.dropdown-header>.title{font-size:2.1rem;line-height:1.2;padding:1.55rem 5rem 1.55rem 0}.dropdown-header>.title:after{font-size:2.8rem;line-height:1.38;top:.9rem}}.tabs-header{-webkit-overflow-scrolling:touch;border-bottom:.1rem solid hsla(0,0%,85%,.5);display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;left:50%;margin:1rem -50vw;overflow:auto;position:relative;right:50%;scrollbar-width:none;width:100vw}.tabs-header::-webkit-scrollbar{display:none}.tabs-header>.item{color:#dadada;cursor:pointer;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;font-size:1.5rem;line-height:1.2;padding:0 2rem}.tabs-header>.item.active{color:#1b1b1b;font-weight:700}.tabs-header>.item>.rectangle{display:none}.tabs-header>.item.active>.rectangle{background-color:#1b1b1b;display:block;height:.4rem;margin-top:1rem;width:100%}.tabs-content>.item{display:none}.tabs-content>.item.active{display:block}@media screen and (min-width:1024px){.tabs-header{left:0;margin:0;right:0;width:100%}.tabs-header>.item{font-size:2.1rem;line-height:1.2;margin-right:3.5rem;padding:0}}.promotions{position:absolute}.promotions .promotion{background-color:#1b1b1b;color:#fff;display:block;font-size:1rem;font-weight:700;line-height:1.2;min-width:6.5rem;padding:.3rem .5rem;text-align:center;text-transform:uppercase}.promotions .promotion:after{border:.5rem solid transparent;border-bottom:0;border-left:0;border-top-color:#1b1b1b;bottom:0;content:"";height:0;left:0;margin-bottom:-.5rem;position:absolute;width:0}.promotions-wrapper{position:absolute;z-index:99}.promotions-right .promotion{background-color:#1b1b1b;color:#fff;display:block;font-size:1rem;font-weight:700;line-height:1.2;min-width:6.5rem;padding:.3rem .5rem;text-align:center;text-transform:uppercase}.promotions-right .promotion:after{border:.5rem solid transparent;border-bottom:0;border-right:0;border-top-color:#1b1b1b;bottom:.1rem;content:"";height:0;margin-bottom:-.5rem;position:absolute;right:0;width:0}@media screen and (min-width:1024px){.promotions .promotion{font-size:2.4rem;line-height:1.2;min-width:14.3rem;padding:.3rem .7rem}.promotions .promotion:after{border-top-color:#1b1b1b;border-width:1rem;margin-bottom:-1rem}}.product{border-top:.1rem solid #dadada;margin-bottom:1rem}.product-item{height:100%}.product-tile{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-flow:wrap;-moz-flex-flow:wrap;-ms-flex-flow:wrap;flex-flow:wrap;padding:0 0 1rem}.product-tile,.product-tile-image__container{-ms-flex-pack:center;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center}.product-tile-image__container{background-color:#fff;text-align:center;width:100%}.product-tile-image{max-height:26rem;text-indent:-9999px}.product-tile-CTA,.product-tile-description{padding-top:1rem}.product-tile-description{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:column nowrap;-moz-flex-flow:column nowrap;-ms-flex-flow:column nowrap;flex-flow:column nowrap;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;margin:0 .5rem 0 1rem;width:100%}.product-tile-description .promotion-wrapper{margin-bottom:.2rem}.product-tile-description .promotions-right{border-right:.1rem solid rgba(0,0,0,.2);display:inline-block}.product-tile-description .promotions-right:last-child{border-right:0}.product-tile-description .promotions-right:last-child .promotion:not(.sale){margin-left:.3rem}.product-tile-description .promotions-right .promotion{background:none;color:#1b1b1b;display:inline;font-size:1.2rem;font-weight:400;line-height:1.2;margin-right:0;min-width:auto;padding:0 .4rem 0 0!important;text-align:left;text-transform:none}.product-tile-description .promotions-right .promotion.sale{color:#1b1b1b}.product-tile .link{text-decoration:none}.product-tile-name{color:#1b1b1b;font-size:1.6rem;font-weight:700;letter-spacing:-.02rem;line-height:1.2;margin:0;text-align:center}.product-tile-brand{color:#1b1b1b;display:inline-block;font-size:1.2rem;line-height:1.2;margin-top:1rem;text-decoration:none}.product-tile-rating{margin-top:.3rem}.product-tile-CTA{-ms-flex-pack:space-between;-ms-flex-align:flex-end;-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end;-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;min-width:9rem;position:relative}.product-tile-CTA,.product-tile-CTA .price{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:column nowrap;-moz-flex-flow:column nowrap;-ms-flex-flow:column nowrap;flex-flow:column nowrap}.product-tile-CTA .price{align-items:baseline;text-align:right;white-space:nowrap}.product-tile-CTA .price .price-adjusted{color:#1b1b1b;font-size:2.2rem;font-weight:400;line-height:1.2;line-height:1}.product-tile-CTA .price .price-non-adjusted{color:#dadada;font-size:1.2rem;line-height:1.2;line-height:.6;text-decoration:line-through;width:100%}.product-tile-CTA .price .price-sales{font-size:2.2rem;font-weight:400;line-height:1.2}.product-tile-CTA .product-tile-buy{padding:.8rem 1.9rem;text-decoration:none}.product-tile-CTA .product-tile-buy:hover{color:#1b1b1b}.portrait-view .product-recommendation-grid .product-tile,.portrait-view .swiper .product-tile{border:0;padding-left:0}.portrait-view .product-recommendation-grid .promotion-wrapper,.portrait-view .swiper .promotion-wrapper{left:0}.promotion *{color:inherit;font-family:inherit;font-size:inherit;margin:0;padding:0}.promotion-wrapper .promotion{display:block!important;padding-left:1rem!important;padding-right:1rem!important;width:100%}@media screen and (max-width:768px){.card-view .product-tile,.carousel-inner.swiper .product-tile{-webkit-flex-flow:column;-moz-flex-flow:column;-ms-flex-flow:column;flex-flow:column;height:100%}.card-view .product-tile-image,.carousel-inner.swiper .product-tile-image{aspect-ratio:1/1;height:auto;width:100%}.card-view .product-tile-image__container,.carousel-inner.swiper .product-tile-image__container{padding-top:4.5rem;position:relative;width:100%}.card-view .product-tile-image__container-item,.carousel-inner.swiper .product-tile-image__container-item{aspect-ratio:1/1;height:auto;width:100%}.card-view .product-tile-num-of-variants-wrapper,.carousel-inner.swiper .product-tile-num-of-variants-wrapper{display:inline-block}.card-view .product-tile-num-of-variants-wrapper-mobile,.carousel-inner.swiper .product-tile-num-of-variants-wrapper-mobile{display:none!important}.card-view .product-tile-description,.carousel-inner.swiper .product-tile-description{margin:0;position:static}.card-view .product-tile-description .gmf-rating-stars,.card-view .product-tile-description .product-tile-rating,.carousel-inner.swiper .product-tile-description .gmf-rating-stars,.carousel-inner.swiper .product-tile-description .product-tile-rating{max-width:8rem;order:-1}.card-view .product-tile-top-rating-variant,.carousel-inner.swiper .product-tile-top-rating-variant{-ms-flex-align:flex-start;-ms-flex-pack:space-between;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;margin:.5rem 0;order:-1}.card-view .product-tile-CTA,.carousel-inner.swiper .product-tile-CTA{-ms-flex-align:flex-start;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start;-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;padding-top:2.5rem}.card-view .product-tile .price-ref,.carousel-inner.swiper .product-tile .price-ref{-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;margin-bottom:0;text-align:left}.card-view .product-tile .price-ref .price-ref__stmt,.card-view .product-tile .price-ref .price-ref__stmt-container,.carousel-inner.swiper .product-tile .price-ref .price-ref__stmt,.carousel-inner.swiper .product-tile .price-ref .price-ref__stmt-container{width:100%}.card-view .product-tile .price-ref-wrapper,.carousel-inner.swiper .product-tile .price-ref-wrapper{margin-top:1rem;min-height:3rem;order:1;width:100%}.card-view .product-tile-promotions-right,.carousel-inner.swiper .product-tile-promotions-right{left:0;position:absolute;top:0}.card-view .product-tile-promotions-right .promotions-right,.carousel-inner.swiper .product-tile-promotions-right .promotions-right{-ms-flex-align:stretch;-webkit-align-items:stretch;-moz-align-items:stretch;-ms-align-items:stretch;align-items:stretch;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:column;-moz-flex-flow:column;-ms-flex-flow:column;flex-flow:column}.card-view .product-tile-promotions-right .promotion.sale,.carousel-inner.swiper .product-tile-promotions-right .promotion.sale{min-width:7.7rem}.carousel-inner.swiper .product-tile-image__container{padding-top:6.5rem}.carousel-inner.swiper .product-tile-promotions-right{left:1rem;top:2rem}}@media screen and (min-width:1024px){.product{border:none;margin-bottom:2rem}.promotion-wrapper{left:2rem;position:absolute;top:0;z-index:5}.product-tile{border-bottom:.1rem solid #dadada;-webkit-flex-flow:column nowrap;-moz-flex-flow:column nowrap;-ms-flex-flow:column nowrap;flex-flow:column nowrap;height:100%;padding:0 0 2rem 2rem;position:relative}.product-tile-promotions-right{margin-bottom:0}.product-tile-promotions-right .promotions-right{z-index:5}.product-tile-promotions-right .promotions-right.promotions-sale{top:2.5rem}.product-tile-promotions-right .promotion{font-size:1.1rem;line-height:1.2;margin:0;min-width:7.7rem;padding:.35rem}.product-tile-promotions-right .promotion.sale{background:#1b1b1b;color:#fff}.product-tile-promotions-right .promotion.sale:after{border-top-color:#1b1b1b;z-index:99}.product-tile-promotions-right .promotion.custom{background:#1b1b1b;color:#fff}.product-tile-promotions-right .promotion.custom:after{border-top-color:#1b1b1b;z-index:99}.product-tile-promotions-right .promotion.new{background:#1b1b1b;color:#1b1b1b;margin-left:0}.product-tile-promotions-right .promotion.new:after{border-top-color:#1b1b1b;z-index:99}.product-tile-promotions-right .promotion:last-child{border:none}.product-tile-rating{height:1.4rem;order:-1}.product-tile-image__container{height:0;padding-bottom:100%;width:100%}.product-tile-image{aspect-ratio:1/1;display:block;height:auto;width:100%}.product-tile-CTA,.product-tile-description{padding-top:0}.product-tile-description{margin:.3rem 0 0}.product-tile-description-top{-ms-flex-pack:center;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center}.product-tile-description-bottom{display:block}.product-tile-name{letter-spacing:-.05rem;line-height:1.31}.product-tile-brand{font-size:1.4rem;line-height:1.2;margin-top:.8rem}.product-tile-CTA{-ms-flex-align:end;-webkit-align-items:end;-moz-align-items:end;-ms-align-items:end;align-items:end;-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-top:.6rem}.product-tile-CTA .price{text-align:left}.product-tile-CTA .price .price-adjusted{color:#1b1b1b;font-size:2.6rem;line-height:1.2;line-height:1}.product-tile-CTA .price .price-non-adjusted{font-size:1.4rem;line-height:1.2;line-height:.6;width:100%}.product-tile-CTA .price .price-sales{font-size:2.6rem;line-height:1.2}.product-tile-CTA .product-tile-buy{font-size:1.4rem;line-height:1.2;padding:.9rem 3rem}}@supports (-ms-ime-align:auto){.product-tile-image__container{height:auto;padding-bottom:0}}.product-recommendation{margin:7rem 0 0}.product-recommendation-calloutmsg{font-size:2.4rem;font-weight:700;line-height:1.2;padding:1.2rem 0 2.2rem}.product-recommendation .product:first-child{border-top:none}@media screen and (max-width:768px){.product-recommendation-grid.card-view{display:grid;grid-template-columns:repeat(2,1fr)}.product-recommendation-grid.card-view .product{border:none;border-bottom:.1rem solid #e4e4e7;padding-top:2rem}.product-recommendation-grid.card-view .product:nth-child(odd){border-right:.1rem solid #e4e4e7;padding-right:1rem}.product-recommendation-grid.card-view .product:nth-child(2n+2){padding-left:1rem}.product-recommendation-grid.card-view .product:last-child.odd{display:none}.portrait-view .product-recommendation-grid{display:grid;grid-template-columns:repeat(2,1fr)}.portrait-view .product-recommendation-grid .product{border:none;padding-top:2rem}.portrait-view .product-recommendation-grid .product:nth-child(odd){padding-right:1rem}.portrait-view .product-recommendation-grid .product:nth-child(2n+2){padding-left:1rem}.portrait-view .product-recommendation-grid .product:last-child.odd{display:none}}@media screen and (min-width:1024px){.product-recommendation-grid{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;margin:0 -1rem}.product-recommendation-grid .product{padding:0 1rem;width:20%}}.newsletter-description .promotions .promotion:after{border-top-color:#1b1b1b}.newsletter-container{background-color:#1b1b1b}.newsletter-container .newsletter-message{background-color:#1b1b1b;font-size:1.4rem;line-height:1.2;padding:.5rem 0}.newsletter-container .newsletter-error-message,.newsletter-container .newsletter-success-message{background-color:#1b1b1b;color:#1b1b1b}.newsletter-container .newsletter{padding-bottom:1rem;padding-top:1.8rem}.newsletter-container .newsletter-bottom{-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.newsletter-container .newsletter-bottom,.newsletter-container .newsletter-description{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.newsletter-container .newsletter-description{-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.newsletter-container .newsletter-description .promotions{position:relative}.newsletter-container .newsletter-description-icon{color:#fff000;font-size:3rem;height:3rem}.newsletter-container .newsletter-description-title{color:#fff;font-size:1.8rem;font-weight:700;line-height:1.2;margin-left:1rem}.newsletter-container .newsletter-description-title .newsletter-description-title-mobile-hidden{display:none}.newsletter-container .newsletter-description-text{color:#fff;font-size:1.6rem;line-height:1.2;margin-top:2.5rem}.newsletter-container .newsletter-form{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:row nowrap;-moz-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;margin-top:2.3rem;width:100%}.newsletter-container .newsletter-form-input-container{margin-right:1rem}.newsletter-container .newsletter-form-input-container label{color:#fff;display:block;font-size:1.4rem;line-height:1.2;margin:1.5rem}.newsletter-container .newsletter-form-input-container label:before{background:#fff;height:1.7rem;width:1.7rem}.newsletter-container .newsletter-form-input-container .form-control-checkbox-title{padding-left:3.3rem}.newsletter-container .newsletter-form-input-container a{color:#fff;font-size:1.4rem;line-height:1.2;text-decoration-color:#fff}.newsletter-container .newsletter-form-input-container input[type=checkbox]:checked+.form-control-label:before{background:#fff}.newsletter-container .newsletter-form-input-container input[type=checkbox]:checked+.form-control-label .checkbox-icon{color:#1b1b1b;left:.3rem;top:.3rem}.newsletter-container .newsletter-form-input{background-color:#fff;height:4rem;padding:0 1.3rem}.newsletter-container .newsletter-form-subscribe{-webkit-box-flex:1 1 30%;-moz-box-flex:1 1 30%;-webkit-flex:1 1 30%;-ms-flex:1 1 30%;flex:1 1 30%;height:4rem;min-width:10.6rem}.footer-wrapper-content-li{font-size:1.4rem;line-height:1.2;line-height:2}.footer-wrapper-content-link{text-underline-position:auto}.footer-wrapper-content-link,.footer-wrapper-content-link:active,.footer-wrapper-content-link:focus,.footer-wrapper-content-link:hover{color:#fff;text-decoration-color:#fff}.footer-wrapper-collapsible .footer-wrapper-title .title{color:#fff;cursor:pointer;font-weight:700}.footer-wrapper-collapsible.active .footer-wrapper-title .title{font-weight:700}footer .footer-cards-img,footer .footer-flags-img,footer .footer-logo-img,footer .footer-social-media-img{height:auto;object-position:initial;position:static;width:auto}footer .footer-wrapper{border:none;border-bottom:.1rem solid #4b4265;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;padding:1.8rem 0}footer .footer-wrapper__padd-bot-0{padding-bottom:0;padding-top:0}footer .footer-wrapper.border-top{border-top:.1rem solid #4b4265}footer .footer-wrapper:last-of-type{border-bottom:none}footer .footer-wrapper .footer-copyright{font-size:1.2rem;line-height:1.2;text-align:center}footer .footer-wrapper .footer-wrapper-section{width:100%}footer .footer-wrapper.no-padd{padding:0}footer .footer-wrapper-collapsible{-webkit-box-flex:1 1 100%;-moz-box-flex:1 1 100%;border:none;border-bottom:.1rem solid hsla(0,0%,100%,.1);-webkit-flex:1 1 100%;-ms-flex:1 1 100%;flex:1 1 100%;margin-left:-.3rem}footer .footer-wrapper-collapsible:last-of-type{border-bottom:none}footer .footer-wrapper-collapsible>div{padding-left:.3rem}footer .footer-wrapper-collapsible:not(.active) .footer-wrapper-content{display:none}footer .footer-wrapper.footer-cards{-ms-flex-pack:center;-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center}footer .footer-wrapper .footer-cards-img{max-height:3.5rem;position:static;vertical-align:middle}footer .footer-wrapper .footer-cards-link{margin:0 1.2rem 1.2rem 0}footer .footer-wrapper .footer-cards-link:last-of-type{margin-right:0}footer .footer-wrapper__flags{-ms-flex-align:baseline;-webkit-align-items:baseline;-moz-align-items:baseline;-ms-align-items:baseline;align-items:baseline;border-bottom:none;padding-bottom:0}footer .footer-wrapper__flags,footer .footer-wrapper__flags .footer-copyright{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}footer .footer-wrapper__flags .footer-copyright{-webkit-box-flex:0 0 100%;-moz-box-flex:0 0 100%;-ms-flex-pack:flex-start;color:#fff;-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%;font-size:1.1rem;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start;line-height:1.2;padding-top:1.8rem}.footer-social-media{-ms-flex-pack:center;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;width:100%}.footer-social-media,.footer-social-media .footer-social-media__box{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.footer-social-media .footer-social-media__box{-ms-flex-align:flex-end;-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end}.footer-social-media .footer-social-media__box.social-items{margin-left:auto}.footer-social-media .footer-social-media__box.footer-social-media__box-logo{-ms-flex-align:flex-start;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start}.footer-social-media .footer-social-media__box.footer-social-media__box-logo .footer-logo-img{height:5rem;margin-left:0;width:7.5rem}.footer-social-media .footer-social-media__box-span{color:hsla(0,0%,100%,.6);display:inline-block;font-size:1.4rem;line-height:1.2;line-height:1.71;margin-right:1.6rem;position:relative;top:-.4rem}.footer-social-media .footer-social-media__box .footer-social-media-link{color:#dadada;display:inline-block;font-size:2.4rem;height:auto;text-decoration:none}.footer-wrapper__flags .footer-flags{-webkit-box-flex:0 0 100%;-moz-box-flex:0 0 100%;border-bottom:.1rem solid hsla(0,0%,100%,.1);-webkit-flex:0 0 100%;-ms-flex:0 0 100%;flex:0 0 100%}.footer-wrapper__flags .footer-flags-link{display:inline-block;margin-right:2rem;padding-bottom:1.8rem}.footer-wrapper__flags .footer-flags-link.active{border-bottom:.3rem solid #fff}.footer-wrapper__flags .footer-flags-link:last-of-type{margin-right:0}.footer-wrapper__flags .footer-flags-img{height:2rem}.footer{background-color:#010039;color:#fff;padding-bottom:1.8rem;padding-top:0}@media screen and (min-width:1024px){.newsletter-container .newsletter-message{font-size:1.6rem;line-height:1.2;margin-left:42%;width:58%}.newsletter-container .newsletter{padding-bottom:4.1rem;padding-top:3.1rem}.newsletter-container .newsletter-description{flex-basis:39%}.newsletter-container .newsletter-description-title{font-size:2.1rem;line-height:1.2}.newsletter-container .newsletter-description-title .newsletter-description-title-mobile-hidden{display:inline}.newsletter-container .newsletter-description-text{-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;font-size:1.8rem;height:6rem;line-height:1.2;margin-top:0;padding-right:5rem;width:42%}.newsletter-container .newsletter-bottom{-webkit-align-content:flex-end;-moz-align-content:flex-end;-ms-align-content:flex-end;align-content:flex-end;-webkit-flex-flow:row nowrap;-moz-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;margin-top:1.8rem;width:100%}.newsletter-container .newsletter-bottom,.newsletter-container .newsletter-form{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.newsletter-container .newsletter-form{-ms-flex-align:flex-start;-webkit-align-items:flex-start;-moz-align-items:flex-start;-ms-align-items:flex-start;align-items:flex-start;margin:0;width:58%}.newsletter-container .newsletter-form-input-container{margin-right:1.5rem;max-width:41rem;width:100%}.newsletter-container .newsletter-form-input{height:6rem}.newsletter-container .newsletter-form-subscribe{height:6rem;max-width:30.4rem;padding:0}.footer-wrapper-collapsible .footer-wrapper-content.height-auto-lg{height:auto;padding-bottom:0;padding-right:2rem}.footer-wrapper-title{padding-right:2rem}.footer-wrapper-content-li{line-height:1.9}.footer-wrapper-content-link{color:#fff}.footer-wrapper-collapsible .footer-wrapper-title .title{cursor:default;font-size:1.8rem;font-weight:700;line-height:1.2;padding-right:0}.footer-wrapper-collapsible .footer-wrapper-title .title:after{display:none}.footer{padding-bottom:0;padding-top:0}.footer .footer-wrapper{-ms-flex-pack:center;-webkit-flex-flow:row wrap;-moz-flex-flow:row wrap;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-justify-content:center;-moz-justify-content:center;-ms-justify-content:center;justify-content:center;padding-top:1.8rem}.footer .footer-wrapper.footer-cards{-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-justify-content:flex-start;-ms-justify-content:flex-start;justify-content:flex-start}.footer .footer-wrapper.footer-cards-link{margin:0 1.2rem 0 0}.footer .footer-wrapper.footer-cards-link:last-of-type{margin-right:0}.footer .footer-wrapper-collapsible{-webkit-box-flex:0 0 25%;-moz-box-flex:0 0 25%;border-bottom:none;-webkit-flex:0 0 25%;-ms-flex:0 0 25%;flex:0 0 25%;-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;max-width:23rem;padding-bottom:1.8rem}.footer .footer-wrapper-collapsible.footer-wrapper-second{max-width:19rem}.footer .footer-wrapper-collapsible.footer-wrapper-third{max-width:17rem}.footer .footer-wrapper-collapsible:last-of-type{margin-right:0}.footer .footer-wrapper-collapsible:not(.active) .footer-wrapper-content{display:block}.footer-social-media .footer-social-media__box.footer-social-media__box-logo{-ms-flex-align:flex-end;-webkit-align-items:flex-end;-moz-align-items:flex-end;-ms-align-items:flex-end;align-items:flex-end;margin-left:auto}.footer-social-media .footer-social-media__box.footer-social-media__box-logo .footer-logo-img{height:8.5rem;margin-left:6.5rem;width:12.5rem}.footer-wrapper.footer-wrapper__flags{border-bottom:.1rem solid hsla(0,0%,100%,.1);padding-bottom:0}.footer-wrapper.footer-wrapper__flags .footer-flags{-webkit-box-flex:0 0 50%;-moz-box-flex:0 0 50%;border-bottom:none;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%}.footer-wrapper.footer-wrapper__flags .footer-copyright{-webkit-box-flex:0 0 50%;-moz-box-flex:0 0 50%;-ms-flex-pack:flex-end;color:hsla(0,0%,100%,.6);display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex:0 0 50%;-ms-flex:0 0 50%;flex:0 0 50%;font-size:1.2rem;-webkit-justify-content:flex-end;-moz-justify-content:flex-end;-ms-justify-content:flex-end;justify-content:flex-end;line-height:1.2;padding:0}}@media screen and (min-width:1024px) and (max-width:1279px){.newsletter-container .newsletter-form-subscribe{flex:0 0 20rem}}.static-page{margin:2rem 0}.static-page-body-container,.static-page-menu-container{width:100%}.static-page-body-container{margin-top:3rem}.static-page-menu-content{padding:0}.static-page-menu-content-item{display:block;padding:1rem 0;text-decoration:none}@media screen and (min-width:1024px){.static-page{margin:6rem 0 10rem}.static-page-wrapper{-ms-flex-pack:space-between;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;padding:0 9rem}.static-page-menu-container{-webkit-box-flex:0 0 20%;-moz-box-flex:0 0 20%;-webkit-flex:0 0 20%;-ms-flex:0 0 20%;flex:0 0 20%;padding:0}.static-page-body-container{-webkit-box-flex:0 0 70%;-moz-box-flex:0 0 70%;-webkit-flex:0 0 70%;-ms-flex:0 0 70%;flex:0 0 70%;margin:0;max-width:70%}.static-page-body-container .wrapper{padding:0}.static-page-menu-item-content{list-style:none;margin:0;padding:0}.static-page-menu-sub-item{border-top:.1rem solid rgba(27,27,27,.1);padding:2rem 0}.static-page-menu-sub-item.active{border-color:#1b1b1b;font-weight:700}.static-page-menu-link{text-decoration:none}}.dynamic-message-banner{background-color:#dadada;position:relative}.dynamic-message-banner .content-wrapper{color:#dadada;font-size:1.6rem;font-weight:400;margin:0 auto;max-width:70%;padding:1.05rem 1.2rem;text-align:center}.dynamic-message-banner .content-wrapper a,.dynamic-message-banner .content-wrapper p{font-size:1.6rem;line-height:1.31;margin:0}.dynamic-message-banner.hide{display:none}.dynamic-message-banner .close-banner-icon{background-color:transparent;cursor:pointer;height:2.1rem;padding:0;position:absolute;right:1.2rem;top:50%;transform:translateY(-50%)}.dynamic-message-banner .icon-close{color:#1b1b1b;font-size:2.1rem}@media screen and (min-width:768px){.dynamic-message-banner .content-wrapper{font-size:1.8rem;line-height:1.33;max-width:100%;padding:1.6rem 10rem;text-align:center}.dynamic-message-banner .content-wrapper a,.dynamic-message-banner .content-wrapper p{font-size:1.8rem;line-height:1.33}.dynamic-message-banner .close-banner-icon{right:1.6rem}}div.cookie-details-wrapper,div.cookie-integrity-wrapper,div.cookie-policy-wrapper{background-color:#f2f2f2}.cookie-banner-overlay{background:transparent;height:100%;left:0;position:fixed;top:0;width:100%;z-index:101}.cookie-banner-overlay.hide{display:none}.homepage~.cookie-banner-overlay{background:rgba(27,27,27,.5)}.cookie-message-banner{background-color:#dadada;bottom:0;color:#1b1b1b;max-height:66vh;overflow-y:scroll;padding:0 1.2rem;position:fixed;width:100%;z-index:101}.cookie-message-banner .content-wrapper{-ms-flex-pack:space-between;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:column nowrap;-moz-flex-flow:column nowrap;-ms-flex-flow:column nowrap;flex-flow:column nowrap;-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;position:relative}.cookie-message-banner .message-banner{font-size:1.6rem;line-height:1.2;line-height:1.33;padding:1rem}.cookie-message-banner .message-banner-row{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:column-reverse nowrap;-moz-flex-flow:column-reverse nowrap;-ms-flex-flow:column-reverse nowrap;flex-flow:column-reverse nowrap}.cookie-message-banner .message-banner-row.align-center{text-align:center}.cookie-message-banner .message-banner-column{padding:1rem 0}.cookie-message-banner .message-banner-column.col-four,.cookie-message-banner .message-banner-column.col-six,.cookie-message-banner .message-banner-column.col-ten,.cookie-message-banner .message-banner-column.col-two{width:100%}.cookie-message-banner .message-banner .save-cookie-button,.cookie-message-banner .message-banner .save-necessary-cookie-button{padding:2.5rem 1rem;width:100%}.cookie-message-banner .message-banner .save-necessary-cookie-button{background:transparent;border:.1rem solid #1b1b1b;color:#1b1b1b}.cookie-message-banner a,.cookie-message-banner p{color:#1b1b1b;font-size:1.4rem;line-height:1.2;line-height:1.33;margin:0}.cookie-message-banner p+p{margin-top:1rem}.cookie-message-banner a{text-decoration:underline;text-decoration-color:#1b1b1b}.cookie-message-banner a[data-view-cookie-details]{display:inline-block;padding:1rem}.cookie-message-banner h2{font-size:2.2rem;line-height:1.2}.cookie-message-banner h3{margin:0}.cookie-message-banner img{max-width:100%}.cookie-message-banner.hide{display:none}.cookie-message-banner .close-banner-icon{-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center;cursor:pointer;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:row nowrap;-moz-flex-flow:row nowrap;-ms-flex-flow:row nowrap;flex-flow:row nowrap;margin:0 auto 2rem}.cookie-message-banner .close-icon-text{font-size:1.6rem;line-height:1.2;margin:0}.cookie-message-banner .icon-close{font-size:1.6rem;height:1.6rem;padding-left:1rem}.cookie-details-wrapper,.cookie-integrity-wrapper,.cookie-policy-wrapper{background-color:#dadada;bottom:0;color:#1b1b1b;max-height:66vh;overflow-y:scroll;padding:0 1.2rem;position:fixed;width:100%;z-index:102}.cookie-details-wrapper.hide,.cookie-integrity-wrapper.hide,.cookie-policy-wrapper.hide{display:none}.cookie-details-wrapper .collapsible-header>.title,.cookie-details-wrapper .form-group .form-control-checkbox-title,.cookie-integrity-wrapper .collapsible-header>.title,.cookie-integrity-wrapper .form-group .form-control-checkbox-title,.cookie-policy-wrapper .collapsible-header>.title,.cookie-policy-wrapper .form-group .form-control-checkbox-title{margin:0}.cookie-details-wrapper input[type=checkbox]+.form-control-label,.cookie-integrity-wrapper input[type=checkbox]+.form-control-label,.cookie-policy-wrapper input[type=checkbox]+.form-control-label{width:calc(100% + 2rem);z-index:1}.cookie-details-wrapper input[type=checkbox]:disabled+.form-control-label,.cookie-integrity-wrapper input[type=checkbox]:disabled+.form-control-label,.cookie-policy-wrapper input[type=checkbox]:disabled+.form-control-label{cursor:pointer;pointer-events:auto}.cookie-details-wrapper input[type=checkbox]:disabled+.form-control-label:before,.cookie-integrity-wrapper input[type=checkbox]:disabled+.form-control-label:before,.cookie-policy-wrapper input[type=checkbox]:disabled+.form-control-label:before{border:.1rem solid #dadada;opacity:1}.cookie-details-wrapper .banner-details-buttons,.cookie-integrity-wrapper .banner-details-buttons,.cookie-policy-wrapper .banner-details-buttons{margin-bottom:3rem}.cookie-details-wrapper .banner-details-buttons button,.cookie-integrity-wrapper .banner-details-buttons button,.cookie-policy-wrapper .banner-details-buttons button{margin-right:1rem;padding:1rem 2rem}.cookie-details-wrapper .banner-details-buttons-save,.cookie-integrity-wrapper .banner-details-buttons-save,.cookie-policy-wrapper .banner-details-buttons-save{margin-top:2rem}.cookie-details-wrapper .banner-details-buttons-save button,.cookie-integrity-wrapper .banner-details-buttons-save button,.cookie-policy-wrapper .banner-details-buttons-save button{padding:1rem 2rem;width:100%}.cookie-details-wrapper .close-banner-icon,.cookie-integrity-wrapper .close-banner-icon,.cookie-policy-wrapper .close-banner-icon{background-color:transparent;color:#fff;cursor:pointer;height:2.1rem;padding:0;position:absolute;right:2rem;top:2.5rem}.cookie-details-wrapper .close-banner-icon .icon-close:before,.cookie-integrity-wrapper .close-banner-icon .icon-close:before,.cookie-policy-wrapper .close-banner-icon .icon-close:before{font-weight:700!important}.cookie-details-wrapper .content-wrapper,.cookie-integrity-wrapper .content-wrapper,.cookie-policy-wrapper .content-wrapper{-ms-flex-pack:space-between;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:column nowrap;-moz-flex-flow:column nowrap;-ms-flex-flow:column nowrap;flex-flow:column nowrap;-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between;position:relative}.cookie-details-wrapper .accordion .collapsible:nth-child(2),.cookie-integrity-wrapper .accordion .collapsible:nth-child(2),.cookie-policy-wrapper .accordion .collapsible:nth-child(2){border-top:0}.cookie-details-wrapper .accordion .collapsible:nth-child(5),.cookie-integrity-wrapper .accordion .collapsible:nth-child(5),.cookie-policy-wrapper .accordion .collapsible:nth-child(5){border-bottom:0}.cookie-details-wrapper .message-banner,.cookie-integrity-wrapper .message-banner,.cookie-policy-wrapper .message-banner{font-size:1.6rem;line-height:1.2;line-height:1.33;padding:1rem}.cookie-details-wrapper .message-banner-row,.cookie-integrity-wrapper .message-banner-row,.cookie-policy-wrapper .message-banner-row{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:column-reverse nowrap;-moz-flex-flow:column-reverse nowrap;-ms-flex-flow:column-reverse nowrap;flex-flow:column-reverse nowrap}.cookie-details-wrapper .message-banner-row.align-center,.cookie-integrity-wrapper .message-banner-row.align-center,.cookie-policy-wrapper .message-banner-row.align-center{text-align:center}.cookie-details-wrapper .message-banner-column,.cookie-integrity-wrapper .message-banner-column,.cookie-policy-wrapper .message-banner-column{padding:1rem 0}.cookie-details-wrapper .message-banner-column.col-four,.cookie-details-wrapper .message-banner-column.col-six,.cookie-details-wrapper .message-banner-column.col-ten,.cookie-details-wrapper .message-banner-column.col-two,.cookie-integrity-wrapper .message-banner-column.col-four,.cookie-integrity-wrapper .message-banner-column.col-six,.cookie-integrity-wrapper .message-banner-column.col-ten,.cookie-integrity-wrapper .message-banner-column.col-two,.cookie-policy-wrapper .message-banner-column.col-four,.cookie-policy-wrapper .message-banner-column.col-six,.cookie-policy-wrapper .message-banner-column.col-ten,.cookie-policy-wrapper .message-banner-column.col-two{width:100%}.cookie-details-wrapper .message-banner-column.accordion,.cookie-integrity-wrapper .message-banner-column.accordion,.cookie-policy-wrapper .message-banner-column.accordion{margin-top:2rem}.cookie-details-wrapper a,.cookie-details-wrapper p,.cookie-integrity-wrapper a,.cookie-integrity-wrapper p,.cookie-policy-wrapper a,.cookie-policy-wrapper p{color:#1b1b1b;font-size:1.4rem;line-height:1.2;line-height:1.33;margin:0}.cookie-details-wrapper a,.cookie-integrity-wrapper a,.cookie-policy-wrapper a{text-decoration:underline;text-decoration-color:#1b1b1b}.cookie-details-wrapper a[data-view-cookie-details],.cookie-integrity-wrapper a[data-view-cookie-details],.cookie-policy-wrapper a[data-view-cookie-details]{display:inline-block;padding:1rem}.cookie-details-wrapper h2,.cookie-integrity-wrapper h2,.cookie-policy-wrapper h2{font-size:2.2rem;line-height:1.2;padding-bottom:1.5rem}.cookie-details-wrapper h3,.cookie-integrity-wrapper h3,.cookie-policy-wrapper h3{margin:0}.cookie-details-wrapper img,.cookie-integrity-wrapper img,.cookie-policy-wrapper img{max-width:100%}.cookie-integrity-wrapper p,.cookie-policy-wrapper p{margin-bottom:1rem}.cookie-integrity-wrapper h3,.cookie-policy-wrapper h3{margin:0 0 1rem}@media screen and (min-width:1024px){.cookie-message-banner{max-height:70vh}.cookie-message-banner .message-banner{font-size:1.8rem;line-height:1.2;padding:2rem 21rem 2rem 2rem}.cookie-message-banner .message-banner-row{-ms-flex-pack:space-between;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:row;-moz-flex-flow:row;-ms-flex-flow:row;flex-flow:row;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between}.cookie-message-banner .message-banner-row.align-center{-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.cookie-message-banner .message-banner-column{margin:0 -2rem;padding:2rem}.cookie-message-banner .message-banner-column.col-two{width:20%}.cookie-message-banner .message-banner-column.col-four{width:32%}.cookie-message-banner .message-banner-column.col-six{width:50%}.cookie-message-banner .message-banner-column.col-ten{width:80%}.cookie-message-banner .message-banner-column.buttons{margin:0;padding:2rem 0}.cookie-message-banner .save-cookie-button{margin-top:0}.cookie-message-banner h2{border-bottom:.1rem solid #dadada;font-size:3rem;line-height:1.2;padding-bottom:4rem}.cookie-message-banner h3{margin:3rem 0}.cookie-message-banner a,.cookie-message-banner p{font-size:1.8rem;line-height:1.2;line-height:1.33}.cookie-message-banner p+p{margin-top:0}.cookie-details-wrapper,.cookie-integrity-wrapper,.cookie-policy-wrapper{max-height:70vh}.cookie-details-wrapper .banner-details-buttons-save button,.cookie-integrity-wrapper .banner-details-buttons-save button,.cookie-policy-wrapper .banner-details-buttons-save button{width:50%}.cookie-details-wrapper .message-banner,.cookie-integrity-wrapper .message-banner,.cookie-policy-wrapper .message-banner{font-size:1.8rem;line-height:1.2;padding:2rem 21rem 2rem 2rem}.cookie-details-wrapper .message-banner-row,.cookie-integrity-wrapper .message-banner-row,.cookie-policy-wrapper .message-banner-row{-ms-flex-pack:space-between;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-flow:row;-moz-flex-flow:row;-ms-flex-flow:row;flex-flow:row;-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:space-between;-moz-justify-content:space-between;-ms-justify-content:space-between;justify-content:space-between}.cookie-details-wrapper .message-banner-row.align-center,.cookie-integrity-wrapper .message-banner-row.align-center,.cookie-policy-wrapper .message-banner-row.align-center{-ms-flex-align:center;-webkit-align-items:center;-moz-align-items:center;-ms-align-items:center;align-items:center}.cookie-details-wrapper .message-banner-column,.cookie-integrity-wrapper .message-banner-column,.cookie-policy-wrapper .message-banner-column{margin:0 -2rem;padding:2rem}.cookie-details-wrapper .message-banner-column.col-two,.cookie-integrity-wrapper .message-banner-column.col-two,.cookie-policy-wrapper .message-banner-column.col-two{width:20%}.cookie-details-wrapper .message-banner-column.col-four,.cookie-integrity-wrapper .message-banner-column.col-four,.cookie-policy-wrapper .message-banner-column.col-four{width:32%}.cookie-details-wrapper .message-banner-column.col-six,.cookie-integrity-wrapper .message-banner-column.col-six,.cookie-policy-wrapper .message-banner-column.col-six{width:50%}.cookie-details-wrapper .message-banner-column.col-ten,.cookie-integrity-wrapper .message-banner-column.col-ten,.cookie-policy-wrapper .message-banner-column.col-ten{width:80%}.cookie-details-wrapper .message-banner-column.buttons,.cookie-integrity-wrapper .message-banner-column.buttons,.cookie-policy-wrapper .message-banner-column.buttons{margin:0;padding:2rem 0}.cookie-details-wrapper .message-banner-column.accordion,.cookie-integrity-wrapper .message-banner-column.accordion,.cookie-policy-wrapper .message-banner-column.accordion{margin-top:2.5rem}.cookie-details-wrapper h2,.cookie-integrity-wrapper h2,.cookie-policy-wrapper h2{font-size:3rem;line-height:1.2}.cookie-details-wrapper h3,.cookie-integrity-wrapper h3,.cookie-policy-wrapper h3{margin:3rem 0}.cookie-details-wrapper a,.cookie-details-wrapper p,.cookie-integrity-wrapper a,.cookie-integrity-wrapper p,.cookie-policy-wrapper a,.cookie-policy-wrapper p{font-size:1.8rem;line-height:1.2;line-height:1.33}.cookie-integrity-wrapper .message-banner p,.cookie-policy-wrapper .message-banner p{margin-bottom:1rem}.cookie-integrity-wrapper .message-banner h3,.cookie-policy-wrapper .message-banner h3{margin:0 0 1rem}}@media screen and (min-width:1024px) and (max-width:1300px){.cookie-details-wrapper .message-banner,.cookie-integrity-wrapper .message-banner,.cookie-message-banner .message-banner,.cookie-policy-wrapper .message-banner{padding:2rem}}.error-page-wrapper{margin:2.5rem auto 0;padding:0 1.2rem;text-align:center}.error-page-wrapper .page-text-content{font-size:1.6rem;line-height:1.2;margin-bottom:4rem}.error-page-wrapper .page-title{font-size:2.6rem;line-height:1.2}.error-page-img{margin-bottom:2.9rem;margin-top:2.3rem}.error-product-recommendations{margin-bottom:10rem}.error-product-recommendations .product-recommendation-grid>.product:first-child{border-top:.1rem solid #dadada}.error-product-recommendations .product-recommendation-calloutmsg{border-top:.1rem solid #dadada;padding-top:1.2rem}@media screen and (min-width:1024px){.error-page-wrapper{margin-top:7.6rem}.error-page .page-title{font-size:3.8rem;line-height:1.2}.error-page .page-text-content{font-size:1.8rem;line-height:1.2}.error-product-recommendations .product-recommendation-grid>.product:first-child{border-top:0}.error-product-recommendations .product-recommendation{border-top:.1rem solid #dadada;padding-top:5rem}}.toast-message{font-size:1.6rem;line-height:1.2}#toast-container>.toast.toast-error{background-image:none;padding:20px 40px;text-align:justify}#toast-container.toast-bottom-center>.toast,#toast-container.toast-top-center>.toast{margin-bottom:20px;width:400px}.veil{text-align:center;z-index:100}.veil,.veil .underlay{height:100%;left:0;position:absolute;top:0;width:100%}.veil .underlay{background-color:#1b1b1b;opacity:.5}.spinner{animation:sk-rotate 2s linear infinite;height:80px;left:50%;margin-left:-40px;margin-top:-40px;position:absolute;text-align:center;top:50%;width:80px}.dot1,.dot2{animation:sk-bounce 2s ease-in-out infinite;background-color:#fff;border-radius:100%;display:inline-block;height:60%;position:absolute;top:0;width:60%}.dot2{animation-delay:-1s;bottom:0;top:auto}@keyframes sk-rotate{to{transform:rotate(1turn)}}@keyframes sk-bounce{0%,to{transform:scale(0)}50%{transform:scale(1)}}

/*# sourceMappingURL=globalNonCritical.css.map*/