/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color); }

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  -ms-touch-action: none;
      touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0; }

.pswp * {
  box-sizing: border-box; }

.pswp img {
  max-width: none; }

.pswp--open {
  display: block; }

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity; }

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg); }

.pswp,
.pswp__scroll-wrap {
  overflow: hidden; }

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto; }

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: zoom-in; }

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: grab; }

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: grabbing; }

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: zoom-out; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden; }

.pswp__hidden {
  display: none !important; }

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none; }

.pswp__content > * {
  pointer-events: auto; }

/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: -ms-grid;
  display: grid; }

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color); }

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10;
  /* always overlap slide content */
  pointer-events: none;
  /* hidden elements should not be clickable */ }

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto; }

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none; }

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1; }

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto; }

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary); }

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none; }

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none; }

.pswp__icn:focus {
  outline: 0; }

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg); }

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: end;
      justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important; }

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity; }

/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px; }

/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px; }

.pswp__button--arrow:disabled {
  display: none;
  cursor: default; }

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0; }

.pswp--one-slide .pswp__button--arrow {
  display: none; }

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden; }

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible; }

.pswp__button--arrow--prev {
  right: auto;
  left: 0px; }

.pswp__button--arrow--next {
  right: 0px; }

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1); }

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none; }

/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto; }

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite; }

.pswp__preloader--active .pswp__icn {
  opacity: 0.85; }

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin: 15px 0 0 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85; }

.pswp--one-slide .pswp__counter {
  display: none; }

figure.containerZoom {
  background-position: 50% 50%;
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100vh;
  overflow: hidden;
  cursor: url("../../images/cursor-zoom.png"), pointer;
  margin: 0 auto; }
  figure.containerZoom img {
    opacity: 0;
    display: block;
    width: 100%; }

.thumbnails-wrapper {
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 30px;
  bottom: 30px;
  gap: 24px; }
  @media (min-width: 769px) {
    .thumbnails-wrapper {
      position: absolute; } }
  .thumbnails-wrapper .trigger-photo-swipe {
    border-radius: 100%; }
    .thumbnails-wrapper .trigger-photo-swipe:has(.selected) {
      scale: 1.3;
      transition: scale 300ms; }
  .thumbnails-wrapper .pdp-thumbnail {
    border-radius: 100%;
    cursor: pointer;
    height: 50px;
    width: 50px; }
    .thumbnails-wrapper .pdp-thumbnail.selected {
      opacity: 1;
      box-shadow: 0 0 10px #000; }

.modal-header {
  border-bottom: none; }

.modal.resized {
  height: auto;
  top: 50%;
  transform: translateY(-50%); }
  .modal.resized .modal-dialog {
    height: auto; }
  .modal.resized .modal-body {
    position: static; }
  .modal.resized .containerZoom {
    height: auto; }

.pswp__button--close {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 100%;
  opacity: 1; }

.pswp--open .pswp__hide-on-close {
  opacity: 1; }

/* animations */
/******************
* Bounce in right *
*******************/
@media (min-width: 769px) {
  .animated {
    animation-duration: 1s;
    animation-fill-mode: both; }
  /* Added by Andy Meetan */
  .delay-250 {
    animation-delay: 0.25s; }
  .delay-500 {
    animation-delay: 0.5s; }
  .delay-750 {
    animation-delay: 0.75s; }
  .delay-1000 {
    animation-delay: 1s; }
  .delay-1250 {
    animation-delay: 1.25s; }
  .delay-1500 {
    animation-delay: 1.5s; }
  .delay-1750 {
    animation-delay: 1.75s; }
  .delay-2000 {
    animation-delay: 2s; }
  .delay-2500 {
    animation-delay: 2.5s; }
  .delay-3000 {
    animation-delay: 3s; }
  .delay-3500 {
    animation-delay: 3.5s; }
  .fadeInRight,
  .fadeInLeft,
  .fadeInUp,
  .fadeInDown {
    opacity: 0;
    transform: translateX(400px); }
  /**********
    * Fade In *
    **********/
  @keyframes fadeIn {
    0% {
      opacity: 0; }
    100% {
      opacity: 1;
      display: block; } }
  .fadeIn {
    opacity: 0; }
  .fadeIn.go {
    animation-name: fadeIn; }
  /*************
    * FadeInLeft *
    *************/
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      transform: translateX(0); } }
  .fadeInLeft {
    opacity: 0;
    transform: translateX(-400px); }
  .fadeInLeft.go {
    animation-name: fadeInLeft; }
  /*************
    * FadeInRight *
    *************/
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      transform: translateX(0); } }
  .fadeInRight {
    opacity: 0;
    transform: translateX(400px); }
  .fadeInRight.go {
    animation-name: fadeInRight; }
  /*************
    * FadeInUp *
    *************/
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      transform: translateY(0); } }
  .fadeInUp {
    opacity: 0;
    transform: translateY(400px); }
  .fadeInUp.go {
    animation-name: fadeInUp; }
  /*************
    * FadeInDown *
    *************/
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      transform: translateY(0); } }
  .fadeInDown {
    opacity: 0;
    transform: translateY(-400px); }
  .fadeInDown.go {
    animation-name: fadeInDown; } }

.product-detail .product-breadcrumb {
  display: none; }

@media (max-width: 768.98px) {
  .product-detail .primary-images {
    padding: 0;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%; } }

.product-detail .slick-next {
  right: 24px; }
  @media (min-width: 769px) {
    .product-detail .slick-next {
      right: 48px; } }

.product-detail .slick-prev {
  left: 24px; }
  @media (min-width: 769px) {
    .product-detail .slick-prev {
      left: 48px; } }

.product-detail .slick-dots {
  position: relative;
  margin: -24px 24px 24px; }
  .product-detail .slick-dots button {
    font-size: 0;
    background-color: rgba(57, 57, 57, 0.1); }
  .product-detail .slick-dots .slick-active button {
    background-color: #ffb201; }

.product-detail .product-name {
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 16px;
  font-family: "PPeikoLight", "arial", "sans-serif";
  color: #393939; }
  @media (min-width: 769px) {
    .product-detail .product-name {
      font-size: 32px;
      line-height: 44px; } }

.product-detail .row {
  font-size: 14px;
  line-height: 24px; }
  @media (min-width: 769px) {
    .product-detail .row {
      -ms-flex-align: center;
          align-items: center; } }

@media (max-width: 1199.98px) {
  .trigger-photo-swipe {
    margin: 0 0 25px; } }

.trigger-photo-swipe .pdp-carousel-img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0; }

.trigger-photo-swipe::after {
  padding-bottom: 85.33%; }
  @media (min-width: 769px) {
    .trigger-photo-swipe::after {
      padding-bottom: 133.33%; } }

.trigger-photo-swipe.ratio-container {
  display: block; }

.description-and-detail {
  padding: 80px 9px; }
  @media (min-width: 769px) {
    .description-and-detail {
      padding: 140px 107px; } }
  @media (min-width: 769px) {
    .description-and-detail .description {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: justify;
          justify-content: space-between; } }
  @media (min-width: 769px) {
    .description-and-detail .product-description {
      -ms-flex: 0 0 568px;
          flex: 0 0 568px; } }
  .description-and-detail .product-description .title {
    font-size: 32px;
    line-height: 44px;
    margin: 0 0 16px;
    font-family: "PPeikoLight", "arial", "sans-serif";
    color: #53565a; }
  .description-and-detail .product-description .content {
    color: #53565a;
    font-size: 14px;
    line-height: 24px; }
  .description-and-detail .product-description .read-more {
    font-size: 12px;
    line-height: 24px;
    display: inline-block;
    border-bottom: 1px solid #ffa300;
    margin-top: 18px;
    cursor: pointer; }
    .description-and-detail .product-description .read-more:hover {
      color: #ffa300; }
  .description-and-detail .product-perks {
    padding: 42px 0 0; }
    @media (min-width: 769px) {
      .description-and-detail .product-perks {
        -ms-flex: 0 0 324px;
            flex: 0 0 324px;
        padding: 0; } }
    .description-and-detail .product-perks .perks-list {
      list-style: none;
      padding: 0;
      margin: 0; }
      .description-and-detail .product-perks .perks-list .perks-list-item {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        gap: 24px; }
        .description-and-detail .product-perks .perks-list .perks-list-item ~ .perks-list-item {
          margin-top: 40px; }
    .description-and-detail .product-perks .perk-img {
      width: 80px;
      height: 80px;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
      border-radius: 50%;
      background-color: #fff3dc;
      text-align: center;
      display: -ms-flexbox;
      display: flex;
      place-content: center; }
      .description-and-detail .product-perks .perk-img img {
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
        max-width: 32px; }
    .description-and-detail .product-perks .perk-text {
      font-size: 16px;
      line-height: 24px; }

.long-description > p:first-child {
  margin-top: 0; }

.long-description.collapse:not(.show) {
  display: block;
  height: 75px;
  overflow: hidden; }

.long-description.show {
  height: auto; }

#product-element {
  padding: 1rem; }

.carousel-text-wrapper {
  max-width: 295px;
  z-index: 3; }
  .carousel-text-wrapper h3 {
    font-family: "PPeikoLight", "arial", "sans-serif";
    font-size: 32px;
    line-height: 44px; }
  .carousel-text-wrapper .paragraph-wrapper {
    font-size: 14px;
    line-height: 24px; }
  .carousel-text-wrapper .link-light {
    font-size: 14px;
    line-height: 24px; }
  @media (min-width: 769px) {
    .carousel-text-wrapper {
      max-width: 568px; }
      .carousel-text-wrapper h3 {
        font-size: 48px;
        line-height: 64px;
        color: #393939; }
      .carousel-text-wrapper .paragraph-wrapper {
        font-size: 16px; }
      .carousel-text-wrapper .link-light {
        font-size: 16px;
        line-height: 24px; } }

.js-product-recommendations {
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2; }
  .js-product-recommendations:not(.slick-initialized) {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr; }
    .js-product-recommendations:not(.slick-initialized) .slide-wrapper:nth-child(n + 4) {
      display: none; }
  .js-product-recommendations .product-badges {
    display: none; }
  .js-product-recommendations .slick-dots {
    width: 160px;
    position: absolute;
    left: calc(50% - 80px);
    bottom: calc(0% + calc(90px + 40px + 64px + 30px + 20px) / 2);
    margin: 0; }
    .js-product-recommendations .slick-dots li {
      height: 2px; }
    .js-product-recommendations .slick-dots button[role="tab"] {
      cursor: pointer;
      font-size: 0;
      line-height: 0;
      background: #393939;
      opacity: 0.1; }
    .js-product-recommendations .slick-dots .slick-active button {
      background: #ffa300;
      opacity: 1; }
  .js-product-recommendations .slick-track {
    display: -ms-flexbox !important;
    display: flex !important; }
  .js-product-recommendations .slick-slide {
    height: inherit !important;
    width: 100% !important;
    position: relative;
    padding-bottom: 90px; }
  .js-product-recommendations .slick-current .tile-body {
    opacity: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%;
    margin-bottom: 50px;
    pointer-events: all; }
    .js-product-recommendations .slick-current .tile-body .pdp-link {
      margin: 0;
      font-size: 24px;
      line-height: 32px;
      display: -webkit-box;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-line-clamp: 3;
      /* autoprefixer: off */
      -webkit-box-orient: vertical;
      /* autoprefixer: on */ }
      .js-product-recommendations .slick-current .tile-body .pdp-link .link {
        text-decoration: none; }
    .js-product-recommendations .slick-current .tile-body .product-type {
      max-width: 100%;
      flex: 0 0 100%;
      font-size: 14px;
      line-height: 24px;
      margin: 8px 0 0;
      height: 43px;
      display: -webkit-box;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-line-clamp: 2;
      /* autoprefixer: off */
      -webkit-box-orient: vertical;
      /* autoprefixer: on */ }
    .js-product-recommendations .slick-current .tile-body .ellip {
      height: 95px;
      display: inline-block; }
    .js-product-recommendations .slick-current .tile-body .ellip,
    .js-product-recommendations .slick-current .tile-body .ellip span {
      font-family: "PPeikoLight", "arial", "sans-serif";
      color: #000; }
    .js-product-recommendations .slick-current .tile-body .discover-cta {
      position: absolute;
      bottom: 0; }
  .js-product-recommendations .product {
    display: inline-block;
    width: 100%;
    text-align: center; }
    .js-product-recommendations .product-tile {
      display: -ms-inline-flexbox;
      display: inline-flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center;
      width: 100%;
      padding: 67px 0 0;
      margin: 0 auto;
      -ms-flex-positive: 1;
          flex-grow: 1;
      text-align: center; }
      .js-product-recommendations .product-tile .ratio-container > * {
        position: static; }
      .js-product-recommendations .product-tile .section-wrapper {
        overflow: hidden;
        min-height: 410px;
        min-width: 232px;
        padding: 183px 0 0; }
      .js-product-recommendations .product-tile .product-tile-description {
        margin: 48px 0 0; }
  .js-product-recommendations .image-container {
    height: 230px;
    overflow: hidden;
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    margin-top: 13px;
    width: 100%; }
    .js-product-recommendations .image-container > a {
      height: inherit; }
  .js-product-recommendations .tile-body {
    opacity: 0;
    pointer-events: none; }
  @media (min-width: 769px) {
    .js-product-recommendations {
      margin-bottom: 0;
      min-width: 450px; }
      .js-product-recommendations .slick-arrow {
        position: absolute;
        top: 25%;
        background: #fff;
        width: 60px;
        height: 120px;
        transform: none;
        font-size: 0;
        outline: none;
        cursor: pointer; }
        .js-product-recommendations .slick-arrow::after {
          content: "";
          background: url("../../images/svg/arrow-right-small.svg") center center no-repeat;
          transform: translate(-50%, -50%);
          width: 6px;
          height: 12px;
          position: absolute;
          left: 50%;
          top: 50%; }
        .js-product-recommendations .slick-arrow.slick-prev {
          border-bottom-left-radius: 120px;
          border-top-left-radius: 120px;
          left: calc(50% + calc(314px + calc(25px * 2)) / 2); }
          .js-product-recommendations .slick-arrow.slick-prev::after {
            content: "";
            transform: translate(-50%, -50%) rotate(180deg); }
        .js-product-recommendations .slick-arrow.slick-next {
          right: 0;
          border-bottom-right-radius: 120px;
          border-top-right-radius: 120px;
          left: calc(50% + (314px + calc(25px * 2)) / 2 + 60px); }
      .js-product-recommendations .slick-current .tile-body .pdp-link {
        margin: 40px 0 0;
        font-size: 32px;
        line-height: 44px; }
      .js-product-recommendations .slick-current .tile-body .product-type {
        font-size: 16px;
        margin: 16px 0 0; }
      .js-product-recommendations .image-container {
        height: 314px;
        margin-top: 26px; }
        .js-product-recommendations .image-container > a {
          min-height: 314px; }
      .js-product-recommendations .product-tile {
        padding: 80px 0 0;
        max-width: 314px; }
        .js-product-recommendations .product-tile .section-wrapper {
          min-height: 612px;
          min-width: 346px;
          padding: 80px 0 0; }
        .js-product-recommendations .product-tile .product-tile-description {
          margin: 64px 0 0; } }

.retailers-modal .product-image-wrapper {
  text-align: center; }

.retailers-modal .product-image {
  max-width: 200px;
  margin: 0 auto; }

.retailers-modal .product-name {
  margin-top: 25px;
  text-align: center; }

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

.static-details {
  background-color: #fff3dc;
  margin: 80px 5px;
  padding: 80px 25px 20px;
  border-radius: 8px; }
  @media (min-width: 1200px) {
    .static-details {
      margin: 140px 15px; } }
  @media (max-width: 768.98px) {
    .static-details {
      overflow: hidden; } }

.details-block:not(:first-child) {
  margin: 30px 0 0; }
  @media (min-width: 1200px) {
    .details-block:not(:first-child) {
      margin: 45px 0 0; } }

.details-label {
  font-size: 12px;
  line-height: 12px;
  margin: 0 0 10px; }
  @media (min-width: 1200px) {
    .details-label {
      margin: 0 0 15px; } }

.details-title {
  font-family: "PPeikoLight", "arial", "sans-serif";
  font-size: 24px;
  line-height: 36px;
  color: #393939; }

.details-info {
  font-size: 14px;
  text-align: right; }

.details-percentages {
  background-color: #f0e5cd;
  border-radius: 4px;
  overflow: hidden;
  margin: 25px 0 0; }

.details-percentages-value {
  display: block;
  border-top: 1px solid #ffa300; }

.details-carousel-wrapper {
  margin: 40px 0 0; }
  @media (min-width: 1200px) {
    .details-carousel-wrapper {
      margin: 90px 0 60px; } }
  @media (max-width: 768.98px) {
    .details-carousel-wrapper .slick-list {
      overflow: visible; } }

.details-slide {
  padding: 0 8px; }
  @media (min-width: 1200px) {
    .details-slide {
      padding: 0 20px; } }

.details-info-wrapper {
  background-color: #fff9ed;
  border-radius: 50px;
  padding: 25px;
  margin: 0; }
  @media (min-width: 1200px) {
    .details-info-wrapper {
      padding: 15px; } }

.details-info-icon {
  max-width: 55px;
  display: inline-block; }

.details-info-suptitle {
  font-size: 12px;
  color: #393939; }

.details-info-title {
  font-family: "PPeikoLight", "arial", "sans-serif";
  font-size: 24px;
  margin: 5px 0 0;
  line-height: 36px;
  color: #393939; }

.expandable-folder-title {
  color: #393939;
  font-family: "PPeikoLight", "arial", "sans-serif";
  font-size: 32px;
  line-height: 44px;
  max-width: 295px;
  margin: 0 auto 8px; }

.expandable-folder-wrapper {
  max-width: 1150px;
  padding: 80px 24px 40px; }

.expandable-folder-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(83, 86, 90, 0.5); }
  .expandable-folder-item:last-child {
    border-bottom: 1px solid transparent; }

.expandable-folder-list .expandable-folder-item:last-child {
  border-bottom: 1px solid transparent; }

.expandable-folder-text {
  margin: 0 0 20px;
  color: #53565a;
  font-size: 14px;
  line-height: 24px; }

.expandable-folder-image {
  min-width: 90px;
  max-width: 105px; }

.collapse.show .expandable-folder-item:first-child {
  border-top: 1px solid rgba(83, 86, 90, 0.5); }

.circle-image {
  width: 80px;
  height: 80px;
  background: #fff3dc; }
  .circle-image-text {
    font-size: 14px;
    color: #393939; }

.load-more {
  color: #393939;
  font-size: 14px; }
  .load-more[aria-expanded="true"] {
    display: none; }

@media (min-width: 769px) {
  .expandable-folder-wrapper {
    padding: 140px 24px 40px; }
  .expandable-folder-title {
    font-size: 48px;
    line-height: 64px;
    max-width: 100%;
    margin: 0 0 38px; }
  .expandable-folder-item {
    padding: 42px 0; }
  .rounded-circle-text-wrapper {
    margin: 0 56px 0 0; }
  .circle-image {
    width: 88px;
    height: 88px; }
  .expandable-folder-text,
  .load-more {
    font-size: 16px; } }

/**
<= MODULE HELPERS =>
PD module helpers for VCP
**/
.module-container {
  padding: 0 24px; }
  @media (min-width: 769px) {
    .module-container {
      padding: 0;
      max-width: 1160px; } }

@keyframes collapseIn {
  from {
    clip-path: inset(0 0 0 100%); }
  to {
    clip-path: inset(0 0 0 0); } }

@keyframes collapseOut {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0); }
  99% {
    opacity: 1; }
  100% {
    opacity: 0;
    clip-path: inset(0 100% 0 0); } }

@keyframes collapseInReverse {
  from {
    clip-path: inset(0 100% 0 0); }
  to {
    clip-path: inset(0 0 0 0); } }

@keyframes collapseOutReverse {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0); }
  99% {
    opacity: 1; }
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 100%); } }

.timeline-carousel__wrapper {
  padding: 0 4px;
  position: relative; }
  @media (min-width: 769px) {
    .timeline-carousel__wrapper {
      padding: 0 16px; } }
  .timeline-carousel__wrapper .slick-dots {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    position: absolute;
    bottom: 40px;
    width: calc(100% - 140px);
    margin: 0;
    left: 50%;
    transform: translateX(-50%); }
    @media (min-width: 769px) {
      .timeline-carousel__wrapper .slick-dots {
        -ms-flex-direction: row;
            flex-direction: row;
        background-color: #fff;
        border-radius: 36px;
        width: auto;
        bottom: 48px;
        -ms-flex-pack: justify;
            justify-content: space-between;
        gap: 48px;
        padding: 24px 48px; } }
    .timeline-carousel__wrapper .slick-dots li {
      height: unset; }
      @media (max-width: 768.98px) {
        .timeline-carousel__wrapper .slick-dots li:not(.slick-active) {
          display: none; }
        .timeline-carousel__wrapper .slick-dots li.slick-active {
          -ms-flex-order: 1;
              order: 1; }
          .timeline-carousel__wrapper .slick-dots li.slick-active button::after {
            content: "";
            background: url("../../images/svg/arrow-right-small.svg") center center no-repeat;
            display: block;
            width: 6px;
            height: 12px;
            transform: rotate(-90deg); } }
      @media (min-width: 769px) {
        .timeline-carousel__wrapper .slick-dots li.slick-active button {
          color: #393939;
          font-family: "VeuveClicquotRegular", "arial", "sans-serif"; } }
      .timeline-carousel__wrapper .slick-dots li.disabled {
        cursor: not-allowed;
        pointer-events: none; }
    .timeline-carousel__wrapper .slick-dots button {
      height: unset;
      padding: 0;
      border: none;
      background: transparent;
      color: #53565a;
      width: auto;
      font-size: 12px;
      line-height: 24px;
      cursor: pointer; }
      @media (max-width: 768.98px) {
        .timeline-carousel__wrapper .slick-dots button {
          padding: 20px 32px;
          border-radius: 32px;
          background-color: #fff;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
              align-items: center;
          gap: 10px; } }
    @media (max-width: 768.98px) {
      .timeline-carousel__wrapper .slick-dots.expanded {
        background-color: #fff;
        border-radius: 32px; }
        .timeline-carousel__wrapper .slick-dots.expanded li {
          display: unset; }
          .timeline-carousel__wrapper .slick-dots.expanded li.slick-active button::after {
            transform: rotate(90deg); } }

.timeline-carousel__intro {
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border-radius: 8px;
  position: relative; }
  .timeline-carousel__intro::before {
    content: "";
    background: var(--introBackground);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    clip-path: inset(0 0 0 0); }
  .timeline-carousel__intro.getting-out::before {
    transition: clip-path 1s ease;
    clip-path: inset(0 100% 0 0); }
  @media (min-width: 769px) {
    .timeline-carousel__intro {
      border-radius: 16px;
      -ms-flex-direction: column;
          flex-direction: column;
      padding: 140px 0; }
      .timeline-carousel__intro::before {
        border-radius: 16px; } }
  .timeline-carousel__intro .slick-dots {
    position: static;
    transform: unset;
    z-index: 1; }
    @media (max-width: 768.98px) {
      .timeline-carousel__intro .slick-dots {
        display: none !important; } }
  .timeline-carousel__intro-content {
    position: relative;
    z-index: 1;
    max-width: 240px;
    clip-path: inset(0 -100% -100% -100%);
    transition: clip-path 1.5s ease; }
    @media (min-width: 769px) {
      .timeline-carousel__intro-content {
        max-width: 370px;
        margin-bottom: 89px; } }
    .getting-out .timeline-carousel__intro-content {
      clip-path: inset(0 200% -100% -100%); }
  .timeline-carousel__intro-title {
    font-family: "PPeikoLight", "arial", "sans-serif";
    color: #fff;
    font-size: 40px;
    line-height: 56px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 30px);
    max-width: 100vw; }
    @media (min-width: 769px) {
      .timeline-carousel__intro-title {
        font-size: 88px;
        line-height: 120px;
        width: calc(100% + 275px); } }
  .timeline-carousel__intro-figure {
    margin: 0; }
  .timeline-carousel__intro-image {
    display: block; }
  .timeline-carousel__intro + .timeline-carousel__carousel {
    display: none; }

.timeline-carousel__start-button {
  position: absolute;
  bottom: -168px;
  left: 50%;
  transform: translateX(-50%); }
  @media (min-width: 769px) {
    .timeline-carousel__start-button {
      bottom: -50px; } }

.timeline-carousel__slide {
  --titleColor: $color-secondary;
  --textColor: $color-secondary-dark;
  padding: 24px 24px 148px;
  border-radius: 8px;
  min-height: 100%; }
  @media (min-width: 769px) {
    .timeline-carousel__slide {
      padding: 124px 124px 168px;
      border-radius: 16px; }
      .timeline-carousel__slide::before {
        border-radius: 16px; } }
  .timeline-carousel__slide::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--slideBackground);
    border-radius: 8px; }
  .timeline-carousel__slide-content {
    position: relative;
    z-index: 1; }
    @media (min-width: 769px) {
      .timeline-carousel__slide-content {
        max-width: 1160px;
        margin: 0 auto;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: justify;
            justify-content: space-between; } }
  .timeline-carousel__slide-content-image {
    max-width: 240px;
    margin: 0 0 24px; }
    @media (min-width: 769px) {
      .timeline-carousel__slide-content-image {
        -ms-flex-order: 1;
            order: 1;
        max-width: 470px;
        margin: 0; } }
  .timeline-carousel__slide-content-text {
    max-width: 295px; }
    @media (min-width: 769px) {
      .timeline-carousel__slide-content-text {
        max-width: 470px; } }
    .timeline-carousel__slide-content-text h1,
    .timeline-carousel__slide-content-text h2,
    .timeline-carousel__slide-content-text h3,
    .timeline-carousel__slide-content-text h4,
    .timeline-carousel__slide-content-text h5,
    .timeline-carousel__slide-content-text h6,
    .timeline-carousel__slide-content-text blockquote {
      margin: 0 0 16px;
      font-family: "PPeikoLight", "arial", "sans-serif";
      color: var(--titleColor); }
    .timeline-carousel__slide-content-text h1,
    .timeline-carousel__slide-content-text h2,
    .timeline-carousel__slide-content-text h3,
    .timeline-carousel__slide-content-text h4,
    .timeline-carousel__slide-content-text h5,
    .timeline-carousel__slide-content-text h6 {
      font-size: 32px;
      line-height: 44px; }
      @media (min-width: 769px) {
        .timeline-carousel__slide-content-text h1,
        .timeline-carousel__slide-content-text h2,
        .timeline-carousel__slide-content-text h3,
        .timeline-carousel__slide-content-text h4,
        .timeline-carousel__slide-content-text h5,
        .timeline-carousel__slide-content-text h6 {
          font-size: 48px;
          line-height: 64px; } }
    .timeline-carousel__slide-content-text blockquote {
      font-size: 24px;
      line-height: 32px;
      padding: 0; }
      @media (min-width: 769px) {
        .timeline-carousel__slide-content-text blockquote {
          font-size: 32px;
          line-height: 44px; } }
    .timeline-carousel__slide-content-text p {
      font-size: 14px;
      line-height: 24px;
      margin: 0;
      color: var(--textColor); }
      @media (min-width: 769px) {
        .timeline-carousel__slide-content-text p {
          font-size: 16px; } }
  .timeline-carousel__slide-figure {
    margin: 0; }

.timeline-carousel__carousel .slick-next,
.timeline-carousel__carousel .slick-prev {
  background: #fff url("../../images/svg/arrow-right-small.svg") center center no-repeat;
  background-size: 13px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  bottom: 32px;
  top: unset;
  cursor: pointer; }
  @media (min-width: 769px) {
    .timeline-carousel__carousel .slick-next,
    .timeline-carousel__carousel .slick-prev {
      width: 60px;
      height: 120px;
      border-radius: 0 60px 60px 0;
      bottom: unset;
      top: 272px;
      background-position: left 49.5%; } }
  .timeline-carousel__carousel .slick-next.slick-disabled,
  .timeline-carousel__carousel .slick-prev.slick-disabled {
    cursor: not-allowed; }
  .timeline-carousel__carousel .slick-next.disabled,
  .timeline-carousel__carousel .slick-prev.disabled {
    cursor: not-allowed;
    pointer-events: none; }

.timeline-carousel__carousel .slick-prev {
  left: 24px; }
  @media (min-width: 769px) {
    .timeline-carousel__carousel .slick-prev {
      left: calc(53%); } }

.timeline-carousel__carousel .slick-next {
  right: 24px; }
  @media (min-width: 769px) {
    .timeline-carousel__carousel .slick-next {
      right: unset;
      left: calc(53% + 60px); } }

.timeline-carousel__carousel .slick-track {
  width: 100% !important;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr; }

.timeline-carousel__carousel .slick-slide {
  -ms-grid-row: 1;
      grid-row-start: 1;
  -ms-grid-column: 1;
      grid-column-start: 1; }
  .timeline-carousel__carousel .slick-slide.in, .timeline-carousel__carousel .slick-slide.out, .timeline-carousel__carousel .slick-slide.in-reverse, .timeline-carousel__carousel .slick-slide.out-reverse, .timeline-carousel__carousel .slick-slide.drop {
    left: 0 !important;
    position: static !important;
    opacity: 1 !important;
    z-index: 1000; }
  .timeline-carousel__carousel .slick-slide.slick-active:not(.in):not(.out):not(.in-reverse):not(.out-reverse):not(.drop) {
    opacity: 0 !important; }

.in .timeline-carousel__slide::before, .in
.timeline-carousel__slide-content-image, .in
.timeline-carousel__slide-content-text {
  animation: collapseIn 1s ease; }

.out .timeline-carousel__slide::before, .out
.timeline-carousel__slide-content-image, .out
.timeline-carousel__slide-content-text {
  animation: collapseOut 1s ease; }

.in-reverse .timeline-carousel__slide::before, .in-reverse
.timeline-carousel__slide-content-image, .in-reverse
.timeline-carousel__slide-content-text {
  animation: collapseInReverse 1s ease; }

.out-reverse .timeline-carousel__slide::before, .out-reverse
.timeline-carousel__slide-content-image, .out-reverse
.timeline-carousel__slide-content-text {
  animation: collapseOutReverse 1s ease; }

.timeline-carousel__slide-cta {
  margin: 16px 0 0; }

.editorial-container {
  background-color: var(--backgroundColor);
  position: relative;
  border-radius: 8px;
  margin: 4px;
  padding: 76px 0 20px; }
  @media (min-width: 769px) {
    .editorial-container {
      margin: 16px;
      padding: 124px 0;
      border-radius: 16px; } }
  .editorial-container--with-effect::before {
    content: "";
    width: 827px;
    height: 827px;
    border-radius: 50%;
    position: absolute;
    top: 93px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--backgroundEffectColor);
    filter: blur(40px); }
    @media (min-width: 769px) {
      .editorial-container--with-effect::before {
        width: 2072px;
        height: 2072px;
        top: unset;
        bottom: 236px; } }
  .editorial-container--with-effect > * {
    position: relative;
    z-index: 1; }
  .editorial-container--full-width {
    border-radius: 0;
    margin: 0;
    padding: 80px 4px 24px; }
    @media (min-width: 769px) {
      .editorial-container--full-width {
        border-radius: 0;
        padding: 140px 0; } }
  .editorial-container--combine-up {
    margin-top: 0;
    padding-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .editorial-container--combine-down {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  @media (max-width: 768.98px) {
    .editorial-container.gap-small-top--zero {
      margin-top: 0;
      padding-top: 0; }
    .editorial-container.gap-small-top--small {
      padding-top: 20px; }
    .editorial-container.gap-small-bottom--zero {
      margin-bottom: 0;
      padding-bottom: 0; }
    .editorial-container.gap-small-bottom--small {
      padding-bottom: 20px; } }
  @media (min-width: 769px) {
    .editorial-container.gap-large-top--zero {
      margin-top: 0;
      padding-top: 0; }
    .editorial-container.gap-large-bottom--zero {
      margin-bottom: 0;
      padding-bottom: 0; } }
  @media (min-width: 769px) {
    .editorial-container__side-by-side-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: justify;
          justify-content: space-between; }
      .editorial-container__side-by-side-wrapper > * {
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
        width: -moz-fit-content;
        width: fit-content;
        max-width: 509px; } }

:root {
  --linkFlashColor: #ffb201; }

.editorial-text {
  margin: 0 auto;
  max-width: 608px;
  padding: 0 20px;
  position: relative; }
  @media (min-width: 769px) {
    .editorial-text {
      margin-bottom: 56px; }
      .editorial-container .editorial-text {
        margin-bottom: 0; } }
  .editorial-text--split {
    max-width: unset; }
    @media (min-width: 769px) {
      .editorial-text--split {
        display: -ms-flexbox;
        display: flex;
        max-width: 1200px; }
        .editorial-text--split > * {
          -ms-flex: 0 0 50%;
              flex: 0 0 50%; } }
  .editorial-text--centered {
    text-align: center; }
  .editorial-text--full-width-stacked {
    max-width: 1200px; }
    .editorial-text--full-width-stacked .editorial-text__title,
    .editorial-text--full-width-stacked .editorial-text__content p {
      max-width: 765px; }
  .editorial-text__title {
    color: var(--textColor);
    font-size: 32px;
    line-height: 44px;
    margin: 0 0 16px;
    font-family: "PPeikoLight", "arial", "sans-serif"; }
    @media (min-width: 769px) {
      .editorial-text__title {
        font-size: 48px;
        line-height: 64px;
        margin: 0 0 24px; } }
  .editorial-text__bold {
    font-family: "VeuveClicquotRegular", "arial", "sans-serif";
    color: #393939;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px; }
    @media (min-width: 769px) {
      .editorial-text__bold {
        font-size: 16px; } }
  .editorial-text__underlined {
    font-family: "VeuveClicquotRegular", "arial", "sans-serif";
    color: #393939;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-decoration: underline; }
    @media (min-width: 769px) {
      .editorial-text__underlined {
        font-size: 16px; } }
  @media (min-width: 769px) {
    .editorial-text--split .editorial-text__content {
      padding: 64px 0 0 12px; } }
  .editorial-text__content p {
    color: var(--textColor);
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 16px; }
    @media (min-width: 769px) {
      .editorial-text__content p {
        font-size: 16px;
        margin: 0 0 24px; } }
  .editorial-text__content blockquote {
    margin: 0 auto 16px;
    font-size: 24px;
    line-height: 32px;
    max-width: 552px;
    font-family: "PPeikoLight", "arial", "sans-serif"; }
    @media (min-width: 769px) {
      .editorial-text__content blockquote {
        font-size: 32px;
        line-height: 44px; } }
  .editorial-text__content ul {
    list-style: none;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    margin: 40px 0; }
    @media (min-width: 769px) {
      .editorial-text__content ul {
        max-width: 865px;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: (1fr)[3];
            grid-template-columns: repeat(3, 1fr);
        -ms-grid-rows: 1fr;
            grid-template-rows: 1fr;
        gap: 40px; } }
    .editorial-text__content ul li {
      display: -ms-flexbox;
      display: flex;
      gap: 16px;
      -ms-flex-align: center;
          align-items: center;
      margin: 0 0 24px; }
      @media (min-width: 769px) {
        .editorial-text__content ul li {
          margin: 0; } }
      .editorial-text__content ul li img {
        display: inline-block;
        -ms-flex: 0 0 24px;
            flex: 0 0 24px; }
  .editorial-text__quote-author {
    font-size: 14px; }
    @media (min-width: 769px) {
      .editorial-text__quote-author {
        font-size: 16px;
        color: var(--textColor); } }
  .editorial-text__links {
    margin: 0 0 24px; }
    .editorial-text__links .link-light {
      color: var(--linkColor);
      font-size: 14px;
      display: block;
      text-decoration: none; }
      @media (min-width: 769px) {
        .editorial-text__links .link-light {
          font-size: 16px;
          display: inline-block; } }
      .editorial-text__links .link-light + .link-light {
        margin-top: 8px; }
        @media (min-width: 769px) {
          .editorial-text__links .link-light + .link-light {
            margin-top: 0;
            margin-left: 37px; } }
      .editorial-text__links .link-light--custom::after {
        background-color: var(--linkFlashColor);
        box-shadow: 0 0 12px 4px var(--linkFlashColor); }
      .editorial-text__links .link-light--custom:hover::after {
        box-shadow: 0 0 12px 8px var(--linkFlashColor); }
  .editorial-text__content-image {
    position: absolute;
    right: 46px;
    top: -22px;
    max-width: 133px;
    height: auto; }
    @media (min-width: 1200px) {
      .editorial-text__content-image {
        top: -48px;
        right: unset;
        left: -46px;
        max-width: unset; } }

.editorial-rich-text-component-container {
  font-size: 14px;
  line-height: 24px; }
  .editorial-rich-text-component-container .textbox-title {
    margin: 0 0 24px;
    font-family: "VeuveClicquotRegular", "arial", "sans-serif"; }
    @media (min-width: 1200px) {
      .editorial-rich-text-component-container .textbox-title {
        margin: 0 0 32px; } }
  .editorial-rich-text-component-container .textbox-desc ul {
    padding-left: 17px;
    margin: 0; }
    .editorial-rich-text-component-container .textbox-desc ul li {
      margin: 0 0 24px; }

.editorial-insurance {
  padding: 0 24px;
  max-width: 952px;
  margin: 0 auto;
  text-align: center; }
  @media (min-width: 1200px) {
    .editorial-insurance {
      padding: 0; } }
  .editorial-insurance__img {
    transform: scale(0.5); }
    @media (min-width: 1200px) {
      .editorial-insurance__img {
        transform: unset; } }
  .editorial-insurance__text {
    font-size: 14px;
    line-height: 24px;
    margin: -4px 0 0; }
    @media (min-width: 1200px) {
      .editorial-insurance__text {
        margin-top: 36px; } }
  .editorial-insurance .image-text-underneath {
    margin-top: 10px;
    padding: 0; }
    @media (min-width: 1200px) {
      .editorial-insurance .image-text-underneath {
        margin-top: 30px; } }
    .editorial-insurance .image-text-underneath * {
      font-size: 14px;
      line-height: 24px;
      margin: 0; }
  .editorial-insurance .image-text-container .common-image-component {
    width: auto; }
  .editorial-insurance > .row {
    row-gap: 40px;
    margin: 0 !important; }

:root {
  --indicatorColor: #ffb201; }

.editorial-assets__asset {
  vertical-align: top; }
  @media (min-width: 769px) {
    .editorial-assets__asset:nth-child(2) {
      padding-top: 140px; } }
  .editorial-assets__asset figure {
    margin: 0; }
  .editorial-assets__asset img {
    display: block;
    max-width: 100%;
    margin: auto; }
  .editorial-assets__asset .product-tile {
    padding: 32px 25px 40px;
    text-align: center;
    background-color: var(--bg-color); }
    @media (min-width: 1200px) {
      .editorial-assets__asset .product-tile {
        padding: 72px 35px; } }
    .editorial-assets__asset .product-tile .image-container {
      margin: 0 auto;
      max-width: 138px; }
      @media (min-width: 769px) {
        .editorial-assets__asset .product-tile .image-container {
          max-width: 252px; } }
    .editorial-assets__asset .product-tile .pdp-link {
      margin: 24px 0 8px; }
      @media (min-width: 1200px) {
        .editorial-assets__asset .product-tile .pdp-link {
          margin: 40px 0 16px; } }
      .editorial-assets__asset .product-tile .pdp-link .ellip,
      .editorial-assets__asset .product-tile .pdp-link .ellip span {
        font-family: "PPeikoLight", "arial", "sans-serif";
        font-size: 24px;
        line-height: 32px; }
        @media (min-width: 1200px) {
          .editorial-assets__asset .product-tile .pdp-link .ellip,
          .editorial-assets__asset .product-tile .pdp-link .ellip span {
            font-size: 32px;
            line-height: 44px; } }
    .editorial-assets__asset .product-tile .product-type-link {
      font-size: 14px;
      line-height: 24px; }
      @media (min-width: 1200px) {
        .editorial-assets__asset .product-tile .product-type-link {
          font-size: 16px; } }
    .editorial-assets__asset .product-tile .add-to-card-cta {
      margin-top: 32px; }
      @media (min-width: 1200px) {
        .editorial-assets__asset .product-tile .add-to-card-cta {
          margin-top: 40px; } }

.editorial-assets:not(.slick-slider):not(.editorial-assets--predefined-size) {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start;
  gap: 24px;
  padding: 0 24px; }
  @media (min-width: 769px) {
    .editorial-assets:not(.slick-slider):not(.editorial-assets--predefined-size) {
      padding: 0; } }
  .editorial-assets:not(.slick-slider):not(.editorial-assets--predefined-size) .editorial-assets__asset {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%; }
    @media (min-width: 544px) {
      .editorial-assets:not(.slick-slider):not(.editorial-assets--predefined-size) .editorial-assets__asset {
        -ms-flex-preferred-size: calc(50% - 12px);
            flex-basis: calc(50% - 12px); } }
    @media (min-width: 769px) {
      .editorial-assets:not(.slick-slider):not(.editorial-assets--predefined-size) .editorial-assets__asset {
        -ms-flex-preferred-size: calc(33.3333% - 16px);
            flex-basis: calc(33.3333% - 16px); } }

.editorial-assets--predefined-size:not(.slick-slider) {
  display: -ms-flexbox;
  display: flex; }

.editorial-assets--size-1 .editorial-assets__asset {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%; }

.editorial-assets--size-1 .video-widget {
  max-width: 1160px;
  margin: 0 auto; }

.editorial-assets--size-2:not(.editorial-assets--same-level) {
  gap: 0; }
  @media (min-width: 769px) {
    .editorial-assets--size-2:not(.editorial-assets--same-level) .editorial-assets__asset {
      -ms-flex: 0 0 50%;
          flex: 0 0 50%; } }

@media (min-width: 769px) {
  .editorial-assets--size-3 {
    -ms-flex-pack: justify;
        justify-content: space-between; } }

@media (min-width: 769px) {
  .editorial-assets--size-3 .editorial-assets__asset {
    -ms-flex: 0 0 32%;
        flex: 0 0 32%; } }

.editorial-assets--same-level {
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 24px; }
  @media (min-width: 769px) {
    .editorial-assets--same-level .editorial-assets__asset:nth-child(2) {
      padding-top: 0; } }

.editorial-assets .slick-list {
  padding: 0 22px; }

.editorial-assets .slick-track {
  display: -ms-flexbox;
  display: flex; }

.editorial-assets .slick-slide {
  margin: 0 2px;
  height: auto; }
  .editorial-assets .slick-slide > div,
  .editorial-assets .slick-slide .editorial-assets__asset {
    height: 100%; }
  .editorial-assets .slick-slide .product-tile {
    height: 100%; }
    .editorial-assets .slick-slide .product-tile .pdp-link {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }

.editorial-assets .slick-dots {
  margin: 24px 24px 0;
  background-color: rgba(57, 57, 57, 0.1); }
  .editorial-assets .slick-dots li {
    line-height: 0;
    height: 2px; }
    .editorial-assets .slick-dots li.slick-active button {
      background-color: var(--indicatorColor); }
  .editorial-assets .slick-dots button {
    font-size: 0;
    line-height: 0;
    display: block;
    border-radius: 1px;
    background-color: transparent; }
    .editorial-assets .slick-dots button:focus {
      box-shadow: 0 0 0 1px var(--indicatorColor), 0 0 0 1px #fff9ed; }

.editorial-assets__wrapper {
  margin: 24px -4px 0; }
  @media (min-width: 769px) {
    .editorial-assets__wrapper {
      max-width: 1200px;
      margin: 80px auto 0;
      padding: 0 20px; }
      .editorial-container__side-by-side-wrapper .editorial-assets__wrapper {
        margin: 0; } }
  @media (min-width: 769px) {
    .editorial-assets__wrapper.is-desktop-carousel {
      max-width: unset;
      padding: 0;
      margin-inline: -16px; }
      .editorial-container__side-by-side-wrapper .editorial-assets__wrapper.is-desktop-carousel {
        max-width: 509px;
        margin-inline: 0;
        padding: 0 20px; }
      .editorial-container--full-width .editorial-assets__wrapper.is-desktop-carousel {
        margin-inline: 0; }
      .editorial-assets__wrapper.is-desktop-carousel .editorial-assets {
        display: unset; }
        .editorial-assets__wrapper.is-desktop-carousel .editorial-assets .slick-arrow {
          width: 60px;
          height: 120px;
          border-radius: 0 60px 60px 0;
          background: #fff url("../../images/svg/arrow-right-small.svg") left 5px center no-repeat;
          cursor: pointer;
          left: unset;
          right: unset; }
          .editorial-assets__wrapper.is-desktop-carousel .editorial-assets .slick-arrow.slick-prev {
            right: 0; }
          .editorial-assets__wrapper.is-desktop-carousel .editorial-assets .slick-arrow.slick-next {
            right: -60px; }
          .editorial-assets__wrapper.is-desktop-carousel .editorial-assets .slick-arrow.slick-disabled {
            cursor: default;
            background-color: #f0f0f0; }
        .editorial-assets__wrapper.is-desktop-carousel .editorial-assets .slick-slide {
          margin: 0 calc(var(--slidesMarginDesktop) / 2); }
        .editorial-assets__wrapper.is-desktop-carousel .editorial-assets .slick-list {
          padding: 0 calc((100% - 1160px) / 2); }
          .editorial-container__side-by-side-wrapper .editorial-assets__wrapper.is-desktop-carousel .editorial-assets .slick-list {
            padding: 0; } }
  .editorial-assets__wrapper .slick-slider--arrows-out-of-bounds.editorial-assets .slick-arrow {
    left: auto !important; }
    .editorial-assets__wrapper .slick-slider--arrows-out-of-bounds.editorial-assets .slick-arrow.slick-prev {
      right: 65px; }
    .editorial-assets__wrapper .slick-slider--arrows-out-of-bounds.editorial-assets .slick-arrow.slick-next {
      right: 5px; }

.animated-asset {
  position: absolute;
  top: 364px;
  left: 50%;
  transform: translateX(-50%);
  display: none; }
  @media (min-width: 769px) {
    .animated-asset {
      display: block; } }

/*************
* GoUp *
*************/
@keyframes goUp {
  0% {
    top: 364px; }
  100% {
    top: -100%; } }

.goUp {
  animation-duration: 3s; }

.goUp.go {
  animation-name: goUp; }

.content-card {
  position: relative;
  width: -moz-fit-content;
  width: fit-content; }
  .content-card--overlay .content-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px; }
    @media (min-width: 769px) {
      .content-card--overlay .content-card__content {
        padding: 32px; } }
  .content-card--overlay .content-card__text, .content-card--overlay .content-card__title {
    color: #fff; }
    .content-card--overlay .content-card__text p, .content-card--overlay .content-card__title p {
      color: #fff; }
  .content-card__title {
    font-size: 14px;
    line-height: 24px;
    font-family: "VeuveClicquotRegular", "arial", "sans-serif"; }
    @media (min-width: 769px) {
      .content-card__title {
        font-size: 16px; } }
  .content-card__text,
  .content-card__text p {
    font-size: 14px;
    line-height: 24px;
    margin: 0; }
    @media (min-width: 769px) {
      .content-card__text,
      .content-card__text p {
        font-size: 16px; } }
  .content-card__text {
    margin-top: 8px; }
  .content-card__cta {
    font-size: 14px;
    line-height: 24px; }
    @media (min-width: 769px) {
      .content-card__cta {
        font-size: 16px; } }
    .content-card__cta.link-light {
      font-size: 14px;
      color: #fff;
      line-height: 24px; }
      @media (min-width: 769px) {
        .content-card__cta.link-light {
          font-size: 16px; } }
  .content-card__figure {
    margin: 0; }
  .content-card__overlay-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    border: none;
    background: transparent;
    cursor: pointer; }
  .content-card__tag-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (min-width: 769px) {
      .content-card__tag-list {
        margin-top: 24px; } }


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