@charset "UTF-8";
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/SourceSansPro-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/SourceSansPro-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/SourceSansPro-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/SourceSansPro-Bold.ttf") format("truetype");
}
.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  gap: 1rem;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
.column-40 {
  flex: 0 0 calc(40% - 0.5rem);
}
.column-50 {
  flex: 0 0 calc(50% - 0.5rem);
}
.column-60 {
  flex: 0 0 calc(60% - 0.5rem);
}
.column-70 {
  flex: 0 0 calc(70% - 0.5rem);
}
.column-100 {
  flex: 0 0 100%;
}

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

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

.mt-1 {
  margin-top: 2rem;
}

.mt-auto {
  margin-top: auto;
}

.p-1 {
  padding: 1rem;
}

* {
  box-sizing: border-box;
  text-wrap: balance;
}

p, div {
  font-size: 1.2rem;
}

html {
  background: #000000;
}

sup {
  font-size: 50%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Source Sans Pro", system-ui, sans-serif;
  color: #222222;
  background: #C7C8CF;
  overflow-x: hidden;
}

ol, ul {
  padding-left: 1rem;
}
ol li, ul li {
  margin-bottom: 0.7rem;
}

b, strong {
  font-weight: 600;
}

p, ul, ol {
  margin-top: 0;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

video {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #FBF9FD;
}

.app {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: 0 0;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  background: #F8F8F8;
}

.content-page {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.content-page.active {
  opacity: 1;
}

.titre {
  font-weight: 500;
  line-height: 1.2;
}

.subtitre {
  font-size: 1.95rem;
  font-weight: 300;
}

.content-group__title {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}
.content-group p {
  margin-top: 0;
}

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

.symbol-plus {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.bg-dark {
  background-color: #000000;
  color: #FFFFFF;
}

.radius-md {
  border-radius: 8px;
}

.radius-lg {
  border-radius: 1rem;
}

.radius-sm {
  border-radius: 4px;
}

.purple-band {
  background-color: #6022A6;
  text-align: center;
  padding: 1rem;
  color: #FFFFFF;
}

.footnote, ol {
  font-size: 0.7rem;
  margin-top: 0.5rem;
}

ol.footnote li {
  margin-bottom: 0.2rem;
}

.round-number {
  background-color: #6022A6;
  color: #FFFFFF;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.app:not([data-section=home]) .download-cta {
  display: none;
}

.download-cta {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  z-index: 5;
}

.download__msg {
  position: absolute;
  bottom: 0.3rem;
  right: 0.5rem;
  font-size: 0.75rem;
  color: #5B5B67;
}
.download__msg[hidden] {
  display: none;
}

.btn-download {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.375rem;
  padding: 0.31rem 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 1px solid #C7C8CF;
  background: #FFFFFF;
  color: #222222;
}
.btn-download:hover {
  background: rgba(96, 34, 166, 0.08);
}
.btn-download.downloaded {
  color: #68B76F;
  border-color: #68B76F;
}
.btn-download img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  border-radius: 0;
}

.loader-download {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
}
.loader-download.is-open {
  display: flex;
}

.loader-download__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.loader-step {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.loader-step.is-active {
  display: flex;
}
.loader-step h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.loader-download .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #eee;
  border-top-color: #6022A6;
  border-radius: 50%;
  animation: loader-spin 0.8s linear infinite;
}

.loader-download .progress {
  width: 100%;
  max-width: 400px;
  height: 24px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}

.loader-download .progress-bar {
  height: 100%;
  background: #6022A6;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
}

.loader-download .btn-primary {
  background: #6022A6;
  color: #FFFFFF;
  border: 0;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
.loader-download .btn-primary:hover {
  background: #512286;
}

.loader-download .icon-done {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #68B76F;
  border-radius: 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}
.popup-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  z-index: 1000;
  pointer-events: none;
}
.popup-layer:not([aria-hidden=true]) {
  pointer-events: auto;
}
.popup-layer[aria-hidden=true] {
  display: none;
}

.popup {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1920px;
  height: 1080px;
  background: rgba(34, 34, 34, 0.7);
  overflow: auto;
}
.popup__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 787px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 80px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
.popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 4px;
  z-index: 2;
}
.popup__close img {
  width: 20px;
}
.popup__body {
  outline: none;
  height: 100%;
  overflow: auto;
  position: relative;
}
.popup__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.popup__content > .row {
  height: 100%;
}
.popup__title {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 3.5rem;
  margin-bottom: 1rem;
}
.popup__suptitle {
  font-weight: 600;
  line-height: 1.75rem;
  letter-spacing: 0.0225rem;
  font-size: 1.125rem;
}

.popup-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.popup-navigation__prev {
  display: flex;
}
.popup-navigation__prev:focus {
  outline: none;
}
.popup-navigation__next {
  margin-left: auto;
  display: flex;
  align-items: center;
  text-align: right;
}
.popup-navigation__next:focus {
  outline: none;
}
.popup-navigation__label {
  font-size: 1rem;
  margin: 0 10px;
  color: #5B5B67;
}
.popup-navigation__label span {
  display: block;
}
.popup-navigation__previous-name, .popup-navigation__next-name {
  color: #222222;
  font-weight: 400;
  font-size: 1.2rem;
}

.popup--gallery {
  background-color: rgba(34, 34, 34, 0.7);
  z-index: 2000;
  pointer-events: auto;
}
.popup--gallery .popup__dialog {
  padding: 0;
  background: #000000;
}
.popup--gallery .popup__body {
  position: relative;
  overflow: visible;
}
.popup--gallery .popup__close {
  filter: invert(1);
}
.popup--gallery .swiper-pagination-bullets {
  position: absolute;
  bottom: -43px !important;
  background-color: #000000;
  padding: 10px 25px;
  border-radius: 0 0 10px 10px;
  width: fit-content !important;
  transform: translateX(-50%);
  left: 50% !important;
}
.popup--gallery .swiper-pagination-bullet {
  margin: 0 5px;
}
.popup--gallery .swiper-button-next,
.popup--gallery .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
  width: 65px;
  height: 65px;
}
.popup--gallery .swiper-pagination-bullet {
  background-color: #000000;
  box-shadow: 0px 0px 0pt 1px #63666a, inset 0 0px 0px 2px #000;
  opacity: 1;
}
.popup--gallery .swiper-pagination-bullet-active {
  background-color: #fff;
  box-shadow: 0px 0px 0pt 1px #63666a, inset 0 0px 0px 2px #000;
}
.popup--gallery .swiper-button-next {
  right: -63px;
  border-radius: 0 10px 10px 0;
}
.popup--gallery .swiper-button-prev {
  left: -63px;
  border-radius: 10px 0 0 10px;
}
.popup--gallery .swiper-button-next svg,
.popup--gallery .swiper-button-prev svg {
  fill: #FFFFFF;
  width: 16px;
}
.popup--gallery .swiper-button-next path,
.popup--gallery .swiper-button-prev path {
  fill: #FFFFFF;
}

/* modal dialog */
.modal-dialog {
  background: #000000;
  width: 1580px;
  height: 890px;
  max-width: 1580px;
  max-height: 890px;
  border-radius: 8px;
  padding: 0;
  position: fixed;
  top: 47.5%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%) scale(var(--dialog-scale, 1));
  overflow: hidden;
  border: 0;
}
.modal-dialog video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.modal-dialog__close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  background: none;
  border: 0;
  padding: 4px;
  z-index: 2;
  outline: none;
}
.modal-dialog__close img {
  width: 20px;
}

.cta-popup-video {
  width: fit-content;
  margin-top: 1rem;
  margin-left: auto;
}

.large-text {
  font-size: 1.5rem;
}

.video-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 1920px;
  height: 1080px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-layer[aria-hidden=true] {
  display: none;
}

.video-layer__inner {
  position: relative;
  width: 900px;
  max-height: 90%;
}

.video-layer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
}
.video-layer__close img {
  width: 24px;
  height: 24px;
}

.video-layer__video {
  width: 100%;
  display: block;
}

.chapiter0,
[data-360-root] {
  position: relative;
  width: 100%;
  height: 100%;
}

.threesixty-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
  z-index: 1;
}
.threesixty-holder:active {
  cursor: grabbing;
}
.threesixty-holder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.chapiter__btn-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.chapiter_home {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  width: 550px;
  height: 60px;
}

.chapiter0 .titre,
.chapiter0 .subtitre {
  position: absolute;
  left: 30px;
  z-index: 2;
  margin: 0;
}

.chapiter0 .titre {
  top: 6rem;
  font-size: 3rem;
}

.chapiter0 .subtitre {
  top: 9.5rem;
  font-size: 1.95rem;
  font-weight: 300;
}

.footnote_home {
  position: absolute;
  bottom: 0.5rem;
  left: 2rem;
  font-size: 0.7rem;
  color: #222222;
  z-index: 2;
}

.ge-btn {
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all ease 0.3s;
  border: 1px solid #C7C8CF;
  background: #FFFFFF;
  color: #222222;
}
.ge-btn:hover {
  background: #EAE8EB;
  border-color: #C7C8CF;
}
.ge-btn:active {
  background: #D8D7DA;
  border-color: #C7C8CF;
}
.ge-btn:disabled {
  color: #C7C8CF;
  border-color: #C7C8CF;
}
.ge-btn:focus {
  outline: thick double #6022A6;
}
.ge-btn__primary {
  background: #6022A6;
  color: #FFFFFF;
  border-color: #6022A6;
}
.ge-btn__primary:focus {
  outline: thick double #6022A6;
}
.ge-btn__primary:disabled {
  background: #FBF9FD;
}
.ge-btn__primary:active {
  background: #472271;
}
.ge-btn__primary:hover {
  background: #512286;
}
.ge-btn__secondary {
  color: #6022A6;
  border: 1px solid #6022A6;
}
.ge-btn__secondary:focus {
  border-color: #6022A6;
  color: #6022A6;
  outline: thick double #6022A6;
}
.ge-btn__secondary:disabled {
  border-color: #C7C8CF;
  color: #C7C8CF;
}
.ge-btn__secondary:active {
  border-color: #472271;
  color: #472271;
}
.ge-btn__secondary:hover {
  border-color: #512286;
  color: #512286;
}
.ge-btn__lg {
  font-size: 1.375rem;
  line-height: 2rem;
  padding: 0.75rem 2rem;
}
.ge-btn__sm {
  font-size: 0.875rem;
  line-height: 1.375rem;
  padding: 0.31rem 1rem;
}
.ge-btn__fw {
  width: 100%;
}

.bandeau_ge_compassion {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  background: #6022A6;
  z-index: 1000;
}
.bandeau_ge_compassion img {
  width: 250px;
  padding: 18px 24px;
  height: auto;
}

.menu-secondaire {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  bottom: 5rem;
  z-index: 1000;
  width: 100%;
  gap: 1rem;
}
.menu-secondaire .ge-btn {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.menu-secondaire .ge-btn span {
  font-weight: 400;
}

.menu-terciary {
  position: fixed;
  bottom: 5rem;
  right: 0;
  transform: translateX(230px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  transition: all 0.2s ease;
}
.menu-terciary--handle {
  padding: 1rem;
  background: #6022A6;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
  border-radius: 8px 0 0 8px;
  transition: transform 0.3s ease-out;
}
.menu-terciary--handle img {
  filter: invert(1) grayscale(1) brightness(2);
  transition: transform 0.3s ease-out;
}
.menu-terciary--handle:hover {
  background: #512286;
}
.menu-terciary--handle:active {
  background: #472271;
}
.menu-terciary--list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #F4F1F8;
  border-radius: 4px 0 0 4px;
  min-width: 200px;
  max-width: 280px;
  transition: transform 0.3s ease-out;
  text-align: center;
}
.menu-terciary.is-open {
  transform: translateX(0);
}
.menu-terciary.is-open .menu-terciary--handle {
  background: #F4F1F8;
}
.menu-terciary.is-open .menu-terciary--handle img {
  transform: rotate(45deg);
  filter: unset;
}

.app[data-section=clinical_images_review] .navbar__brand {
  color: #FFFFFF;
}

.navbar {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.navbar .icon {
  width: 30px;
  height: auto;
}
.navbar .go-home {
  padding: 0.5rem 0.5rem 0.3rem 0.5rem;
}
.navbar__brand {
  font-size: 25px;
}

.app:not([data-section=home]) .navbar {
  display: flex;
}

.buttons-row {
  position: absolute;
  bottom: -100%;
  width: fit-content;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(40px);
  padding: 30px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 80px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  transition: bottom 0.4s ease-out;
  animation: fadeIn 0.4s ease-out;
  animation-delay: 3.2s;
  animation-fill-mode: forwards;
}
@keyframes fadeIn {
  from {
    bottom: -100%;
  }
  to {
    bottom: 0;
  }
}
.buttons-row .item {
  text-align: center;
  width: 160px;
  cursor: pointer;
  padding: 0 5px;
}
.buttons-row .item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.buttons-row .item__box {
  width: 90px;
  height: 90px;
  background: #6022A6;
  border-radius: 4px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 80px rgba(0, 0, 0, 0.05);
  transition: all ease 0.5s;
}
.buttons-row .item__title {
  text-align: center;
  color: #222222;
  font-weight: normal;
  line-height: 1.2;
  margin-top: 10px;
  font-size: 1rem;
}
.buttons-row .item.blackandwhite .item__box {
  background: #C7C8CF;
}
.buttons-row .item.blackandwhite .item__title {
  color: #C7C8CF;
}

.encart {
  background: #E4E4E4;
  border-radius: 8px;
  padding: 1.5rem;
  width: fit-content;
  margin-bottom: 1rem;
}
.encart__bg-purple {
  background: #6022A6;
  color: #FFFFFF;
}

.encart--accent {
  padding: 0;
}
.encart--accent__title {
  border-radius: 8px 8px 0 0;
  padding: 0.5rem 0.8rem;
  background: #45B2C5;
  color: #222222;
  font-weight: 600;
}
.encart--accent__content {
  padding: 1.5rem;
  color: #222222;
}

.encart--list-center {
  text-align: center;
}
.encart--list-center ul {
  list-style: none;
}

.encart--accent-purple .encart--accent__title {
  background: #6022A6;
  color: #FFFFFF;
}

.encart-gradient {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.encart-gradient__item {
  border-radius: 4px;
  padding: 1.5rem;
  position: relative;
}

.encart-gradient--arrow {
  gap: 2.5rem;
}
.encart-gradient--arrow .encart-gradient__item:after {
  content: "▼";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  color: #6022A6;
  transform: translateX(-50%);
}
.encart-gradient--arrow .encart-gradient__item:last-child:after {
  display: none;
}

.encart-gradient-light-blue .encart-gradient__item:nth-child(1) {
  background: rgba(69, 178, 197, 0.8);
}
.encart-gradient-light-blue .encart-gradient__item:nth-child(2) {
  background: rgba(69, 178, 197, 0.6);
}
.encart-gradient-light-blue .encart-gradient__item:nth-child(3) {
  background: rgba(69, 178, 197, 0.4);
}
.encart-gradient-light-blue .encart-gradient__item:nth-child(n+4) {
  background: rgba(69, 178, 197, 0.2);
}

#popup_H1 .encart__bg-purple {
  position: absolute;
  width: 300px;
  height: 400px;
  z-index: -1;
  padding-top: 40px;
}

#popup_H1B .column:nth-child(5) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#popup_H1B .bg-dark {
  padding: 1rem 2rem;
  border-radius: 8px 8px 0 0;
}
#popup_H1B .img-clinical {
  width: 250px;
  height: 300px;
  object-fit: contain;
  object-position: left;
}
#popup_H1B ol {
  margin-top: 1.5rem;
}

#popup_H1C p, #popup_H1C ul {
  font-size: 1rem;
}
#popup_H1C .bg-dark {
  padding: 1rem 2rem;
  border-radius: 8px;
}
#popup_H1C .encart--accent__content {
  height: 220px;
}
#popup_H1C .encart--accent__title {
  text-align: center;
}
#popup_H1C .img-clinical {
  max-height: 130px;
  object-fit: contain;
  object-position: center;
}
#popup_H1C .column-50 .column:nth-child(1) {
  border-right: 1px solid #000000;
}

#popup_H1D .row-principale {
  gap: 3rem;
}
#popup_H1D .row-benefits {
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}
#popup_H1D .icon-benefits {
  width: 75px;
  height: 75px;
  object-fit: contain;
  object-position: center;
}
#popup_H1D .barre-benefits {
  width: 4px;
  margin-left: 2.3rem;
}
#popup_H1D .img-fluid {
  max-height: 600px;
  object-fit: contain;
  object-position: center;
}

#popup_H2 .popup__title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}
#popup_H2 .encart-gradient .row {
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
}
#popup_H2 .encart-gradient .row .encart-gradient__item {
  width: 100%;
}
#popup_H2 .encart-gradient .row .icon-gradient {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
}
#popup_H2 .encart__bg-purple {
  height: 350px;
  width: 340px;
  margin: 0 auto;
}
#popup_H2 .img-spectra {
  margin-top: -10rem;
}
#popup_H2 .column:nth-child(2) p {
  margin-bottom: 0;
}
#popup_H2 .column:nth-child(2) ol {
  margin-top: 2rem;
}
#popup_H2 .column:nth-child(3) {
  padding-top: 8.2rem;
}
#popup_H2 .ge-btn {
  width: fit-content;
  margin-left: auto;
  margin-top: 0.5rem;
}

#popup_H3 .popup__title {
  margin-bottom: 1rem;
}
#popup_H3 .row-list {
  flex-wrap: nowrap;
  align-items: start;
}
#popup_H3 .row-list img {
  width: 140px;
  height: auto;
  object-fit: contain;
  margin-top: 1rem;
}
#popup_H3 .row-list ul {
  margin-top: 1rem;
}
#popup_H3 .column:nth-child(2) img {
  max-width: 300px;
  margin: 0 auto;
}
#popup_H3 li {
  font-size: 1rem;
}
#popup_H3 .row-2 {
  justify-content: center;
}

#popup_H4 .illu {
  max-width: 500px;
}

#popup_H4B .icon {
  width: 400px;
  margin: 0 auto;
}
#popup_H4B .footnote {
  margin-bottom: 1rem;
}

#popup_H4C .footnote {
  margin-bottom: 1rem;
}

#popup_M1 .img-fluid {
  max-width: 500px;
  margin: 0 auto;
}

#popup_M4 .popup__title {
  margin-bottom: 5rem;
}
#popup_M4 .column-50 p {
  max-width: 550px;
  margin-top: 3rem;
}
#popup_M4 video {
  margin-bottom: 1rem;
}

#popup_M5 .popup__title {
  margin-bottom: 4rem;
}

#popup_M6 .img-illu {
  margin-bottom: 1rem;
}

.citation {
  border-left: 2px solid #6022A6;
  padding-left: 1rem;
}
.citation__text {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.citation__author {
  font-size: 0.9rem;
  font-weight: 600;
}
.citation__position {
  font-size: 0.9rem;
}

.clinical-page {
  background-color: #000000;
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 6rem 2rem 2rem 2rem;
}
.clinical-page__content {
  position: relative;
  flex: 1;
}
.clinical-page__title {
  font-size: 2.5rem;
}
.clinical-page__content-inner {
  position: relative;
  width: 1700px;
  height: auto;
  margin: 0 auto;
}
.clinical-page__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.clinical-page__cta-line {
  display: flex;
  position: absolute;
  top: 6rem;
  left: 5rem;
  z-index: 10;
  gap: 1rem;
}
.clinical-page__cta-line .cta-swiper__control:nth-child(5), .clinical-page__cta-line .cta-swiper__control:nth-child(6) {
  width: 18rem;
}
.clinical-page__cta-line--2 {
  top: 32rem;
  left: 2rem;
}
.clinical-page__cta-line--2 .cta-swiper__control:nth-child(1) {
  width: 19rem;
}
.clinical-page__cta-line--2 .cta-swiper__control:nth-child(3) {
  width: 18rem;
}
.clinical-page__cta-line--2 .cta-swiper__control:nth-child(4) {
  width: 20rem;
}
.clinical-page__cta-line--2 .cta-swiper__control:nth-child(5) {
  width: 14rem;
}

.cta-swiper__control {
  width: 13rem;
  height: 20rem;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.popup--gallery:has(.clinical-gallery__swiper) {
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 34, 34, 0.7);
}
.popup--gallery:has(.clinical-gallery__swiper)[hidden] {
  display: none !important;
}

.clinical-gallery {
  height: 100%;
  width: 100%;
  background: #000000;
  border-radius: 8px;
  box-shadow: 0 1px 50px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}
.clinical-gallery__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 20;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.clinical-gallery__close img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}
.clinical-gallery__swiper {
  width: 100%;
  height: 100%;
}
.clinical-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-footnote {
  position: absolute;
  bottom: 2rem;
  left: 3.5rem;
  width: 100%;
  color: #FFFFFF;
  font-size: 0.7rem;
  z-index: 2000000;
}

.swiper-slide video {
  border: 0;
}

.chapiter--machine .threesixty-holder {
  position: relative;
}
.chapiter--machine {
  --hotspot-0-x: 830;
  --hotspot-0-y: 600;
  --hotspot-1-x: 1038;
  --hotspot-1-y: 275;
  --hotspot-2-x: 1200;
  --hotspot-2-y: 580;
  --hotspot-3-x: 1142;
  --hotspot-3-y: 333;
  --hotspot-4-x: 1500;
  --hotspot-4-y: 670;
  --hotspot-5-x: 920;
  --hotspot-5-y: 100;
}

.machine__btn-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.machine__btn {
  position: absolute;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.machine__btn-plus {
  background-color: #FFFFFF;
  padding: 1rem;
  color: #6022A6;
  width: fit-content;
  font-size: 2rem;
  height: 1rem;
  width: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 80px rgba(0, 0, 0, 0.05);
}
.machine__btn span {
  background-color: #6022A6;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  font-size: 1rem;
}
.machine__btn:hover .machine__btn-plus {
  background-color: #512286;
  color: #FFFFFF;
}
.machine__btn:hover span {
  background-color: #512286;
  color: #FFFFFF;
}
.machine__btn--left span {
  order: 1;
}
.machine__btn--left .machine__btn-plus {
  order: 2;
}

.icons-cards {
  display: flex;
  align-items: stretch;
  margin-bottom: 1rem;
}
.icons-cards p {
  margin-bottom: 0;
}
.icons-cards__icon {
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  flex: 0 0 100px;
}
.icons-cards__icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
}
.icons-cards__icon-blue {
  background: rgba(69, 178, 197, 0.2);
}
.icons-cards__icon-green {
  background: rgba(25, 187, 124, 0.2);
}
.icons-cards__icon-yellow {
  background: rgba(248, 215, 84, 0.2);
}
.icons-cards__icon-coral {
  background: rgba(243, 127, 99, 0.2);
}
.icons-cards__content {
  background: #E4E4E4;
  border-radius: 0 8px 8px 0;
  padding: 1rem;
}
.icons-cards__title {
  font-weight: 600;
  margin-bottom: 1rem;
}