/** Shopify CDN: Minification failed

Line 280:53 Unexpected "'.bundle-color-swatch'"

**/
/* breadcrumb bar */
.product_breadcrumb-container {
  background: var(--color-background);
  color: var(--color-foreground);
  padding: 15px 0;
}

.product_breadcrumb-text {
  font-size: 14px;
  line-height: 20px;
}

/* Media sticky */

@media screen and (min-width: 45em) {
  .main-product_custom-gallery,
  .main-product_gallery {
    position: sticky;
    top: 160px;
  }
}


/* Custom Media */

@media screen and (max-width: 45em) {
  .media-desktop-only {
    display: none !important;
  }
}
@media screen and (min-width: 45em) {
  .media-mobile-only {
    display: none !important;
  }
}

.main-product_custom-gallery {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.main-product_custom-gallery-row {
  display: grid;
  column-gap: 20px;
  width: 100%;
}

.media-by-row__1 {
  grid-template-columns: 1fr;
}
.media-by-row__2 {
  grid-template-columns: 1fr 1fr;
}
.media-by-row__3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.main-product_custom-media,
.main-product_wrap-first-media {
  position: relative;
}

.main-product_custom-media {
  margin-top: 20px;
}
.main-product_custom-media.hide {
  display: none !important;
}
.main-product_custom-gallery-row:first-child .main-product_custom-media {
  margin-top: 0;
}

.main-product_custom-media img {
  border-radius: 0 !important;
}

.main-product_custom-gallery-all {
  display: none;
}


/* Galery */
.SliderList {
  position: relative;
}

.gallery-slider {
  max-width: 55vw;
  width: 100%;
}

.gallery-thumbnails {
  margin: 20px auto;
  max-width: 50%;
}

.gallery-slider .media img,
.gallery-thumbnails .media img {
  border-radius: 0;
}

.main-product_inner .dots,
.main-product_inner .arrow {
  display: none;
}

@media screen and (max-width: 45em) {
  .main-product_inner .arrow {
    display: none !important;
  }
}

.main-product_inner .navigation-wrapper:hover .arrow {
  display: block;
}

.image-zoom:hover {
  cursor: grab;
}

/* product_infos */

@media screen and (min-width: 45em) {
  .product_infos-sticky {
    position: sticky;
    top: 160px;
  }
}

.product_infos .product_title {
  font-size: 36px;
  line-height: 50px;
  margin: 0;
}

.product_infos .jdgm-preview-badge__wrapper {
  text-decoration: none;
}
.product_infos .jdgm-preview-badge__wrapper * {
  pointer-events: none;
}

/* Coming soon */

.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-block-start: 12px !important;
  margin-block-end: 30px !important;
  padding: 20px 14px;
  border: 2px solid hsl(var(--color-solid-button-atc-background));
  border-radius: 10px;
  text-align: center;
  color: hsl(var(--color-solid-button-atc-background));
}

.coming-soon__title {
  margin: 0;
  font-size: 24px;
  line-height: 26px;
  font-weight: 500;
}

.coming-soon__text {
  margin: 8px 0 0 0;
  font-size: 16px;
  line-height: 18px;
}

.coming-soon-actions__trigger,
.coming-soon-actions__form button[type="submit"] {
  background-color: hsl(var(--color-solid-button-atc-background));
  color: hsl(var(--color-button-atc-label));
}

.coming-soon-actions__form input[name="contact[email]"].error {
  border: 1px solid #bb3e3e;
}


/* Description */

.product_infos .product_description {
  font-size: 16px;
  line-height: 24px;
  color: #151515;
}

.product_infos .product_description li {
  list-style: inside;
}

.form__label {
  margin-bottom: 10px;
  display: block;
}

/* variants */

.variants_select {
  position: relative;
}

.variants_select .icon--caret {
  position: absolute;
  content: '';
  height: 1rem;
  right: calc(var(--inputs-border-thickness) + 1.5rem);
  top: calc(50% - 0.4rem);
  pointer-events: none;
}

.product-form__input.product-form__input--dropdown {
  max-width: unset;
}

.product-form__input {
  flex: 0 0 100%;
  padding: 0;
  margin: 0 0 1.5rem 0;
  max-width: 37rem;
  min-width: fit-content;
  border: none;
}

fieldset.product-form__input .form__label {
  margin-bottom: 0.2rem;
}

.product-form__input input[type='radio'] {
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
}

.product-form__input input[type='radio']:disabled {
  display: none;
}

.product-form__input input[type='radio'] + label {
  border: 1px solid #e5e5e5;
  background-color: var(--color-background);
  color: var(--color-foreground);
  border-radius: 4px;
  display: inline-block;
  margin: 0.7rem 0.5rem 0.2rem 0;
  padding: 2rem 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-align: center;
  transition: border .2s ease;
  cursor: pointer;
  position: relative;
}

.product-form__input input[type='radio']:checked + label.bundle-color-swatch:before {
  border: 1px solid var(--color-foreground);
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  z-index: 1;
  border-radius: 50%;
}


.product-form__input input[type='radio'] + label:not('.bundle-color-swatch'):hover {
  border-color: var(--color-foreground);
}

.product-form__input input[type='radio']:checked + label {
  color: var(--color-foreground);
  border-color: var(--color-foreground);
}

@media screen and (forced-colors: active) {
  .product-form__input input[type=radio]:checked + label {
    text-decoration: underline;
  }
}

.product-form__input input[type='radio']:checked + label::selection {
  background-color: rgba(var(--color-foreground), 0.3);
}

.product-form__input input[type='radio']:disabled + label {
  border: 1px solid #e5e5e5;
  color: #dddddd;
  background-color: #f7f7f7;
  cursor: not-allowed;
  opacity: 0.8;
}
.product-form__input input[type='radio']:focus-visible + label {
  box-shadow: 0 0 0 0.3rem var(--color-background),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

/* Fallback */
.product-form__input input[type='radio'].focused + label,
.no-js .shopify-payment-button__button [role="button"]:focus + label {
  box-shadow: 0 0 0 0.3rem var(--color-background),
    0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
}

/* No outline when focus-visible is available in the browser */
.no-js .product-form__input input[type='radio']:focus:not(:focus-visible) + label {
  box-shadow: none;
}

.product-form__input input[type="radio"] + .color-swatch {
  border: 3px solid #f4f5ff; /* Change this hex code to change the color of the non-active/non-selected variant */
  width: 40px;
  height: 40px;
  padding: 0;
}

.product-form__input input[type="radio"]:checked + .color-swatch,
.product-form__input input[type="radio"]:hover + .color-swatch {
  border: 3px solid #ccd1d1; /* Change this hex code to change the color of the active/selected variant */
}

.product-form__input input[type="radio"] + .swatch {
  border: 3px solid #f4f5ff; /* Change this hex code to change the color of the non-active/non-selected variant */
  width: 40px;
  height: 40px;
  padding: 0;
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}


.product-form__input input[type="radio"]:checked + .swatch,
.product-form__input input[type="radio"]:hover + .swatch {
  border: 3px solid #ccd1d1; /* Change this hex code to change the color of the active/selected variant */
  background: none;
}

/* product_price */
.product_price .price {
  column-gap: 1rem;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr;
}

.product_price .price_item--regular {
  font-size: 18px;
  line-height: 28px;
}

.product_price .price_item--sale {
  font-size: 16px;
  line-height: 18px;
  color: #6f787e;
}

.product_price .price_item--regular.price_item--sale {
  color: #1c1c1c;
}

.product_price .badges-price {
  display: block;
  justify-self: flex-end;
}
.product_price .badges-price .badge {
  border: var(--badges-border-thickness) solid var(--color-background);
}

/* prix club */
.floating_product_badges {
  position: absolute;
  z-index: 1;
  top: 2rem;
  right: 2rem;
}
.floating_product_badges.top_left {
  top: 2rem;
  right: auto;
  left: 2rem;
}
.floating_product_badges.top_right {
  top: 2rem;
  right: 2rem;
}
.floating_product_badges.bottom_left {
  top: auto;
  bottom: 2rem;
  right: auto;
  left: 2rem;
}
.floating_product_badges.bottom_right {
  top: auto;
  bottom: 2rem;
  right: 2rem;
}
.floating_product_badges .badges {
  align-items: flex-end;
}
.floating_product_badges.top_left .badges,
.floating_product_badges.bottom_left .badges {
  align-items: flex-start;
}

.product_price .price.price--club {
  grid-template-columns: auto 1fr;
}

.product_price .price_item--club {
  font-size: 22px;
  line-height: 28px;
  color: var(--color-background);
}

.product_price .price_item--club span:first-of-type {
  font-size: 17px;
}

.product_club_infos {
  background: var(--color-background);
  color: var(--color-foreground);
  border-radius: 10px;
  padding: 2rem;
  line-height: 28px;
}

.product_club_infos_text strong {
  /*color: hsl(var(--color-octal-background));*/
  color: var(--color-background);
}

.product_club_infos_text .link {
  padding: 0;
  display: inline;
}

/* product_shipping_estimate */

.product_shipping_estimate {
  font-size: 13px;
  line-height: 20px;
  color: #00706e;
  display: flex;
  align-items: center;
}

.product_shipping_estimate-pin {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #00706e;
  display: block;
  margin-right: 10px;
}

/* product-icons-line */

.product-icons-line {
  background: var(--color-background);
  color: var(--color-foreground);
  border-radius: 20px;
  padding: 2rem 1rem;
}

.product-icons-line_grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1rem;
}

.product-icons-line_text p {
  margin: auto;
}

.product-icons-line_item {
  display: grid;
  grid-template-rows: auto 1fr;
  text-align: center;
  grid-row-gap: 1rem;
}

.product-icons-line_item .icon {
  margin: 0 auto;
  width: 30px;
}

.product-icons-line_item_media {
  margin-right: 10px;
}

/* product-accordion */

.product-accordion .accordion__title {
  font-size: 18px;
  line-height: 48px;
  font-weight: 500;
  pointer-events: none;
}

.product-accordion .collapsible-content-details {
  border-bottom: 1px solid #efefef;
}

.product-accordion .collapsible-content__trigger {
  padding-bottom: 10px;
}

.product-accordion .icon {
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  width: 15px;
  pointer-events: none;
}

.product-accordion .accordion__content {
  padding: 20px 0;
}

.product-accordion .accordion details[open] > summary .icon {
  transform: translateY(-50%) rotate(0deg);
}


.product-accordion .accordion details.open > summary .icon {
  transform: translateY(-50%) rotate(90deg);
}

.product-accordion .rte ul {
  list-style: inside;
}

/* product_upsell */

.product_upsell {
  display: flex;
  flex-direction: column;
  grid-gap: 2rem;
}

@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    .product_upsell .product-card {
     margin: 1rem 0;
   }
 }
}

.product_upsell .product-card {
  background: var(--color-background);
  color: var(--color-foreground);
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 2rem;
  border-radius: 15px;
  padding: 10px;
}

.product_upsell .product-card_vendor {
  display: none;
}

.product_upsell .product-card_title {
  font-size: 14px;
  line-height: 19px;
  margin-top: 5px;
  margin-bottom: 8px;
}

.product_upsell .product-card_subtitle {
  font-size: 12px;
  line-height: 18px;
  color: #151515;
  margin-bottom: 0px;
}
.product_upsell .product-card-upsell-price-form, .product_upsell .price_item--sale {
  font-size: 13px;
  line-height: 15px;
}

.product_upsell .product-card_media {
  position: relative;
  height: -webkit-fit-content;
}

.product_upsell .product-card_flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  column-gap: 4px;
}

.product_upsell .link--block,
.product_upsell .media {
  height: 100%;
  min-height: 130px;
  width: 100%;
  aspect-ratio: 1/1 !important;
}

.product-upsell-discount-2__wrap-popup .modal_content_image .media {
  aspect-ratio: initial !important;
  height: 100%;
  min-height: 130px;
  width: 100%;
}

.product_upsell .product-card .badges {
  position: relative;
  inset-block-start: 0;
  inset-block-end: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  height: fit-content;
}
@media screen and (min-width: 45.01em) {
  .product_upsell .product-card .badges {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 0.5rem;
  }
}

.product_upsell .product-card:is(:hover,:focus-within) .product-card_form-wrap {
  transform: unset;
}

.product_upsell .product-card_form-wrap {
  position: relative;
  inset-inline-start: 0;
  inset-inline-end: 0;
  transform: unset;
  opacity: 1;
  pointer-events: all;
  padding-inline: 0;
  transition: none;
}

.product_upsell .product-card_form {
  row-gap: 0;
}

.product-card-upsell-price-form {
  display: flex;
  justify-content: space-between;
}

.product_upsell-container {
  width: 100%;
}

.product-card-upsell-discount .product-card_details {
  padding: 0;
}
.product-card-upsell-discount .product-card_title {
  margin: 0;
}
.product-card-upsell-discount-2 .product-card_title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2px;
  font-size: 15px;
}

.product-card-upsell-discount-2 .product-card-upsell-variants {
  margin-top: 1rem;
}

.product-card-upsell-discount .product-card_title a {
  display: inline;
}

.product-card-upsell-discount .price {
  margin: 0;
  margin-right: 10px;
}
.product-card-upsell-discount .product-card-upsell-price-form {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.product-card-upsell-discount-2 .product-card-upsell-price-form {
  justify-content: space-between;
  flex-wrap: nowrap;
}

.product-card-upsell__wrap-prices {
  display: flex;
  flex-direction: column;
}

.product-card-upsell-discount-2 .product-card-upsell-price-form .price_item {
  font-size: 15px;
  line-height: 18px;
}

.product-card-upsell-discount-2 .product-card-upsell-price-form .price_item--regular {
  font-weight: 500;
}

.product-card-upsell-discount-2 .product-card-upsell-price-form .price.price--sale {
  display: flex;
  flex-direction: column-reverse;
}

.product-card-upsell-discount-2 .product-card-upsell-price-form .price_item--club {
  color: var(--color-background);
}

.product-card-upsell-discount-2 .product-card-upsell-price-form .product-ecotaxe {
  display: none;
}

.product-card-upsell-variants .product-form__input input[type=radio]+label {
  padding: 1rem 0.7rem;
}

.product-card-upsell-variants .input:not([type="checkbox"]),
.product-card-upsell-variants input:not([type="checkbox"]),
.product-card-upsell-variants select {
  padding-inline-start: 16px;
  padding-inline-end: 16px;
  padding-block-start: 8px;
  padding-block-end: 8px;
  font-size: 13px;
  line-height: 15px;
}

.product-card-upsell-variants .variants_select .icon--caret {
  height: 8px;
  top: calc(50% - 3px);
}

.product_infos .trustpilot-widget {
  position: absolute !important;
  left: -15px;
  top: 0;
}

.product_price .price .price_item--regular {
  order: 1;
}
.product_price .price .price_item--sale {
  order: 2;
}
.product_price .price .badges-price {
  order: 3;
}

.template-product .header-wrap-sticky, 
.template-product-bundle .header-wrap-sticky,
.template-product .icons-line-wrap-sticky, 
.template-product-bundle .icons-line-wrap-sticky {
  position: relative;
  top: 0;
}

.product-icons-line_item_text {
  font-size: 13px;
  line-height: 17px;
}

/* MODAL */

.modal_trigger {
  display: inline-block;
  position: relative;
  width: 17px;
  height: 17px;
  line-height: 17px;
  border-radius: 50%;
  background-color: #0c1548;
  margin-left: 5px;
  margin-top: 2px;
  cursor: pointer;
  vertical-align: top;
}

.product-card-upsell-discount-2 .modal_trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.modal_trigger_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #FFFFFF;
  font-size: 11px;
}

/* The Modal (background) */
.modal_container {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: fixed;
  width: 100vw;
  height: 100%;
  z-index: 9999; /* Sit on top */
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_container.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.modal_overlay {
  position: absolute;
  z-index: 99999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal_content {
  margin: calc(50vh - 60px) auto; /* 15% from the top and centered */
  width: 70%; /* Could be more or less, depending on screen size */
  height: auto;
  max-height: 80vh;
  position: relative;
  background-color: #fefefe;
  color: #0c1548;
  z-index: 9999999;
  display: grid;
  grid-template-columns: 3fr 2fr;
}

.product-upsell-discount-2__wrap-popup .modal_content {
  min-height: 50vh;
  grid-template-columns: 4fr 3fr;
  border-radius: 16px;
  overflow: hidden;
}

/* The Close Button */
.modal_close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fefefe;
}

.modal_container_close_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #0c1548;
  pointer-events: none;
}

.product-upsell-discount-2__wrap-popup .modal_container_close_container {
  display: flex;
}

.product-upsell-discount-2__wrap-popup .modal_container_close_container svg {
  width: 14px;
  height: auto;
}

.modal_content_title {
  margin-bottom: 20px;
}

.modal_content_texts {
  max-height: 80vh;
  overflow: scroll;
  padding: 30px;
}

.modal_content_link {
  margin: 16px 0 0 0;
}

.product-upsell-discount-2__wrap-popup .modal_content_texts {
  overflow: auto;
}

.modal_content_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.product-upsell-discount-2__wrap-popup .media img {
  border-radius: 0;
}


/* CUSTOM CHECKBOX */

.custom_checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom_checkbox-container .custom_checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.custom_checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 3px;
  border: 1px solid #cfd1d6;
}

/* On mouse-over, add a grey background color */
.custom_checkbox-container:hover .custom_checkbox-input ~ .custom_checkbox-checkmark {
  background-color: #FFFFFF;
  border: 1px solid var(--color-foreground);
}

/* When the checkbox is checked, add a blue background */
.custom_checkbox-container .custom_checkbox-input:checked ~ .custom_checkbox-checkmark {
  background-color: var(--color-foreground);
  border: 1px solid var(--color-foreground);
}

/* When the checkbox is disabled */
.custom_checkbox-container .custom_checkbox-input:disabled {
  cursor: default;
  pointer-events: none;
}

.custom_checkbox-container .custom_checkbox-input:disabled ~ .custom_checkbox-checkmark {
  background-color: #cfd1d6;
  border: 1px solid #cfd1d6;
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom_checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom_checkbox-container .custom_checkbox-input:checked ~ .custom_checkbox-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom_checkbox-container .custom_checkbox-checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 98em) {
  .gallery-slider {
    max-width: 43vw;
    width: 100%;
  }
}

@media screen and (min-width: 127em) {
  .gallery-slider {
    max-width: 35vw;
    width: 100%;
  }
}

@media screen and (min-width: 157em) {
  .gallery-slider {
    max-width: 30vw;
    width: 100%;
  }
}

@media screen and (min-width: 187em) {
  .gallery-slider {
    max-width: 25vw;
    width: 100%;
  }
}

@media screen and (max-width: 45em) {

  .product_breadcrumb-container {
    padding: 10px 0;
  }

  .product_breadcrumb-text {
    font-size: 12px;
    line-height: 16px;
  }

  .main-product_inner {
    padding: 0 !important;
  }

  .main-product_inner .product_price {
    margin-top: 40px;
  }

  .gallery-slider {
    max-width: 100vw;
    width: 100%;
  }

  .gallery-thumbnails {
    display: none !important;
  }

  .main-product_inner .dots {
    display: flex;
    bottom: 12%;
    right: 5%;
    left: auto;
    padding: 0;
    transform: translate(-5%,100%);
  }

  .product_infos .product_title {
    font-size: 24px;
    line-height: 35px;
  }

  .product_infos-wrap {
    padding: 0 20px;
    overflow: hidden;
  }

  .product-icons-line {
    padding: 20px 5px;
  }

  .product-icons-line_item_text {
    font-size: 12px;
    line-height: 13px;
  }

  .product_upsell {
    flex-direction: row;
    column-gap: 0!important;
    padding-left: 0!important;
    padding-right: 0!important;
  }

  .product_upsell .product-card {
    grid-template-columns: 1fr;
    /*
    grid-template-rows: 110px 1fr;
    grid-gap: 1rem;
    */
    grid-gap: 0;
    width: 80px !important;
  }

  .product_upsell .product-card_details {
    row-gap: 0;
    padding: 0;
  }

  .product_upsell .custom_checkbox-checkmark {
    width: 28px;
    height: 28px;
    top: 5px;
  }

  .product_upsell .custom_checkbox-container .custom_checkbox-checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    
  }

  .product_upsell .link--block,
  .product_upsell .media {
    height: 100%;
    min-height: 110px;
    width: 100%;
    aspect-ratio: auto !important;
  }

  .product_upsell .product-card .badges {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  .product-card-upsell-discount-2 .product_upsell .badges {
    top: 10px;
    left: auto;
    right: 10px;
  }

  .product-card-upsell-discount-2 .product-card-upsell-variants {
    margin-top: 1.5rem;
  }

  .template-product .header-wrap-sticky, 
  .template-product-bundle .header-wrap-sticky {
    position: sticky;
  }

  .modal_content {
    margin: calc(20vh - 60px) auto; /* 15% from the top and centered */
    width: 85%; /* Could be more or less, depending on screen size */
    grid-template-columns: 1fr;
  }

  .product-upsell-discount-2__wrap-popup .modal_content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    grid-template-columns: 1fr;
    border-radius: 0;
    overflow: auto;
  }

  .product-upsell-discount-2__wrap-popup .modal_close {
    order: 0;
    display: grid;
    box-sizing: content-box;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    margin: 20px 0;
    padding: 0 30px;
  }

  .product-upsell-discount-2__wrap-popup .modal_container_close_container {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }

  .product-upsell-discount-2__wrap-popup .modal_container_close_container svg {
    width: 18px;
  }

  .product-upsell-discount-2__wrap-popup .modal_content_texts {
    order: 2;
    display: grid;
    overflow: initial;
  }

  .modal_content_image {
    display: none;
  }

  .product-upsell-discount-2__wrap-popup .modal_content_image {
    order: 1;
    display: grid;
  }

  #product-upsell-discount .product-card_flex {
    align-items: center;
  }
  #product-upsell-discount .custom_checkbox-container {
    width: 20px;
    height: 20px;
  }
  #product-upsell-discount .custom_checkbox-checkmark {
    width: 20px;
    height: 20px;
  }

}

