:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75 ;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-zoomInUp {
  animation: 0.2s ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: 0.2s ease-out both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-throwOutUp {
  animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: 0.175s ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: 0.2s ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: 0.2s ease both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: 0.5s ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: 0.5s ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: 0.2s ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: 0.2s ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: 0.2s ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: 0.1s linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: 0.85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65 ;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: 0.35s ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: 0.35s ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,
.fancybox__container:not(.is-compact) .has-map .fancybox__content,
.fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0 ;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1 ;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px ;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.f-thumbs__track {
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  min-width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  --clip-path: inset(0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0))) round var(--f-thumb-border-radius, 0));
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern .f-thumbs__slide:focus-within:not(.is-selected) {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.is-modern .f-thumbs__slide > * {
  -webkit-clip-path: var(--clip-path);
  clip-path: var(--clip-path);
}

.is-modern.in-touch .f-thumbs__slide {
  filter: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: all 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
  object-fit: cover;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  margin: auto 0;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1 ;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px ;
}

.fancybox__thumbs.is-hidden {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

/*!
  Theme: GitHub
  Description: Light theme as seen on github.com
  Author: github.com
  Maintainer: @Hirse
  Updated: 2021-05-15

  Outdated base version: https://github.com/primer/github-syntax-light
  Current colors taken from GitHub's CSS
*/
pre code.hljs {
  overflow-x: auto;
  display: block;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

.hljs {
  color: #24292e;
  background: #fff;
}

.hljs-doctag,
.hljs-keyword,
.hljs-meta .hljs-keyword,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-variable.language_ {
  color: #d73a49;
}

.hljs-title,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-title.function_ {
  color: #6f42c1;
}

.hljs-attr,
.hljs-attribute,
.hljs-literal,
.hljs-meta,
.hljs-number,
.hljs-operator,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-id,
.hljs-variable {
  color: #005cc5;
}

.hljs-meta .hljs-string,
.hljs-regexp,
.hljs-string {
  color: #032f62;
}

.hljs-built_in,
.hljs-symbol {
  color: #e36209;
}

.hljs-code,
.hljs-comment,
.hljs-formula {
  color: #6a737d;
}

.hljs-name,
.hljs-quote,
.hljs-selector-pseudo,
.hljs-selector-tag {
  color: #22863a;
}

.hljs-subst {
  color: #24292e;
}

.hljs-section {
  font-weight: 700;
  color: #005cc5;
}

.hljs-bullet {
  color: #735c0f;
}

.hljs-emphasis {
  font-style: italic;
  color: #24292e;
}

.hljs-strong {
  font-weight: 700;
  color: #24292e;
}

.hljs-addition {
  color: #22863a;
  background-color: #f0fff4;
}

.hljs-deletion {
  color: #b31d28;
  background-color: #ffeef0;
}

:root {
  --black: #000000;
  --primary-font: Helvetica, Arial, sans-serif;
  --secondary-font: Verdana;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*::before,
*::after {
  display: block;
}

img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  background-color: transparent;
}

p a,
label a {
  display: inline;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

::-moz-selection {
  background-color: var(--black, black);
  color: var(--white, white);
  text-shadow: none;
}

::selection {
  background-color: var(--black, black);
  color: var(--white, white);
  text-shadow: none;
}

form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  background-color: transparent;
  color: inherit;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  overflow: visible;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

[hidden] {
  display: none !important;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  margin: 0;
}

main {
  display: block;
  overflow-x: hidden;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 50%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.8em;
}

img {
  border-style: none;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-size: 100%;
  font-family: var(--primary-font);
  color: var(--black);
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input {
  overflow: visible;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -moz-appearance: button;
  appearance: button;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* stylelint-disable scss/no-global-function-names */
/* We declare colors in a map as key: value
with the color name as the key and the hex
as the value

And we are goint to use it in _utils.scss */
/* Gradients */
/* Koselugo HCP Colors */
/* Koselugo Form/Navigation Colors */
/* Boilerplate Colors */
/* Fonts */
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: normal;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD BOOK.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: 500;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD MEDIUM.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD DEMI.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: bold;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD HEAVY.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Compressed";
  font-weight: normal;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD BOOK COMPRESSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Compressed";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD DEMI COMPRESSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Condensed";
  font-weight: normal;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD BOOK CONDENSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Condensed";
  font-weight: 500;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD MEDIUM CONDENSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Condensed";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD DEMI CONDENSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic LT Pro";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/FranklinGothicLTPro.otf") format("opentype");
}
@font-face {
  font-family: "Lato";
  font-weight: 100;
  src: url("/assets/fonts/Lato/Lato-Thin.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: 300;
  src: url("/assets/fonts/Lato/Lato-Light.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: normal;
  src: url("/assets/fonts/Lato/Lato-Regular.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: 500;
  src: url("/assets/fonts/Lato/Lato-Medium.otf");
}
@font-face {
  font-family: "Lato";
  font-weight: 700;
  src: url("/assets/fonts/Lato/Lato-Bold.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: 900;
  src: url("/assets/fonts/Lato/Lato-Black.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: url("/assets/fonts/Montserrat/Montserrat-Regular.ttf");
}
*,
*::before,
*::after {
  font-family: "ITC Franklin Gothic Std", "Arial", "Helvetica", sans-serif;
}

/*
  This mixin will build the prefix values for the property and value passed in.
  It will also add the property and value without the prefix.
  Example:
    @include build-prefix-values('transition', 'all 1s linear');
*/
/* 
  Example usage:
    .my-class {
      // Default usage
      @include transition();
      // Custom usage
      @include transition('all', 1s, linear);
    }
*/
.wrapper {
  position: relative;
  width: 100%;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .wrapper {
    /* Based on Koselugo Patient Tablet Design */
    max-width: calc(100% - 146px);
  }
}
@media screen and (min-width: 1024px) {
  .wrapper {
    max-width: calc(100% - 70px);
  }
}
@media screen and (min-width: 1340px) {
  .wrapper {
    max-width: 1240px;
  }
}

html.no-scroll {
  overflow: hidden;
}

body {
  color: #210022;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 120%;
  color: #210022;
  letter-spacing: normal;
}

h1 {
  font-size: 32px;
  line-height: 38.4px;
}

h2 {
  font-size: 24px;
  line-height: 28.8px;
}

h3 {
  font-size: 20px;
  line-height: 24px;
}

h4 {
  font-size: 18px;
  line-height: 21.6px;
}

h5 {
  font-size: 16px;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
p.small {
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.6px;
}

a {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #b24399;
  text-decoration: none;
}

label a,
p a {
  color: #b24399;
}

small {
  font-size: 0.75rem;
  line-height: 0.8788rem;
}

ul li {
  list-style-type: none;
}

ul li::marker {
  display: none;
}

ol {
  margin-left: 1rem;
}
ol li {
  list-style-type: decimal;
}
ol li::marker {
  font-weight: 600;
}

em {
  font-style: italic;
}

main ul li {
  list-style-type: disc;
}
main ul li::marker {
  color: #000;
}

sup.symbol-sup {
  top: initial;
  font-size: inherit;
  line-height: 0;
}

.design-system-section {
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #000;
}

.example-code {
  position: relative;
}

.code {
  overflow-x: auto;
  display: block;
  width: 100%;
  font-style: normal;
  color: #212529;
}

.copy-clipboard {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 10px;
  margin: 0.5rem;
  padding: 0.5rem;
  color: #fff;
  background-color: #000;
  border-radius: 0.5rem;
}

.hljs {
  background-color: #fff;
}

.hljs-tag {
  color: #333;
}

.hljs-name {
  color: #c6303e;
}

.hljs-attr {
  color: #6f42c1;
}

.hljs-string {
  color: #084298;
}

swiper-container {
  /* Change the default color of the all swiper elements */
  --swiper-theme-color: #000;
  z-index: 0;
  /* Width and height of slider */
  width: 100%;
  height: auto;
}

.myswiper-custum-text {
  padding: 3rem;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}

.timeline-container swiper-container {
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}
.timeline-container swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc((100% - 30px) / 2) !important;
  font-size: 18px;
  text-align: center;
  background: #fff;
}

/* Using @each we create a CSS class for
color and background using the name in the class
and the value as the property value that we need

Ex: .color--white { color: #FFFFFFF; } and
.bg-color--white { background-color: #FFFFFF; } */
.color--garnet-100 {
  color: #870051;
}

.bg-color--garnet-100 {
  background-color: #870051;
}

.color--garnet-75 {
  color: #860152;
}

.bg-color--garnet-75 {
  background-color: #860152;
}

.color--garnet-25 {
  color: #e18fd3;
}

.bg-color--garnet-25 {
  background-color: #e18fd3;
}

.color--garnet-20 {
  color: #e1bfd3;
}

.bg-color--garnet-20 {
  background-color: #e1bfd3;
}

.color--dark-purple {
  color: #a3227d;
}

.bg-color--dark-purple {
  background-color: #a3227d;
}

.color--dark-purple-100 {
  color: #210022;
}

.bg-color--dark-purple-100 {
  background-color: #210022;
}

.color--dark-purple-100-2 {
  color: #210021;
}

.bg-color--dark-purple-100-2 {
  background-color: #210021;
}

.color--dark-purple-75 {
  color: #594059;
}

.bg-color--dark-purple-75 {
  background-color: #594059;
}

.color--dark-purple-50 {
  color: #908091;
}

.bg-color--dark-purple-50 {
  background-color: #908091;
}

.color--dark-purple-10 {
  color: #e9e6e9;
}

.bg-color--dark-purple-10 {
  background-color: #e9e6e9;
}

.color--pink-100 {
  color: #b24399;
}

.bg-color--pink-100 {
  background-color: #b24399;
}

.color--pink-75 {
  color: #c572b3;
}

.bg-color--pink-75 {
  background-color: #c572b3;
}

.color--pink-25 {
  color: #ebd0e5;
}

.bg-color--pink-25 {
  background-color: #ebd0e5;
}

.color--pink-50 {
  color: #d9a1cc;
}

.bg-color--pink-50 {
  background-color: #d9a1cc;
}

.color--blue-100 {
  color: #559cb5;
}

.bg-color--blue-100 {
  background-color: #559cb5;
}

.color--blue-75 {
  color: #80b5c8;
}

.bg-color--blue-75 {
  background-color: #80b5c8;
}

.color--blue-50 {
  color: #aaceda;
}

.bg-color--blue-50 {
  background-color: #aaceda;
}

.color--blue-10 {
  color: #eef6f8;
}

.bg-color--blue-10 {
  background-color: #eef6f8;
}

.color--white {
  color: #fff;
}

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

.color--jelly-blue {
  color: #417684;
}

.bg-color--jelly-blue {
  background-color: #417684;
}

.color--polished-pine {
  color: #559c85;
}

.bg-color--polished-pine {
  background-color: #559c85;
}

.color--granite-gray {
  color: #636466;
}

.bg-color--granite-gray {
  background-color: #636466;
}

.color--moonstone-blue {
  color: #6faec3;
}

.bg-color--moonstone-blue {
  background-color: #6faec3;
}

.color--davy-grey {
  color: #58595a;
}

.bg-color--davy-grey {
  background-color: #58595a;
}

.color--raisin-black {
  color: #231f20;
}

.bg-color--raisin-black {
  background-color: #231f20;
}

.color--isabelline {
  color: #f4edef;
}

.bg-color--isabelline {
  background-color: #f4edef;
}

.color--cultured {
  color: #f2f7f9;
}

.bg-color--cultured {
  background-color: #f2f7f9;
}

.color--french-plum {
  color: #8c0f57;
}

.bg-color--french-plum {
  background-color: #8c0f57;
}

.color--black {
  color: #000;
}

.bg-color--black {
  background-color: #000;
}

.color--dark-gray {
  color: #a3a3a3;
}

.bg-color--dark-gray {
  background-color: #a3a3a3;
}

.color--pink-10 {
  color: #f8edf5;
}

.bg-color--pink-10 {
  background-color: #f8edf5;
}

.color--basics-red {
  color: #af0000;
}

.bg-color--basics-red {
  background-color: #af0000;
}

.color--waikawa-grey {
  color: #62708e;
}

.bg-color--waikawa-grey {
  background-color: #62708e;
}

.color--blue-25 {
  color: #d4e6ec;
}

.bg-color--blue-25 {
  background-color: #d4e6ec;
}

.color--neutral-main-800 {
  color: #272727;
}

.bg-color--neutral-main-800 {
  background-color: #272727;
}

.color--neutral-main-500 {
  color: #62708e;
}

.bg-color--neutral-main-500 {
  background-color: #62708e;
}

.color--dark-blue-gray {
  color: #666ca3;
}

.bg-color--dark-blue-gray {
  background-color: #666ca3;
}

.color--dark-blue {
  color: #13183f;
}

.bg-color--dark-blue {
  background-color: #13183f;
}

.color--waterloo {
  color: #83869a;
}

.bg-color--waterloo {
  background-color: #83869a;
}

.color--violet-red {
  color: #f74780;
}

.bg-color--violet-red {
  background-color: #f74780;
}

.color--pink {
  color: #ffa7c3;
}

.bg-color--pink {
  background-color: #ffa7c3;
}

.color--red {
  color: #f00;
}

.bg-color--red {
  background-color: #f00;
}

/* Backgrounds - Gradients */
.bg-gradient--blue-white {
  background: linear-gradient(0deg, #e5f6fe 42.42%, #fff 85.41%);
}

.bg-gradient--garnet-90 {
  background: linear-gradient(90deg, rgb(135, 0, 81) 0%, rgba(135, 0, 81, 0) 100%);
}

.bg-gradient--garnet-270 {
  background: linear-gradient(270deg, rgb(135, 0, 81) 0%, rgba(135, 0, 81, 0) 100%);
}

.bg-gradient--pink-blue {
  background: linear-gradient(90deg, rgb(203, 119, 169) 0%, rgb(108, 131, 159) 50%, rgb(39, 79, 93) 100%);
}

.bg-gradient--pink-blue-2 {
  background: linear-gradient(90deg, rgb(203, 119, 169) 0%, rgb(143, 170, 200) 50%, rgb(39, 79, 93) 100%);
}

.bg-gradient--pink-blue-3 {
  background: linear-gradient(90deg, rgb(249, 234, 239) 0%, rgb(218, 233, 240) 50%, rgb(226, 246, 255) 100%);
}

.bg-gradient--polished-pine-135 {
  background: linear-gradient(135deg, rgb(85, 156, 133) 0%, rgba(85, 156, 133, 0) 100%);
}

.bg-gradient--polished-pine-315 {
  background: linear-gradient(315deg, rgb(85, 156, 133) 0%, rgba(85, 156, 133, 0) 100%);
}

.bg-gradient--polished-pine-90 {
  background: linear-gradient(90deg, rgb(85, 156, 133) 0%, rgba(85, 156, 133, 0) 100%);
}

.bg-gradient--af-white-90 {
  background: linear-gradient(90deg, rgb(238, 246, 248) 0%, rgba(238, 246, 248, 0) 100%);
}

.bg-gradient--af-white-radial {
  background: radial-gradient(circle, rgb(238, 246, 248) 0%, rgba(238, 246, 248, 0) 100%);
}

.bg-gradient--moonstone-blue {
  background: linear-gradient(90deg, rgba(207, 240, 251, 0) 0%, rgb(111, 174, 195) 50%, rgba(207, 240, 251, 0) 100%);
}

.bg-gradient--41273b {
  background: linear-gradient(90deg, rgba(65, 39, 59, 0) 0%, rgba(65, 39, 59, 0.474) 25%, rgba(65, 39, 59, 0.474) 75%, rgba(65, 39, 59, 0) 100%);
}

.bg-gradient--dark-purple {
  background: linear-gradient(90deg, rgba(89, 64, 89, 0) 0%, rgba(89, 64, 89, 0.25) 25%, rgba(89, 64, 89, 0.25) 75%, rgba(89, 64, 89, 0) 100%);
}

.bg-gradient--pink-180 {
  background: linear-gradient(180deg, rgba(178, 52, 153, 0) 0%, rgba(178, 52, 153, 0) 10%, rgb(178, 52, 153) 100%);
}

/* Use it with a bg-gradient class to get a text with that gradient */
.text--gradient {
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.footnotes {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}

.callout {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

.curvy__card {
  background-color: #eef6f8;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.curvy__card_heading {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.curvy__card_heading sup {
  top: -0.73em;
}
@media screen and (min-width: 458px) {
  .curvy__card_heading {
    margin-top: 0;
  }
}
.curvy__card_body {
  margin-top: 12px;
  padding-right: 20px;
  padding-bottom: 24px;
  padding-left: 20px;
}
.curvy__card_body p {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #210022;
}
.curvy__card_body ul {
  margin-left: 20px;
}
.curvy__card_body ul :last-child {
  padding-top: 4px;
}
.curvy__card_body ul li {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #210022;
}
.curvy__card_body ul li sup {
  top: -0.5em;
  font-size: 11px;
}
.curvy__card.right {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.curvy__card.right .curvy__card_body {
  height: 103px;
}
.curvy__card.right .content-container {
  padding-bottom: 20px;
}
.curvy__card.right .labels {
  display: flex;
  align-items: baseline;
}
.curvy__card.right .labels .coming-label {
  margin-left: 24px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #d9a1cc;
}
.curvy__card.right .labels .coming-label a {
  color: #d9a1cc;
}
.curvy__card .download-label {
  width: auto;
  margin-top: 24px;
  margin-left: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #b24399;
}
.curvy__card_icon {
  max-width: 100px;
  margin-top: -2px;
}
.curvy__card_first-block {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-right: 20px;
}
.curvy__card_first-block.right {
  justify-content: space-between;
  padding-right: 0;
  padding-left: 20px;
}
.curvy__card_first-block.right .curvy__card_icon {
  order: 2;
}
.curvy__card_first-block.right .curvy__card_heading {
  order: 1;
}
.curvy__card_second-block {
  border-top-left-radius: 20px;
}

.row {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
}

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

.row.natural-height {
  align-items: flex-start;
}

.row.flex-column {
  flex-direction: column;
}

.col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col.reverse {
  flex-direction: column-reverse;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

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

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

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

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

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

.col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 1rem;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 1rem;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
  padding: 1rem;
}

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

.col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 1rem;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 1rem;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
  padding: 1rem;
}

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

.col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 1rem;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 1rem;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
  padding: 1rem;
}

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

.col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 1rem;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 1rem;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.row.start-xs {
  justify-content: flex-start;
}

.row.center-xs {
  justify-content: center;
}

.row.end-xs {
  justify-content: flex-end;
}

.row.top-xs {
  align-items: flex-start;
}

.row.middle-xs {
  align-items: center;
}

.row.bottom-xs {
  align-items: flex-end;
}

.row.around-xs {
  justify-content: space-around;
}

.row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 41rem) {
  .col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .row.start-sm {
    justify-content: flex-start;
  }
  .row.center-sm {
    justify-content: center;
  }
  .row.end-sm {
    justify-content: flex-end;
  }
  .row.top-sm {
    align-items: flex-start;
  }
  .row.middle-sm {
    align-items: center;
  }
  .row.bottom-sm {
    align-items: flex-end;
  }
  .row.around-sm {
    justify-content: space-around;
  }
  .row.between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 65rem) {
  .col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .row.start-md {
    justify-content: flex-start;
  }
  .row.center-md {
    justify-content: center;
  }
  .row.end-md {
    justify-content: flex-end;
  }
  .row.top-md {
    align-items: flex-start;
  }
  .row.middle-md {
    align-items: center;
  }
  .row.bottom-md {
    align-items: flex-end;
  }
  .row.around-md {
    justify-content: space-around;
  }
  .row.between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 91rem) {
  .col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .row.start-lg {
    justify-content: flex-start;
  }
  .row.center-lg {
    justify-content: center;
  }
  .row.end-lg {
    justify-content: flex-end;
  }
  .row.top-lg {
    align-items: flex-start;
  }
  .row.middle-lg {
    align-items: center;
  }
  .row.bottom-lg {
    align-items: flex-end;
  }
  .row.around-lg {
    justify-content: space-around;
  }
  .row.between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 121rem) {
  .col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
    padding: 1rem;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
    padding: 1rem;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
    padding: 1rem;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding: 1rem;
  }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding: 1rem;
  }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
    padding: 1rem;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .row.start-xl {
    justify-content: flex-start;
  }
  .row.center-xl {
    justify-content: center;
  }
  .row.end-xl {
    justify-content: flex-end;
  }
  .row.top-xl {
    align-items: flex-start;
  }
  .row.middle-xl {
    align-items: center;
  }
  .row.bottom-xl {
    align-items: flex-end;
  }
  .row.around-xl {
    justify-content: space-around;
  }
  .row.between-xl {
    justify-content: space-between;
  }
  .first-xl {
    order: -1;
  }
  .last-xl {
    order: 1;
  }
}
.col-gutter-lr {
  padding: 0 1rem;
}

.col-no-gutter {
  padding: 0;
}

.show {
  display: block !important;
}

.row.show {
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.row.show-xs {
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 40rem) {
  .show-xs-only {
    display: block !important;
  }
  .row.show-xs-only {
    display: flex !important;
  }
  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) {
  .show-sm {
    display: block !important;
  }
  .row.show-sm {
    display: flex !important;
  }
  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
  .show-sm-only {
    display: block !important;
  }
  .row.show-sm-only {
    display: flex !important;
  }
  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) {
  .show-md {
    display: block !important;
  }
  .row.show-md {
    display: flex !important;
  }
  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
  .show-md-only {
    display: block !important;
  }
  .row.show-md-only {
    display: flex !important;
  }
  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) {
  .show-lg {
    display: block !important;
  }
  .row.show-lg {
    display: flex !important;
  }
  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
  .show-lg-only {
    display: block !important;
  }
  .row.show-lg-only {
    display: flex !important;
  }
  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 121rem) {
  .show-xl {
    display: block !important;
  }
  .row.show-xl {
    display: flex !important;
  }
  .hide-xl {
    display: none !important;
  }
}
:root {
  --button-text-color: #fff;
  --button-background-color: #b24399;
  --button-border-color: transparent;
  --button-hover-text-color: #fff;
  --button-hover-background-color: linear-gradient(0deg, rgb(89 64 89 / 40%) 0%, rgb(89 64 89 / 40%) 100%),
  #b24399;
  --button-hover-border-color: transparent;
}

.button {
  transition: background 0.3s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 32px 6px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: var(--button-text-color);
  text-decoration: none;
  letter-spacing: 0.88px;
  background-color: var(--button-background-color);
  border: 1px solid var(--button-border-color);
  border-radius: 4px;
}
.button:hover {
  color: var(--button-hover-text-color);
  background: var(--button-hover-background-color);
  background-blend-mode: multiply, normal;
  border-color: var(--button-hover-border-color);
}
.button:not(.button--secondary, .button--tertiary):focus, .button:not(.button--secondary, .button--tertiary):focus-within {
  background: linear-gradient(0deg, rgba(89, 64, 89, 0.4) 0%, rgba(89, 64, 89, 0.4) 100%), #b24399;
  box-shadow: 0 6px 4.2px 0 rgba(43, 0, 0, 0.3) inset;
}
.button--secondary {
  --button-text-color: #b24399;
  --button-background-color: #fff;
  --button-border-color: #b24399;
  --button-hover-text-color: #b24399;
  --button-hover-background-color: #fff;
  --button-hover-border-color: #b24399;
  align-items: flex-end;
  text-decoration: none;
  border-width: 1px;
}
.button--tertiary {
  --button-text-color: #b24399;
  --button-background-color: transparent;
  --button-border-color: transparent;
  --button-hover-background-color: transparent;
  --button-hover-text-color: #b24399;
  --button-hover-border-color: transparent;
  align-items: flex-end;
  padding: 0;
  border-width: 0;
}
.button--tertiary:hover {
  border-top: none;
  border-right: none;
  border-left: none;
}

.site__header {
  /* Styles for Header Main Container */
  position: sticky;
  z-index: 4;
  top: 0;
  width: 100%;
  background-color: white;
}
.site__header .header__inner {
  /* Styles for Header Content Container */
  width: 100%;
}
@media screen and (min-width: 1150px) {
  .site__header .header__inner {
    position: relative;
    display: grid;
    grid-template-areas: "logo top-nav" "logo nav";
    grid-template-columns: 1fr 4fr;
    row-gap: 28.91px;
    align-items: center;
    justify-content: space-between;
    padding: 21.5px 70px 10.66px;
    background: #fff;
    box-shadow: 0 2px 120px 0 rgba(14, 56, 70, 0.1);
  }
}
@media screen and (min-width: 1340px) {
  .site__header .header__inner {
    padding-right: calc((100vw - 1240px) / 2);
    padding-left: calc((100vw - 1240px) / 2);
  }
}
.site__header .header__top {
  /* Styles for Header Top Mobile Content & Logo Container */
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #fff;
  -webkit-backdrop-filter: blur(45px);
          backdrop-filter: blur(45px);
  box-shadow: 0 4px 10px 0 rgba(67, 99, 168, 0.05);
}
@media screen and (min-width: 768px) {
  .site__header .header__top {
    padding: 26.28px 73px;
  }
}
@media screen and (min-width: 1150px) {
  .site__header .header__top {
    display: inline-block;
    grid-area: logo;
    width: 90%;
    height: auto;
    padding: 0;
    box-shadow: none;
  }
}
.site__header .header__top_nav {
  display: none;
}
.site__header .header__top_nav .top_nav__link {
  width: -moz-fit-content;
  width: fit-content;
}
.site__header .header__top_nav .top_nav__link:not(.button) {
  font-size: 14.456px;
  font-weight: 400;
  line-height: normal;
  color: #594059;
}
.site__header .header__top_nav .top_nav__link.button {
  padding: 7.22px 14.45px 3.61px 16.25px;
  font-size: 14.456px;
  font-weight: 500;
  line-height: 19.876px;
  letter-spacing: 1.084px;
}
@media screen and (min-width: 1150px) {
  .site__header .header__top_nav {
    gap: 21.68px;
    display: flex;
    grid-area: top-nav;
    align-items: center;
    justify-content: flex-end;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .header__top_nav > * {
      margin: calc(21.68px / 2);
    }
  }
}
.site__header .header__icon {
  /* Styles for Icons in Header */
  position: relative;
  display: inline-block;
}
.site__header .header__icon::after, .site__header .header__icon::before {
  position: absolute;
  background-color: #000;
  transition: all 0.3s linear;
}
.site__header .header__icon.icon__arrow {
  width: 20px;
  height: 11px;
}
.site__header .header__icon.icon__arrow::before, .site__header .header__icon.icon__arrow::after {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  border-radius: 5px;
}
.site__header .header__icon.icon__arrow--down::before {
  top: 0;
  left: 6px;
  transform: rotate(140deg);
}
.site__header .header__icon.icon__arrow--down::after {
  top: 0;
  left: 12px;
  transform: rotate(-140deg);
}
.site__header .header__icon.icon__arrow--up::before {
  top: 0;
  left: 6px;
  transform: rotate(45deg);
}
.site__header .header__icon.icon__arrow--up::after {
  top: 0;
  left: 12px;
  transform: rotate(-45deg);
}
.site__header .header__button {
  /* Styles for Header Buttons */
  width: 40px;
  height: 40px;
  color: black;
  background-color: transparent;
}
.site__header .header__toggle {
  position: relative;
  align-self: center;
  /* Styles for Header Mobile Toggle */
  width: 36px;
  height: 36px;
  padding: 7px;
  line-height: 1;
  border: none;
}
.site__header .header__toggle:hover, .site__header .header__toggle:not(.site__header .header__toggle--secondary, .site__header .header__toggle--tertiary):focus, .site__header .header__toggle:not(.site__header .header__toggle--secondary, .site__header .header__toggle--tertiary):focus-within {
  background: #fff;
  background-blend-mode: unset;
  box-shadow: none;
}
.site__header .header__toggle .header__icon {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 7px;
  width: 22px;
  height: 4px;
  background-color: #b24399;
  border-radius: 50px;
  transition: transform 0.3s linear;
}
.site__header .header__toggle .header__icon--top {
  top: 8px;
}
.site__header .header__toggle .header__icon--bottom {
  top: 24px;
}
.site__header .header__toggle .header__icon--middle {
  top: 16px;
}
.site__header .header__toggle .header__icon--middle-back {
  z-index: 0;
  background-color: #870051;
}
.site__header .header__toggle--opened .header__icon--top, .site__header .header__toggle--opened .header__icon--bottom {
  display: none;
}
.site__header .header__toggle--opened .header__icon--middle {
  transform: rotate(-45deg);
}
.site__header .header__toggle--opened .header__icon--middle-back {
  transform: rotate(45deg);
}
@media screen and (min-width: 1150px) {
  .site__header .header__toggle {
    display: none;
  }
}
.site__header .header__logo .logo__link {
  /* Styles for link HTML Tag with Logo */
}
.site__header .header__logo .logo__image {
  /* Styles for Logo Image */
  width: 103px;
  max-height: 57.3px;
}
.site__header .header__logo .logo__image-container {
  /* Styles for Logo Image Container */
}
@media screen and (min-width: 1150px) {
  .site__header .header__logo .logo__image {
    width: 143px;
    max-height: 80px;
  }
}
@media screen and (min-width: 1365px) {
  .site__header .header__logo .logo__image {
    width: auto;
    max-height: 100px;
  }
}
.site__header .header__social_icon {
  width: 26.87px;
  height: 25.08px;
}

:root {
  --height-submenu-animation: 200px;
  --width-menu-item: 0;
}

.site__navigation {
  /* Styles for Main Nav Container */
  position: absolute;
  left: 0;
  overflow: hidden;
  width: 100vw;
  padding: 0;
  background-color: #fff;
}
.site__navigation--hidden {
  height: 0;
}
.site__navigation--hiding {
  animation: hide-navigation 0.35s;
}
.site__navigation--show {
  overflow-y: scroll;
  box-sizing: border-box;
  height: 100dvh;
  padding-bottom: 30px;
  background-color: #fff;
  animation: show-navigation 0.35s;
}
@media screen and (min-width: 1150px) {
  .site__navigation--show {
    overflow-y: unset;
  }
}
@media screen and (min-width: 1150px) {
  .site__navigation {
    position: relative;
    left: unset;
    overflow: unset;
    display: inline-block;
    grid-area: nav;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    background-color: transparent;
  }
}

.main__navigation {
  /* Styles for List in Main Nav */
}

.nav__menu {
  /* Styles for List in Main Nav */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 80px;
}
.nav__menu__item {
  /* Styles for List Item in Main Nav */
  gap: 0;
  display: flex;
  row-gap: 0;
  align-items: center;
  width: 100%;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .nav__menu__item > * {
    margin: calc(0 / 2);
  }
}
.nav__menu__item:first-child {
  border-top: none;
}
.nav__menu__item .menu-item__link {
  /* Styles for Links in Main List */
  width: 100%;
  padding: 26.28px 0;
  padding-left: 20px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #210022;
  letter-spacing: 1.2px;
}
.nav__menu__item .menu-item__link.button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 24px;
  color: #fff;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item .menu-item__link {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    font-family: "ITC Franklin Gothic Std", sans-serif;
    font-size: 14.449px;
    line-height: normal;
    color: #594059;
    letter-spacing: 0;
  }
  .nav__menu__item .menu-item__link::after {
    content: "";
    position: absolute;
    top: 4px;
    right: -14.75px;
    display: inline-block;
    width: 0.5px;
    height: calc(100% - 8px);
    background-color: #a3a3a3;
  }
}
@media screen and (min-width: 1150px) and (min-width: 1150px) {
  .nav__menu__item .menu-item__link::after {
    display: none;
  }
}
@media screen and (min-width: 1352px) {
  .nav__menu__item .menu-item__link {
    height: auto;
  }
}
.nav__menu__item--active .menu-item__link {
  color: #b24399;
}
.nav__menu__item .header__button {
  /* Styles for buttons */
}
.nav__menu__item .header__button .header__icon {
  /* Styles for icons */
}
.nav__menu__item.has__subnav {
  /* Styles for Lists with Sub Menu */
  flex-wrap: wrap;
}
.nav__menu__item.has__subnav .menu-item__link {
  width: calc(100% - 40px);
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.has__subnav .menu-item__link {
    width: 100%;
    padding: 0;
  }
}
.nav__menu__item.has__subnav .header__button {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.nav__menu__item.top_nav {
  padding-right: 20px;
  padding-left: 20px;
  text-align: center;
}
.nav__menu__item.top_nav .menu-item__link {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.nav__menu__item.top_nav .menu-item__link:not(.button) {
  color: #594059;
}
.nav__menu__item.top_nav .menu-item__link.button {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.nav__menu__item.top_nav:nth-child(8) {
  margin-top: 24px;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item.top_nav {
    display: none;
  }
}
.nav__menu__item .header__toggle-submenu {
  /* Styles for Sub Menu Toggler */
  align-items: center;
  height: 65px;
}
.nav__menu__item .header__toggle-submenu:hover, .nav__menu__item .header__toggle-submenu:not(.nav__menu__item .header__toggle-submenu--secondary, .nav__menu__item .header__toggle-submenu--tertiary):focus, .nav__menu__item .header__toggle-submenu:not(.nav__menu__item .header__toggle-submenu--secondary, .nav__menu__item .header__toggle-submenu--tertiary):focus-within {
  background: #fff;
  background-blend-mode: unset;
  box-shadow: none;
}
.nav__menu__item .header__toggle-submenu .header__icon::after, .nav__menu__item .header__toggle-submenu .header__icon::before {
  width: 1px;
  background-color: #62708e;
}
@media screen and (min-width: 1150px) {
  .nav__menu__item .header__toggle-submenu {
    display: none;
  }
}
@media screen and (min-width: 1150px) {
  .nav__menu__item {
    gap: 0;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    border: none;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__menu__item > * {
      margin: calc(0 / 2);
    }
  }
  .nav__menu__item:nth-child(8), .nav__menu__item:nth-child(9) {
    display: none;
  }
  .nav__menu__item:hover .menu-item__link {
    color: #b24399;
  }
}
@media screen and (min-width: 768px) {
  .nav__menu {
    max-width: 390px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1150px) {
  .nav__menu {
    gap: 29px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    max-width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 0;
    padding-bottom: 0;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__menu > * {
      margin: calc(29px / 2);
    }
  }
}
@media screen and (min-width: 1200px) {
  .nav__menu {
    gap: 42.44px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .nav__menu > * {
      margin: calc(42.44px / 2);
    }
  }
}

.nav__subnav {
  /* Styles for List of Sub Menu */
  overflow: hidden;
  width: 100%;
  height: 0;
  color: #210022;
  background-color: #fff;
}
.nav__subnav--show {
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid transparent;
  animation: show-submenu 0.35s;
}
.nav__subnav--hiding {
  border: 1px solid rgba(0, 0, 0, 0);
  animation: hide-submenu 0.35s;
}
@media screen and (min-width: 1150px) {
  .nav__subnav--horizontal {
    display: flex;
  }
}
@media screen and (min-width: 1150px) {
  .nav__subnav--vertical {
    display: flex;
    flex-direction: column;
  }
}
.nav__subnav .subnav__item {
  /* Styles for List Item of Sub Menu */
  padding-right: 26px;
  padding-left: 26px;
  list-style: none;
}
.nav__subnav .subnav__item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item:first-child {
    margin-top: 0;
  }
}
.nav__subnav .subnav__item .subnav-item__link {
  /* Styles for Links in Sub Menu */
  position: relative;
  padding: 20px 5px;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #210022;
  letter-spacing: 1.2px;
}
.nav__subnav .subnav__item .subnav-item__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #c4c4c4;
  border-radius: 7px;
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item .subnav-item__link {
    width: 100%;
    margin-right: 10px;
    padding: 0;
    font-family: "ITC Franklin Gothic Std", sans-serif;
    font-size: 14.449px;
    line-height: normal;
    letter-spacing: 0;
    border-bottom: none;
  }
  .nav__subnav .subnav__item .subnav-item__link::after {
    display: none;
  }
  .nav__subnav .subnav__item .subnav-item__link:hover {
    color: #b24399;
  }
}
.nav__subnav .subnav__item:last-child {
  margin-bottom: 10px;
}
.nav__subnav .subnav__item:last-child .subnav-item__link::after {
  display: none;
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item:last-child {
    margin-bottom: 0;
  }
  .nav__subnav .subnav__item:last-child .subnav-item__link {
    margin-right: 0;
  }
}
@media screen and (min-width: 1150px) {
  .nav__subnav .subnav__item:not(:first-child) {
    margin-top: -1px;
  }
}
@media screen and (min-width: 1150px) {
  .nav__subnav {
    --width-menu-item: calc(100%);
    position: absolute;
    z-index: 1;
    top: 100%;
    left: -19px;
    width: -moz-max-content;
    width: max-content;
    border-radius: 0 0 10.837px 10.837px;
  }
  .nav__subnav--show {
    overflow: hidden;
    height: -moz-fit-content;
    height: fit-content;
    padding: 0;
    background: linear-gradient(180deg, rgba(178, 52, 153, 0) 0%, rgba(178, 52, 153, 0) 10%, rgb(178, 52, 153) 100%);
    border: none;
    /* &::before {
      content: '';

      top: 0;
      left: 0;

      display: inline-block;

      width: 100%;
      height: 10px;

      background-color: $color-white;

    } */
  }
  .nav__subnav--show .subnav__item {
    margin-right: 1px;
    margin-left: 1px;
    padding-right: 14.45px;
    padding-bottom: 10.84px;
    padding-left: 14.45px;
    background-color: #fff;
  }
  .nav__subnav--show .subnav__item:last-child {
    margin-bottom: 1px;
    padding-bottom: 14.45px;
    border-radius: 0 0 10.837px 10.837px;
  }
  .nav__subnav--show .subnav__item:first-child {
    padding-top: 24.45px;
  }
  .nav__subnav--hiding {
    overflow: hidden;
    padding: 0;
    background: linear-gradient(180deg, rgba(178, 52, 153, 0) 0%, rgba(178, 52, 153, 0) 10%, rgb(178, 52, 153) 100%);
    border: none;
  }
  .nav__subnav--hiding.nav__subnav .subnav__item {
    margin-right: 1px;
    margin-left: 1px;
    padding-right: 14.45px;
    padding-bottom: 10.84px;
    padding-left: 14.45px;
    background-color: #fff;
  }
  .nav__subnav--hiding.nav__subnav .subnav__item:last-child {
    margin-bottom: 1px;
    padding-bottom: 14.45px;
    border-radius: 0 0 10.837px 10.837px;
  }
  .nav__subnav--hiding.nav__subnav .subnav__item:first-child {
    padding-top: 24.45px;
  }
}

@media screen and (min-width: 1150px) {
  .nav__menu__item:nth-child(2) .nav__subnav--show .subnav__item .subnav-item__link {
    max-width: 175px;
    margin: 0;
    padding-right: calc(175px - var(--width-menu-item));
  }
  .nav__menu__item:nth-child(2) .nav__subnav--hiding .subnav__item .subnav-item__link {
    max-width: 175px;
    padding-right: calc(175px - var(--width-menu-item));
  }
}
@keyframes show-submenu {
  0% {
    height: 0;
  }
  100% {
    height: var(--height-submenu-animation);
  }
}
@keyframes hide-submenu {
  0% {
    height: var(--height-submenu-animation);
  }
  100% {
    height: 0;
  }
}
@keyframes show-navigation {
  0% {
    height: 0;
  }
  100% {
    height: 100dvh;
  }
}
@keyframes hide-navigation {
  0% {
    height: 100dvh;
  }
  100% {
    height: 0;
  }
}
.heading {
  max-width: 64ch;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}
.heading sup {
  top: -0.76em;
}

.heading--jelly-blue {
  color: #417684;
}
.heading--jelly-blue::after {
  content: "";
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, rgb(85, 156, 181) 0%, rgba(85, 156, 181, 0) 70%);
}
@media screen and (min-width: 768px) {
  .heading--jelly-blue::after {
    background: linear-gradient(90deg, rgb(85, 156, 181) 0%, rgba(85, 156, 181, 0) 68%);
  }
}

.heading--garnet-100 {
  color: #870051;
}
.heading--garnet-100::after {
  content: "";
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, rgb(135, 0, 81) 0%, rgba(135, 0, 81, 0) 70%);
}
@media screen and (min-width: 768px) {
  .heading--garnet-100::after {
    background: linear-gradient(90deg, rgb(135, 0, 81) 0%, rgba(135, 0, 81, 0) 68%);
  }
}

:root {
  --hero-bg: rgb(213 213 213);
  --hero-wrapper-margin: 2rem;
  --hero-max-width-content-wrapper: calc(100% - var(--hero-wrapper-margin));
  --hero-min-height: 400;
  --hero-max-height: 750;
  --hero-min-screen-size: 320;
  --hero-max-screen-size: 1440;
}
@media screen and (min-width: 1024px) {
  :root {
    --hero-wrapper-margin: 3rem;
  }
}

.hero {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: var(--hero-bg);
}
.hero__full-height {
  height: 100vh;
}
.hero .hero__wrapper {
  display: flex;
  flex-direction: column;
}
.hero .hero__wrapper .hero__content-container {
  order: 2;
}
.hero .hero__wrapper .hero__content-container .hero__content-wrapper {
  width: 100%;
  max-width: var(--hero-max-width-content-wrapper);
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}
.hero .hero__wrapper .hero__image-container {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .hero .hero__wrapper {
    flex-direction: row;
  }
  .hero .hero__wrapper .hero__content-container {
    order: initial;
  }
  .hero .hero__wrapper .hero__content-container .hero__content-wrapper {
    max-width: calc(var(--hero-max-width-content-wrapper) + (100% - var(--hero-max-width-content-wrapper)) / 2);
    margin-right: 0;
  }
}
.hero .hero__actions {
  display: flex;
  flex-direction: column;
}
.hero .hero__actions > *:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .hero .hero__actions {
    flex-direction: row;
  }
  .hero .hero__actions > *:not(:last-of-type) {
    margin-right: 0.5rem;
    margin-bottom: 0;
  }
}
.hero__absolute-layout {
  position: relative;
}
.hero__absolute-layout .hero__wrapper {
  justify-content: center;
  height: calc(var(--hero-min-height) * 1px + (var(--hero-max-height) - var(--hero-min-height)) * (100vw - var(--hero-min-screen-size) * 1px) / (var(--hero-max-screen-size) - var(--hero-min-screen-size)));
  max-height: calc(var(--hero-max-height) * 1px);
}
.hero__absolute-layout .hero__wrapper .hero__content-container {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .hero__absolute-layout .hero__wrapper .hero__content-container .hero__content-wrapper {
    max-width: var(--hero-max-width-content-wrapper);
    margin-right: auto;
  }
}
@media screen and (min-width: 1024px) {
  .hero__absolute-layout .hero__wrapper {
    align-items: center;
    justify-content: flex-start;
  }
}
.hero__absolute-layout .hero__image-container {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__absolute-layout .hero__image-container picture {
  overflow: hidden;
  height: 100%;
}
.hero__absolute-layout .hero__image-container picture img {
  width: auto;
  max-width: initial;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.internal-nav {
  --internal-nav-top: 0px;
  top: var(--internal-nav-top);
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 0.625rem;
  background-color: #000;
}
.internal-nav__container {
  display: flex;
  justify-content: center;
}
.internal-nav__list {
  position: relative;
  display: flex;
  gap: 0.625rem;
  justify-content: flex-start;
  padding: 0.625rem;
}
.internal-nav__list-item {
  list-style-type: none;
}
.internal-nav__list-item-link {
  padding: 0.3125rem 0.625rem;
  color: #fff;
}
.internal-nav__list-item--is-active {
  background-color: #fff;
}
.internal-nav__list-item--is-active .internal-nav__list-item-link {
  color: #000;
}
.internal-nav[data-scroll-to-active=true] .internal-nav__list {
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}
.internal-nav[data-scroll-to-active=true] .internal-nav__list::-webkit-scrollbar {
  display: none;
}
.internal-nav.is--fixed {
  position: fixed;
  z-index: 5;
  top: var(--internal-nav-top);
  left: 0;
}

.pediatric-symptoms {
  position: relative;
  margin: 60px auto;
  margin-bottom: 0;
}
.pediatric-symptoms .diagram-container {
  position: relative;
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
}
.pediatric-symptoms .diagram__description {
  width: 30%;
}
@media screen and (min-width: 320px) and (max-width: 350px) {
  .pediatric-symptoms .diagram__description.diagram__description--secondary div.diagram__box:nth-of-type(6) ul li {
    font-size: 13px;
  }
  .pediatric-symptoms .diagram__description.diagram__description--secondary div.diagram__box h5 {
    font-size: 13px;
  }
}
.pediatric-symptoms .diagram__figure {
  display: flex;
  justify-content: center;
  width: 428px;
}
.pediatric-symptoms .diagram__figure img {
  width: 420.09px;
  height: 571.2px;
}
.pediatric-symptoms .diagram__box {
  position: relative;
  display: flex;
  align-items: center;
  height: 45.45px;
}
.pediatric-symptoms .diagram__box::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 45.45px;
  background-color: #559CB5;
  border-radius: 10px;
}
.pediatric-symptoms .diagram__box--right {
  margin-right: auto;
}
.pediatric-symptoms .diagram__box--right::after {
  top: -2px;
  left: 0;
}
.pediatric-symptoms .diagram__box--left::after {
  top: -2px;
  right: 0;
}
.pediatric-symptoms .diagram__box h5 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #210021;
}
.pediatric-symptoms .diagram__description--primary .diagram__box {
  justify-content: right;
  margin-left: auto;
  padding-right: 28px;
  text-align: right;
}
.pediatric-symptoms .diagram__description--primary .diagram__box h5 {
  text-align: right;
}
.pediatric-symptoms .diagram__description--secondary .diagram__box {
  justify-content: left;
  margin-right: auto;
  padding-left: 28px;
  text-align: right;
}
.pediatric-symptoms .diagram__description--secondary .diagram__box h5 {
  text-align: left;
}
.pediatric-symptoms .diagram__description--primary .diagram__box:nth-of-type(1) {
  max-width: 236px;
  margin-top: 36.7px;
  padding-right: 24px;
}
.pediatric-symptoms .diagram__description--primary .diagram__box:nth-of-type(2) {
  max-width: 250px;
  margin-top: 82.78px;
  padding-right: 26px;
}
.pediatric-symptoms .diagram__description--primary .diagram__box:nth-of-type(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  max-width: 236px;
  height: 130px;
  margin-top: 95.38px;
  padding-right: 26.31px;
  text-align: right;
}
.pediatric-symptoms .diagram__description--primary .diagram__box:nth-of-type(3)::after {
  top: -4px;
  height: 130.227px;
}
.pediatric-symptoms .diagram__description--primary .diagram__box:nth-of-type(3) ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 15px;
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  text-align: right;
}
.pediatric-symptoms .diagram__description--secondary .diagram__box:nth-of-type(1) {
  margin-top: 47px;
  padding-left: 23.54px;
}
.pediatric-symptoms .diagram__description--secondary .diagram__box:nth-of-type(1)::after {
  height: 45.453px;
}
.pediatric-symptoms .diagram__description--secondary .diagram__box:nth-of-type(2) {
  max-width: 24ch;
  margin-top: 97.28px;
  padding-left: 23.57px;
}
.pediatric-symptoms .diagram__description--secondary .diagram__box:nth-of-type(2)::after {
  top: -4px;
  height: 46.535px;
}
.pediatric-symptoms .diagram__description--secondary .diagram__box:nth-of-type(3) {
  max-width: 292px;
  margin-top: 97.04px;
  padding-left: 24.65px;
}
.pediatric-symptoms .diagram__description--secondary .diagram__box:nth-of-type(3)::after {
  height: 45.535px;
}
.pediatric-symptoms .diagram-footer {
  position: absolute;
  right: 20vw;
  bottom: 85px;
}
.pediatric-symptoms .diagram-footer p {
  font-size: 18px;
  font-weight: 400;
  font-kerning: none;
  line-height: 125%;
  color: #636466;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .pediatric-symptoms .diagram-footer p {
    font-size: 16px;
  }
}
@media screen and (min-width: 320px) and (max-width: 350px) {
  .pediatric-symptoms .diagram-footer p {
    font-size: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .pediatric-symptoms .diagram-footer {
    right: 100px;
    bottom: 42px;
  }
}
@media screen and (min-width: 705px) {
  .pediatric-symptoms .diagram-footer {
    right: 140px;
  }
}
@media screen and (min-width: 825px) {
  .pediatric-symptoms .diagram-footer {
    right: 180px;
  }
}
@media screen and (min-width: 1025px) {
  .pediatric-symptoms .diagram-footer {
    right: unset;
    left: 72%;
  }
}
@media screen and (min-width: 1025px) {
  .pediatric-symptoms .diagram-footer {
    right: unset;
    left: 72%;
  }
}
@media screen and (min-width: 1200px) {
  .pediatric-symptoms .diagram-footer {
    left: 69%;
  }
}
@media screen and (min-width: 1300px) {
  .pediatric-symptoms .diagram-footer {
    left: 65%;
  }
}

.pediatric-symptoms--mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .pediatric-symptoms {
    display: none;
  }
  .pediatric-symptoms--mobile {
    display: block;
  }
  .pediatric-symptoms--mobile .diagram__box::after {
    width: 1.37px;
  }
  .pediatric-symptoms--mobile .diagram__box h5 {
    font-size: 16px;
  }
  .pediatric-symptoms--mobile .diagram-container {
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 51.81px;
  }
  .pediatric-symptoms--mobile .diagram__figure {
    width: 180px;
  }
  .pediatric-symptoms--mobile .diagram__figure img {
    width: 183.62px;
    height: 365.32px;
  }
  .pediatric-symptoms--mobile .diagram__description {
    width: auto;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box {
    padding-left: 6.29px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(1) {
    height: 16px;
    margin-top: 16px;
    padding-right: 0;
    padding-left: 6.29px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(1)::after {
    top: -3px;
    height: 16px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(2) {
    height: 29.89px;
    margin-top: 11.15px;
    padding-right: 0;
    padding-left: 6.29px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(2)::after {
    top: -3px;
    height: 29.89px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(3) {
    height: 12.724px;
    margin-top: 20.13px;
    padding-right: 0;
    padding-left: 6.29px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(3)::after {
    top: -1px;
    height: 12.724px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(4) {
    height: 30px;
    margin-top: 19.34px;
    padding-right: 0;
    padding-left: 6.29px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(4)::after {
    top: -2px;
    height: 30px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(5) {
    height: 28.6px;
    margin-top: 21.34px;
    padding-right: 0;
    padding-left: 6.29px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(5)::after {
    top: -3px;
    height: 28.6px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(6) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 67.53px;
    margin-top: 24.34px;
    padding-right: 0;
    padding-left: 6.29px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(6)::after {
    top: -3px;
    height: 69.53px;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary .diagram__box:nth-of-type(6) ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    margin-left: 17px;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .pediatric-symptoms--mobile .diagram-footer {
    right: 0;
  }
  .pediatric-symptoms--mobile .diagram__description--secondary {
    max-width: 169px;
  }
}
.pediatric-symptoms-info {
  margin-bottom: 40px;
}
.pediatric-symptoms-info .info-wrapper {
  max-width: 1030px;
  margin: 0 auto;
}
.pediatric-symptoms-info .feature {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pediatric-symptoms-info .feature img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
}
.pediatric-symptoms-info .feature p {
  max-width: 929px;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #210022;
}
.pediatric-symptoms-info h2.info-wrapper {
  margin-top: 24px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.pediatric-symptoms-info h2.info-wrapper sup {
  margin-right: 1px;
}
.pediatric-symptoms-info .info-box {
  display: flex;
  margin-top: 8px;
  margin-bottom: 24px;
}
.pediatric-symptoms-info .info-box p {
  width: 50%;
  max-width: 495px;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.pediatric-symptoms-info .info-box p span {
  background: linear-gradient(84deg, rgb(203, 119, 169) -15%, rgb(108, 131, 159) 30%, rgb(39, 79, 93) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.pediatric-symptoms-info .info-box .decoration {
  width: 2px;
  height: 40px;
  margin: auto 20px;
  background-color: #559CB5;
}
@media screen and (min-width: 1025px) {
  .pediatric-symptoms-info .info-box .decoration {
    margin-block: 0;
  }
}
.pediatric-symptoms-info .info-footer {
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #210022;
}

.nf1-pn__concern section.index-page__fasting {
  margin-top: 40px;
  margin-bottom: 80px;
}
.nf1-pn__concern .gradient-card-title--secondary {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 30px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.nf1-pn__concern .index-page__fasting .gradient-card {
  padding: 20px;
}
.nf1-pn__concern .index-page__fasting .border-gradient {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
  background: linear-gradient(120deg, #559CB5 0%, white 23%, white 81%, #559CB5 100%);
}
@media screen and (min-width: 1024px) {
  .nf1-pn__concern .index-page__fasting .border-gradient {
    background: linear-gradient(165deg, #559CB5 0%, white 25%, white 80%, #559CB5 100%);
  }
}

@media screen and (min-width: 1024px) {
  .nf1-pn__concern .index-page__fasting .bg-color--white {
    padding-inline: 71px;
  }
  .nf1-pn__concern .index-page__fasting .gradient-card {
    padding-inline: 0;
  }
  .nf1-pn__concern .history-chart-box .box__header {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .pediatric-symptoms-info .info-box {
    flex-direction: column;
    justify-content: center;
  }
  .pediatric-symptoms-info .info-box p {
    width: initial;
    max-width: initial;
    font-size: 1.3131rem;
  }
  .pediatric-symptoms-info .info-box p:nth-of-type(2) {
    font-size: 20px;
  }
  .pediatric-symptoms-info .info-box .decoration {
    width: 40px;
    height: 2px;
    margin: 20px auto;
    background-color: #559CB5;
  }
}
@media screen and (max-width: 391px) {
  .pediatric-symptoms-info {
    width: 350px;
  }
}
:root {
  --isi-fixed-height: 173px;
}
@media screen and (min-width: 1024px) {
  :root {
    --isi-fixed-height: 135px;
  }
}
@media screen and (min-width: 1260px) {
  :root {
    --isi-fixed-height: 135px;
  }
}

.isi {
  z-index: 2;
  background-color: #fff;
}
.isi a {
  font-weight: 600;
}
.isi__title {
  margin-top: 20px;
  margin-bottom: 4px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}
.isi__sub-title {
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: 25.7px;
}
.isi__header-inner {
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr auto;
}
.isi__header-heading {
  font-size: 17px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  text-transform: uppercase;
}
.isi.is-fixed {
  position: fixed;
  z-index: 3;
  top: calc(100% - var(--isi-fixed-height));
  width: 100%;
  height: var(--isi-fixed-height);
  transition: top 0.5s ease-in-out, height 0.5s ease-in-out;
}
.isi:not(.is-fixed) .isi__title {
  margin-top: 0;
}
.isi:not(.is-fixed) p + .isi__title {
  margin-top: 4px;
}
.isi__content-head {
  margin-bottom: 1rem;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .isi__content-head br {
    display: none;
  }
}
.isi__content-paragraph {
  line-height: 22px;
  /* & > * {
    margin-top: 4px;
    margin-bottom: 4px;

    &:last-child {
      margin-bottom: 0;
    }

    &:first-child {
      margin-top: 0;
    }
  } */
}
.isi__content-paragraph strong {
  font-weight: 700;
}
.isi__content-paragraph .isi__subtitle-text {
  margin-top: -5px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: 25.7px;
}
@media screen and (max-width: 41rem) {
  .isi__content .wrapper {
    max-width: 100%;
    margin: 0;
  }
}
.isi .isi__content-head {
  width: 100%;
  max-width: 29ch;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: 25.7px;
}
@media screen and (min-width: 450px) {
  .isi .isi__content-head {
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) {
  .isi .isi__content-head .only-desktop {
    display: inline;
  }
}
.isi__toggle {
  cursor: pointer;
}
.isi__toggle::after {
  content: url("/assets/images/isi-icon.svg");
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: all 1s ease-in-out;
}
.isi .isi__toggle {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 23px;
  right: 0;
  display: block;
}
.isi .isi__toggle.up {
  top: 15px;
  right: 35px;
}
.isi .isi__toggle.up::after {
  transform: rotate(180deg);
}
@media screen and (min-width: 1420px) {
  .isi .isi__toggle {
    right: -25px;
  }
}
.isi.is-open-toggle .isi__toggle {
  rotate: 180deg;
  display: none;
}
.isi.is-open-toggle .isi__header-inner {
  cursor: auto;
}
.isi.is-open {
  z-index: 10;
  top: 0;
  height: 100vh;
}
.isi.is-open .isi__grid-left,
.isi.is-open .isi__grid-right {
  overflow-y: scroll;
  max-height: 100vh;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.isi.is-open .isi__grid-left::-webkit-scrollbar,
.isi.is-open .isi__grid-right::-webkit-scrollbar {
  width: 5px;
}
.isi.is-open .isi__grid-left::-webkit-scrollbar-track,
.isi.is-open .isi__grid-right::-webkit-scrollbar-track {
  border-radius: 20px;
  box-shadow: inset 0 0 8px rgb(0, 0, 0);
}
.isi.is-open .isi__grid-left::-webkit-scrollbar-thumb,
.isi.is-open .isi__grid-right::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.isi.is-open .isi__grid-left::-webkit-scrollbar-thumb:hover,
.isi.is-open .isi__grid-right::-webkit-scrollbar-thumb:hover {
  background: rgb(156, 156, 156);
}
.isi.is-open .isi__toggle {
  rotate: 180deg;
}

#isi-position {
  margin-top: 60px;
}
@media screen and (min-width: 1024px) {
  #isi-position {
    margin-top: 89px;
  }
}

.isi__contacts {
  margin-top: 4px;
}
@media screen and (min-width: 1024px) {
  .isi__contacts {
    width: 97%;
  }
}

.isi__next-text {
  margin-top: 0;
}

.isi__content-paragraph p {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 25.7px;
}
.isi__content-paragraph p span {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: 25.7px;
}
.isi__content-paragraph p sup {
  top: 0;
  left: 1px;
  font-size: 18px;
  font-weight: 750;
  font-style: normal;
  line-height: 25.7px;
}
.isi__content-paragraph p sup.sup_two {
  top: -0.4em;
  font-size: 12px;
  font-weight: inherit;
  color: currentcolor;
}
.isi__content-paragraph p .isi__reference-title {
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: 24px;
}
@media screen and (min-width: 400px) {
  .isi__content-paragraph p br {
    display: none;
  }
}

.text-item-101 {
  width: 100%;
  margin-top: -9px;
}
@media screen and (min-width: 1024px) {
  .text-item-101 {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .text-item-100 {
    width: 100%;
  }
}

.text-item-98 {
  width: 98%;
}

.text-item-91 {
  width: 91%;
}

.isi__title-content {
  display: flex;
}

ul.tabs[role=tablist] {
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-y: scroll;
  display: flex;
  align-items: center;
  height: 3.125rem;
  margin: 0;
  padding: 0.3125rem 0.9375rem;
  background-color: #c1c1c1;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

[role=tablist] li {
  height: 2.5rem;
  margin-right: 1rem;
  list-style-type: none;
}
[role=tablist] li::marker {
  display: none;
}

[role=tablist] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.875rem;
  height: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.125rem;
  color: currentcolor;
  border: 2px solid currentcolor;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 768px) {
  [role=tablist] a {
    font-size: 1.25rem;
    line-height: 1.4375rem;
  }
}

[role=tablist] [aria-selected] {
  font-weight: 900;
  background-color: #FFF;
  border: 2px solid #FFF;
}

[role=tabpanel] {
  padding: 1rem;
}

/* stylelint-disable rule-empty-line-before */
.form-section {
  margin-top: 2rem;
  padding-bottom: 40px;
  background-color: #d4e6ec;
}
.form-section__title {
  margin-bottom: 40px;
  padding-top: 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
  color: #594059;
  text-align: center;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 500px) {
  .form-section__title {
    max-width: 24ch;
    margin: auto;
    margin-bottom: 40px;
  }
}
.form-section__text {
  max-width: 70ch;
  margin: auto;
  font-size: 16px;
  line-height: 19.2px;
  color: #210022;
  text-align: center;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 500px) {
  .form-section__text {
    max-width: 40ch;
    margin: auto;
  }
}
.form-section .form {
  max-width: 718px;
  margin: 2rem auto 0;
}
.form-section .form .button {
  justify-content: center;
  width: 104px;
  height: auto;
  margin: 1rem auto 0;
  padding: 12px 24px;
  border-radius: 50px;
}
@media screen and (max-width: 600px) {
  .form-section .wrapper {
    max-width: 100%;
    margin: 0;
  }
}

input {
  width: 100%;
}
input[type=submit] {
  cursor: pointer;
}
input[type=checkbox], input[type=radio] {
  transform: translateY(-0.075em);
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: currentcolor;
}
input[type=radio] {
  border-radius: 50%;
}
input[type=radio]::before {
  content: "";
  transform: scale(0);
  width: 0.65em;
  height: 0.65em;
  background-color: CanvasText;
  border-radius: 50%;
  box-shadow: inset 1em 1em currentcolor;
  transition: 120ms transform ease-in-out;
}
input[type=radio]:checked::before {
  transform: scale(1.5);
}
input[type=checkbox] {
  position: relative;
  width: 22px;
  height: 22px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  outline: 1px solid #62708e;
}
input[type=checkbox]:checked {
  background-color: #870051;
  border-color: currentcolor;
}

.form__control {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding-bottom: 0;
  transition: all 100ms ease-in-out;
  /* stylelint-disable-next-line no-descending-specificity */
}
.form__control .form__control-label,
.form__control .form__control-legend {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 18px;
  color: #594059;
  letter-spacing: 0.3px;
}
.form__control .form__control-legend {
  margin-bottom: 0.5rem;
  line-height: 18px;
}
.form__control .form__control-error {
  display: none;
  font-size: 1rem;
  color: #f00;
}
@media screen and (min-width: 1024px) {
  .form__control .form__control-error {
    font-size: 0.875rem;
  }
}
.form__control[data-required=true] .form__control-label::after,
.form__control[data-required=true] .form__control-legend::after {
  content: "*";
  display: inline-block;
  margin-left: 0.25rem;
  color: #af0000;
}
.form__control .form__control-input {
  width: 100%;
  height: 43px;
  padding: 8px 12px;
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
}
.form__control .form__control-input::-moz-placeholder {
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
}
.form__control .form__control-input::placeholder {
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
}
.form__control .form__control-select-wrapper {
  position: relative;
  height: 2.9375rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
  outline: 1px solid #000;
}
.form__control .form__control-select-wrapper .form__control-select {
  width: 100%;
  height: 100%;
  padding: 0.625rem 2.5rem 0.625rem 1.875rem;
}
.form__control .form__control-select-wrapper .form__control-select:focus {
  border: none;
  outline: none;
}
.form__control .form__control-select-wrapper .form__control-select option,
.form__control .form__control-select-wrapper .form__control-select option:checked {
  font-size: 1.125rem;
  font-weight: 300;
  color: #000;
}
.form__control .form__control-radio,
.form__control .form__control-checkbox {
  display: flex;
  align-items: flex-start;
}
.form__control .form__control-radio:not(:last-of-type),
.form__control .form__control-checkbox:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.form__control .form__control-radio input,
.form__control .form__control-checkbox input {
  margin-right: 0.625rem;
}
.form__control .form__control-checkbox {
  align-items: flex-start;
}
.form__control .form__control-checkbox .form__control-label {
  cursor: pointer;
  max-width: 100%;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  color: #272727;
  letter-spacing: 0.6px;
}
.form__control .form__control-checkbox .form__control-label--lg {
  font-size: 18px !important;
  line-height: 25.2px;
}
@media screen and (min-width: 768px) {
  .form__control .form__control-checkbox .form__control-label {
    font-size: 10px;
  }
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-label {
  color: #f00;
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-input,
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-select-wrapper {
  outline-color: #f00;
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-error {
  display: block;
}
@media screen and (max-width: 600px) {
  .form__control {
    padding-right: 28px;
    padding-left: 28px;
  }
}

.pemform {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto 3rem;
}
.pemform--bg {
  width: 100%;
  padding: 40px 0;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(28.75px);
          backdrop-filter: blur(28.75px);
  border-radius: 24px 0;
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
@media screen and (min-width: 1025px) {
  .pemform--bg {
    padding: 40px 80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pemform--bg {
    padding: 40px 32px;
  }
}
.pemform-form {
  max-width: 100%;
  margin: auto;
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .pemform-form {
    max-width: 575px;
  }
}
@media screen and (min-width: 1024px) {
  .pemform-form {
    max-width: 900px;
  }
}
.pemform .form__control {
  padding-right: 10px;
  padding-left: 10px;
}
.pemform .form__control-input {
  background-color: #eef6f8;
}
.pemform .form__control-label {
  font-size: 14px;
}
.pemform .form__control-checkbox {
  margin-top: 1rem;
}
.pemform .form__checkboxes {
  margin-bottom: 1rem;
}
.pemform .form__checkboxes .form__control {
  padding-top: 5px;
  padding-bottom: 5px;
}
.pemform .form__checkboxes .form__control-checkbox {
  margin: 0;
}
.pemform .form__checkboxes .form__control-label {
  margin: 0;
}
@media screen and (max-width: 450px) {
  .pemform .form__checkboxes .form__control-label {
    max-width: 26ch;
  }
}
@media screen and (max-width: 768px) {
  .pemform .form__checkboxes {
    margin-bottom: 0;
  }
}
.pemform .form__control-label-checkbox {
  padding-bottom: 10px;
  padding-left: 7px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #272727;
  letter-spacing: 0.4px;
}
@media screen and (min-width: 768px) {
  .pemform .form__control-label-checkbox {
    padding-left: 14px;
  }
}
.pemform .form__control-terms .form__control-label {
  font-weight: 400;
  line-height: 14px;
  color: #594059;
  letter-spacing: 0.6px;
}
.pemform .form__control-terms .form__control-label::after {
  display: none !important;
}
@media screen and (max-width: 450px) {
  .pemform .form__control-terms .form__control-label {
    max-width: 46ch !important;
  }
}
.pemform .button {
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pemform .button {
    width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pemform {
    width: 694px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .pemform {
    width: 780px;
  }
}

.accordion__item_content {
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
  max-height: 0;
  padding-top: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem;
  color: #000;
}
.accordion__item_content a {
  font-weight: 600;
  color: #f00;
  text-decoration: underline;
}
.accordion__item_content p {
  padding-bottom: 1rem;
  color: #000;
}
.accordion__item_content p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.accordion__item_content[role=tabpanel] {
  padding: 0;
}
.accordion__item {
  margin-bottom: 0.5rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  background-color: #fff;
}
.accordion__item_header {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.accordion__item_title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  line-height: 1.5588rem;
  color: #000;
  text-align: center;
}
.accordion__item_title::after {
  content: "";
  display: block;
  width: 1.3313rem;
  height: 0.8087rem;
  margin-top: 0.25rem;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.accordion [aria-expanded=true] {
  background-color: #d5d5d5;
}
.accordion [aria-expanded=true] .accordion__item_content {
  max-height: 500px;
}
.accordion [aria-expanded=true] .accordion__item_title::after {
  transform: rotate(180deg);
}

.accordion-group-toggle {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-decoration: underline;
}
.accordion-group-toggle::after {
  content: "Expand all";
}
.accordion-group-toggle--opened::after {
  content: "Collapse all";
}

.clinical-study-acc .accordion {
  margin: auto;
}
.clinical-study-acc .accordion__item_content {
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  max-width: 1080px;
  height: 100%;
  max-height: 0;
  padding-top: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625rem;
  color: #000;
}
.clinical-study-acc .accordion__item_content a {
  font-weight: 600;
  color: #f00;
  text-decoration: underline;
}
.clinical-study-acc .accordion__item_content p {
  padding-bottom: 1rem;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  color: #000;
  color: #210022;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .clinical-study-acc .accordion__item_content p {
    font-size: 16px;
  }
}
.clinical-study-acc .accordion__item_content p:not(:last-of-type) {
  margin-bottom: 1rem;
}
.clinical-study-acc .accordion__item_content[role=tabpanel] {
  padding: 0;
}
.clinical-study-acc .accordion__item {
  max-width: 1080px;
  margin-bottom: 0.5rem;
  padding-right: 0;
  padding-left: 0;
  background-color: #fff;
  /* border-image: linear-gradient(0.25turn, rgb(200 221 228 / 0%), #C8DDE4, rgb(200 221 228 / 0%));
  border-image-slice: 1; */
}
.clinical-study-acc .accordion__item_header {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.clinical-study-acc .accordion__item_header::after {
  pointer-events: none;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px; /* Ajusta la altura del borde difuminado */
  background: linear-gradient(to right, transparent 0%, #7981c4 20%, #fff 80%, transparent 100%);
}
.clinical-study-acc .accordion__item_header:hover {
  background: radial-gradient(50% 50% at 50% 50%, #C8DDE4 0%, rgba(200, 221, 228, 0) 100%);
}
@media screen and (min-width: 768px) {
  .clinical-study-acc .accordion__item {
    margin: auto;
    margin-bottom: 0.5rem;
  }
}
.clinical-study-acc .accordion__item_title {
  cursor: pointer;
  display: flex;
  justify-content: normal;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #594059;
  text-align: left;
  letter-spacing: 0;
}
.clinical-study-acc .accordion__item_title::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  background-image: url("/assets/images/plus-acc.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s linear;
}
.clinical-study-acc .accordion__item_title::after {
  display: none;
}
.clinical-study-acc [aria-expanded=true] .accordion__item_content {
  max-height: 500px;
}
.clinical-study-acc [aria-expanded=true] .accordion__item_header::after {
  display: none;
}
.clinical-study-acc [aria-expanded=true] .accordion__item_title::before {
  transform: rotate(180deg);
  background-image: url("/assets/images/minus-acc.svg");
}
.clinical-study-acc .accordion-group-toggle {
  display: none;
}

.pinch-to-zoom {
  width: 100% !important;
  height: 100%;
  margin: 0 !important;
  padding: 0.5rem 1rem;
}
.pinch-to-zoom .pinch-to-zoom__close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 40%;
  color: #000;
}

.wistia-viewer .wistia-viewer__inner .wistia-viewer__embed-container {
  position: relative;
}
.wistia-viewer .button-video[data-wistia-play-button] {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  max-height: -moz-max-content;
  max-height: max-content;
  padding: 0;
  font-size: 2rem;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=true] .play-icon {
  display: none;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=true] .pause-icon {
  display: initial;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=false] .play-icon {
  display: initial;
}
.wistia-viewer .button-video[data-wistia-play-button][data-playing=false] .pause-icon {
  display: none;
}

.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  color: #fff;
  text-align: center;
  background-color: #870051;
}
.footer .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .text {
  margin-top: 0;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 19.6px;
  color: #fff;
  text-align: initial;
}
.footer .text--visit_us {
  font-size: 17px;
  line-height: 25.714px;
}
.footer .text:nth-child(2) {
  max-width: 82ch;
}
@media screen and (min-width: 1024px) {
  .footer .text:nth-child(2) {
    max-width: 100%;
  }
}
.footer__socials {
  display: flex;
  -moz-column-gap: 9px;
       column-gap: 9px;
  align-items: flex-end;
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer__socials img {
  width: 27.409px;
  height: 27.409px;
}
.footer__audience.text {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 25.714px;
}
.footer__branding .footer__logo img {
  width: 186px;
  height: 50.875px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media screen and (min-width: 1024px) {
  .footer__branding .footer__logo img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.footer__text {
  max-width: 1014px;
}
.footer__text .trademark,
.footer__text .disclaimer,
.footer__text .copyright {
  font-size: 15px;
  line-height: 21.429px;
}
@media screen and (min-width: 768px) {
  .footer__text .trademark,
  .footer__text .disclaimer,
  .footer__text .copyright {
    width: 100%;
  }
}
.footer__text .trademark {
  margin-right: auto;
  margin-bottom: 12px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .footer__text .trademark {
    max-width: 100%;
  }
}
.footer__text .copyright {
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .footer__text .copyright {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .footer__text .copyright {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer__text {
    margin-right: 40px;
  }
}
.footer__links {
  margin-bottom: 25px;
}
.footer .footer__nav_menu_item_link {
  margin-bottom: 13px;
  color: #fff;
  text-decoration: underline;
}
@media screen and (min-width: 1024px) {
  .footer .container {
    display: flex;
    align-items: center;
    width: 100%;
  }
}

.footer__nav_menu {
  display: flex;
  flex-wrap: wrap;
  row-gap: 7px;
  -moz-column-gap: 13px;
       column-gap: 13px;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.footer__nav_menu_item {
  list-style: none;
}
.footer__nav_menu_item_link {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .footer__nav_menu {
    width: 694px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__nav_menu {
    width: 100%;
  }
}

.modal {
  position: relative;
}
.modal [data-modal-close] {
  cursor: pointer;
}
.modal .modal__header {
  position: relative;
}
.modal .modal__header .modal__close-button-wrapper {
  position: absolute;
  right: 0;
}
.modal [data-modal-header] {
  display: flex;
  justify-content: space-between;
}
.modal [data-modal-actions] {
  display: flex;
  justify-content: flex-end;
}

#exit {
  padding: 40px 20px;
  border-top-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
#exit .modal__title {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  line-height: normal;
  color: #b24399;
  text-align: center;
}
#exit .modal__text {
  max-width: 66ch;
  margin-top: 50px;
  text-align: center;
}
#exit .modal__text-link {
  font-weight: 400;
  text-decoration: underline;
}
#exit .modal__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  #exit {
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1024px) {
  #exit {
    padding-inline: 70px;
  }
}

.card {
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px;
  background-color: #fff;
  border-radius: 12px;
}
.card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card__title {
  line-height: normal;
}
.card__title sup {
  top: -0.7em;
}
@media screen and (max-width: 390) {
  .card__title {
    max-width: 25ch;
  }
}
.card__content {
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}
@media screen and (max-width: 390px) {
  .card__content {
    max-width: 457px;
  }
}
.card__link {
  letter-spacing: 0.88px;
}

:root {
  --chart-bg: linear-gradient(
    90deg,
    #eef6f8 81.73%,
    rgb(238 246 248 / 0%) 100%
  );
}

.box__border {
  padding: 1px;
  background: linear-gradient(90deg, #559cb5 0%, transparent 100%, transparent 60%, #559cb5 130%);
  border-radius: 24px 0 0;
}
.box__border-content {
  padding: 0 0 1px 1px;
  background: linear-gradient(90deg, #559cb5 0%, transparent 100%, transparent 60%, #559cb5 130%);
  border-radius: 0 0 0 24px;
}
.box__header {
  padding: 19px;
  background: var(--chart-bg);
  border-radius: 24px 0 0;
}
.box__title {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}
.box__title sup {
  top: -0.7em;
}
@media screen and (max-width: 390) {
  .box__title {
    max-width: 25ch;
  }
}
.box__content {
  padding: 12px 20px;
  background: white;
  border-radius: 0 0 0 24px;
}
@media screen and (max-width: 390px) {
  .box__content {
    max-width: 457px;
  }
}

.home-hero {
  position: relative;
  left: -25px;
  overflow: hidden;
  width: calc(100vw + 50px);
  border-radius: 0 0 0 50%/3%;
}
.home-hero__wrapper {
  display: flex;
  flex-direction: column;
  background: linear-gradient(0deg, rgb(224, 234, 239) 82%, rgb(170, 206, 218) 100%);
}
@media screen and (min-width: 1100px) {
  .home-hero__wrapper {
    flex-direction: row;
    background: linear-gradient(280deg, rgb(224, 234, 239) 80%, rgb(170, 206, 218) 100%);
  }
}
.home-hero__content {
  position: relative;
  z-index: 1;
  left: 25px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  width: calc(100% - 50px);
  max-width: unset;
  padding: 22px;
}
.home-hero__content-title {
  max-width: 100%;
  font-family: "ITC Franklin Gothic Std Compressed", sans-serif;
  font-size: 39px;
  font-weight: 600;
  line-height: 39px;
  color: #870051;
}
.home-hero__content-title::after {
  height: 4px;
  margin-top: 0;
}
@media screen and (min-width: 1100px) {
  .home-hero__content-title {
    max-width: 500px;
    font-size: 52px;
    line-height: normal;
  }
}
.home-hero__content-text {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #210022;
}
.home-hero__content-footnotes {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #594059;
}
@media screen and (min-width: 768px) {
  .home-hero__content {
    padding: 26px 70px;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero__content {
    gap: 24px;
    max-width: 710px;
    padding: 89px 0 50px 100px;
    background: unset;
  }
}
.home-hero__image {
  position: relative;
  flex: 1;
  margin-top: -100px;
}
.home-hero__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 70%, rgb(224, 234, 239) 90%);
}
@media screen and (min-width: 1100px) {
  .home-hero__image::before {
    background: linear-gradient(280deg, rgba(0, 0, 0, 0) 70%, rgb(224, 234, 239) 90%);
  }
}
.home-hero__image img {
  width: 400px;
  height: 100%;
  margin-left: 20px;
}
@media screen and (min-width: 391px) {
  .home-hero__image img {
    width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero__image img {
    width: 100%;
    margin-left: 0;
    -o-object-position: center;
       object-position: center;
  }
}
@media screen and (min-width: 1360px) {
  .home-hero__image img {
    -o-object-position: left;
       object-position: left;
  }
}
.home-hero__image .image-desktop {
  display: none;
}
@media screen and (min-width: 1100px) {
  .home-hero__image .image-desktop {
    display: block;
  }
}
.home-hero__image .image-mobile {
  display: block;
}
@media screen and (min-width: 1100px) {
  .home-hero__image .image-mobile {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero__image {
    margin-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  .home-hero__image {
    margin-left: -130px;
  }
}
.home-hero__vector {
  position: relative;
  max-width: 750px;
  opacity: 0.75;
}
.home-hero__vector--left {
  bottom: 40px;
  left: 0;
}
@media screen and (min-width: 600px) {
  .home-hero__vector--left {
    bottom: 50px;
  }
}
@media screen and (min-width: 900px) {
  .home-hero__vector--left {
    bottom: 60px;
  }
}
.home-hero__vector--right {
  display: none;
}
@media screen and (min-width: 1100px) {
  .home-hero__vector--right {
    bottom: 103px;
    left: 52%;
    display: block;
  }
}
.home-hero__foot {
  position: relative;
  bottom: 25px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
  padding-inline: 15px;
}
.home-hero__foot-caption {
  max-width: 185px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #000;
  text-align: right;
}
@media screen and (min-width: 1100px) {
  .home-hero__foot {
    bottom: 100px;
    margin-top: 10px;
    padding-inline: 100px;
  }
}
.home-hero__flex {
  display: flex;
}
.home-hero__blob {
  position: relative;
  z-index: -1;
  top: -450px;
  display: none;
}
.home-hero__blob .pink-blob {
  position: absolute;
  top: 50px;
  right: -50px;
  width: 500px;
}
.home-hero__blob .blue-blob {
  position: absolute;
  top: 50px;
  left: 0;
  width: 500px;
}
@media screen and (min-width: 1100px) {
  .home-hero__blob {
    display: flex;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero {
    background: linear-gradient(100deg, #c7dbe2, transparent 68%);
  }
}
@media screen and (min-width: 1100px) {
  .home-hero {
    left: -25px;
    width: calc(100vw + 50px);
    border-radius: 0 0 80% 80%/15%;
  }
}

.BurdenOfN1f1 .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.BurdenOfN1f1 .feature img {
  width: 102px;
  height: 102px;
  margin-bottom: 18px;
}
.BurdenOfN1f1 .feature h3 {
  width: 140px;
  max-width: 140px;
  min-height: 48px;
  text-align: center;
}
.BurdenOfN1f1.wrapper {
  margin-top: 40px;
}
.BurdenOfN1f1 .heading {
  margin-bottom: 20px;
}
.BurdenOfN1f1 .heading-secondary {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: normal;
  color: #594059;
}
.BurdenOfN1f1 .heading-secondary sup {
  top: -7px;
  font-size: 14px;
}
.BurdenOfN1f1 .heading-secondary.centered {
  max-width: 762px;
  margin-bottom: 20px;
  margin-inline: auto;
}
.BurdenOfN1f1 .feature-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 40px;
}
.BurdenOfN1f1 .feature-wrapper .feature {
  margin-bottom: 64px;
}
@supports (gap: 78px) {
  .BurdenOfN1f1 .feature-wrapper {
    gap: 40px;
    justify-content: center;
    margin: 0;
  }
  .BurdenOfN1f1 .feature-wrapper .feature {
    margin: 0;
  }
}
.BurdenOfN1f1 .decorator {
  width: 100%;
  height: 8px;
  margin: 72px 0;
}
.BurdenOfN1f1 .box {
  max-width: 762px;
  margin-inline: auto;
  padding: 40px 20px;
  background: linear-gradient(180deg, #D4E6EC -7.42%, rgba(227, 230, 237, 0) 52.2%, #F3E6EE 114.36%);
  border-radius: 12px;
}
.BurdenOfN1f1 .box .item {
  display: flex;
  align-items: center;
}
.BurdenOfN1f1 .box .item img {
  width: 46.75px;
  height: 45.5px;
  margin-right: 10px;
}
.BurdenOfN1f1 .box .item p {
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.BurdenOfN1f1 .box .item p strong {
  font-weight: 600;
}
.BurdenOfN1f1 .box .item:first-of-type {
  margin-bottom: 40px;
}
.BurdenOfN1f1 .footnotes {
  margin-top: 32px;
  color: #594059;
}

@media screen and (min-width: 1024px) {
  .BurdenOfN1f1.wrapper {
    margin-top: 60px;
  }
  .BurdenOfN1f1 .box {
    padding: 40px;
  }
}
/* This style sheet will be used for structures that are not components but can be reused */
.timeline {
  position: relative;
  height: 700px;
  background-image: url("/assets/images/timeline/patient-photo-desktop.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 450px auto;
}
@media (max-width: 767px) {
  .timeline {
    background-image: url("/assets/images/timeline/patient-photo.png");
    background-size: 266px auto;
  }
}

.grid-container {
  display: grid;
  grid-template-columns: auto 1fr;
  height: 100%;
}
.grid-container::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(227, 230, 237, 0) 0%, #f3e6ee 100%);
  border-radius: 12px;
}
.grid-container::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 52% 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, #d4e6ec -7.42%, rgba(227, 230, 237, 0) 100%);
  border-radius: 12px;
}
@media (max-width: 767px) {
  .grid-container::after {
    inset: 50% 0 0 0;
  }
}

.static-column {
  display: grid;
  grid-template-columns: 0;
  grid-template-rows: 45% 7% 45%;
  height: 100%;
}
@media (max-width: 767px) {
  .static-column {
    grid-template-columns: 50px;
    grid-template-rows: 45% 5% 45%;
  }
}
.static-column__row {
  display: flex;
  padding: 20px;
}
.static-column__row:nth-child(1) {
  align-items: end;
  padding: 0;
}
.static-column__row:nth-child(2) {
  align-items: center;
  justify-content: flex-start;
  max-height: 4rem;
  padding: 0;
}
.static-column__row .rule__legend {
  z-index: 3;
  display: grid;
  place-items: center;
  height: 100%;
  padding-right: 10px;
  padding-left: 20px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 18px;
  line-height: normal;
  background-color: #fff;
}
@media (max-width: 767px) {
  .static-column__row .rule__legend {
    padding-right: 0;
  }
}
.static-column .responses-static {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto auto;
}
.static-column .responses-static__disclaimer {
  z-index: 3;
  min-width: 28ch;
  max-width: 28ch;
  margin-bottom: 41px;
  padding-left: 20px;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  color: #210022;
}
@media (max-width: 767px) {
  .static-column .responses-static__disclaimer {
    min-width: 21ch;
    margin-bottom: 45px;
    line-height: 12px;
  }
}
.static-column .responses-static__title {
  position: relative;
  z-index: 3;
  max-width: 10ch;
  margin-bottom: 6px;
  padding-left: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #870051;
}
.static-column .responses-static__title sup {
  top: -5px;
  font-size: 10px;
  font-weight: 600;
}
.static-column .responses-static__title sup span {
  position: absolute;
  top: 8px;
  left: 5px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .static-column .responses-static__title {
    font-size: 16px;
    line-height: normal;
  }
}
.static-column .responses-static__text {
  z-index: 3;
  min-width: 18ch;
  max-width: 18ch;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #870051;
}
@media screen and (max-width: 768px) {
  .static-column .responses-static__text {
    min-width: 19ch;
    max-width: 19ch;
    font-size: 10px;
    line-height: 14px;
  }
}
@media screen and (max-width: 500px) {
  .static-column .responses-static::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    width: 45%;
    height: 26%;
    background: linear-gradient(90deg, rgba(245, 239, 244, 0.9) 30.58%, rgba(255, 255, 255, 0) 50%);
    background-size: 292px;
  }
}
.static-column .reactions-static {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  padding: 0;
}
.static-column .reactions-static::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 200px;
  height: 10%;
  background: linear-gradient(90deg, rgb(223, 233, 238) 60%, rgba(243, 230, 238, 0) 100%), linear-gradient(to top, rgba(223, 233, 238, 0) 100%, rgb(223, 233, 238) 20%);
  border-top-left-radius: 12px;
}
@media (max-width: 767px) {
  .static-column .reactions-static::before {
    width: 130px;
  }
}
.static-column .reactions-static::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 52%;
  right: 0;
  width: 50px;
  height: 3rem;
  background: linear-gradient(270deg, rgb(223, 233, 238) 70%, rgba(243, 230, 238, 0) 100%);
  border-top-right-radius: 12px;
}
@media (max-width: 767px) {
  .static-column .reactions-static::after {
    top: 49.8%;
    width: 20px;
  }
}
.static-column .reactions-static__title {
  z-index: 3;
  max-width: 10ch;
  padding-top: 20px;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #210022;
}
@media screen and (max-width: 768px) {
  .static-column .reactions-static__title {
    padding-top: 20px;
    font-size: 16px;
  }
}
.static-column .reactions-static__text {
  z-index: 3;
  max-width: 13ch;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  color: #210022;
}
@media (max-width: 767px) {
  .static-column .reactions-static__text {
    min-width: 13ch;
    font-size: 10px;
  }
}

.scrollable-column {
  position: relative;
  overflow: hidden;
}

.scroll-content {
  scroll-behavior: smooth;
  overflow-x: scroll;
  display: grid;
  grid-template-rows: 45% 7% 45%;
  height: 100%;
  -webkit-clip-path: polygon(165px 45%, 14% -11000%, 100% 100%, 0% 100%, -7% 45%);
          clip-path: polygon(165px 45%, 14% -11000%, 100% 100%, 0% 100%, -7% 45%);
}
@media (max-width: 767px) {
  .scroll-content {
    grid-template-rows: 45% 5% 45%;
    -webkit-clip-path: polygon(75px 45%, 14% -11000%, 100% 100%, 0% 445%, 8% 45%);
            clip-path: polygon(75px 45%, 14% -11000%, 100% 100%, 0% 445%, 8% 45%);
  }
}
.scroll-content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  visibility: hidden;
}
.scroll-content__row:nth-child(1) {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 119px) 200px;
  margin-left: -6px;
  padding-right: 5rem;
  padding-left: 8.3rem;
}
@media (max-width: 767px) {
  .scroll-content__row:nth-child(1) {
    grid-template-columns: repeat(12, 80px) 100px;
    margin-left: -8px;
    padding-left: 74px;
  }
}
.scroll-content__row:nth-child(2) {
  display: grid;
}
.scroll-content__row:nth-child(3) {
  display: grid;
  grid-template-columns: repeat(12, 119px) 200px;
  margin-left: -6px;
  padding-right: 5rem;
  padding-left: 9.2rem;
}
@media (max-width: 767px) {
  .scroll-content__row:nth-child(3) {
    grid-template-columns: repeat(12, 80px) 100px;
    padding-right: 1.5rem;
    padding-left: 81px;
  }
}

.navigation {
  position: absolute;
  z-index: 2;
  top: 45%;
  display: grid;
  grid-template-columns: auto auto;
  width: 100%;
}

.navigation-arrow {
  cursor: pointer;
  z-index: 1;
  width: 6rem;
  height: 3.05rem;
  margin-left: -5px;
}
@media (max-width: 767px) {
  .navigation-arrow {
    width: 4rem;
    height: 2.2rem;
  }
}
.navigation-arrow--left {
  margin-left: 60px;
  background: linear-gradient(90deg, #fff 47.61%, rgba(255, 255, 255, 0) 91.23%);
}
@media (max-width: 767px) {
  .navigation-arrow--left {
    margin-left: 55px;
  }
}
.navigation-arrow--left::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 19" fill="none"><path d="M11.2299 7.53564L5.09585 0.967232C4.1481 -0.046331 2.5422 -0.112147 1.52863 0.8356C0.501909 1.78335 0.449256 3.38925 1.41017 4.40281L5.93829 9.26002L1.41017 14.1172C0.462419 15.1308 0.515072 16.7367 1.52863 17.6844C2.01567 18.132 2.63434 18.3689 3.25301 18.3689C3.92433 18.3689 4.60881 18.0925 5.09585 17.566L11.2299 10.9976C12.1381 10.0235 12.1381 8.52288 11.2299 7.54881" fill="%23B24399"/></svg>');
  position: absolute;
  top: 15px;
  left: 89px;
  transform: rotate(180deg);
  width: 12px;
  height: 19px;
  animation-name: arrows-animation2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}
@media (max-width: 767px) {
  .navigation-arrow--left::before {
    top: 14.5px;
    left: 80px;
    width: 10px;
    height: 10px;
  }
}
.navigation-arrow--left::after {
  content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 41'><path d='M5.43146 1.20207C4.32759 0.0215512 2.45715 -0.0551061 1.27663 1.04876C0.0807804 2.15262 0.019455 4.02306 1.13865 5.20358L15.1669 20.2591L1.13865 35.3145C0.0347865 36.5104 0.0961122 38.3655 1.29197 39.4694C1.85923 40.006 2.57981 40.2666 3.30038 40.2666C4.08229 40.2666 4.87952 39.9446 5.44679 39.3314L21.3455 22.2675C22.4034 21.133 22.4034 19.3852 21.3455 18.2506L5.43146 1.20207Z' fill='%23B24399' /></svg>");
  position: absolute;
  top: 4px;
  left: 75px;
  transform: rotate(180deg);
  width: 23px;
  height: 41px;
  animation-name: arrows-animation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}
@media (max-width: 767px) {
  .navigation-arrow--left::after {
    top: 2.7px;
    left: 71px;
    width: 15px;
    height: 27px;
  }
}
.navigation-arrow--right {
  margin-left: auto;
  background: linear-gradient(270deg, #fff 47.61%, rgba(255, 255, 255, 0) 91.23%);
}
@media (max-width: 767px) {
  .navigation-arrow--right {
    margin-right: -15px;
  }
}
.navigation-arrow--right::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 12 19" fill="none"><path d="M11.2299 7.53564L5.09585 0.967232C4.1481 -0.046331 2.5422 -0.112147 1.52863 0.8356C0.501909 1.78335 0.449256 3.38925 1.41017 4.40281L5.93829 9.26002L1.41017 14.1172C0.462419 15.1308 0.515072 16.7367 1.52863 17.6844C2.01567 18.132 2.63434 18.3689 3.25301 18.3689C3.92433 18.3689 4.60881 18.0925 5.09585 17.566L11.2299 10.9976C12.1381 10.0235 12.1381 8.52288 11.2299 7.54881" fill="%23B24399"/></svg>');
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 22px;
  width: 12px;
  height: 19px;
  animation-name: arrows-animation2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}
@media (max-width: 767px) {
  .navigation-arrow--right::before {
    top: 10.5px;
    width: 10px;
    height: 10px;
    margin-right: -25px;
  }
}
.navigation-arrow--right::after {
  content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 41'><path d='M5.43146 1.20207C4.32759 0.0215512 2.45715 -0.0551061 1.27663 1.04876C0.0807804 2.15262 0.019455 4.02306 1.13865 5.20358L15.1669 20.2591L1.13865 35.3145C0.0347865 36.5104 0.0961122 38.3655 1.29197 39.4694C1.85923 40.006 2.57981 40.2666 3.30038 40.2666C4.08229 40.2666 4.87952 39.9446 5.44679 39.3314L21.3455 22.2675C22.4034 21.133 22.4034 19.3852 21.3455 18.2506L5.43146 1.20207Z' fill='%23B24399' /></svg>");
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 8px;
  width: 23px;
  height: 41px;
  animation-name: arrows-animation;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}
@media (max-width: 767px) {
  .navigation-arrow--right::after {
    width: 15px;
    height: 27px;
    margin-right: -20px;
  }
}
.navigation-arrow--hidden-icons {
  cursor: default;
}
.navigation-arrow--hidden-icons::after {
  display: none;
}
.navigation-arrow--hidden-icons::before {
  display: none;
}
.navigation-arrow--disabled-icons {
  cursor: default;
}
@media (max-width: 767px) {
  .navigation-arrow--disabled-icons {
    margin-right: 10px;
  }
}
.navigation-arrow--disabled-icons::after {
  content: "";
  background-image: url("/assets/images/timeline/arrows-disabled.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: unset;
}
.navigation-arrow--disabled-icons::before {
  display: none;
}

@keyframes arrows-animation {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}
@keyframes arrows-animation2 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
.timeline__rule {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 119px) 200px;
  align-items: center;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: -20px;
  padding-right: 5rem;
  padding-left: 9rem;
  background: rgba(89, 64, 89, 0.25);
  border-top: 2px solid rgba(65, 39, 59, 0.3);
  border-bottom: 2px solid rgba(65, 39, 59, 0.3);
}
@media (max-width: 767px) {
  .timeline__rule {
    grid-template-columns: repeat(12, 80px) 155px;
    max-width: 100%;
    padding-right: 0;
    padding-left: 80px;
  }
}
.timeline__rule--item {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
}
@media (max-width: 767px) {
  .timeline__rule--item {
    grid-template-columns: auto 64px;
  }
  .timeline__rule--item:last-child {
    grid-template-columns: auto auto;
  }
}
.timeline__rule--circles {
  display: grid;
  grid-template-columns: auto;
  width: 100%;
  padding-left: 5px;
}
.timeline__rule--circles .circles-gap {
  padding-right: 10px;
}
.timeline__rule--number {
  position: relative;
  z-index: 4;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 767px) {
  .timeline__rule--number {
    font-size: 15.966px;
  }
}
.timeline__rule--circle {
  width: 4px;
  height: 4px;
  margin: auto;
  background: #000;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .timeline__rule--circle {
    width: 3px;
    height: 3px;
  }
}

.timeline-item {
  bottom: -30px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  opacity: 0;
  transition: all 0.2s linear;
}

.animation-item {
  bottom: 0;
  opacity: 1;
}

.response-time {
  position: absolute;
  display: grid;
  grid-template-rows: auto auto 1fr;
  height: 100%;
  margin-left: 10px;
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .response-time {
    padding-top: 6rem;
  }
}
.response-time__title {
  max-width: 16ch;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  color: #594059;
}
@media (max-width: 767px) {
  .response-time__title {
    font-size: 15.97px;
    line-height: 15.97px;
  }
}
.response-time__title sup {
  left: -3px;
  font-weight: 700;
}
.response-time__list-item {
  margin-bottom: 4px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 24px;
  color: #594059;
  list-style: none;
}
@media (max-width: 767px) {
  .response-time__list-item {
    font-size: 15.966px;
  }
}
.response-time__line {
  border-left: 4px dotted #908091;
}
.response-time.--0-3-3 {
  grid-column-start: 4;
  padding-left: 2.7272727273%;
}
@media (max-width: 767px) {
  .response-time.--0-3-3 {
    grid-column-start: 4;
    padding-left: 3.0909090909%;
  }
}
.response-time.--0-3-3 .response-time__title {
  max-width: 20ch;
}
.response-time.--0-7-2 {
  grid-column-start: 8;
  padding-left: 2.7272727273%;
}
@media (max-width: 767px) {
  .response-time.--0-7-2 {
    grid-column-start: 8;
    padding-left: 3.6363636364%;
  }
}

.response-cycle {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 5px;
       column-gap: 5px;
  height: 100%;
  margin-left: -55px;
  padding-top: 9rem;
}
@media (max-width: 767px) {
  .response-cycle {
    -moz-column-gap: 0.2rem;
         column-gap: 0.2rem;
    padding-top: 12rem;
  }
}
.response-cycle-bubble {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 102px;
  height: 102px;
  color: #fff;
  text-align: center;
  background-color: #870051;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .response-cycle-bubble {
    width: 68px;
    height: 68px;
  }
}
.response-cycle-bubble__percentage {
  position: relative;
  margin-left: -10px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 50.2px;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 767px) {
  .response-cycle-bubble__percentage {
    margin-top: -5px;
    margin-left: -5px;
    font-size: 33.396px;
    font-weight: 600;
    line-height: normal;
  }
}
.response-cycle-bubble__percentage span {
  position: absolute;
  top: 10px;
  padding-left: 1px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 18.792px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 767px) {
  .response-cycle-bubble__percentage span {
    top: 7px;
    padding-left: 0;
    font-size: 12.5px;
    font-weight: 500;
    line-height: normal;
  }
}
.response-cycle-bubble__legend {
  margin-top: -5px;
  font-size: 13px;
  line-height: normal;
}
@media (max-width: 767px) {
  .response-cycle-bubble__legend {
    margin-top: -2px;
    font-size: 9.25px;
    line-height: normal;
  }
}
.response-cycle-info {
  gap: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .response-cycle-info > * {
    margin: calc(8px / 2);
  }
}
@media (max-width: 767px) {
  .response-cycle-info {
    gap: 0;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .response-cycle-info > * {
      margin: calc(0 / 2);
    }
  }
}
.response-cycle-info__legend {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #870051;
}
@media (max-width: 767px) {
  .response-cycle-info__legend {
    font-size: 15.966px;
    line-height: normal;
  }
}
.response-cycle-info__cycles {
  position: relative;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #870051;
}
@media (max-width: 767px) {
  .response-cycle-info__cycles {
    font-size: 15.966px;
    line-height: normal;
  }
}
.response-cycle-info__cycles sup {
  position: absolute;
  top: 8px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.response-cycle-info__months {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #870051;
}
@media (max-width: 767px) {
  .response-cycle-info__months {
    font-size: 15.966px;
    line-height: normal;
  }
}
.response-cycle__line {
  display: grid;
  align-items: end;
  justify-items: center;
}
.response-cycle__line .line {
  width: 2.65px;
  height: 90%;
  background-color: #870051;
  border-radius: 10px;
}
.response-cycle.--0-3-7 {
  grid-column-start: 4;
  padding-left: 6.3636363636%;
}
@media (max-width: 767px) {
  .response-cycle.--0-3-7 {
    grid-column-start: 4;
    padding-left: 9.2727272727%;
  }
}
.response-cycle.--0-7-4 {
  grid-column-start: 8;
  padding-left: 7.7272727273%;
}
@media (max-width: 767px) {
  .response-cycle.--0-7-4 {
    grid-column-start: 8;
    padding-left: 11.3636363636%;
  }
}
.response-cycle.--0-11 {
  grid-column-start: 12;
  padding-left: 4.0909090909%;
}
@media (max-width: 767px) {
  .response-cycle.--0-11 {
    grid-column-start: 12;
    padding-left: 10%;
  }
}

.reactions {
  display: grid;
  grid-template-rows: auto 20px 1fr;
  justify-items: center;
  padding: 0 4px;
}
.reactions__connector {
  width: 3px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: #559cb5;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .reactions__connector {
    width: 2px;
  }
}
.reactions__range-line {
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  height: 3px;
  margin-top: 0.5rem;
  background-color: #559cb5;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .reactions__range-line {
    height: 1.76px;
  }
}
.reactions__range-line.hide-vertical-line + .reactions__connector {
  background-color: transparent;
}
.reactions .reactions-info {
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.reactions .reactions-info__range {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 50.2px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
  text-align: center;
}
@media (max-width: 767px) {
  .reactions .reactions-info__range {
    font-size: 33.4px;
    line-height: normal;
  }
}
.reactions .reactions-info__range span {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .reactions .reactions-info__range span {
    font-size: 26.61px;
    line-height: 31.93px;
  }
}
.reactions .reactions-info__time {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #594059;
  text-align: center;
}
@media (max-width: 767px) {
  .reactions .reactions-info__time {
    font-size: 13.31px;
    line-height: 15.97px;
  }
}
.reactions .reactions-info__reactions {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.reactions .reactions-info__reactions li {
  position: relative;
  min-width: 22ch;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: #594059;
  text-align: center;
  list-style: none;
}
@media (max-width: 767px) {
  .reactions .reactions-info__reactions li {
    font-size: 15.97px;
    line-height: 19.16px;
  }
}
.reactions .reactions-info__reactions li sup {
  position: absolute;
  top: 5px;
}
@media screen and (min-width: 768px) {
  .reactions .reactions-info__reactions li sup {
    top: 9px;
  }
}
.reactions.--1-12 {
  grid-column: 1/4;
  margin-left: 12px;
}
.reactions.--3-4 {
  grid-column: 4/5;
}
.reactions.--4-8 {
  grid-column: 5/9;
}
.reactions.--8-12 {
  grid-column: 9/13;
}
.reactions.--12-13 {
  grid-column: 13/15;
  margin-left: 10px;
}

.animation-reaction {
  opacity: 0 !important;
}

.cta-container {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 44px 20px;
  color: white;
  background: linear-gradient(90deg, #F9EAEF 0%, #DAE9F0 100%, #E2F6FF 100%);
  border-radius: 12px;
}
.cta-container a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.cta-container a .cta__button-text {
  margin-top: 4px;
}
.cta-container figure {
  width: 40px;
  height: 40px;
  margin: 0;
  margin-left: 6px;
}
.cta-container figure img {
  width: initial;
  max-width: initial;
}
.cta-container .watermark {
  position: absolute;
  top: -37.615px;
  left: 0;
  width: 219.42px;
  height: 204.08px;
}

@media screen and (min-width: 1024px) {
  .cta-container {
    padding: 47px 120px;
  }
}
@media screen and (min-width: 768px) {
  .cta-container {
    justify-content: right;
  }
  .cta-container a {
    width: initial;
  }
  .watermark {
    width: 249px;
    height: 209px;
  }
}
.references {
  margin-top: 9px;
  margin-bottom: 60px;
}
.references .references__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #210022;
}
.references p,
.references a {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #210022;
}
.references a {
  word-wrap: break-word;
}
.references p.disclaimer {
  margin-top: 25px;
  color: #594059;
}
@media screen and (min-width: 400px) {
  .references p .home__br {
    display: none;
  }
}
.references strong {
  font-weight: 600;
}
.references .br-mobile {
  display: none;
}
@media screen and (min-width: 390px) {
  .references .br-mobile {
    display: block;
  }
}
@media screen and (min-width: 391px) {
  .references .br-mobile {
    display: none;
  }
}
.references .br-desktop {
  display: none;
}
@media screen and (min-width: 1440px) {
  .references .br-desktop {
    display: block;
  }
}
@media screen and (min-width: 1441px) {
  .references .br-desktop {
    display: none;
  }
}
@media screen and (min-width: 380px) {
  .references .br-big-line {
    display: none;
  }
}

.table__header, .table__row {
  overflow: hidden;
  display: flex;
  gap: 20px;
}
.table__header {
  margin-bottom: 14px;
}
.table__header-cell {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #58595a;
  text-align: center;
}
.table__header-cell {
  font-weight: 600;
  border-bottom: none;
}
.table__cell {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-end;
}
.table__header-cell:last-child, .table__cell:last-child {
  margin-right: 0;
}
.table__header-cell:first-child {
  flex-grow: 1;
  font-size: 22.2px;
  font-weight: 600;
  color: #58595a;
  text-align: left;
}
.table__header-cell:first-child ~ .table__header-cell {
  font-size: 18.501px;
  font-weight: 400;
  color: #58595a;
  text-align: center;
}
.table .first-row {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.table .last-row {
  padding-bottom: 10px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}
.table .last-row .border-cell {
  margin-bottom: 8px;
}
.table__row > .table__cell:nth-child(1) .border-cell {
  border-bottom: 1px solid #58595a;
}
.table__header-cell, .table__cell {
  flex: 0 0 25.5%;
  font-size: 16px;
  line-height: normal;
  text-align: center;
}
.table__header-cell:first-child, .table__cell:nth-child(1) {
  flex-basis: 38.24%;
  text-align: left;
}
.table__title {
  position: absolute;
  top: -25px;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 22.201px;
  font-weight: 600;
  line-height: normal;
  color: #870051;
}
@media screen and (min-width: 450px) {
  .table__title {
    right: 5%;
  }
}
@media screen and (min-width: 500px) {
  .table__title {
    right: 12%;
  }
}
@media screen and (min-width: 700px) {
  .table__title {
    right: 15%;
  }
}
@media screen and (min-width: 1024px) {
  .table__title {
    right: 20%;
  }
}
@media screen and (min-width: 1100px) {
  .table__title {
    right: 23%;
  }
}
@media screen and (min-width: 1024px) {
  .table__header-cell, .table__cell {
    flex-basis: 24.38%;
  }
}

.table__cell {
  position: relative;
  flex: 1;
}

.border-cell {
  position: absolute;
  bottom: 0;
  left: 8%;
  width: 85%;
  margin: 0 12px 0 0;
  border-bottom: 1px solid #58595a;
}

.table__cell:first-child {
  flex-basis: 47.24%;
}
.table__cell:first-child .border-cell {
  left: 0;
  width: 100%;
}
.table__cell:first-child p {
  width: 77%;
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #58595a;
}

.table__cell:not(:first-child) {
  flex-basis: 26.38%;
}
.table__cell:not(:first-child) .adjust-spacing {
  padding-left: 12px;
}
.table__cell:not(:first-child) span {
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #58595a;
}

.table__subtitle {
  margin-top: 6px;
  margin-bottom: 8px;
  font-size: 18.501px;
  font-weight: 600;
  color: #58595a;
}

.table__items {
  margin-bottom: 8px;
}

@media screen and (min-width: 1024px) {
  .table__cell:not(:first-child) .border-cell {
    left: 4%;
    width: 92%;
  }
}
@media screen and (max-width: 370px) {
  .table__cell p {
    word-break: break-all;
  }
  .table__cell {
    word-break: break-all;
  }
}
.table__row {
  display: flex;
}

.table__cell {
  flex-basis: 0;
  flex-grow: 1;
}

.table__items.two-columns .table__cell {
  flex-basis: 50%;
}

.table--cardiomyopathy .table__header {
  margin-bottom: 0;
}
.table--cardiomyopathy .table__subtitle {
  margin-top: 0;
}
.table--cardiomyopathy .table__items:last-child {
  margin-bottom: 0;
}
.table--cardiomyopathy .table__header-cell,
.table--cardiomyopathy .table__cell {
  flex-basis: 46%;
  word-break: normal;
}
.table--cardiomyopathy .table__header-cell p,
.table--cardiomyopathy .table__cell p {
  word-break: normal;
}
@media screen and (min-width: 1024px) {
  .table--cardiomyopathy .table__header-cell,
  .table--cardiomyopathy .table__cell {
    max-width: 465px;
  }
}
.table--cardiomyopathy .table-br--only-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .table--cardiomyopathy .table-br--only-desktop {
    display: inline;
  }
}
@media screen and (min-width: 1024px) {
  .table--cardiomyopathy .table-br--only-mobile {
    display: none;
  }
}
.table--cardiomyopathy .two-columns {
  margin-top: -17px;
}
.table--cardiomyopathy__header-cell, .table--cardiomyopathy__cell {
  flex-basis: 50%;
  font-size: 16px;
  line-height: normal;
  text-align: center;
}
.table--cardiomyopathy .table__subtitle {
  margin-bottom: 4px;
}
.table--cardiomyopathy .table__header-cell:first-child p {
  width: 75%;
  font-size: 22.201px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}
.table--cardiomyopathy .table__header-cell:nth-child(2) p {
  font-size: 22.201px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #870051;
}
@media screen and (min-width: 1024px) {
  .table--cardiomyopathy .table__header-cell:nth-child(2) p {
    width: 92%;
  }
}
.table--cardiomyopathy .breaking-row .table__cell:not(:first-child) p {
  padding-bottom: 8px;
}
.table--cardiomyopathy .breaking-row .table__cell:not(:first-child) .border-cell {
  margin-bottom: 4px;
}
.table--cardiomyopathy .breaking-row .last-row:not(:first-child) p {
  margin-bottom: 1px;
}
.table--cardiomyopathy .breaking-row .last-row:not(:first-child) .border-cell {
  margin-bottom: 15px;
}
.table--cardiomyopathy .table--cardiomyopathy .breaking-row .table__cell:not(:first-child) p {
  padding-bottom: 6px;
}
.table--cardiomyopathy .table__cell:first-child {
  margin-top: 20px;
}
.table--cardiomyopathy .table__cell:first-child ul {
  margin-left: 22px;
  padding-bottom: 4px;
}
.table--cardiomyopathy .table__cell:first-child ul li {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #58595a;
}
@media screen and (min-width: 1024px) {
  .table--cardiomyopathy .table__cell:first-child br {
    display: none;
  }
}
.table--cardiomyopathy .table__cell:not(:first-child).first-row {
  margin-top: 21px;
}
.table--cardiomyopathy .table__cell:not(:first-child) p {
  width: 87%;
  margin: 0 12px;
  padding-top: 12px;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #58595a;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .table--cardiomyopathy .table__cell:not(:first-child) p {
    width: 81%;
  }
}
@media screen and (min-width: 400px) {
  .table--cardiomyopathy .table__cell:not(:first-child) .border-cell {
    left: 12px;
    min-width: 129px;
    max-width: 500px;
    margin-right: 12px;
  }
}
.table--cardiomyopathy .table--ocular-toxicity .table__cell:not(:first-child).first-row p {
  width: 80%;
}
.table.table--adverse-reaction {
  position: relative;
}
.table.table--adverse-reaction .table__cell:first-child p {
  width: 90%;
}
.table.table--adverse-reaction .table__header {
  margin-bottom: 22px;
}
@media screen and (min-width: 1024px) {
  .table.table--adverse-reaction .table__header-cell:first-child {
    max-width: 350px;
  }
}
@media screen and (max-width: 494px) {
  .table.table--adverse-reaction .table__header-cell:nth-child(2) {
    flex-basis: 27%;
    align-self: end;
  }
}
@media screen and (min-width: 1024px) {
  .table.table--adverse-reaction .table__header-cell:nth-child(2) {
    flex-basis: 30%;
    max-width: 300px;
  }
}
@media screen and (max-width: 494px) {
  .table.table--adverse-reaction .table__header-cell:nth-child(3) {
    flex-basis: 21%;
    align-self: end;
  }
}
@media screen and (min-width: 1024px) {
  .table.table--adverse-reaction .table__header-cell:nth-child(3) {
    flex-basis: 30%;
    max-width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .table.table--adverse-reaction .table__cell:first-child {
    max-width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .table.table--adverse-reaction .table__cell:nth-child(2), .table.table--adverse-reaction .table__cell:nth-child(3) {
    max-width: 300px;
  }
}
.table.table--adverse-reaction .table__cell sup {
  top: -5px;
}
.table.table--adverse-reaction .table__subtitle {
  margin-top: 0;
  margin-bottom: 6px;
}

.table.table--laboratory-abnormality {
  position: relative;
}
.table.table--laboratory-abnormality .table__title {
  right: 10%;
}
@media screen and (min-width: 450px) {
  .table.table--laboratory-abnormality .table__title {
    right: 15%;
  }
}
@media screen and (min-width: 768px) {
  .table.table--laboratory-abnormality .table__title {
    right: 16%;
  }
}
@media screen and (min-width: 900px) {
  .table.table--laboratory-abnormality .table__title {
    right: 18%;
  }
}
@media screen and (min-width: 1024px) {
  .table.table--laboratory-abnormality .table__title {
    right: 23%;
  }
}
@media screen and (min-width: 1050px) {
  .table.table--laboratory-abnormality .table__title {
    right: 26%;
  }
}
.table.table--laboratory-abnormality .table__cell:first-child p {
  width: 90%;
}
.table.table--laboratory-abnormality .table__header {
  overflow: visible;
  margin-bottom: 22px;
}
@media screen and (min-width: 600px) {
  .table.table--laboratory-abnormality .table__header-cell:first-child {
    flex-basis: 45%;
  }
}
@media screen and (min-width: 1024px) {
  .table.table--laboratory-abnormality .table__header-cell:first-child {
    max-width: 350px;
  }
}
@media screen and (max-width: 494px) {
  .table.table--laboratory-abnormality .table__header-cell:nth-child(2) {
    flex-basis: 27%;
    align-self: end;
  }
}
@media screen and (max-width: 350px) {
  .table.table--laboratory-abnormality .table__header-cell:nth-child(2) {
    flex-basis: 21%;
  }
}
@media screen and (min-width: 1024px) {
  .table.table--laboratory-abnormality .table__header-cell:nth-child(2) {
    flex-basis: 30%;
    max-width: 300px;
  }
}
@media screen and (max-width: 494px) {
  .table.table--laboratory-abnormality .table__header-cell:nth-child(3) {
    flex-basis: 25%;
    align-self: end;
  }
}
@media screen and (max-width: 350px) {
  .table.table--laboratory-abnormality .table__header-cell:nth-child(3) {
    flex-basis: 21%;
    align-self: end;
  }
}
@media screen and (min-width: 1024px) {
  .table.table--laboratory-abnormality .table__header-cell:nth-child(3) {
    flex-basis: 30%;
    max-width: 300px;
  }
}
@media screen and (min-width: 1024px) {
  .table.table--laboratory-abnormality .table__cell:first-child {
    max-width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .table.table--laboratory-abnormality .table__cell:nth-child(2), .table.table--laboratory-abnormality .table__cell:nth-child(3) {
    max-width: 300px;
  }
}
.table.table--laboratory-abnormality .table__cell sup {
  top: -5px;
}
.table.table--laboratory-abnormality .table__subtitle {
  margin-top: 0;
  margin-bottom: 0;
}

.sitemap {
  width: 100%;
  padding-top: 20px;
}
.sitemap__title {
  margin-bottom: 40px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #870051;
}
@media screen and (min-width: 1024px) {
  .sitemap__title {
    margin-bottom: 57px;
  }
}
.sitemap__primary-link {
  margin-bottom: 40px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #870051;
}
.sitemap__primary-link:hover {
  color: #b24399;
}
@media screen and (min-width: 1024px) {
  .sitemap__primary-link {
    margin-bottom: 57px;
  }
}
.sitemap__list {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .sitemap__list {
    margin-bottom: 57px;
  }
}
.sitemap__list-item {
  margin-bottom: 24px;
  list-style: none;
}
.sitemap .sitemap__list-item-link {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
  text-decoration-line: underline;
}
.sitemap .sitemap__list-item-link:hover {
  color: #b24399;
}
.sitemap .parent-link {
  margin-bottom: 32px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #870051;
  text-decoration: none;
}
.sitemap .parent-link:hover {
  color: #b24399;
}
.sitemap .sitemap__list .sitemap__list-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .sitemap {
    padding-top: 40px;
  }
}

.history-chart-box {
  --Chart-bg: linear-gradient(90deg, #EEF6F8 0%, #FFF 100%);
}
.history-chart-box .box__header {
  padding: 7.82px;
  border-radius: 4.7px 0 0;
}
@media screen and (min-width: 1024px) {
  .history-chart-box .box__header {
    border-top-left-radius: 12px;
  }
}
.history-chart-box .box__border {
  border-radius: 4.7px 0 0;
}
@media screen and (min-width: 1024px) {
  .history-chart-box .box__border {
    border-top-left-radius: 12px;
  }
}
.history-chart-box .box__title {
  font-size: 12px;
}
.history-chart-box .box__content {
  padding: 0;
  border-radius: 0 0 0 4.7px;
}
@media screen and (min-width: 1024px) {
  .history-chart-box .box__content {
    border-bottom-left-radius: 12px;
  }
}
.history-chart-box .box__border-content {
  border-radius: 0 0 0 4.7px;
}
@media screen and (min-width: 1024px) {
  .history-chart-box .box__border-content {
    border-bottom-left-radius: 12px;
  }
}

@media screen and (min-width: 1024px) {
  .history-chart-box {
    max-width: 921px;
    margin-right: auto;
    margin-left: 105px;
  }
  .history-chart-box .box__title {
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    text-overflow: ellipsis;
  }
}
.callout-image__card {
  max-width: 550px;
  margin-bottom: 24px;
  margin-inline: auto;
  padding: 24px;
  background: #fff;
  background-color: #fff;
  -webkit-backdrop-filter: blur(28.75px);
          backdrop-filter: blur(28.75px);
  border-radius: 12px;
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
.callout-image__card .button {
  width: 100% !important;
  height: 44px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .callout-image__card .button {
    max-width: 216px;
  }
}
@media screen and (min-width: 1024px) {
  .callout-image__card {
    display: flex;
    gap: 40px;
    max-width: 1103px;
    max-height: 271px;
    margin-bottom: 20px;
    padding: 0;
    padding-right: 40px;
  }
}
.callout-image__image {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.callout-image__image img {
  border-radius: 10px;
}
@media screen and (min-width: 1024px) {
  .callout-image__image img {
    width: 361px;
    max-height: 271px;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .callout-image__body {
    margin-block: 61.25px;
  }
}
.callout-image__title {
  margin-block: 12px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .callout-image__title {
    margin-bottom: 24px;
    margin-block: unset;
    font-size: 24px;
  }
}
.callout-image__text {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .callout-image__text {
    margin-bottom: 16.5px;
  }
}

.cover-callout {
  position: relative;
}
.cover-callout .callout-image__card__background {
  position: absolute;
  z-index: -1;
  bottom: 371px;
  left: -59px;
  width: 704px;
  height: 94px;
  opacity: 0.6;
  background: #E18FD3;
  filter: blur(91.5658px);
  border-radius: 704px;
}
@media screen and (min-width: 1024px) {
  .cover-callout .callout-image__card__background {
    bottom: -15px;
    left: 310px;
    height: 269px;
    filter: blur(61.5658px);
  }
}

.index-page__fasting {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-bottom: 40px;
}
.index-page__fasting .border-gradient {
  overflow: hidden;
  background: linear-gradient(135deg, rgb(135, 0, 81) 0%, white 30%, white 60%, rgb(135, 0, 81) 100%);
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .index-page__fasting .border-gradient {
    background: linear-gradient(170deg, rgb(135, 0, 81) 0%, white 30%, white 60%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1300px) {
  .index-page__fasting .border-gradient {
    max-width: 1230px;
  }
}
.index-page__fasting .bg-color--white {
  height: 100%;
  margin: 1px;
  padding-block: 20px;
  border-radius: inherit;
}
@media screen and (min-width: 1024px) {
  .index-page__fasting .bg-color--white {
    padding-inline: 131px;
  }
}
.index-page__fasting .content-with-gradient-background {
  padding: 40px 37.5px;
  background: radial-gradient(circle at 50% 50%, #eef6f8, transparent 100%);
}
@media screen and (min-width: 1024px) {
  .index-page__fasting .content-with-gradient-background {
    padding-block: 40px;
  }
}
.index-page__fasting .gradient-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.index-page__fasting .gradient-card .button {
  margin-top: 22px;
  margin-inline: auto;
}
.index-page__fasting .gradient-card-title {
  margin-bottom: 16px;
  padding-block: 2px;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: 90%;
  background: linear-gradient(85deg, #cb77a9 -0.43%, #6c839f 57.09%, #274f5d 112.26%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 500px) {
  .index-page__fasting .gradient-card-text {
    max-width: 25ch;
  }
}
@media screen and (min-width: 1024px) {
  .index-page__fasting .gradient-card {
    flex-direction: row;
    gap: 101px;
    margin-inline: auto;
  }
  .index-page__fasting .gradient-card-title {
    font-size: 40px;
  }
  .index-page__fasting .gradient-card .button {
    align-self: unset;
    margin: 0;
  }
}
@media screen and (min-width: 1100px) {
  .index-page__fasting {
    margin-top: -40px;
  }
}
.index-page__grid {
  position: relative;
  margin-inline: auto;
}
.index-page__grid::before {
  content: "";
  position: absolute;
  top: -240px;
  transform: rotate(180deg);
  width: 100%;
  height: calc(100% + 40px);
  background-image: url("/assets/images/home/grid-bg-mobile.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media screen and (min-width: 410px) {
  .index-page__grid::before {
    top: -300px;
    transform: unset;
    height: 120%;
    background-image: url("/assets/images/home/grid-bg-desktop.png");
    background-position: center;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  .index-page__grid::before {
    top: -100px;
    background-image: url("/assets/images/home/grid-bg-desktop.png");
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 1024px) {
  .index-page__grid::before {
    top: -110px;
    background-image: url("/assets/images/home/grid-bg-desktop.png");
    background-size: 100% 130%;
  }
}
.index-page__grid-cards {
  display: grid;
  gap: 20px;
  max-width: 1030px;
  margin-bottom: 28px;
  margin-inline: auto;
}
@media screen and (min-width: 1100px) {
  .index-page__grid-cards .card:nth-child(3) .card__content {
    margin-bottom: 65px;
  }
}
@media screen and (min-width: 768px) {
  .index-page__grid-cards .card__link {
    position: absolute;
    bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .index-page__grid-cards .card {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .index-page__grid-cards {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px 20px;
  }
  .index-page__grid-cards .Longer-card {
    grid-column: span 2;
    width: 100%;
  }
}
.index-page__grid .footnotes {
  position: relative;
  max-width: 1030px;
  margin-inline: auto;
  padding-left: 4.7px;
  color: #594059;
  background: transparent;
}
.index-page__grid .footnotes sup:first-of-type {
  position: absolute;
  top: 4.7px;
  left: 0;
}
@media screen and (max-width: 400px) {
  .index-page__grid .footnotes {
    max-width: 51ch;
  }
}
@media screen and (min-width: 1024px) {
  .index-page__grid {
    margin-top: 40px;
  }
}
.index-page main {
  overflow: hidden;
}

.about {
  color: red;
}

.sitemap-page .isi {
  margin-top: 20px;
  padding-top: 0;
}
@media screen and (min-width: 1024px) {
  .sitemap-page .isi {
    margin-top: 3px;
    padding-top: 0;
  }
}
.sitemap-page #isi-position {
  margin-top: 0;
}

.dosing-page .footnotes {
  color: #594059;
}
.dosing-page .box {
  --Chart-bg: linear-gradient(90deg, #EEF6F8 81.73%, #FFF 100%);
}
.dosing-page .box--dosage-modifications {
  margin-top: 40px;
}
.dosing-page .box--dosage-modifications .box__title {
  padding-right: 7px;
  color: #594059;
}
.dosing-page .box--dosage-modifications .box__content {
  padding-top: 20px;
  padding-inline: 12px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .box--dosage-modifications .box__content {
    padding-top: 50px;
    padding-bottom: 40px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .dosing-page .box--dosage-modifications {
    max-width: 1033px;
    margin-inline: auto;
  }
}
.dosing-page .recommended {
  padding-top: 19.74px;
  padding-bottom: 40px;
}
.dosing-page .recommended__grid {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__grid {
    display: grid;
    grid-template-columns: 610px auto;
    gap: 20px;
    width: 100%;
    max-width: 1030px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1440px) {
  .dosing-page .recommended__grid {
    margin-right: auto;
    margin-left: auto;
  }
}
.dosing-page .recommended__heading {
  margin-top: 40px;
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__heading {
    margin-top: 12.61px;
    margin-bottom: 0;
  }
}
.dosing-page .recommended__sup-heading {
  margin-bottom: 20px;
  font-weight: 600;
  line-height: normal;
  color: #908091;
}
.dosing-page .recommended__descripcion {
  width: 100%;
  max-width: 32ch;
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
@media screen and (min-width: 450px) {
  .dosing-page .recommended__descripcion {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__descripcion {
    max-width: 58ch;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 450px) {
  .dosing-page .recommended__br {
    display: none;
  }
}
.dosing-page .recommended__content-img {
  position: relative;
  display: grid;
  grid-template-columns: 55px auto;
  gap: 20px;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.dosing-page .recommended__content-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20.505096vw;
  right: -20px;
  width: 100vw;
  height: 127.44vw;
  opacity: 0.7;
  background-image: url("/assets/images/dosing/circle-bg-mobile1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .dosing-page .recommended__content-img::before {
    top: -10.2vw;
    right: -10vw;
    height: 68vw;
    background-image: url("/assets/images/dosing/circle-bg-desktop.png");
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__content-img::before {
    top: -285px;
    right: -100%;
    width: 819px;
    height: 559px;
    opacity: 0.85;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__content-img {
    grid-template-columns: 55px 534px;
  }
}
.dosing-page .recommended__div-img {
  width: 55px;
}
.dosing-page .recommended__monitor {
  line-height: normal;
  color: #594059;
}
.dosing-page .recommended__capsule {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 31.89px;
  padding-right: 3.98px;
  padding-bottom: 31.89px;
  background-color: #fff;
  border-radius: 12.756px;
}
@media screen and (min-width: 600px) {
  .dosing-page .recommended__capsule {
    padding: 31.89px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__capsule {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended {
    padding-top: 20px;
  }
}
.dosing-page .administration {
  padding-top: 29px;
  /* &__list {
    margin-left: 15px;
  } */
}
.dosing-page .administration__heading {
  max-width: 25ch;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 400px) {
  .dosing-page .administration__heading {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__heading {
    max-width: 1030px;
    margin-inline: auto;
  }
}
.dosing-page .administration__grid {
  margin-top: 8.44px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__grid {
    display: grid;
    grid-template-columns: 398px minmax(0, 729px);
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1030px;
    margin-top: 0;
    margin-bottom: 0;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1150px) {
  .dosing-page .administration__grid {
    grid-template-columns: 398px 729px;
  }
}
.dosing-page .administration__content-img {
  width: 100%;
  max-width: 350px;
  margin-right: auto;
  margin-bottom: -72px;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__content-img {
    position: relative;
    z-index: 2;
    max-width: 350px;
    margin-bottom: 0;
    margin-left: 30px;
  }
}
.dosing-page .administration__content-text {
  width: 100%;
  max-width: 350px;
  margin-right: auto;
  margin-left: auto;
  padding: 114px 20px 20px;
  background-color: #eef6f8;
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__content-text {
    max-width: 100%;
    margin-right: 50px;
    margin-left: -102px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 102px;
  }
}
.dosing-page .administration__subtitle {
  width: 100%;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 375px) {
  .dosing-page .administration__subtitle {
    font-size: 20px;
  }
}
.dosing-page .administration__list span {
  font-weight: 600;
}
.dosing-page .administration__item {
  margin-bottom: 8px;
  margin-left: 15px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__item:nth-child(1) {
    max-width: 61ch;
  }
}
.dosing-page .administration__item:nth-child(2) {
  max-width: 29ch;
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__item:nth-child(2) {
    max-width: 55ch;
  }
}
.dosing-page .administration__item:last-of-type {
  margin-bottom: 0;
}
.dosing-page .administration .administration__list .administration__item::marker {
  width: 100%;
  font-size: 26px;
  color: #559cb5;
}
.dosing-page .administration__title-list {
  position: relative;
  display: grid;
  grid-template-columns: 190px 60px;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 32ch;
  margin-bottom: 8px;
  padding-top: 19px;
  padding-bottom: 19px;
  background: linear-gradient(270deg, rgba(135, 0, 81, 0) 5.19%, rgba(135, 0, 81, 0.1) 52.55%, rgba(135, 0, 81, 0) 99.92%);
}
.dosing-page .administration__title-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(135, 0, 81, 0) 0%, rgb(135, 0, 81) 50%, rgba(135, 0, 81, 0) 100%);
}
.dosing-page .administration__title-list::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(135, 0, 81, 0) 0%, rgb(135, 0, 81) 50%, rgba(135, 0, 81, 0) 100%);
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__title-list {
    grid-template-columns: 329px 60px;
    width: 100%;
    max-width: 607px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.dosing-page .administration__heading-list {
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #870051;
}
.dosing-page__flexibility {
  margin-top: 28px;
}
.dosing-page__flexibility .dosing-page__border-gradient {
  overflow: hidden;
  background: linear-gradient(115deg, rgb(135, 0, 81) 10%, white 24%, white 77%, rgb(135, 0, 81) 100%);
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .dosing-page__flexibility .dosing-page__border-gradient {
    background: linear-gradient(160deg, rgb(135, 0, 81) 0%, white 23%, white 83%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page__flexibility .dosing-page__border-gradient {
    max-width: calc(100% - 140px);
  }
}
@media screen and (min-width: 1100px) {
  .dosing-page__flexibility .dosing-page__border-gradient {
    max-width: 1033px;
  }
}
.dosing-page__flexibility .bg-color--white {
  height: 100%;
  margin: 1px;
  padding-block: 20px;
  border-radius: inherit;
}
.dosing-page__flexibility .dosing-page-content-with-gradient {
  padding: 20px;
  padding-right: 18px;
  padding-left: 18px;
  background: radial-gradient(circle at 50% 50%, #eef6f8, transparent 100%);
}
@media screen and (min-width: 1024px) {
  .dosing-page__flexibility .dosing-page-content-with-gradient {
    padding-block: 20px;
  }
}
.dosing-page__flexibility .dosing-page__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.dosing-page__flexibility .dosing-page__card-title {
  width: 100%;
  max-width: 20ch;
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
  color: #8c0f57;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .dosing-page__flexibility .dosing-page__card-title {
    max-width: 26ch;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page__flexibility .dosing-page__card-title {
    max-width: 34ch;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page__flexibility .dosing-page__card-title {
    max-width: 40ch;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page__flexibility {
    margin-top: 18px;
  }
}
.dosing-page .advise {
  margin-top: 56px;
  margin-bottom: 50px;
}
.dosing-page .advise__heading {
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .dosing-page .advise__heading {
    max-width: 1030px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
}
.dosing-page .advise__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.dosing-page .advise__grid::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 50%;
  width: 2px;
  height: 80.541px;
  background-color: #559cb5;
}
@media screen and (min-width: 375px) {
  .dosing-page .advise__grid::after {
    top: 38%;
  }
}
@media screen and (min-width: 390px) {
  .dosing-page .advise__grid::after {
    top: 22%;
  }
}
@media screen and (min-width: 472px) {
  .dosing-page .advise__grid::after {
    top: 0;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page .advise__grid::after {
    position: absolute;
    top: 0;
    right: 50%;
    width: 2px;
    height: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .advise__grid {
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1030px;
    height: 80px;
    margin-right: auto;
    margin-left: auto;
  }
}
.dosing-page .advise__content {
  width: 100%;
  max-width: 20ch;
  font-weight: 600;
}
@media screen and (min-width: 500px) {
  .dosing-page .advise__content {
    max-width: 100%;
  }
}
.dosing-page .advise__span {
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .dosing-page .advise {
    margin-top: 73px;
    margin-bottom: 50px;
  }
}
.dosing-page .requirements {
  margin-bottom: 50px;
}
.dosing-page .requirements .requirements-box {
  --Chart-bg: linear-gradient(90deg, #EEF6F8 32.47%, #FFF 100%);
}
.dosing-page .requirements .requirements-box .box__border {
  border-top-left-radius: 12px;
}
.dosing-page .requirements .requirements-box .box__border-content {
  border-bottom-left-radius: 12px;
}
.dosing-page .requirements .requirements-box .box__header {
  border-top-left-radius: 12px;
}
.dosing-page .requirements .requirements-box .box__title {
  color: #594059;
}
.dosing-page .requirements .requirements-box .box__content {
  padding: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 9.36px;
  border-bottom-left-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .requirements .requirements-box .box__content {
    padding-top: 20px;
    padding-bottom: 0;
    padding-left: 87.55px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .requirements .requirements-box .requirements-box__pic {
    width: 100%;
    max-width: 855px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .requirements .requirements-box {
    max-width: 1033px;
    margin-right: auto;
    margin-left: auto;
  }
}
.dosing-page .evaluation {
  padding-top: 0;
}
.dosing-page .evaluation__heading {
  margin-bottom: 20px;
  line-height: normal;
  color: #594059;
}
.dosing-page .evaluation__descripcion {
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
.dosing-page .evaluation__descripcion:nth-child(2) {
  max-width: 32ch;
}
@media screen and (min-width: 500px) {
  .dosing-page .evaluation__descripcion:nth-child(2) {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page .evaluation__descripcion:nth-child(2) {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__descripcion:nth-child(2) {
    max-width: 120ch;
  }
}
.dosing-page .evaluation__descripcion:nth-child(3) {
  max-width: 32.5ch;
}
@media screen and (min-width: 500px) {
  .dosing-page .evaluation__descripcion:nth-child(3) {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page .evaluation__descripcion:nth-child(3) {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__descripcion:nth-child(3) {
    max-width: 120ch;
  }
}
.dosing-page .evaluation__descripcion:nth-child(4) {
  max-width: 32.5ch;
}
@media screen and (min-width: 500px) {
  .dosing-page .evaluation__descripcion:nth-child(4) {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page .evaluation__descripcion:nth-child(4) {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__descripcion:nth-child(4) {
    max-width: 120ch;
  }
}
.dosing-page .evaluation__descripcion:last-of-type {
  max-width: 32.5ch;
  margin-bottom: 0;
}
@media screen and (min-width: 500px) {
  .dosing-page .evaluation__descripcion:last-of-type {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page .evaluation__descripcion:last-of-type {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__descripcion:last-of-type {
    max-width: 120ch;
  }
}
.dosing-page .evaluation__span {
  font-weight: 600;
}
.dosing-page .evaluation__grid-footnotes {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__grid-footnotes {
    margin-top: 60px;
  }
}
.dosing-page .bsa {
  padding-top: 60px;
}
.dosing-page .bsa .bsa__box {
  margin-top: 32px;
}
.dosing-page .bsa .bsa__box .box__title {
  font-weight: 600;
  color: #594059;
}
.dosing-page .bsa .bsa__box .box__content {
  padding: 0;
  padding-top: 22px;
  padding-bottom: 12px;
  padding-left: 12px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box .box__content {
    padding-top: 50px;
    padding-bottom: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box {
    max-width: 1033px;
    margin-right: auto;
    margin-left: auto;
  }
}
.dosing-page .bsa .bsa__box-reaction {
  margin-top: 32px;
  margin-bottom: 32px;
}
.dosing-page .bsa .bsa__box-reaction .box__content {
  padding: 0;
  padding-top: 22px;
  padding-bottom: 12px;
  padding-left: 12px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box-reaction .box__content {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box-reaction .bsa__box-reaction-img {
    width: 100%;
    max-width: 990px;
  }
}
.dosing-page .bsa .bsa__box-reaction .box__title {
  width: 100%;
  max-width: 25ch;
  font-weight: 600;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box-reaction .box__title {
    max-width: 60ch;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box-reaction {
    max-width: 1033px;
    margin-right: auto;
    margin-left: auto;
  }
}
.dosing-page .bsa .bsa__grid-footnotes {
  color: #594059;
}
.dosing-page .bsa .bsa__grid-footnotes .footnotes {
  position: relative;
}
.dosing-page .bsa .bsa__grid-footnotes .footnotes.modifier-padding {
  padding-bottom: 3px;
  padding-left: 4px;
}
.dosing-page .bsa .bsa__grid-footnotes .footnotes.modifier-padding:last-child {
  padding-bottom: 0;
}
.dosing-page .bsa .bsa__grid-footnotes .footnotes .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 6px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__grid-footnotes {
    margin-left: 105px;
  }
}
.dosing-page .interaction {
  margin-top: 32px;
  margin-bottom: 60px;
}
.dosing-page .interaction__footer-subtitle {
  margin-bottom: 20px;
  line-height: normal;
  color: #594059;
}
.dosing-page .interaction__footer-subtitle--modif {
  margin-top: 32px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .interaction__footer-subtitle--modif {
    margin-top: 40px;
  }
}
.dosing-page .interaction__footer-content:last-of-type {
  margin-bottom: 20px;
}
.dosing-page .interaction .interaction__grid-footnotes .footnotes {
  position: relative;
}
.dosing-page .interaction .interaction__grid-footnotes .footnotes.modifier-padding {
  padding-bottom: 3px;
  padding-left: 4px;
}
.dosing-page .interaction .interaction__grid-footnotes .footnotes.modifier-padding:last-child {
  padding-bottom: 0;
}
.dosing-page .interaction .interaction__grid-footnotes .footnotes .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 6px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .interaction {
    margin-bottom: 40px;
  }
}
.dosing-page .modifications__grid-footnotes {
  margin-top: 44px;
  margin-bottom: 60px;
}
.dosing-page .modifications__grid-footnotes .footnotes {
  position: relative;
}
.dosing-page .modifications__grid-footnotes .footnotes.modifier-padding {
  padding-bottom: 3px;
  padding-left: 4px;
}
.dosing-page .modifications__grid-footnotes .footnotes.modifier-padding:last-child {
  padding-bottom: 0;
}
.dosing-page .modifications__grid-footnotes .footnotes .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 6px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .modifications__grid-footnotes {
    margin-left: 105px;
  }
}

.efficacy-page {
  /* Add page element styles below */
}
.efficacy-page .heading {
  margin-top: 20px;
  margin-bottom: 40px;
}
.efficacy-page .heading sup {
  top: -11px;
  font-size: 19px;
}
.efficacy-page .footnotes {
  position: relative;
}
.efficacy-page .footnotes:not(.color--granite-gray) {
  color: #594059;
}
.efficacy-page .footnotes.modifier-padding {
  padding-bottom: 3px;
  padding-left: 4px;
}
.efficacy-page .footnotes.modifier-padding:last-child {
  padding-bottom: 0;
}
.efficacy-page .footnotes .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 6px;
}
.efficacy-page .footnotes-container .footnotes.modifier-padding {
  padding-right: 6px;
  padding-left: 4px;
}
.efficacy-page .footnotes-container .footnotes.modifier-padding:nth-child(3) {
  padding-left: 3px;
}
.efficacy-page .footnotes-container .footnotes.modifier-padding:last-child {
  margin-left: -3px;
}
.efficacy-page .footnotes-container .footnotes.modifier-padding .f-sup {
  left: -3px;
}
@media screen and (min-width: 450px) {
  .efficacy-page .footnotes-container .footnotes.modifier-padding {
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .efficacy-wrapper {
    padding-right: 105px;
    padding-left: 105px;
  }
}
.efficacy-page .efficacy-heading {
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.efficacy-page .efficacy-heading sup {
  top: -0.6em;
  font-size: 12px;
}
.efficacy-page .efficacy-heading sup.asterisk {
  top: -3px;
  font-size: 15px;
}
@media screen and (min-width: 475px) {
  .efficacy-page .efficacy-heading {
    margin-bottom: 27px;
  }
}
.efficacy-page .efficacy__banner {
  margin-bottom: 32px;
}
.efficacy-page .efficacy__banner.efficacy_banner--first {
  margin-bottom: 40px;
}
.efficacy-page .efficacy__banner.efficacy_banner--first .wrapper {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .efficacy-page .efficacy__banner.efficacy_banner--first .wrapper {
    max-width: 85%;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .efficacy__banner.efficacy_banner--first .wrapper {
    max-width: 75%;
  }
}
@media screen and (min-width: 1300px) {
  .efficacy-page .efficacy__banner.efficacy_banner--first .wrapper {
    max-width: 1040px;
  }
}
.efficacy-page .efficacy__banner .banner__content {
  gap: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #eef6f8;
  border-radius: 12px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .efficacy-page .efficacy__banner .banner__content > * {
    margin: calc(40px / 2);
  }
}
@media screen and (min-width: 768px) {
  .efficacy-page .efficacy__banner .banner__content {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .efficacy__banner .banner__content {
    padding-inline: 40px;
  }
}
.efficacy-page .efficacy__banner .banner__icon {
  width: 56px;
  height: 72.955px;
}
.efficacy-page .efficacy__banner .callout {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  line-height: normal;
  color: #8c0f57;
}
.efficacy-page .efficacy__banner .callout > sup {
  top: -8px;
}
.efficacy-page .efficacy__banner.efficacy__banner--last .callout {
  text-align: center;
}
.efficacy-page .efficacy__banner.efficacy__banner--last .banner__content {
  flex-direction: row;
  justify-content: center;
  padding-inline: 8px;
}
@media screen and (min-width: 370px) {
  .efficacy-page .efficacy__banner.efficacy__banner--last .banner__content {
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .efficacy-page .efficacy__banner.efficacy__banner--last .wrapper {
    max-width: 85%;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .efficacy__banner.efficacy__banner--last .wrapper {
    max-width: 75%;
  }
}
@media screen and (min-width: 1300px) {
  .efficacy-page .efficacy__banner.efficacy__banner--last .wrapper {
    max-width: 1040px;
  }
}
.efficacy-page .efficacy-heading.volume {
  margin-top: 40px;
  margin-bottom: 40px;
}
.efficacy-page .efficacy-heading.volume + p sup {
  top: -5px;
  font-size: 10px;
}
.efficacy-page .fda__text {
  margin-top: 40px;
}
@media screen and (min-width: 1300px) {
  .efficacy-page .fda__text {
    margin-top: 55px;
  }
}
.efficacy-page .fda__text.last {
  margin-top: 30px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1300px) {
  .efficacy-page .fda__text.last {
    margin-top: 25px;
  }
}
.efficacy-page .fda .efficacy-wrapper {
  margin-bottom: 57px;
}
.efficacy-page .fda .box {
  margin-top: 12px;
  margin-bottom: 12px;
}
.efficacy-page .fda .box__border {
  background: 90deg, #559CB5 0%, transparent 100%;
  border-top-left-radius: 4.44px;
}
.efficacy-page .fda .box__border-content {
  border-bottom-left-radius: 4.44px;
}
@media screen and (min-width: 768px) {
  .efficacy-page .fda .box__border-content {
    border-bottom-left-radius: 12px;
  }
}
@media screen and (min-width: 768px) {
  .efficacy-page .fda .box__border {
    border-top-left-radius: 12px;
  }
}
.efficacy-page .fda .box__header {
  padding: 7.4px;
  border-top-left-radius: 4.44px;
}
@media screen and (min-width: 768px) {
  .efficacy-page .fda .box__header {
    padding: 20px;
    border-top-left-radius: 12px;
  }
}
.efficacy-page .fda .box__title {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .efficacy-page .fda .box__title {
    font-size: 24px;
  }
}
.efficacy-page .fda .box__content {
  padding: 0;
  border-bottom-left-radius: 4.44px;
}
@media screen and (min-width: 768px) {
  .efficacy-page .fda .box__content {
    padding-inline: 20px;
    border-bottom-left-radius: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .fda .box__content {
    padding-inline: 40px;
  }
}
.efficacy-page .fda .capsule {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
}
.efficacy-page .fda .capsule__blue {
  width: 74%;
  padding: 12.92px 87px 12.92px 35px;
  background-color: #559cb5;
  border-radius: 100px;
}
.efficacy-page .fda .capsule__blue_text {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 12.923px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .fda .capsule__blue_text {
    font-size: 20px;
  }
}
.efficacy-page .fda .capsule__blue_footnote {
  margin-top: 7.75px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 8.047px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .fda .capsule__blue_footnote {
    font-size: 12.454px;
  }
}
@media screen and (min-width: 1440px) {
  .efficacy-page .fda .capsule__blue_footnote {
    margin-top: 12px;
  }
}
@media screen and (min-width: 390px) {
  .efficacy-page .fda .capsule__blue {
    padding-right: 86px;
  }
}
@media screen and (min-width: 356px) {
  .efficacy-page .fda .capsule__blue {
    padding-right: 88px;
  }
}
@media screen and (min-width: 710px) {
  .efficacy-page .fda .capsule__blue {
    width: 69%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
  }
}
.efficacy-page .fda .capsule__gray {
  position: absolute;
  z-index: -1;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #e7e7e7;
  border-radius: 100px;
}
@media screen and (min-width: 390px) {
  .efficacy-page .fda .capsule__gray {
    height: 98px;
  }
}
@media screen and (min-width: 431px) {
  .efficacy-page .fda .capsule__gray {
    height: 100%;
  }
}
.efficacy-page .fda .capsule__circle {
  position: absolute;
  left: 45%;
  width: 130px;
}
@media screen and (min-width: 383px) {
  .efficacy-page .fda .capsule__circle {
    top: -9px;
    left: 51%;
    width: 116px;
    height: 108px;
  }
}
@media screen and (min-width: 425px) {
  .efficacy-page .fda .capsule__circle {
    left: 55%;
  }
}
@media screen and (min-width: 431px) {
  .efficacy-page .fda .capsule__circle {
    width: 95px;
    height: auto;
  }
}
@media screen and (min-width: 536px) {
  .efficacy-page .fda .capsule__circle {
    left: 59%;
  }
}
@media screen and (min-width: 652px) {
  .efficacy-page .fda .capsule__circle {
    left: 65%;
    width: 75px;
  }
}
@media screen and (min-width: 710px) {
  .efficacy-page .fda .capsule__circle {
    top: -12px;
    left: 57%;
    width: 100px;
  }
}
@media screen and (min-width: 768px) {
  .efficacy-page .fda .capsule__circle {
    width: 110px;
  }
}
@media screen and (min-width: 809px) {
  .efficacy-page .fda .capsule__circle {
    top: -9px;
    width: 90px;
  }
}
@media screen and (min-width: 892px) {
  .efficacy-page .fda .capsule__circle {
    left: 59%;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .fda .capsule__circle {
    top: -25px;
    left: 57%;
    width: 160px;
  }
}
@media screen and (min-width: 1217px) {
  .efficacy-page .fda .capsule__circle {
    left: 61%;
    width: 140px;
  }
}
@media screen and (min-width: 1440px) {
  .efficacy-page .fda .capsule__circle {
    left: 57%;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .fda .capsule {
    max-width: 1000px;
  }
}
@media screen and (min-width: 1200px) {
  .efficacy-page .fda .capsule {
    margin-left: 12px;
  }
}
.efficacy-page .button {
  max-width: 100%;
  text-align: center;
  letter-spacing: 0.88px;
}
@media screen and (min-width: 390px) {
  .efficacy-page .button {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.efficacy-page .fda-complement .gradient-divider {
  width: 100%;
  height: 8px;
  margin-block: 40px;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(207, 240, 251, 0) 0%, #6FAEC3 51.56%, rgba(207, 240, 251, 0) 100%);
}
.efficacy-page .fda-complement .efficacy-heading {
  margin-bottom: 32px;
}
.efficacy-page .fda-complement .efficacy-heading .symbol {
  top: -5px;
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .fda-complement .efficacy-heading {
    margin-bottom: 20px;
  }
}
.efficacy-page .fda-complement .efficacy-subheading {
  margin-bottom: 32px;
  line-height: normal;
  color: #594059;
}
.efficacy-page .fda-complement .efficacy-subheading .symbol {
  top: -8px;
  font-size: 10px;
}
.efficacy-page .fda-complement .response-duration__img-container {
  margin-bottom: 32px;
}
.efficacy-page .fda-complement .efficacy-paragraph {
  margin-bottom: 32px;
  padding-right: 5px;
}
.efficacy-page .fda-complement .footnotes__container {
  margin-bottom: 32px;
}
.efficacy-page .fda-complement .footnotes__container .footnotes {
  color: #594059;
}
.efficacy-page .fda-complement .footnotes__container .footnotes sup {
  font-size: 8px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .fda-complement .footnotes__container {
    margin-bottom: 40px;
  }
}
.efficacy-page .pn-volume .heading {
  margin-top: 60px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .pn-volume .heading {
    margin-bottom: 40px;
  }
}
.efficacy-page .pn-volume .five-sup {
  top: -4px;
  font-size: 7px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .pn-volume .five-sup {
    top: -7px;
    font-size: 11px;
  }
}
.efficacy-page .pn-volume .box {
  margin-top: 12px;
  margin-bottom: 32px;
}
.efficacy-page .pn-volume .box__content {
  padding: 15px 0 15px 8px;
}
@media screen and (min-width: 768px) {
  .efficacy-page .pn-volume .box__content {
    padding: 40px;
  }
}
.efficacy-page .pn-volume .box__title {
  font-size: 12px;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .pn-volume .box__title {
    font-size: 20px;
  }
}
.efficacy-page .pn-volume .box__border {
  background: 90deg, #559CB5 0%, transparent 100%;
  border-top-left-radius: 4.53px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .pn-volume .box__border {
    border-top-left-radius: 12px;
  }
}
.efficacy-page .pn-volume .box__header {
  padding: 7.55px 5.55px;
  border-top-left-radius: 4.53px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .pn-volume .box__header {
    padding: 20px;
    border-top-left-radius: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .pn-volume .box {
    margin-bottom: 60px;
  }
}
.efficacy-page .pn-volume .support-page__prescribed {
  margin-bottom: 32px;
}
.efficacy-page .pn-volume .support-page__prescribed .wrapper {
  width: 100%;
  max-width: unset;
}
.efficacy-page .pn-volume .support-page__prescribed .prescribed__border-gradient {
  background: linear-gradient(130deg, rgb(135, 0, 81) 4%, white 25%, white 80%, rgb(135, 0, 81) 88%);
}
@media screen and (min-width: 500px) {
  .efficacy-page .pn-volume .support-page__prescribed .prescribed__border-gradient {
    background: linear-gradient(160deg, rgb(135, 0, 81) 0%, white 23%, white 83%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .pn-volume .support-page__prescribed {
    margin-bottom: 40px;
  }
}
.efficacy-page .pn-volume .prescribed__card-title {
  margin-bottom: 0;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 30px;
  color: #8c0f57;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .pn-volume .prescribed__card-title {
    max-width: 544px;
  }
}
.efficacy-page .pn-volume .modifier-padding {
  padding-left: 7px;
}
.efficacy-page .pn-volume .button {
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .pn-volume .button {
    margin-top: 40px;
  }
}
.efficacy-page .fda-response .heading {
  margin-top: 60px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .fda-response .heading {
    margin-bottom: 50px;
  }
}
.efficacy-page .fda-response .efficacy-subheading.evident {
  color: #594059;
}
@media screen and (min-width: 768px) {
  .efficacy-page .fda-response .evident {
    margin-bottom: 20px;
  }
}
.efficacy-page .fda-response .gradient-divider.modifier {
  display: none;
  width: 100%;
  height: 8px;
  margin-block: 40px;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(207, 240, 251, 0) 0%, #6FAEC3 51.56%, rgba(207, 240, 251, 0) 100%);
}
@media screen and (min-width: 768px) {
  .efficacy-page .fda-response .gradient-divider.modifier {
    display: block;
    margin-top: 0;
    margin-bottom: 32px;
  }
}
.efficacy-page .fda-response .box__border {
  background: 90deg, #559CB5 0%, transparent 100%;
  border-top-left-radius: 4.1px;
}
@media screen and (min-width: 600px) {
  .efficacy-page .fda-response .box__border {
    border-top-left-radius: 12.005px;
  }
}
.efficacy-page .fda-response .box__header {
  padding: 6.8px;
  border-top-left-radius: 4.1px;
}
@media screen and (min-width: 600px) {
  .efficacy-page .fda-response .box__header {
    padding: 20px;
    border-top-left-radius: 12.005px;
  }
}
.efficacy-page .fda-response .box__title {
  font-size: 6.8px;
  color: #594059;
}
@media screen and (min-width: 600px) {
  .efficacy-page .fda-response .box__title {
    font-size: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .fda-response .box__title {
    font-size: 20px;
  }
}
.efficacy-page .fda-response .box__content {
  padding: 0;
}
@media screen and (min-width: 600px) {
  .efficacy-page .fda-response .box__content {
    padding-left: 20px;
  }
}
.efficacy-page .fda-response .efficacy-subheading.modifier {
  margin-top: 7.51px;
  margin-bottom: 40px;
  font-size: 12px;
  line-height: normal;
  color: #594059;
  text-align: center;
}
.efficacy-page .fda-response .efficacy-subheading.modifier sup.symbol {
  top: -3px;
  font-size: 8px;
}
@media screen and (min-width: 600px) {
  .efficacy-page .fda-response .efficacy-subheading.modifier sup {
    top: -8px;
    font-size: 10px;
  }
  .efficacy-page .fda-response .efficacy-subheading.modifier sup.symbol {
    top: -6px;
    font-size: 12px;
  }
}
@media screen and (min-width: 600px) {
  .efficacy-page .fda-response .efficacy-subheading.modifier {
    margin-top: 22px;
    margin-bottom: 32px;
    font-size: 20px;
  }
}
.efficacy-page .fda-response .modifier-padding {
  padding-left: 8px;
}
.efficacy-page .fda-response .button {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .efficacy-page .fda-response .button {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.efficacy-page .fda-response .fourth-graphic {
  max-width: 93.7%;
  margin: auto;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media screen and (min-width: 600px) {
  .efficacy-page .fda-response .fourth-graphic {
    max-width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .fda-response .fourth-graphic {
    max-width: 909.365px;
  }
}
.efficacy-page .fda-response .modifier-padding.last {
  padding-left: 10px;
}
.efficacy-page .fda-response .modifier-padding.last .first {
  left: 3px;
}
.efficacy-page .fda-response .pre-button {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .efficacy-page .fda-response .pre-button {
    margin-top: 64px;
    margin-bottom: 70px;
  }
}

.patient-journey-page {
  /* Add page element styles below */
}
@media screen and (max-width: 400px) {
  .patient-journey-page .patient-journey__overview .wrapper {
    max-width: calc(100% - 37px);
  }
}
.patient-journey-page .patient-journey__overview .heading {
  margin-top: 20px;
}
.patient-journey-page .patient-journey__overview_text {
  margin-top: 12px;
  margin-bottom: 53.74px;
}
@media screen and (min-width: 768px) {
  .patient-journey-page .patient-journey__overview_text {
    margin-bottom: 45.6px;
  }
}
.patient-journey-page .patient-journey__results_subheading {
  margin-top: 24px;
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.patient-journey-page .patient-journey__results_subheading.last {
  margin-bottom: 40px;
}
.patient-journey-page .patient-journey__results_subheading sup {
  top: -8px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .patient-journey-page .patient-journey__results_subheading {
    margin-bottom: 20px;
  }
}
.patient-journey-page .patient-journey__results_paragraph {
  margin-bottom: 24px;
}
.patient-journey-page .patient-journey__results .footnotes-container {
  margin-bottom: 40px;
}
.patient-journey-page .patient-journey__results .footnotes-container .footnotes {
  position: relative;
  color: #594059;
}
.patient-journey-page .patient-journey__results .footnotes-container .footnotes.modifier-padding {
  padding-bottom: 3px;
  padding-left: 4px;
}
.patient-journey-page .patient-journey__results .footnotes-container .footnotes.modifier-padding:last-child {
  padding-bottom: 0;
}
.patient-journey-page .patient-journey__results .footnotes-container .footnotes .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 6px;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .footnotes-container {
    margin-bottom: 65.46px;
  }
}
.patient-journey-page .patient-journey__results .management-guide__section {
  position: relative;
  margin-bottom: 60px;
  padding-top: 156.92px;
}
.patient-journey-page .patient-journey__results .management-guide__section .heading::after {
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__section {
    margin-bottom: 85.46px;
    padding-top: 0;
    padding-right: 141.92px;
  }
}
.patient-journey-page .patient-journey__results .management-guide__image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  width: 205px;
  height: 205px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__image {
    top: 0;
    right: 0;
    bottom: 0;
    left: unset;
    margin-block: auto;
    margin-inline: 0;
  }
}
.patient-journey-page .patient-journey__results .management-guide__content {
  gap: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 81px 31px 31px;
  background-color: #eef6f8;
  border-radius: 12px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .patient-journey-page .patient-journey__results .management-guide__content > * {
    margin: calc(40px / 2);
  }
}
.patient-journey-page .patient-journey__results .management-guide__content-border {
  padding: 1px;
  background: linear-gradient(180deg, rgb(238, 246, 248) 0%, rgb(238, 246, 248) 20%, rgb(135, 0, 81) 100%);
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__content-border {
    background: linear-gradient(270deg, rgb(238, 246, 248) 0%, rgb(238, 246, 248) 45%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__content {
    flex-direction: row;
    align-items: center;
    padding-top: 31px;
    padding-bottom: 31px;
    padding-inline: 31px;
  }
}
.patient-journey-page .patient-journey__results .management-guide__text {
  max-width: 73ch;
}
.patient-journey-page .patient-journey__results .management-guide__text .heading {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__text {
    max-width: 48ch;
  }
}
@media screen and (min-width: 1100px) {
  .patient-journey-page .patient-journey__results .management-guide__text {
    max-width: 60%;
  }
}
@media screen and (min-width: 1300px) {
  .patient-journey-page .patient-journey__results .management-guide__text {
    max-width: 73ch;
  }
}
.patient-journey-page .patient-journey__results .management-guide__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__button {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 23px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-journey-page #isi-position {
    margin-top: 60px;
  }
}

.study-design-moa-page {
  /* Add page element styles below */
}
.study-design-moa-page .inhibition .heading {
  margin-top: 60px;
  margin-bottom: 40px;
}
.study-design-moa-page .inhibition .heading sup {
  top: -11px;
  font-size: 19px;
}
.study-design-moa-page .inhibition__graphic {
  position: relative;
}
.study-design-moa-page .inhibition__graphic_note {
  position: absolute;
  bottom: 12.83px;
  left: 25.4px;
  width: 256.315px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 3.387px;
  font-weight: 400;
  font-style: normal;
  line-height: 4.234px;
  color: #594059;
}
@media screen and (min-width: 390px) {
  .study-design-moa-page .inhibition__graphic_note {
    width: 289.315px;
  }
}
@media screen and (min-width: 400px) {
  .study-design-moa-page .inhibition__graphic_note {
    left: 45.4px;
  }
}
@media screen and (min-width: 400px) {
  .study-design-moa-page .inhibition__graphic_note {
    font-size: 6px;
    line-height: 8px;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .inhibition__graphic_note {
    bottom: 25px;
    width: 570px;
    font-size: 10px;
    line-height: 12px;
  }
}
@media screen and (min-width: 1030px) {
  .study-design-moa-page .inhibition__graphic_note {
    bottom: 47.32px;
    left: 90px;
    width: 800px;
    font-size: 12px;
    line-height: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .study-design-moa-page .inhibition__graphic_note {
    width: 1025px;
  }
}
.study-design-moa-page .inhibition .cta-container {
  margin-top: 60px;
  margin-bottom: 60px;
}
.study-design-moa-page .study-landmark .heading {
  margin-top: 20px;
}
.study-design-moa-page .study-landmark__intro {
  margin-top: 40px;
  font-style: normal;
  color: #594059;
}
.study-design-moa-page .study-landmark__box .boxes-container {
  position: relative;
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box .boxes-container {
    max-width: 847px;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box .study-landmark__boxes .wrapper {
    max-width: unset;
  }
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second {
  margin-top: 27px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .study-landmark__box_white {
  padding: 16px;
  background-color: #fff;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .heading {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .heading sup {
  top: -5px;
  font-size: 12px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .heading .secondary-sup {
  top: -6px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .text {
  margin-top: 24px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-style: normal;
  color: #210022;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul {
  margin-left: 18px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul br {
  display: none;
}
@media screen and (min-width: 1260px) {
  .study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul br {
    display: block;
  }
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul li {
  font-size: 18px;
  line-height: 24px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul :first-child {
  padding-bottom: 4px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul :last-child {
  padding-top: 4px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .blue {
  border: 4px solid #559cb5;
  border-radius: 20px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .red {
  margin-top: 22px;
  border: 4px solid #870051;
  border-radius: 20px;
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box .study-landmark__boxes.second {
    position: absolute;
    top: -51px;
    right: -22px;
    width: 430px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1260px) {
  .study-design-moa-page .study-landmark__box .study-landmark__boxes.second {
    top: -45px;
    right: 6px;
    width: 505px;
  }
}
.study-design-moa-page .study-landmark__box .wrapper.modifier {
  max-width: unset;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box .wrapper.modifier {
    max-width: calc(100% - 146px);
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .study-landmark__box .wrapper.modifier {
    max-width: calc(100% - 70px);
  }
}
@media screen and (min-width: 1340px) {
  .study-design-moa-page .study-landmark__box .wrapper.modifier {
    max-width: 1240px;
  }
}
.study-design-moa-page .study-landmark__box_gray {
  background-color: #eef6f8;
}
.study-design-moa-page .study-landmark__box_gray .pills {
  width: 67.853px;
  height: 40.279px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray .pills {
    margin-bottom: 3px;
  }
}
.study-design-moa-page .study-landmark__box_gray .family {
  width: 74.5px;
  height: 75.25px;
}
.study-design-moa-page .study-landmark__box_gray.first {
  margin-top: 40px;
  padding-top: 1px;
  padding-bottom: 50px;
  /* border: 1px solid $color-blue-100;
  border-bottom: none ; */
  background: linear-gradient(180deg, rgb(85, 156, 181) 0%, rgb(238, 246, 248) 73%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.study-design-moa-page .study-landmark__box_gray.first .family-content {
  padding-top: 39px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #eef6f8;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray.first .family-content {
    display: flex;
    align-items: flex-end;
    padding: 0;
    padding-top: 63px;
  }
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box_gray.first .family-content {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray.first {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    background: #eef6f8;
  }
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box_gray.first {
    margin-top: 85.88px;
    padding-top: 63px;
    padding-right: 119px;
  }
}
.study-design-moa-page .study-landmark__box_gray.second {
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box_gray.second {
    padding-right: 119px;
    padding-bottom: 63px;
  }
}
.study-design-moa-page .study-landmark__box_gray_image {
  width: 74.5px;
}
.study-design-moa-page .study-landmark__box_gray_text {
  margin-top: 20px;
}
.study-design-moa-page .study-landmark__box_gray_text .age {
  margin-bottom: 16px;
}
.study-design-moa-page .study-landmark__box_gray_text .dosing {
  margin-bottom: 13px;
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .study-landmark__box_gray_text .dosing {
    margin-bottom: 8px;
  }
}
.study-design-moa-page .study-landmark__box_gray_text p {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.study-design-moa-page .study-landmark__box_gray_text p strong {
  font-weight: 600;
}
.study-design-moa-page .study-landmark__box_gray_text p span {
  font-weight: 400;
}
.study-design-moa-page .study-landmark__box_gray_text p .square {
  top: -0.58em;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray_text {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray_text {
    margin-left: 51px;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray {
    display: flex;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box_gray {
    max-width: 847px;
  }
}
.study-design-moa-page .landmark__key {
  margin-top: 40px;
}
.study-design-moa-page .landmark__key_bold {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.study-design-moa-page .landmark__key_text {
  margin-top: 27px;
  font-style: normal;
  color: #210022;
}
.study-design-moa-page .landmark__key .landmark__inclusion {
  position: relative;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .landmark__key .landmark__inclusion {
    max-width: 599.5px;
    padding-bottom: 0;
  }
  .study-design-moa-page .landmark__key .landmark__inclusion:first-of-type::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20.5px;
    width: 1px;
    height: 148px;
    background-color: #eef6f8;
  }
}
.study-design-moa-page .landmark__key .modifier {
  padding-top: 20px;
  border-top: 1px solid #eef6f8;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .landmark__key .modifier {
    padding-top: 0;
    border-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .landmark__key {
    display: flex;
    gap: 41px;
    align-items: baseline;
    margin-top: 85.88px;
  }
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .landmark__key {
    margin-top: 105px;
  }
}
.study-design-moa-page .footnotes {
  color: #594059;
}
.study-design-moa-page .key__notes {
  margin-top: 40px;
}
.study-design-moa-page .key__notes .footnotes {
  position: relative;
}
.study-design-moa-page .key__notes .footnotes.modifier-padding {
  padding-bottom: 2px;
  padding-left: 4px;
}
.study-design-moa-page .key__notes .footnotes.modifier-padding .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 6px;
}
.study-design-moa-page .paradigm {
  margin-top: 60px;
}
.study-design-moa-page .paradigm__heading {
  margin-top: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .paradigm__heading {
    margin-top: 40px;
  }
}
.study-design-moa-page .paradigm__heading.modifier {
  margin-top: 32px;
  margin-bottom: 24px;
}
.study-design-moa-page .paradigm .curvy-container {
  margin-top: 24px;
}
.study-design-moa-page .paradigm .curvy-container .custom-list {
  margin-bottom: 40px;
}
.study-design-moa-page .paradigm .curvy-container .custom-list .curvy__card_body {
  max-width: 310px;
}
@media screen and (min-width: 391px) {
  .study-design-moa-page .paradigm .curvy-container .custom-list .curvy__card_body {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .paradigm .curvy-container .custom-list {
    margin-bottom: 0;
  }
}
.study-design-moa-page .paradigm .curvy-container .last-curvy {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .paradigm .curvy-container .last-curvy {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .paradigm .curvy-container {
    display: flex;
    gap: 40px;
  }
  .study-design-moa-page .paradigm .curvy-container .curvy__card {
    width: 100%;
    max-width: 387px;
  }
}
.study-design-moa-page .paradigm .modifier-padding {
  padding-left: 4px;
}
.study-design-moa-page .paradigm .key__notes.modifier {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .paradigm .key__notes.modifier {
    margin-top: 40px;
  }
}
.study-design-moa-page .paradigm .morbidities .morbidity {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 320px;
  margin: auto;
  margin-bottom: 40px;
}
.study-design-moa-page .paradigm .morbidities .morbidity__icon {
  max-width: 102px;
}
.study-design-moa-page .paradigm .morbidities .morbidity__text {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #210021;
}
.study-design-moa-page .paradigm .morbidities .morbidity__text span {
  font-weight: 500;
}
@media screen and (min-width: 860px) {
  .study-design-moa-page .paradigm .morbidities .morbidity {
    width: 320px;
    margin: 0;
  }
}
.study-design-moa-page .paradigm .morbidities .morbidity.last {
  margin-bottom: 0;
}
@media screen and (min-width: 860px) {
  .study-design-moa-page .paradigm .morbidities .morbidity.last {
    margin-top: 0;
  }
}
.study-design-moa-page .paradigm .morbidities.first {
  margin-bottom: 40px;
}
.study-design-moa-page .paradigm .morbidities.second {
  margin-bottom: 20px;
}
@media screen and (min-width: 860px) {
  .study-design-moa-page .paradigm .morbidities.second {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 860px) {
  .study-design-moa-page .paradigm .morbidities {
    display: flex;
    gap: 40px;
    justify-content: center;
  }
}
.study-design-moa-page .paradigm .footnotes {
  padding-bottom: 0;
}
.study-design-moa-page #isi-position {
  margin-top: 0;
}

.safety-page {
  /* Add page element styles below */
}
.safety-page .heading .asterisk {
  top: -5px;
  font-size: 28px;
}
.safety-page .safety__heading {
  line-height: normal;
  color: #594059;
}
.safety-page .safety__subheading {
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1200px) {
  .safety-page .safety__section-wrapper {
    padding-right: 108px;
    padding-left: 108px;
  }
}
.safety-page .footnotes__container {
  margin-bottom: 60px;
  padding-right: 5px;
}
.safety-page .footnotes__container .footnotes.modifier-padding {
  position: relative;
  padding-left: 7px;
}
.safety-page .footnotes__container .footnotes.modifier-padding .f-sup {
  position: absolute;
  top: 4px;
  right: calc(100% - 7px);
}
.safety-page .blue-box {
  margin-block: 32px;
  padding: 60px 20px 40px;
  border-radius: 16px;
}
.safety-page .blue-box__text {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
.safety-page .blue-box__text sup {
  top: -7px;
  font-size: 13px;
}
.safety-page .blue-box__percentage {
  font-size: 64px;
  line-height: 20px;
}
.safety-page .blue-box__list {
  margin-top: 20px;
  padding-left: 24px;
}
.safety-page .blue-box__list-item {
  padding-right: 5px;
  font-size: 18px;
  line-height: 24px;
}
.safety-page .blue-box__list-item .footnotes {
  color: #594059;
}
.safety-page .blue-box__list-item .footnotes.modifier-padding {
  position: relative;
  padding-left: 7px;
}
.safety-page .blue-box__list-item .footnotes.modifier-padding .f-sup {
  position: absolute;
  top: 4px;
  right: calc(100% - 7px);
}
.safety-page .blue-box__list .blue-box {
  margin-block: 32px;
  padding: 60px 20px 40px;
  border-radius: 16px;
}
.safety-page .blue-box__list .blue-box__text {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
.safety-page .blue-box__list .blue-box__text sup {
  top: -7px;
  font-size: 13px;
}
.safety-page .blue-box__list .blue-box sup {
  top: -5px;
}
@media screen and (min-width: 1024px) {
  .safety-page .blue-box__list .blue-box {
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .blue-box {
    padding-inline: 40px;
  }
}
.safety-page .gradient-numbers,
.safety-page .bubble-numbers {
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  padding-top: 20px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .safety-page .gradient-numbers > *,
  .safety-page .bubble-numbers > * {
    margin: calc(24px / 2);
  }
}
.safety-page .gradient-numbers .numbers__divider,
.safety-page .bubble-numbers .numbers__divider {
  width: 80.54px;
  height: 2px;
  background-color: #559cb5;
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-numbers .numbers__divider,
  .safety-page .bubble-numbers .numbers__divider {
    width: 2px;
    height: 80.54px;
  }
}
.safety-page .gradient-numbers .numbers__item,
.safety-page .bubble-numbers .numbers__item {
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .safety-page .gradient-numbers .numbers__item > *,
  .safety-page .bubble-numbers .numbers__item > * {
    margin: calc(16px / 2);
  }
}
@media screen and (min-width: 768px) {
  .safety-page .gradient-numbers .numbers__item,
  .safety-page .bubble-numbers .numbers__item {
    flex-direction: row;
  }
}
.safety-page .gradient-numbers .number,
.safety-page .bubble-numbers .number {
  font-size: 64px;
  font-weight: 600;
  line-height: normal;
  text-shadow: 0 8px 12px rgba(89, 64, 89, 0.1);
}
.safety-page .gradient-numbers .number__text,
.safety-page .bubble-numbers .number__text {
  line-height: normal;
  text-align: left;
}
.safety-page .gradient-numbers .number__text sup,
.safety-page .bubble-numbers .number__text sup {
  top: -6px;
}
@media screen and (min-width: 768px) {
  .safety-page .gradient-numbers .number__text,
  .safety-page .bubble-numbers .number__text {
    max-width: 21ch;
  }
}
.safety-page .gradient-numbers .number-sub,
.safety-page .bubble-numbers .number-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #594059;
  text-shadow: 0 8px 12px rgba(89, 64, 89, 0.1);
}
.safety-page .gradient-numbers .number-complement,
.safety-page .bubble-numbers .number-complement {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
.safety-page .gradient-numbers .number__container,
.safety-page .bubble-numbers .number__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-numbers,
  .safety-page .bubble-numbers {
    flex-direction: row;
  }
}
.safety-page .gradient-numbers {
  gap: 40px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .safety-page .gradient-numbers > * {
    margin: calc(40px / 2);
  }
}
@media screen and (min-width: 768px) {
  .safety-page .gradient-numbers .numbers__item {
    gap: 45.5px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .safety-page .gradient-numbers .numbers__item > * {
      margin: calc(45.5px / 2);
    }
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-numbers .numbers__item {
    padding-left: 29.5px;
  }
}
.safety-page .gradient-numbers .numbers__divider {
  width: 208.99px;
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-numbers .numbers__divider {
    width: 2px;
    height: 95.4px;
  }
}
.safety-page .gradient-numbers .number {
  background: linear-gradient(85deg, #cb77a9 -0.43%, #8faac8 57.09%, #274f5d 112.26%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.safety-page .gradient-numbers .number__text {
  color: #594059;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .safety-page .gradient-numbers .number__text {
    max-width: 21ch;
  }
}
.safety-page .gradient-numbers .number-sub {
  color: #594059;
}
.safety-page .gradient-numbers .number__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.safety-page .bubble-numbers {
  margin-top: 52px;
  margin-bottom: 40px;
}
.safety-page .bubble-numbers .number__container {
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
}
.safety-page .bubble-numbers .number__text {
  color: #594059;
}
.safety-page .bubble-numbers .number__text sup {
  top: -2px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .safety-page .bubble-numbers .number__text {
    max-width: 30ch;
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .bubble-numbers .number__text {
    max-width: 20ch;
  }
}
@media screen and (min-width: 1250px) {
  .safety-page .bubble-numbers .number__text {
    max-width: 30ch;
  }
}
.safety-page .safety__section--first {
  padding-top: 20px;
}
.safety-page .safety__section--first .heading {
  margin-bottom: 40px;
}
.safety-page .safety__section--first .safety__heading {
  margin-bottom: 24px;
}
.safety-page .safety__section--first .safety__subheading {
  margin-bottom: 24px;
}
.safety-page .safety__section--first .footnotes__container {
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section--first .footnotes__container {
    margin-bottom: 65px;
  }
}
.safety-page .safety__section .box .box__title {
  color: #594059;
}
.safety-page .safety__section .box--adverse-reaction {
  margin-block: 24px;
}
.safety-page .safety__section .box--adverse-reaction .symbol {
  font-weight: 600;
}
.safety-page .safety__section .box--adverse-reaction .box__content {
  padding-top: 53px;
  padding-inline: 12px;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .box--adverse-reaction .box__content {
    padding-inline: 20px;
  }
}
.safety-page .safety__section .box--laboratory-abnormality .box__content {
  padding-top: 53px;
}
@media screen and (max-width: 350px) {
  .safety-page .safety__section .box--laboratory-abnormality .box__content {
    padding-inline: 10px 0;
  }
}
.safety-page .safety__section .management-guide__section {
  position: relative;
  margin-bottom: 60px;
  padding-top: 141.92px;
}
.safety-page .safety__section .management-guide__section .heading::after {
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__section {
    margin-bottom: 85.46px;
    padding-top: 0;
    padding-right: 141.92px;
  }
}
.safety-page .safety__section .management-guide__image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  width: 205px;
  height: 205px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__image {
    top: 0;
    right: 0;
    bottom: 0;
    left: unset;
    margin-block: auto;
    margin-inline: 0;
  }
}
.safety-page .safety__section .management-guide__content {
  gap: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 81px 19px 19px;
  background-color: #eef6f8;
  border-radius: 12px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .safety-page .safety__section .management-guide__content > * {
    margin: calc(40px / 2);
  }
}
.safety-page .safety__section .management-guide__content-border {
  padding: 1px;
  background: linear-gradient(180deg, rgb(238, 246, 248) 0%, rgb(238, 246, 248) 45%, rgb(135, 0, 81) 100%);
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__content-border {
    background: linear-gradient(270deg, rgb(238, 246, 248) 0%, rgb(238, 246, 248) 45%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__content {
    flex-direction: row;
    align-items: center;
    padding-top: 31px;
    padding-bottom: 31px;
    padding-inline: 31px;
  }
}
@media screen and (min-width: 1250px) {
  .safety-page .safety__section .management-guide__content {
    padding-bottom: 8px;
  }
}
.safety-page .safety__section .management-guide__text {
  max-width: 68ch;
}
.safety-page .safety__section .management-guide__text .heading {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__text {
    max-width: 48ch;
  }
}
@media screen and (min-width: 1250px) {
  .safety-page .safety__section .management-guide__text {
    max-width: 68ch;
  }
}
.safety-page .safety__section .management-guide__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__button {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 23px;
  }
}
.safety-page .safety__section .gradient-box {
  margin-top: 40px;
  margin-bottom: 60px;
}
.safety-page .safety__section .gradient-box .footnotes sup {
  top: -4px;
  font-size: 7px;
}
.safety-page .safety__section .gradient-box .footnotes.modifier-padding {
  padding-left: 11px;
}
.safety-page .safety__section .gradient-box .footnotes.modifier-padding .f-sup {
  right: calc(100% - 11px);
}
@media screen and (min-width: 1024px) {
  .safety-page-wrapper {
    max-width: 1030px;
    margin: 0 auto;
  }
}
.safety-page .box .box__title {
  color: #594059;
}
.safety-page .box--adverse-reaction {
  margin-block: 24px;
}
.safety-page .box--adverse-reaction .symbol {
  font-weight: 600;
}
.safety-page .management-guide__section {
  position: relative;
  margin-bottom: 60px;
  padding-top: 141.92px;
}
.safety-page .management-guide__section .heading::after {
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__section {
    margin-bottom: 85.46px;
    padding-top: 0;
    padding-right: 141.92px;
  }
}
.safety-page .management-guide__image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  width: 205px;
  height: 205px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__image {
    top: 0;
    right: 0;
    bottom: 0;
    left: unset;
    margin-block: auto;
    margin-inline: 0;
  }
}
.safety-page .management-guide__content {
  gap: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 81px 19px 19px;
  background-color: #eef6f8;
  border-radius: 12px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .safety-page .management-guide__content > * {
    margin: calc(40px / 2);
  }
}
.safety-page .management-guide__content-border {
  padding: 1px;
  background: linear-gradient(180deg, rgb(238, 246, 248) 0%, rgb(238, 246, 248) 45%, rgb(135, 0, 81) 100%);
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__content-border {
    background: linear-gradient(270deg, rgb(238, 246, 248) 0%, rgb(238, 246, 248) 45%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__content {
    flex-direction: row;
    align-items: center;
    padding-top: 31px;
    padding-bottom: 31px;
    padding-inline: 31px;
  }
}
@media screen and (min-width: 1250px) {
  .safety-page .management-guide__content {
    padding-bottom: 8px;
  }
}
.safety-page .management-guide__text {
  max-width: 68ch;
}
.safety-page .management-guide__text .heading {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__text {
    max-width: 48ch;
  }
}
@media screen and (min-width: 1250px) {
  .safety-page .management-guide__text {
    max-width: 68ch;
  }
}
.safety-page .management-guide__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__button {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 23px;
  }
}
.safety-page .gradient-box {
  margin-top: 40px;
  padding: 1px;
  background: linear-gradient(109deg, rgb(135, 0, 81) 0%, white 23%, white 82%, rgb(135, 0, 81) 100%);
  border-radius: 20px;
}
.safety-page .gradient-box__background {
  padding-block: 19px;
  background-color: white;
  border-radius: 20px;
}
.safety-page .gradient-box__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: radial-gradient(circle at 50% 50%, #eef6f8, transparent 100%);
}
.safety-page .gradient-box__text {
  max-width: 56ch;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  line-height: normal;
  color: #8c0f57;
  text-align: center;
}
.safety-page .gradient-box__text .asterisk {
  top: -6px;
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-box {
    background: linear-gradient(165deg, rgb(135, 0, 81) 0%, white 23%, white 82%, rgb(135, 0, 81) 100%);
  }
}

.support-page .footnotes {
  color: #594059;
}
.support-page .helping {
  padding-top: 15px;
}
.support-page .helping__heading {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .support-page .helping__heading {
    margin-bottom: 50px;
  }
}
.support-page .helping__content {
  display: flex;
  flex-direction: column;
  gap: 61.29px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .support-page .helping__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1440px) {
  .support-page .helping__content {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .helping__text {
    width: 76ch;
  }
}
.support-page .helping__text sup {
  top: 0;
  font-size: 100%;
}
.support-page .helping__image {
  width: 221.844px;
  margin-right: auto;
  margin-bottom: 41.29px;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .support-page .helping__image {
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1440px) {
  .support-page .helping__image {
    margin-left: 108px;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .helping {
    padding-top: 49px;
  }
}
.support-page .team {
  padding-top: 40px;
}
.support-page .team__heading {
  margin-bottom: 20px;
}
.support-page .team__subtitle {
  margin-bottom: 32px;
}
.support-page .team__image {
  aspect-ratio: 1/1;
  width: 190px;
  height: 190px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .support-page .team__image {
    margin-right: 0;
    margin-left: 0;
  }
}
.support-page .team__image--modif {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .support-page .team__image--modif {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .team__container {
    margin-left: 0;
  }
}
@media screen and (min-width: 1440px) {
  .support-page .team__container {
    flex-basis: 820px;
  }
}
.support-page .team__decription {
  margin-top: 20px;
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .support-page .team__decription {
    margin-top: 0;
    margin-bottom: 13px;
  }
}
.support-page .team__nav {
  margin-left: 22px;
}
.support-page .team__nav--modif {
  width: 89%;
}
@media screen and (min-width: 1024px) {
  .support-page .team__nav--modif {
    width: 94%;
  }
}
.support-page .team__item {
  margin-bottom: 13px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
  color: #210022;
}
.support-page .team__item:nth-child(1) {
  max-width: 28ch;
}
@media screen and (min-width: 500px) {
  .support-page .team__item:nth-child(1) {
    width: 100%;
    max-width: 100%;
  }
}
.support-page .team__item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1440px) {
  .support-page .team__item {
    margin-bottom: 5px;
  }
}
.support-page .team__block {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .support-page .team__block {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
    justify-content: space-between;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1440px) {
  .support-page .team__block {
    justify-content: flex-end;
    max-width: 100%;
    margin-left: 105px;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .team {
    padding-top: 64px;
  }
}
.support-page .insurance {
  margin-top: 20px;
  margin-bottom: 60px;
}
.support-page .insurance__conteiner {
  padding: 20px;
  background: #eef6f8;
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .support-page .insurance__conteiner {
    padding-left: 105px;
  }
}
.support-page .insurance__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .support-page .insurance__flex {
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.support-page .insurance__image {
  width: 100%;
  max-width: 53.19px;
  margin-bottom: 30px;
}
.support-page .insurance__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.support-page .insurance__heading {
  margin-bottom: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .support-page .insurance__heading {
    font-size: 20px;
  }
}
@media screen and (min-width: 1240px) {
  .support-page .insurance__heading {
    font-size: 24px;
  }
}
.support-page .insurance__text {
  margin-bottom: 13.41px;
}
.support-page .insurance__list {
  width: 100%;
  max-width: 29ch;
  margin-left: 10px;
}
@media screen and (min-width: 390px) {
  .support-page .insurance__list {
    margin-left: 25px;
  }
}
@media screen and (min-width: 500px) {
  .support-page .insurance__list {
    max-width: 100%;
  }
}
.support-page .insurance__item {
  margin-bottom: 6px;
  font-size: 18px;
  font-style: normal;
  line-height: 22px;
}
.support-page .insurance__item:nth-child(2) {
  margin-bottom: 0;
}
.support-page__prescribed .prescribed__border-gradient {
  overflow: hidden;
  background: linear-gradient(115deg, rgb(135, 0, 81) 10%, white 24%, white 77%, rgb(135, 0, 81) 100%);
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .support-page__prescribed .prescribed__border-gradient {
    background: linear-gradient(160deg, rgb(135, 0, 81) 0%, white 23%, white 83%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1300px) {
  .support-page__prescribed .prescribed__border-gradient {
    max-width: 1030px;
  }
}
.support-page__prescribed .bg-color--white {
  height: 100%;
  margin: 1px;
  padding-block: 20px;
  border-radius: inherit;
}
.support-page__prescribed .prescribed-content-with-gradient {
  padding: 20px;
  padding-right: 18px;
  padding-left: 18px;
  background: radial-gradient(circle at 50% 50%, #eef6f8, transparent 100%);
}
@media screen and (min-width: 1024px) {
  .support-page__prescribed .prescribed-content-with-gradient {
    padding-block: 20px;
  }
}
.support-page__prescribed .prescribed__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.support-page__prescribed .prescribed__card-title {
  margin-right: auto;
  margin-bottom: 12px;
  margin-left: auto;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #870051;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .support-page__prescribed .prescribed__card-title {
    width: 40ch;
  }
}
.support-page__prescribed .prescribed__card-text {
  max-width: 38ch;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 500px) {
  .support-page__prescribed .prescribed__card-text {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .support-page__prescribed .prescribed__card-text {
    max-width: 73ch;
  }
}
.support-page__prescribed .prescribed__card-span {
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.support-page__prescribed .prescribed__card-link {
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 1024px) {
  .support-page .benefits__grid {
    display: grid;
    grid-template-columns: 493px auto;
    gap: 19px;
    align-items: center;
    width: 100%;
  }
}
.support-page .benefits__image {
  max-width: 342.624px;
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .support-page .benefits__image {
    max-width: 493px;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .benefits__image {
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.support-page .benefits__heading {
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.support-page .benefits__text {
  max-width: 31ch;
  margin-bottom: 20.81px;
}
@media screen and (min-width: 500px) {
  .support-page .benefits__text {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .benefits__text {
    max-width: 62ch;
  }
}
.support-page .benefits__information {
  line-height: 25.714px;
}
.support-page .benefits__span {
  font-weight: 600;
  line-height: 25.714px;
  color: #b24399;
}
.support-page .tools__curvy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  max-width: 390px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .support-page .tools__curvy-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 1240px;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .tools__curvy-grid--modif {
    width: 100%;
    margin-bottom: 48px;
  }
}
.support-page .tools__cards {
  background-color: white;
}
.support-page .tools .curvy__card.coming-soon .download-label {
  display: none;
}
.support-page .tools .curvy__card.coming-soon .coming-label {
  pointer-events: none;
  margin-left: 20px;
}
.support-page .tools .curvy__card_first-block {
  gap: 30px;
  padding-left: 24px;
}
.support-page .tools .curvy__card_heading {
  font-size: 20px;
}
.support-page .tools .curvy__card_body {
  height: 129px;
  margin-top: 12px;
  padding-bottom: 0;
  line-height: 25.7px;
}
.support-page .tools .curvy__card .labels {
  margin-top: 24px;
}
.support-page .tools .curvy__card .download-label {
  margin-top: 0;
}
.support-page .tools .curvy__card .download-label a {
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  .support-page .tools .tools__curvy-grid:not(.tools__curvy-grid--modif) .curvy__card_body {
    height: 103px;
  }
}
.support-page .tools__sub-heading {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.support-page .tools__desc {
  margin-bottom: 20px;
}
.support-page .acces {
  margin-top: 60px;
}
.support-page .acces__heading {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 375px) {
  .support-page .acces__heading {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .acces__flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1440px) {
  .support-page .acces__flex {
    padding-left: 105px;
  }
}
.support-page .acces__text {
  max-width: 30ch;
}
@media screen and (min-width: 500px) {
  .support-page .acces__text {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .acces__text {
    max-width: 88ch;
  }
}
@media screen and (min-width: 1440px) {
  .support-page .acces__text {
    width: 90ch;
  }
}
@media screen and (min-width: 500px) {
  .support-page .acces__text br {
    display: none;
  }
}
.support-page .acces__image {
  width: 250.89px;
  margin-bottom: 32px;
}
.support-page .acces .acces__footnotes {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* stylelint-disable no-descending-specificity */
/* stylelint-disable declaration-block-no-shorthand-property-overrides */
.nf1-pn .heading::after {
  margin-top: 12px;
}
.nf1-pn__prevalent {
  padding-top: 20px;
}
.nf1-pn__prevalent-header-container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-block: 40px 60px;
  text-align: center;
}
.nf1-pn__prevalent-header-container-title {
  position: relative;
  line-height: normal;
}
.nf1-pn__prevalent-header-container-title::after {
  content: "";
  width: 80.541px;
  height: 2px;
  margin-top: 22px;
  margin-inline: auto;
  background-color: #559cb5;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container-title::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-51%);
    width: 2px;
    height: 80.541px;
    margin: 0;
  }
}
.nf1-pn__prevalent-header-container-title sup {
  top: -8px;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container-title {
    max-width: 45ch;
    padding-right: 60px;
    text-align: left;
  }
}
.nf1-pn__prevalent-header-container .color--dark-purple-75 {
  line-height: normal;
}
.nf1-pn__prevalent-header-container .gradient-text {
  margin-bottom: 0;
  font-size: 33.875px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  text-shadow: 0 8px 12px rgba(89, 64, 89, 0.1);
  background: linear-gradient(85deg, #cb77a9 -0.43%, #8faac8 57.09%, #274f5d 112.26%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nf1-pn__prevalent-header-container .gradient-text span {
  display: block;
  font-size: 94.85px;
}
@media screen and (max-width: 768px) {
  .nf1-pn__prevalent-header-container .gradient-text {
    margin-top: 18px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn__prevalent-header-container .gradient-text {
    margin-inline: 60.83px;
  }
  .nf1-pn__prevalent-header-container .gradient-text + .color--dark-purple-75 {
    margin-top: -20px;
  }
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container {
    flex-direction: row;
    gap: 64px;
    align-items: center;
    justify-content: space-between;
    max-width: 1030px;
    margin-block: 76.68px 55.68px;
    margin-inline: auto;
  }
}
.nf1-pn__prevalent-hystory-title {
  max-width: 1030px;
  margin-inline: auto;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-hystory-title {
    margin-bottom: 15px;
  }
}
.nf1-pn__prevalent-hystory-card {
  margin-top: 20px;
  padding-block: 34px 12px;
  padding-inline: 20px;
  border-radius: 20px 0 20px 20px;
}
.nf1-pn__prevalent-hystory-card .card {
  max-width: 323px;
  margin-inline: auto;
  padding: 18px 0;
  padding-left: 0;
  background-color: transparent;
}
.nf1-pn__prevalent-hystory-card .card.bottom-line {
  position: relative;
}
.nf1-pn__prevalent-hystory-card .card.bottom-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 168px;
  height: 5px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 100vw;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-hystory-card .card.bottom-line::after {
    top: 50%;
    right: 0;
    left: unset;
    transform: translateY(-50%);
    width: 5px;
    height: 168px;
    margin: 0;
  }
}
.nf1-pn__prevalent-hystory-card .card__icon {
  height: 80px;
  margin-bottom: 34px;
  margin-inline: auto;
}
.nf1-pn__prevalent-hystory-card .card.group .card__icon {
  width: 55.491px;
}
.nf1-pn__prevalent-hystory-card .card.calendar .card__icon {
  width: 68.476px;
}
.nf1-pn__prevalent-hystory-card .card.graph {
  padding-right: 0;
}
.nf1-pn__prevalent-hystory-card .card.graph .card__icon {
  width: 90.204px;
}
.nf1-pn__prevalent-hystory-card .card__title {
  color: #594059;
}
.nf1-pn__prevalent-hystory-card .card__title span {
  font-weight: 500;
}
.nf1-pn__prevalent-hystory-card .card__content {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .nf1-pn__prevalent-hystory-card .card {
    padding: 0;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1023px) {
  .nf1-pn__prevalent-hystory-card .card {
    padding: 18px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-hystory-card {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 1030px;
    margin: 0;
    margin-inline: auto;
    padding-block: 52px 32px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn__prevalent-hystory-card {
    --width: 16%;
    --height: 56px;
    position: relative;
    padding-inline: 20px;
  }
  .nf1-pn__prevalent-hystory-card::after {
    content: "";
    position: absolute;
    top: calc(var(--height) * -1);
    right: 0;
    width: var(--width);
    height: var(--height);
    background-color: #eef6f8;
    border-radius: 20px 20px 0 0;
  }
  .nf1-pn__prevalent-hystory-card::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: calc(var(--height) * -1 + 2.2rem);
    right: calc(var(--width) - 1.8rem);
    width: 50px;
    height: 50px;
    background-color: #eef6f8;
    border-radius: 100vw;
    -webkit-mask-image: radial-gradient(circle 10px at 0 0, transparent 0, transparent 20px, black 21px);
            mask-image: radial-gradient(circle 10px at 0 0, transparent 0, transparent 20px, black 21px);
  }
}
@media screen and (min-width: 1050px) {
  .nf1-pn__prevalent-hystory-card {
    --width: 19%;
  }
}
@media screen and (min-width: 1100px) {
  .nf1-pn__prevalent-hystory-card {
    --width: 21.5%;
  }
}
.nf1-pn__prevalent-hystory-footnotes {
  max-width: 1230px;
  margin-top: 20px;
}
.nf1-pn__prevalent-hystory-footnotes .footnotes:last-child {
  margin-top: 2px;
}
.nf1-pn__prevalent-hystory-footnotes .footnotes:not(.footnotes:last-child) {
  position: relative;
  margin-inline: auto;
  padding-left: 4.7px;
  background: transparent;
}
.nf1-pn__prevalent-hystory-footnotes .footnotes:not(.footnotes:last-child) sup:first-of-type {
  position: absolute;
  top: 4.7px;
  left: 0;
}
.nf1-pn__concern {
  margin-top: 60px;
}
.nf1-pn__concern-heading {
  margin-bottom: 20px;
  line-height: normal;
}
.nf1-pn__concern-subheading {
  margin-bottom: 72px;
  line-height: normal;
}
.nf1-pn__concern-text {
  max-width: 1030px;
  margin-bottom: 20px;
  margin-inline: auto;
  line-height: normal;
}
.nf1-pn__concern-image {
  max-width: 1030px;
  margin-inline: auto;
}
.nf1-pn__concern .wrapper--wider {
  margin-top: 32px;
}
.nf1-pn__concern .wrapper--wider .footnotes {
  position: relative;
  max-width: 1235px;
  margin-inline: auto;
  padding-left: 4.7px;
  background: transparent;
}
.nf1-pn__concern .wrapper--wider .footnotes sup:first-of-type {
  position: absolute;
  top: 4.7px;
  left: 0;
}
@media screen and (max-width: 400px) {
  .nf1-pn__concern .wrapper--wider .footnotes {
    max-width: 51ch;
  }
}
.nf1-pn .footnotes {
  color: #594059;
}
.nf1-pn .dilemma {
  padding-top: 60px;
}
.nf1-pn .dilemma .nf1-pn__concern-subheading {
  margin-top: 32px;
  margin-bottom: 17px;
}
.nf1-pn .dilemma .wrapper-custom {
  max-width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .nf1-pn .dilemma .wrapper-custom {
    max-width: calc(100% - 146px);
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .wrapper-custom {
    max-width: calc(100% - 70px);
  }
}
@media screen and (min-width: 1340px) {
  .nf1-pn .dilemma .wrapper-custom {
    max-width: 1240px;
  }
}
.nf1-pn .dilemma__box {
  padding: 32px 20px;
  background-color: #eef6f8;
  border-radius: 16px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma__box_image {
    max-width: 370.3px;
    padding-top: 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.nf1-pn .dilemma__box.graphic {
  padding: 0;
  padding-bottom: 40px;
}
.nf1-pn .dilemma__box.graphic .content-wrapper {
  padding: 40px 40px 51px 20px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma__box.graphic .content-wrapper {
    max-width: 457.6px;
    padding: 0;
  }
}
.nf1-pn .dilemma__box.graphic .desktop-divider {
  display: none;
}
@media screen and (min-width: 1212px) {
  .nf1-pn .dilemma__box.graphic .desktop-divider {
    display: block;
    width: 1px;
    height: 66px;
    margin-top: 20px;
    background-color: #fff;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma__box.graphic {
    display: flex;
    justify-content: space-between;
    padding: 40px;
  }
}
.nf1-pn .dilemma__box_heading {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.nf1-pn .dilemma__box_heading_content sup {
  top: -0.7em;
}
.nf1-pn .dilemma__box_heading sup {
  top: -0.3em;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .nf1-pn .dilemma__box .lists {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
}
.nf1-pn .dilemma__box ul.first {
  margin-bottom: 24px;
}
.nf1-pn .dilemma__box ul.first :last-child {
  padding-bottom: 0;
}
.nf1-pn .dilemma__box ul.first li {
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .nf1-pn .dilemma__box ul.first {
    max-width: 568px;
    margin-bottom: 0;
  }
}
.nf1-pn .dilemma__box ul.second {
  margin-top: 24px;
}
.nf1-pn .dilemma__box ul.second :last-child {
  padding-bottom: 0;
}
.nf1-pn .dilemma__box ul.second li {
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .nf1-pn .dilemma__box ul.second {
    max-width: 568px;
    margin-top: 0;
  }
}
.nf1-pn .dilemma__box ul li {
  margin-left: 22px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
}
.nf1-pn .dilemma__box ul li::marker {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .nf1-pn .dilemma__box {
    padding: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .wrapper-dilemma {
    padding-right: 105px;
    padding-left: 105px;
  }
}
.nf1-pn .dilemma .wrapper-dilemma-gray {
  /* @media screen and (min-width: 1440px) {
    padding-left: 205px;
    padding-right: 205px;
  } */
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .wrapper-dilemma-gray {
    padding-right: 105px;
    padding-left: 105px;
  }
}
.nf1-pn .dilemma .box {
  margin-top: 32px;
  margin-bottom: 20px;
}
.nf1-pn .dilemma .box__border {
  border-top-left-radius: 4.552px;
}
.nf1-pn .dilemma .box__border-content {
  border-bottom-left-radius: 4.552px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box__border-content {
    border-bottom-left-radius: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box__border {
    border-top-left-radius: 12px;
  }
}
.nf1-pn .dilemma .box__header {
  padding: 7.58px;
  border-top-left-radius: 4.552px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box__header {
    padding: 20px;
    border-top-left-radius: 12px;
  }
}
.nf1-pn .dilemma .box__title {
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box__title {
    font-size: 24px;
  }
}
.nf1-pn .dilemma .box__content {
  padding: 3.91px 0 0 18.96px;
  border-bottom-left-radius: 4.552px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box__content {
    padding-top: 10.32px;
    padding-right: 109px;
    padding-left: 50px;
    border-bottom-left-radius: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box {
    margin-bottom: 36px;
  }
}
.nf1-pn .dilemma .footnotes-container {
  margin-top: 20px;
  margin-bottom: 60px;
}
.nf1-pn .dilemma .footnotes {
  position: relative;
}
.nf1-pn .dilemma .footnotes.modifier-padding {
  padding-bottom: 2px;
  padding-left: 4px;
}
.nf1-pn .dilemma .footnotes.modifier-padding .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 8px;
}
.nf1-pn .dilemma .footnotes sup {
  top: -5px;
}
.nf1-pn .dilemma .gradient-divider {
  width: 100%;
  height: 8px;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(207, 240, 251, 0) 0%, #6FAEC3 51.56%, rgba(207, 240, 251, 0) 100%);
}
.nf1-pn .dilemma .dilemma__boc_content sup {
  top: -6px;
  font-size: 11px;
}
.nf1-pn .dilemma .dilemma__boc_content sup.symbol {
  top: -4px;
  font-size: 14px;
}
.nf1-pn .discover {
  padding-top: 80px;
}
.nf1-pn .discover__icons {
  margin-bottom: 122px;
}
.nf1-pn .discover__icons :last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1176px) {
  .nf1-pn .discover__icons {
    display: flex;
    gap: 40px;
  }
}
.nf1-pn .discover__icons_wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
.nf1-pn .discover__icons_wrapper_icon {
  width: 102px;
}
.nf1-pn .discover__icons_wrapper_text sup {
  top: -0.7em;
}
@media screen and (min-width: 1176px) {
  .nf1-pn .discover__icons_wrapper {
    max-width: 386px;
    margin-bottom: 0;
  }
}
.nf1-pn .discover__operable {
  position: relative;
  max-width: 615px;
  margin: auto;
  margin-bottom: 40px;
  padding: 52px 35px 20px;
  background-color: #e9e6e9;
  border-radius: 12px;
}
.nf1-pn .discover__operable_image {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 102px;
}
.nf1-pn .discover__operable_text {
  line-height: normal;
  text-align: center;
}
.nf1-pn .discover__operable_text sup {
  top: -0.7em;
}
.nf1-pn .discover .support-page__prescribed {
  max-width: 1030px;
  margin: auto;
  margin-bottom: 8px;
}
.nf1-pn .discover .support-page__prescribed .wrapper {
  width: 100%;
  max-width: unset;
}
.nf1-pn .discover .support-page__prescribed .prescribed__border-gradient {
  background: linear-gradient(130deg, rgb(33, 61, 71) 4%, white 25%, white 80%, rgb(33, 61, 71) 88%);
}
@media screen and (min-width: 500px) {
  .nf1-pn .discover .support-page__prescribed .prescribed__border-gradient {
    background: linear-gradient(160deg, rgb(33, 61, 71) 0%, white 23%, white 83%, rgb(33, 61, 71) 100%);
  }
}
.nf1-pn .discover .support-page__prescribed .prescribed__card {
  background: linear-gradient(90deg, white 0% #EEF6F8 50%, white 100%);
}
.nf1-pn .discover .prescribed__card-title {
  margin-bottom: 0;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 30px;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .discover .prescribed__card-title {
    width: unset;
    max-width: 819px;
  }
}
.nf1-pn .discover .footnotes {
  max-width: 1030px;
  margin: auto;
  margin-bottom: 80px;
}
.nf1-pn #isi-position {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .nf1-pn #isi-position {
    margin-top: 96px;
  }
}

.page__not_found .sitemap__title {
  margin-bottom: 80px;
  text-align: center;
}

/* {outputFileName:style} *//****************************************

******** Footer Refresh Styles.********

****************************************/
.footer__nav_menu_item_link.privacy-link img {
  width: 29.2px;
  height: 14px;
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .footer__nav_menu {
    width: auto;
  }
}
.footer__branding .footer__logo img {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .footer__branding .footer__logo img {
    margin-bottom: 0;
  }
}
.footer__text .text:nth-child(2) {
  max-width: none;
}
@media screen and (min-width: 768px) {
  .footer__text .copyright br:first-of-type {
    display: none;
  }
}

:root {
  --black: #000000;
  --primary-font: Helvetica, Arial, sans-serif;
  --secondary-font: Verdana;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

*::before,
*::after {
  display: block;
}

img,
picture,
video,
iframe,
figure {
  max-width: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  background-color: transparent;
}

p a,
label a {
  display: inline;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
strong,
blockquote,
i,
b,
u,
em {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-decoration: none;
  color: inherit;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

::-moz-selection {
  background-color: var(--black, black);
  color: var(--white, white);
  text-shadow: none;
}

::selection {
  background-color: var(--black, black);
  color: var(--white, white);
  text-shadow: none;
}

form,
input,
textarea,
select,
button,
label {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  background-color: transparent;
  color: inherit;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

table,
tr,
td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  overflow: visible;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

[hidden] {
  display: none !important;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  margin: 0;
}

main {
  display: block;
  overflow-x: hidden;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 50%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.8em;
}

img {
  border-style: none;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-size: 100%;
  font-family: var(--primary-font);
  color: var(--black);
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input {
  overflow: visible;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -moz-appearance: button;
  appearance: button;
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* stylelint-disable scss/no-global-function-names */
/* We declare colors in a map as key: value
with the color name as the key and the hex
as the value

And we are goint to use it in _utils.scss */
/* Gradients */
/* Koselugo HCP Colors */
/* Koselugo Form/Navigation Colors */
/* Boilerplate Colors */
/* Fonts */
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: normal;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD BOOK.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: 500;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD MEDIUM.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD DEMI.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std";
  font-weight: bold;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD HEAVY.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Compressed";
  font-weight: normal;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD BOOK COMPRESSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Compressed";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD DEMI COMPRESSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Condensed";
  font-weight: normal;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD BOOK CONDENSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Condensed";
  font-weight: 500;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD MEDIUM CONDENSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic Std Condensed";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/ITC FRANKLIN GOTHIC STD DEMI CONDENSED.OTF") format("opentype");
}
@font-face {
  font-family: "ITC Franklin Gothic LT Pro";
  font-weight: 600;
  src: url("/assets/fonts/ITC-Franklink-Gothic/FranklinGothicLTPro.otf") format("opentype");
}
@font-face {
  font-family: "Lato";
  font-weight: 100;
  src: url("/assets/fonts/Lato/Lato-Thin.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: 300;
  src: url("/assets/fonts/Lato/Lato-Light.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: normal;
  src: url("/assets/fonts/Lato/Lato-Regular.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: 500;
  src: url("/assets/fonts/Lato/Lato-Medium.otf");
}
@font-face {
  font-family: "Lato";
  font-weight: 700;
  src: url("/assets/fonts/Lato/Lato-Bold.ttf");
}
@font-face {
  font-family: "Lato";
  font-weight: 900;
  src: url("/assets/fonts/Lato/Lato-Black.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  src: url("/assets/fonts/Montserrat/Montserrat-Regular.ttf");
}
*,
*::before,
*::after {
  font-family: "ITC Franklin Gothic Std", "Arial", "Helvetica", sans-serif;
}

/*
  This mixin will build the prefix values for the property and value passed in.
  It will also add the property and value without the prefix.
  Example:
    @include build-prefix-values('transition', 'all 1s linear');
*/
/* 
  Example usage:
    .my-class {
      // Default usage
      @include transition();
      // Custom usage
      @include transition('all', 1s, linear);
    }
*/
.wrapper {
  position: relative;
  width: 100%;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .wrapper {
    /* Based on Koselugo Patient Tablet Design */
    max-width: calc(100% - 146px);
  }
}
@media screen and (min-width: 1024px) {
  .wrapper {
    max-width: calc(100% - 70px);
  }
}
@media screen and (min-width: 1340px) {
  .wrapper {
    max-width: 1240px;
  }
}

html.no-scroll {
  overflow: hidden;
}

body {
  color: #210022;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 120%;
  color: #210022;
  letter-spacing: normal;
}

h1 {
  font-size: 32px;
  line-height: 38.4px;
}

h2 {
  font-size: 24px;
  line-height: 28.8px;
}

h3 {
  font-size: 20px;
  line-height: 24px;
}

h4 {
  font-size: 18px;
  line-height: 21.6px;
}

h5 {
  font-size: 16px;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
p.small {
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.6px;
}

a {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #b24399;
  text-decoration: none;
}

label a,
p a {
  color: #b24399;
}

small {
  font-size: 0.75rem;
  line-height: 0.8788rem;
}

ul li {
  list-style-type: none;
}

ul li::marker {
  display: none;
}

ol {
  margin-left: 1rem;
}
ol li {
  list-style-type: decimal;
}
ol li::marker {
  font-weight: 600;
}

em {
  font-style: italic;
}

main ul li {
  list-style-type: disc;
}
main ul li::marker {
  color: #000;
}

sup.symbol-sup {
  top: initial;
  font-size: inherit;
  line-height: 0;
}

.design-system-section {
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #000;
}

.example-code {
  position: relative;
}

.code {
  overflow-x: auto;
  display: block;
  width: 100%;
  font-style: normal;
  color: #212529;
}

.copy-clipboard {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 10px;
  margin: 0.5rem;
  padding: 0.5rem;
  color: #fff;
  background-color: #000;
  border-radius: 0.5rem;
}

.hljs {
  background-color: #fff;
}

.hljs-tag {
  color: #333;
}

.hljs-name {
  color: #c6303e;
}

.hljs-attr {
  color: #6f42c1;
}

.hljs-string {
  color: #084298;
}

swiper-container {
  /* Change the default color of the all swiper elements */
  --swiper-theme-color: #000;
  z-index: 0;
  /* Width and height of slider */
  width: 100%;
  height: auto;
}

.myswiper-custum-text {
  padding: 3rem;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}

.timeline-container swiper-container {
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}
.timeline-container swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc((100% - 30px) / 2) !important;
  font-size: 18px;
  text-align: center;
  background: #fff;
}

/* Using @each we create a CSS class for
color and background using the name in the class
and the value as the property value that we need

Ex: .color--white { color: #FFFFFFF; } and
.bg-color--white { background-color: #FFFFFF; } */
.color--garnet-100 {
  color: #870051;
}

.bg-color--garnet-100 {
  background-color: #870051;
}

.color--garnet-75 {
  color: #860152;
}

.bg-color--garnet-75 {
  background-color: #860152;
}

.color--garnet-25 {
  color: #e18fd3;
}

.bg-color--garnet-25 {
  background-color: #e18fd3;
}

.color--garnet-20 {
  color: #e1bfd3;
}

.bg-color--garnet-20 {
  background-color: #e1bfd3;
}

.color--dark-purple {
  color: #a3227d;
}

.bg-color--dark-purple {
  background-color: #a3227d;
}

.color--dark-purple-100 {
  color: #210022;
}

.bg-color--dark-purple-100 {
  background-color: #210022;
}

.color--dark-purple-100-2 {
  color: #210021;
}

.bg-color--dark-purple-100-2 {
  background-color: #210021;
}

.color--dark-purple-75 {
  color: #594059;
}

.bg-color--dark-purple-75 {
  background-color: #594059;
}

.color--dark-purple-50 {
  color: #908091;
}

.bg-color--dark-purple-50 {
  background-color: #908091;
}

.color--dark-purple-10 {
  color: #e9e6e9;
}

.bg-color--dark-purple-10 {
  background-color: #e9e6e9;
}

.color--pink-100 {
  color: #b24399;
}

.bg-color--pink-100 {
  background-color: #b24399;
}

.color--pink-75 {
  color: #c572b3;
}

.bg-color--pink-75 {
  background-color: #c572b3;
}

.color--pink-25 {
  color: #ebd0e5;
}

.bg-color--pink-25 {
  background-color: #ebd0e5;
}

.color--pink-50 {
  color: #d9a1cc;
}

.bg-color--pink-50 {
  background-color: #d9a1cc;
}

.color--blue-100 {
  color: #559cb5;
}

.bg-color--blue-100 {
  background-color: #559cb5;
}

.color--blue-75 {
  color: #80b5c8;
}

.bg-color--blue-75 {
  background-color: #80b5c8;
}

.color--blue-50 {
  color: #aaceda;
}

.bg-color--blue-50 {
  background-color: #aaceda;
}

.color--blue-10 {
  color: #eef6f8;
}

.bg-color--blue-10 {
  background-color: #eef6f8;
}

.color--white {
  color: #fff;
}

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

.color--jelly-blue {
  color: #417684;
}

.bg-color--jelly-blue {
  background-color: #417684;
}

.color--polished-pine {
  color: #559c85;
}

.bg-color--polished-pine {
  background-color: #559c85;
}

.color--granite-gray {
  color: #636466;
}

.bg-color--granite-gray {
  background-color: #636466;
}

.color--moonstone-blue {
  color: #6faec3;
}

.bg-color--moonstone-blue {
  background-color: #6faec3;
}

.color--davy-grey {
  color: #58595a;
}

.bg-color--davy-grey {
  background-color: #58595a;
}

.color--raisin-black {
  color: #231f20;
}

.bg-color--raisin-black {
  background-color: #231f20;
}

.color--isabelline {
  color: #f4edef;
}

.bg-color--isabelline {
  background-color: #f4edef;
}

.color--cultured {
  color: #f2f7f9;
}

.bg-color--cultured {
  background-color: #f2f7f9;
}

.color--french-plum {
  color: #8c0f57;
}

.bg-color--french-plum {
  background-color: #8c0f57;
}

.color--black {
  color: #000;
}

.bg-color--black {
  background-color: #000;
}

.color--dark-gray {
  color: #a3a3a3;
}

.bg-color--dark-gray {
  background-color: #a3a3a3;
}

.color--pink-10 {
  color: #f8edf5;
}

.bg-color--pink-10 {
  background-color: #f8edf5;
}

.color--basics-red {
  color: #af0000;
}

.bg-color--basics-red {
  background-color: #af0000;
}

.color--waikawa-grey {
  color: #62708e;
}

.bg-color--waikawa-grey {
  background-color: #62708e;
}

.color--blue-25 {
  color: #d4e6ec;
}

.bg-color--blue-25 {
  background-color: #d4e6ec;
}

.color--neutral-main-800 {
  color: #272727;
}

.bg-color--neutral-main-800 {
  background-color: #272727;
}

.color--neutral-main-500 {
  color: #62708e;
}

.bg-color--neutral-main-500 {
  background-color: #62708e;
}

.color--dark-blue-gray {
  color: #666ca3;
}

.bg-color--dark-blue-gray {
  background-color: #666ca3;
}

.color--dark-blue {
  color: #13183f;
}

.bg-color--dark-blue {
  background-color: #13183f;
}

.color--waterloo {
  color: #83869a;
}

.bg-color--waterloo {
  background-color: #83869a;
}

.color--violet-red {
  color: #f74780;
}

.bg-color--violet-red {
  background-color: #f74780;
}

.color--pink {
  color: #ffa7c3;
}

.bg-color--pink {
  background-color: #ffa7c3;
}

.color--red {
  color: #f00;
}

.bg-color--red {
  background-color: #f00;
}

/* Backgrounds - Gradients */
.bg-gradient--blue-white {
  background: linear-gradient(0deg, #e5f6fe 42.42%, #fff 85.41%);
}

.bg-gradient--garnet-90 {
  background: linear-gradient(90deg, rgb(135, 0, 81) 0%, rgba(135, 0, 81, 0) 100%);
}

.bg-gradient--garnet-270 {
  background: linear-gradient(270deg, rgb(135, 0, 81) 0%, rgba(135, 0, 81, 0) 100%);
}

.bg-gradient--pink-blue {
  background: linear-gradient(90deg, rgb(203, 119, 169) 0%, rgb(108, 131, 159) 50%, rgb(39, 79, 93) 100%);
}

.bg-gradient--pink-blue-2 {
  background: linear-gradient(90deg, rgb(203, 119, 169) 0%, rgb(143, 170, 200) 50%, rgb(39, 79, 93) 100%);
}

.bg-gradient--pink-blue-3 {
  background: linear-gradient(90deg, rgb(249, 234, 239) 0%, rgb(218, 233, 240) 50%, rgb(226, 246, 255) 100%);
}

.bg-gradient--polished-pine-135 {
  background: linear-gradient(135deg, rgb(85, 156, 133) 0%, rgba(85, 156, 133, 0) 100%);
}

.bg-gradient--polished-pine-315 {
  background: linear-gradient(315deg, rgb(85, 156, 133) 0%, rgba(85, 156, 133, 0) 100%);
}

.bg-gradient--polished-pine-90 {
  background: linear-gradient(90deg, rgb(85, 156, 133) 0%, rgba(85, 156, 133, 0) 100%);
}

.bg-gradient--af-white-90 {
  background: linear-gradient(90deg, rgb(238, 246, 248) 0%, rgba(238, 246, 248, 0) 100%);
}

.bg-gradient--af-white-radial {
  background: radial-gradient(circle, rgb(238, 246, 248) 0%, rgba(238, 246, 248, 0) 100%);
}

.bg-gradient--moonstone-blue {
  background: linear-gradient(90deg, rgba(207, 240, 251, 0) 0%, rgb(111, 174, 195) 50%, rgba(207, 240, 251, 0) 100%);
}

.bg-gradient--41273b {
  background: linear-gradient(90deg, rgba(65, 39, 59, 0) 0%, rgba(65, 39, 59, 0.474) 25%, rgba(65, 39, 59, 0.474) 75%, rgba(65, 39, 59, 0) 100%);
}

.bg-gradient--dark-purple {
  background: linear-gradient(90deg, rgba(89, 64, 89, 0) 0%, rgba(89, 64, 89, 0.25) 25%, rgba(89, 64, 89, 0.25) 75%, rgba(89, 64, 89, 0) 100%);
}

.bg-gradient--pink-180 {
  background: linear-gradient(180deg, rgba(178, 52, 153, 0) 0%, rgba(178, 52, 153, 0) 10%, rgb(178, 52, 153) 100%);
}

/* Use it with a bg-gradient class to get a text with that gradient */
.text--gradient {
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.footnotes {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}

.callout {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
}

/********
  Home Refresh Styles.
*********/
.index-page__grid::before {
  z-index: -99;
  top: unset;
  bottom: 0;
  transform: unset;
  height: calc(150% + 100vw - 320px);
  background-image: url("/assets/images/refresh/home/grid-bg-mobile.png");
  background-position: top;
}
@media screen and (min-width: 425px) {
  .index-page__grid::before {
    height: calc(165% + 130vw - 390px);
  }
}
@media screen and (min-width: 768px) {
  .index-page__grid::before {
    height: 150%;
    background-image: url("/assets/images/refresh/home/grid-bg-desktop.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  .index-page__grid-cards {
    grid-template-rows: auto;
  }
}
@media screen and (min-width: 768px) {
  .index-page__grid .card__content p {
    margin-bottom: 50px;
  }
}

.index-page .heading--garnet-100::after {
  display: none;
}
@media screen and (min-width: 1100px) {
  .index-page .heading--garnet-100::after {
    display: block;
    margin-top: 5px;
  }
}

.home-hero {
  border-radius: 0 0 45% 75%/9%;
}
.home-hero__wrapper {
  background: linear-gradient(180deg, #cde2ea 6.36%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (min-width: 1100px) {
  .home-hero__wrapper {
    background: linear-gradient(109deg, #c7dbe2 37.97%, rgba(238, 246, 248, 0) 57.8%);
  }
}
.home-hero__content {
  gap: 16px;
}
.home-hero__content-title {
  line-height: 52px;
}
.home-hero__content-text {
  max-width: 31ch;
}
.home-hero__content-text.text--bold {
  max-width: 29ch;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  .home-hero__content-text.text--bold {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (min-width: 431px) {
  .home-hero__content-text {
    max-width: 90%;
  }
  .home-hero__content-text br {
    display: none;
  }
}
@media screen and (min-width: 450px) {
  .home-hero__content-text {
    max-width: unset;
  }
}
@media screen and (min-width: 600px) {
  .home-hero__content-text {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero__content-text {
    max-width: 55ch;
  }
}
.home-hero__content-footnotes {
  max-width: 47ch;
}
@media screen and (min-width: 450px) {
  .home-hero__content-footnotes {
    max-width: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero__content-footnotes {
    max-width: 76ch;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero__content {
    padding-top: 73px;
  }
}
.home-hero__image {
  overflow: hidden;
  margin-top: 0;
  opacity: 0.85;
  border-radius: 0% 0% 0% 100%/100% 100% 0% 7%;
}
.home-hero__image::before {
  display: none;
}
@media screen and (min-width: 1100px) {
  .home-hero__image {
    z-index: -1;
    height: 575px;
    opacity: 1;
    border-radius: 0;
  }
  .home-hero__image picture {
    height: 100%;
  }
  .home-hero__image picture img {
    -o-object-position: 25%;
       object-position: 25%;
  }
}
@media screen and (min-width: 1300px) {
  .home-hero__image picture img {
    -o-object-position: left;
       object-position: left;
  }
}
.home-hero__ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-bottom: 3px;
  padding: 20px 16px;
  padding-top: 27px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  color: #fff;
  background-color: #870051;
}
.home-hero__ribbon::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  border-color: #6a1b61 transparent transparent;
  border-style: solid;
  border-width: 10px 10px 0;
}
@media screen and (min-width: 1100px) {
  .home-hero__ribbon::before {
    display: block;
  }
}
.home-hero__ribbon .ribbon-image {
  position: absolute;
  z-index: -1;
  top: 0;
}
.home-hero__ribbon sup {
  top: -0.75em;
}
@media screen and (min-width: 1100px) {
  .home-hero__ribbon sup {
    top: -0.75em;
  }
}
.home-hero__ribbon br {
  display: none;
}
@media screen and (min-width: 1100px) {
  .home-hero__ribbon br {
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero__ribbon span {
    font-size: 16.145px;
    line-height: 16.145px;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero__ribbon {
    position: absolute;
    z-index: 2;
    right: 3%;
    flex-direction: column;
    width: 143px;
    height: 119px;
    padding-top: 12px;
    font-size: 46.129px;
    line-height: 0.7;
    text-align: center;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
            clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
  }
}
@media screen and (min-width: 1600px) {
  .home-hero__ribbon {
    right: 7.5%;
  }
}
.home-hero__vector--left {
  bottom: 50px;
  max-width: 400px;
  opacity: 1;
}
@media screen and (min-width: 600px) {
  .home-hero__vector--left {
    bottom: 68px;
    rotate: -1deg;
    max-width: 750px;
  }
}
@media screen and (min-width: 1300px) {
  .home-hero__vector--left {
    rotate: -0.5deg;
  }
}
@media screen and (min-width: 1497px) {
  .home-hero__vector--left {
    bottom: 75px;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero__vector--right {
    bottom: 60px;
    rotate: -1deg;
  }
}
@media screen and (min-width: 1300px) {
  .home-hero__vector--right {
    bottom: 52px;
    rotate: 0.5deg;
  }
}
@media screen and (min-width: 1496px) {
  .home-hero__vector--right {
    bottom: 110px;
    left: 65%;
  }
}
@media screen and (min-width: 2000px) {
  .home-hero__vector--right {
    left: 70%;
  }
}
.home-hero .home-hero__foot {
  max-width: calc(100% - 30px);
  margin-top: 12px;
}
.home-hero .footnotes sup:first-of-type {
  top: 3px;
}
@media screen and (min-width: 1100px) {
  .home-hero {
    height: 570px !important;
    border-radius: 0 0 70% 52%/14%;
  }
}

.index-page__grid-cards .card__content {
  margin-bottom: 15px;
}
@media screen and (min-width: 1100px) {
  .index-page__grid-cards .card__content {
    margin-bottom: 65px;
  }
}

.index-page__grid {
  margin-top: 100px;
}
@media screen and (min-width: 1100px) {
  .index-page__grid {
    margin-top: 0;
  }
}

.index-page__video {
  max-width: 1030px;
  margin-top: 40px;
  margin-bottom: 36px;
  margin-inline: auto;
}
.index-page__video-title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.index-page__video .wistia-viewer {
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 26px;
  border-radius: 8px;
}
.index-page__video .transcript__text .content {
  display: none;
  padding: 20px;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s ease-in-out;
}
.index-page__video .transcript__text .content.is-open {
  display: block;
}
.index-page__video .transcript__text button {
  margin-top: -2px;
  margin-left: 5px;
  font-size: 25px;
  letter-spacing: 0.88px;
}

.transcript__button span {
  margin: 0 0 8px 8px;
}

.home-hero__foot-caption {
  float: right;
  max-width: 300px;
  margin-top: -50px !important;
  margin-right: 15px;
  font-weight: 400;
}
@media screen and (min-width: 390px) {
  .home-hero__foot-caption {
    margin-right: 30px;
  }
}
@media screen and (min-width: 1100px) {
  .home-hero__foot-caption {
    margin-right: 100px;
  }
}

.hero__foot {
  width: 100%;
  margin-top: 0;
}
@media screen and (min-width: 390px) {
  .hero__foot {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1100px) {
  .hero__foot {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1496px) {
  .hero__foot {
    margin-top: 50px;
  }
}

/********
  study design & moa Refresh Styles.
*********/
.study-design-moa-page {
  /* Add page element styles below */
}
.study-design-moa-page .inhibition .heading {
  width: 100%;
  max-width: 20ch;
  margin-top: 40px;
  margin-bottom: 24px;
  font-size: 24px;
}
.study-design-moa-page .inhibition .heading sup {
  top: -11px;
  font-size: 19px;
}
@media screen and (min-width: 500px) {
  .study-design-moa-page .inhibition .heading {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .inhibition .heading {
    margin-top: 100px;
    margin-bottom: 40px;
    font-size: 32px;
  }
}
.study-design-moa-page .inhibition__graphic {
  position: relative;
}
.study-design-moa-page .inhibition__graphic_note {
  position: absolute;
  bottom: 12.83px;
  left: 10px;
  width: 100%;
  max-width: 45ch;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  color: #594059;
}
@media screen and (min-width: 500px) {
  .study-design-moa-page .inhibition__graphic_note {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .inhibition__graphic_note {
    bottom: 30px;
    left: 70px;
    max-width: 104ch;
  }
}
@media screen and (min-width: 1200px) {
  .study-design-moa-page .inhibition__graphic_note {
    bottom: 40px;
    left: 70px;
    max-width: 141ch;
  }
}
@media screen and (min-width: 1200px) {
  .study-design-moa-page .inhibition__graphic_note {
    width: 1025px;
  }
}
.study-design-moa-page .inhibition__wrapper_desc {
  height: 110px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .inhibition__wrapper_desc {
    height: 76px;
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .inhibition__wrapper_desc {
    height: 0;
    margin-bottom: 100px;
  }
}
.study-design-moa-page .inhibition .cta-container {
  margin-top: 60px;
  margin-bottom: 60px;
}
.study-design-moa-page .study-landmark .heading {
  width: 100%;
  max-width: 17ch;
  margin-top: 20px;
}
@media screen and (min-width: 500px) {
  .study-design-moa-page .study-landmark .heading {
    max-width: 100%;
  }
}
.study-design-moa-page .study-landmark__wrapper {
  width: 100%;
  max-width: 1240px;
  margin-top: 0;
}
@media screen and (min-width: 400px) {
  .study-design-moa-page .study-landmark__br-sprint {
    display: none;
  }
}
.study-design-moa-page .study-landmark__title {
  /* D - H2 */
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.study-design-moa-page .study-landmark__intro {
  width: 100%;
  max-width: 33ch;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #594059;
}
@media screen and (min-width: 500px) {
  .study-design-moa-page .study-landmark__intro {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .study-landmark__intro {
    max-width: 100%;
    margin-top: 23px;
  }
}
.study-design-moa-page .study-landmark__box .boxes-container {
  position: relative;
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box .boxes-container {
    max-width: 847px;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box .study-landmark__boxes .wrapper {
    max-width: unset;
  }
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second {
  margin-top: 24px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .study-landmark__box_white {
  padding: 16px;
  background-color: #fff;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .heading {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .heading sup {
  top: -5px;
  font-size: 12px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .heading .secondary-sup {
  top: -6px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .text {
  margin-top: 24px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-style: normal;
  color: #210022;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul {
  margin-left: 18px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul br {
  display: none;
}
@media screen and (min-width: 1260px) {
  .study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul br {
    display: block;
  }
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul li {
  font-size: 18px;
  line-height: 24px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul :first-child {
  padding-bottom: 4px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second ul :last-child {
  padding-top: 4px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .blue {
  border: 4px solid #559cb5;
  border-radius: 20px;
}
.study-design-moa-page .study-landmark__box .study-landmark__boxes.second .red {
  margin-top: 22px;
  border: 4px solid #870051;
  border-radius: 20px;
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box .study-landmark__boxes.second {
    position: absolute;
    top: -51px;
    right: -22px;
    width: 430px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1260px) {
  .study-design-moa-page .study-landmark__box .study-landmark__boxes.second {
    top: -45px;
    right: 6px;
    width: 505px;
  }
}
.study-design-moa-page .study-landmark__box .wrapper.modifier {
  max-width: unset;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box .wrapper.modifier {
    max-width: calc(100% - 146px);
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .study-landmark__box .wrapper.modifier {
    max-width: calc(100% - 70px);
  }
}
@media screen and (min-width: 1340px) {
  .study-design-moa-page .study-landmark__box .wrapper.modifier {
    max-width: 1240px;
  }
}
.study-design-moa-page .study-landmark__box_gray {
  background-color: #eef6f8;
}
.study-design-moa-page .study-landmark__box_gray .pills {
  width: 67.853px;
  height: 40.279px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray .pills {
    margin-bottom: 3px;
  }
}
.study-design-moa-page .study-landmark__box_gray .family {
  width: 74.5px;
  height: 75.25px;
}
.study-design-moa-page .study-landmark__box_gray.first {
  margin-top: 24px;
  padding-top: 1px;
  padding-bottom: 50px;
  padding-inline: 1px;
  background: linear-gradient(180deg, rgb(85, 156, 181) 0%, rgb(238, 246, 248) 73%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.study-design-moa-page .study-landmark__box_gray.first .family-content {
  padding-top: 40px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #eef6f8;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray.first .family-content {
    display: flex;
    align-items: flex-end;
    padding: 0;
    padding-top: 63px;
  }
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box_gray.first .family-content {
    padding-top: 0;
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray.first {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    background: #eef6f8;
  }
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box_gray.first {
    margin-top: 85.88px;
    padding-top: 63px;
    padding-right: 119px;
  }
}
.study-design-moa-page .study-landmark__box_gray.second {
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box_gray.second {
    padding-right: 119px;
    padding-bottom: 63px;
  }
}
.study-design-moa-page .study-landmark__box_gray_image {
  width: 74.5px;
}
.study-design-moa-page .study-landmark__box_gray_text {
  margin-top: 20px;
}
.study-design-moa-page .study-landmark__box_gray_text .age {
  margin-bottom: 16px;
}
.study-design-moa-page .study-landmark__box_gray_text .dosing {
  margin-bottom: 13px;
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .study-landmark__box_gray_text .dosing {
    margin-bottom: 8px;
  }
}
.study-design-moa-page .study-landmark__box_gray_text p {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.study-design-moa-page .study-landmark__box_gray_text p strong {
  font-weight: 600;
}
.study-design-moa-page .study-landmark__box_gray_text p span {
  font-weight: 400;
}
.study-design-moa-page .study-landmark__box_gray_text p .square {
  top: -0.58em;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray_text {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray_text {
    margin-left: 51px;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .study-landmark__box_gray {
    display: flex;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .study-landmark__box_gray {
    max-width: 847px;
  }
}
.study-design-moa-page .landmark__key {
  margin-top: 24px;
}
.study-design-moa-page .landmark__key_bold {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.study-design-moa-page .landmark__key_italic {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  line-height: normal;
  color: #594059;
}
.study-design-moa-page .landmark__key_text {
  margin-top: 27px;
  font-style: normal;
  color: #210022;
}
.study-design-moa-page .landmark__key .landmark__inclusion {
  position: relative;
  padding-bottom: 20px;
}
.study-design-moa-page .landmark__key .landmark__inclusion_list {
  width: 100%;
  max-width: 100%;
  margin-top: 27px;
}
.study-design-moa-page .landmark__key .landmark__inclusion_list-item {
  width: 100%;
  max-width: 30ch;
  margin-bottom: 27px;
  margin-left: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #210022;
}
.study-design-moa-page .landmark__key .landmark__inclusion_list-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 500px) {
  .study-design-moa-page .landmark__key .landmark__inclusion_list-item {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .landmark__key .landmark__inclusion_list-item {
    max-width: 89ch;
  }
}
@media screen and (min-width: 500px) {
  .study-design-moa-page .landmark__key .landmark__inclusion_list-br {
    display: none;
  }
}
.study-design-moa-page .landmark__key .landmark__inclusion_list-item-width {
  width: 100%;
  max-width: 29ch;
}
@media screen and (min-width: 500px) {
  .study-design-moa-page .landmark__key .landmark__inclusion_list-item-width {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .landmark__key .landmark__inclusion {
    max-width: 599.5px;
    padding-bottom: 0;
  }
  .study-design-moa-page .landmark__key .landmark__inclusion:first-of-type::after {
    content: "";
    position: absolute;
    top: 0;
    right: -20.5px;
    width: 1px;
    height: 148px;
    background-color: #eef6f8;
  }
}
.study-design-moa-page .landmark__key .modifier {
  padding-top: 20px;
  border-top: 1px solid #eef6f8;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .landmark__key .modifier {
    padding-top: 0;
    border-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .landmark__key {
    display: flex;
    gap: 41px;
    align-items: baseline;
    margin-top: 85.88px;
  }
}
@media screen and (min-width: 1150px) {
  .study-design-moa-page .landmark__key {
    margin-top: 105px;
  }
}
.study-design-moa-page .footnotes {
  color: #594059;
}
.study-design-moa-page .footnotes--key {
  width: 100%;
  max-width: 45ch;
}
@media screen and (min-width: 500px) {
  .study-design-moa-page .footnotes--key {
    max-width: 100%;
  }
}
@media screen and (min-width: 500px) {
  .study-design-moa-page .footnotes--bsa-break {
    display: none;
  }
}
.study-design-moa-page .appprove_medication_section {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}
.study-design-moa-page .appprove_medication_section__conteiner {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  /* Float */
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
.study-design-moa-page .appprove_medication_section__conteiner::before {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: -118px;
  left: -177px;
  width: 704px;
  height: 500px;
  opacity: 0.6;
  background-image: url("/assets/images/moa-study-design/fda-approved-mobile-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(15px);
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .appprove_medication_section__conteiner::before {
    bottom: -150px;
    left: 0;
    height: 600px;
    opacity: 0.8;
    background-image: url("/assets/images/moa-study-design/fda-approved-desktop-img.png");
    background-position: center;
    background-size: cover;
    filter: blur(10px);
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .appprove_medication_section__conteiner::before {
    bottom: -258px;
    left: 185px;
    height: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .appprove_medication_section__conteiner {
    padding-block: 36.5px;
    padding-inline: 40px;
  }
}
.study-design-moa-page .appprove_medication_section__conteiner-img {
  width: 72px;
  height: 77.143px;
}
.study-design-moa-page .appprove_medication_section__content {
  margin-top: 12px;
}
.study-design-moa-page .appprove_medication_section__desc {
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .appprove_medication_section__desc {
    width: 100%;
    max-width: 63ch;
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.study-design-moa-page .appprove_medication_section__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .appprove_medication_section__button {
    width: 171px;
  }
}
.study-design-moa-page .key__notes {
  margin-top: 24px;
}
.study-design-moa-page .key__notes .footnotes {
  position: relative;
}
.study-design-moa-page .key__notes .footnotes.modifier-padding {
  padding-bottom: 2px;
  padding-left: 4px;
}
.study-design-moa-page .key__notes .footnotes.modifier-padding .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 6px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .key__notes {
    margin-top: 40px;
  }
}
.study-design-moa-page .paradigm {
  margin-top: 40px;
}
.study-design-moa-page .paradigm .heading {
  font-size: 24px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .paradigm .heading {
    font-size: 32px;
  }
}
.study-design-moa-page .paradigm__heading {
  width: 100%;
  max-width: 23ch;
  margin-top: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 500px) {
  .study-design-moa-page .paradigm__heading {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .paradigm__heading {
    margin-top: 40px;
  }
}
.study-design-moa-page .paradigm__heading.modifier {
  margin-top: 32px;
  margin-bottom: 24px;
}
.study-design-moa-page .paradigm .curvy-container {
  margin-top: 24px;
}
.study-design-moa-page .paradigm .curvy-container .custom-list {
  margin-bottom: 40px;
}
.study-design-moa-page .paradigm .curvy-container .custom-list .curvy__card_heading {
  width: 100%;
  max-width: 16ch;
}
@media screen and (min-width: 600px) {
  .study-design-moa-page .paradigm .curvy-container .custom-list .curvy__card_heading {
    max-width: 25ch;
  }
}
.study-design-moa-page .paradigm .curvy-container .custom-list .curvy__card_body {
  max-width: 310px;
}
@media screen and (min-width: 391px) {
  .study-design-moa-page .paradigm .curvy-container .custom-list .curvy__card_body {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .paradigm .curvy-container .custom-list {
    margin-bottom: 0;
  }
}
.study-design-moa-page .paradigm .curvy-container .past-surgeries .curvy__card_heading {
  width: 100%;
  max-width: 20ch;
}
@media screen and (min-width: 600px) {
  .study-design-moa-page .paradigm .curvy-container .past-surgeries .curvy__card_heading {
    max-width: 25ch;
  }
}
.study-design-moa-page .paradigm .curvy-container .last-curvy {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .paradigm .curvy-container .last-curvy {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .paradigm .curvy-container {
    display: flex;
    gap: 40px;
  }
  .study-design-moa-page .paradigm .curvy-container .curvy__card {
    width: 100%;
    max-width: 387px;
  }
}
.study-design-moa-page .paradigm .modifier-padding {
  padding-left: 4px;
}
.study-design-moa-page .paradigm .key__notes.modifier {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .study-design-moa-page .paradigm .key__notes.modifier {
    margin-top: 40px;
  }
}
.study-design-moa-page .paradigm .morbidities .morbidity {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 320px;
  margin: auto;
  margin-bottom: 40px;
}
.study-design-moa-page .paradigm .morbidities .morbidity__icon {
  max-width: 102px;
}
.study-design-moa-page .paradigm .morbidities .morbidity__text {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #210021;
}
.study-design-moa-page .paradigm .morbidities .morbidity__text span {
  font-weight: 500;
}
@media screen and (min-width: 860px) {
  .study-design-moa-page .paradigm .morbidities .morbidity {
    width: 320px;
    margin: 0;
  }
}
.study-design-moa-page .paradigm .morbidities .morbidity.last {
  margin-bottom: 0;
}
@media screen and (min-width: 860px) {
  .study-design-moa-page .paradigm .morbidities .morbidity.last {
    margin-top: 0;
  }
}
.study-design-moa-page .paradigm .morbidities.first {
  margin-bottom: 40px;
}
.study-design-moa-page .paradigm .morbidities.second {
  margin-bottom: 20px;
}
@media screen and (min-width: 860px) {
  .study-design-moa-page .paradigm .morbidities.second {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 860px) {
  .study-design-moa-page .paradigm .morbidities {
    display: flex;
    gap: 40px;
    justify-content: center;
  }
}
.study-design-moa-page .paradigm .footnotes {
  padding-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .study-design-moa-page .paradigm {
    margin-top: 100px;
  }
}
.study-design-moa-page #isi-position {
  margin-top: 0;
}

/*
  Refresh Internal Navigation Styles
*/
.internal-nav {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0;
  background-color: #eef6f8;
}
.internal-nav.is--fixed {
  z-index: 3;
  margin-top: 0;
  margin-bottom: 0;
}
.internal-nav__container {
  display: block;
}
.internal-nav__list {
  gap: 0;
  width: -moz-max-content;
  width: max-content;
  padding: 0 16px;
}
.internal-nav__list-item {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  background-color: transparent;
  border-radius: 200px;
}
.internal-nav__list-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  padding: 0;
  padding: 10px 22px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  border: 2px solid #eef6f8;
  border-radius: 200px;
}
.internal-nav__list-item--is-active .internal-nav__list-item-link {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-weight: 600;
  color: #fff;
  background-color: #b24399;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
}
.internal-nav--centered {
  background-color: transparent;
}
.internal-nav--centered .internal-nav__container {
  overflow: hidden !important;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #eef6f8;
  border-radius: 200px;
}
.internal-nav--centered .internal-nav__list {
  padding: 0;
  border-radius: 200px;
}
.internal-nav--centered .internal-nav__list-item-link {
  overflow: hidden;
}
.internal-nav[data-scroll-to-active=true] .internal-nav__list {
  overflow: unset;
}
.internal-nav[data-scroll-to-active=true] .internal-nav__container {
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
}

/*
  Refresh Efficacy Page Styles
*/
.efficacy-page .main .heading {
  font-family: "ITC Franklin LT Pro", sans-serif;
}
.efficacy-page .main .footnotes {
  --before-sup-size: 4px;
}
.efficacy-page .main .footnotes-before-one {
  padding-left: calc(1 * var(--before-sup-size));
}
.efficacy-page .main .footnotes-before-two {
  padding-left: calc(2 * var(--before-sup-size));
}
.efficacy-page .main .symbol {
  top: -15px;
  font-size: 10px;
}
.efficacy-page .main .fda .heading {
  max-width: 17ch;
  margin-bottom: 0;
}
@media screen and (min-width: 425px) {
  .efficacy-page .main .fda .heading {
    max-width: unset;
  }
}
.efficacy-page .main .fda .efficacy-grid {
  display: grid;
  gap: 40px;
  padding: 20px 24px;
}
.efficacy-page .main .fda .efficacy-grid__item:first-child {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda .efficacy-grid__item:first-child {
    flex-direction: column;
  }
}
.efficacy-page .main .fda .efficacy-grid__item:nth-child(2) {
  text-align: center;
}
.efficacy-page .main .fda .efficacy-grid__arrow {
  display: inline-block;
  width: auto;
  height: 80px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda .efficacy-grid__arrow {
    transform: rotate(-90deg);
    width: 71px;
    height: auto;
  }
}
.efficacy-page .main .fda .efficacy-grid__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  max-width: 50%;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda .efficacy-grid__block {
    flex-direction: row;
    max-width: 100%;
  }
}
.efficacy-page .main .fda .efficacy-grid__text {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #594059;
  text-align: center;
}
@media screen and (min-width: 425px) {
  .efficacy-page .main .fda .efficacy-grid__text br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda .efficacy-grid__text {
    max-width: 185px;
    text-align: left;
  }
  .efficacy-page .main .fda .efficacy-grid__text br.show-on-desktop {
    display: inline;
  }
}
.efficacy-page .main .fda .efficacy-grid__highlight-text {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
  text-align: center;
}
.efficacy-page .main .fda .efficacy-grid__highlight-text br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda .efficacy-grid__highlight-text {
    text-align: left;
  }
  .efficacy-page .main .fda .efficacy-grid__highlight-text br {
    display: inline;
  }
}
.efficacy-page .main .fda .efficacy-grid .percentage-text {
  font-family: "Franklin Gothic LT Pro", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  color: #594059;
  text-align: center;
}
.efficacy-page .main .fda .efficacy-grid .data-text {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  color: #594059;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda .efficacy-grid.banner__content {
    grid-template-columns: minmax(0, 354px) minmax(0, 71px) minmax(0, 381px);
    align-items: center;
    justify-content: center;
  }
}
.efficacy-page .main .efficacy__banner {
  max-width: 1030px;
  margin-bottom: 0;
  margin-inline: auto;
}
.efficacy-page .main .efficacy__banner .banner__content {
  align-items: start;
  padding: 24px 32px;
}
.efficacy-page .main .efficacy__banner .callout {
  max-width: 95%;
  font-family: "ITC Franklin LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.efficacy-page .main .efficacy__banner .callout.color--dark-purple-75 {
  color: #594059;
}
.efficacy-page .main .efficacy__banner .callout.color--garnet-100 {
  color: #870051;
}
@media screen and (min-width: 500px) {
  .efficacy-page .main .efficacy__banner .callout {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .efficacy__banner .callout {
    font-size: 24px;
  }
}
.efficacy-page .main .efficacy__banner--pn-reduction {
  margin-top: 40px;
}
.efficacy-page .main .efficacy-link {
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  line-height: normal;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
  text-underline-offset: auto;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .efficacy-link--volume {
    margin-left: 10px;
  }
}
.efficacy-page .main .efficacy-wrapper {
  max-width: 1030px;
  margin-bottom: 40px;
  margin-inline: auto;
  padding-inline: 0;
}
.efficacy-page .main .efficacy-heading {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
}
.efficacy-page .main .efficacy-heading--sub {
  margin-block: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .efficacy-heading--sub {
    margin-block: 28px;
  }
}
.efficacy-page .main .efficacy__pn-reduction {
  margin-bottom: 40px;
}
.efficacy-page .main .efficacy__pn-reduction .pn-reduction__image {
  width: 100%;
  max-width: 461px;
  margin: 0 auto 40px;
}
.efficacy-page .main .efficacy__pn-reduction .pn-reduction__image img {
  width: 100%;
}
.efficacy-page .main .efficacy__pn-reduction .pn-reduction__content .fda__text {
  margin: 0;
}
.efficacy-page .main .efficacy__pn-reduction .pn-reduction__content .fda__text:first-child {
  margin-bottom: 32px;
  padding-right: 4px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .efficacy__pn-reduction .pn-reduction__content .fda__text:first-child {
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .efficacy__pn-reduction .pn-reduction__content .fda__text:first-child {
    max-width: 45ch;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .efficacy__pn-reduction .pn-reduction__content .fda__text {
    max-width: 46ch;
  }
}
.efficacy-page .main .efficacy__pn-reduction + .footnotes + .footnotes {
  padding-right: 3px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .efficacy__pn-reduction + .footnotes + .footnotes {
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .efficacy__pn-reduction {
    display: grid;
    grid-template-columns: minmax(0, 461px) minmax(0, 100%);
    gap: 32px;
  }
  .efficacy-page .main .efficacy__pn-reduction .pn-reduction__image {
    margin-bottom: 0;
  }
}
.efficacy-page .main .efficacy-card__content {
  padding: 32px 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.15);
}
.efficacy-page .main .efficacy-card--pn-volume {
  position: relative;
  margin-block: 0;
  padding-block: 40px 20px;
}
.efficacy-page .main .efficacy-card--pn-volume::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -50%;
  left: calc((100vw - 100%) / -2);
  width: 100vw;
  height: 200%;
  background-image: url("/assets/images/refresh/efficacy/background-card.png");
  background-position: center;
  background-size: cover;
}
.efficacy-page .main .efficacy-card--pn-volume .efficacy-card__image-container {
  height: 70px;
  margin-bottom: 12px;
}
.efficacy-page .main .efficacy-card--pn-volume .efficacy-card__image-container .efficacy-card__image {
  width: auto;
  height: 100%;
}
.efficacy-page .main .efficacy-card--pn-volume .efficacy-heading--sub {
  padding-right: 7px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 768px) {
  .efficacy-page .main .efficacy-card--pn-volume .efficacy-heading--sub {
    padding-right: 0;
    font-size: 24px;
  }
}
.efficacy-page .main .efficacy-card--pn-volume .efficacy-paragraph {
  color: #000;
}
.efficacy-page .main .efficacy-card--pn-volume .efficacy-card__content {
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
@media screen and (min-width: 768px) {
  .efficacy-page .main .efficacy-card--pn-volume .efficacy-card__content {
    padding: 36px 40px;
  }
}
.efficacy-page .main .efficacy-card--pn-volume .efficacy-card__button {
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
  padding: 12px 32px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .efficacy-page .main .efficacy-card--pn-volume .efficacy-card__button {
    max-width: 247px;
  }
}
@media screen and (min-width: 768px) {
  .efficacy-page .main .efficacy-card--pn-volume {
    padding-block: 60px 20px;
  }
  .efficacy-page .main .efficacy-card--pn-volume::before {
    top: -20%;
    left: 0;
    width: 100%;
    height: 160%;
  }
  .efficacy-page .main .efficacy-card--pn-volume + .footnotes {
    margin-left: 15px;
  }
}
.efficacy-page .main .pn-volume-image {
  margin-bottom: 24px;
}
.efficacy-page .main .footnotes--volume {
  max-width: 141ch;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .footnotes--volume {
    margin-left: 10px;
  }
}
.efficacy-page .main .gradient-divider {
  width: 100%;
  height: 8px;
  margin-block: 40px;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(207, 240, 251, 0) 0%, #6faec3 51.56%, rgba(207, 240, 251, 0) 100%);
}
.efficacy-page .main .gradient-divider--pn-volume {
  display: none;
  margin-block: 0;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .gradient-divider--pn-volume {
    display: block;
  }
}
.efficacy-page .main .fda-complement .efficacy__banner {
  margin-bottom: 24px;
}
.efficacy-page .main .fda-complement .efficacy__banner .banner__content {
  padding-inline: 20px;
}
.efficacy-page .main .fda-complement .efficacy__banner .callout {
  max-width: 66ch;
}
.efficacy-page .main .fda-complement .efficacy__banner--volume {
  width: 100%;
}
.efficacy-page .main .fda-complement .efficacy__banner--volume .banner__content {
  gap: 0;
  justify-content: center;
  padding-inline: 0;
}
.efficacy-page .main .fda-complement .efficacy__banner--volume .callout {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-complement .efficacy__banner {
    margin-bottom: 16px;
  }
  .efficacy-page .main .fda-complement .efficacy__banner--volume {
    margin-top: 0;
    margin-bottom: 32px;
  }
  .efficacy-page .main .fda-complement .efficacy__banner--volume .callout {
    max-width: unset;
    font-size: 30px;
  }
}
.efficacy-page .main .fda-complement .response-duration__img-container {
  max-width: 1008px;
  margin-top: 32px;
  margin-bottom: 32px;
  margin-inline: auto;
}
.efficacy-page .main .fda-complement .efficacy-wrapper {
  max-width: 1008px;
  margin-bottom: 0;
}
.efficacy-page .main .fda-complement .efficacy-heading--sub {
  margin-block: 8px;
  line-height: 18px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-complement .efficacy-heading--sub {
    margin-block: 5px;
  }
}
.efficacy-page .main .fda-complement .footnotes.footnotes--volume-first .f-sup {
  left: 3px;
}
.efficacy-page .main .fda-complement .footnotes.footnotes--volume-middle .f-sup {
  left: -1px;
}
.efficacy-page .main .fda-complement .footnotes.footnotes--volume-last {
  max-width: 138ch;
  padding-right: 6px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-complement .footnotes.footnotes--volume-last {
    padding-right: 0;
  }
}
.efficacy-page .main .pn-volume .efficacy-heading--sub {
  margin-top: 0;
  margin-bottom: 12px;
}
.efficacy-page .main .pn-volume .heading {
  margin-bottom: 24px;
}
.efficacy-page .main .pn-volume .box {
  margin-block: 0 24px;
}
.efficacy-page .main .pn-volume .box__title {
  padding: 10px 20px;
  padding-right: 0;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .efficacy-page .main .pn-volume .box__title {
    padding: 20px;
    font-size: 20px;
  }
}
.efficacy-page .main .pn-volume .box + .footnotes {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .efficacy-page .main .pn-volume .box {
    margin-bottom: 40px;
  }
}
.efficacy-page .main .pn-volume .efficacy-link {
  margin-block: 24px 0;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .pn-volume .efficacy-wrapper {
    margin-bottom: 60px;
  }
}
.efficacy-page .main .efficacy-heading.volume {
  margin-bottom: 8px;
}
.efficacy-page .main .efficacy-heading.volume + .efficacy-heading--sub {
  margin-top: 0;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .efficacy-heading.volume {
    margin-bottom: 24px;
  }
}
.efficacy-page .main .fda-response .heading {
  margin-top: 40px;
  font-size: 24px;
  letter-spacing: -0.6px;
}
.efficacy-page .main .fda-response .heading sup {
  top: -7px;
}
.efficacy-page .main .fda-response .heading sup.symbol {
  top: -12px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-response .heading {
    margin-top: 60px;
    margin-bottom: 50px;
    font-size: 32px;
    letter-spacing: unset;
  }
}
.efficacy-page .main .fda-response .fourth-graphic {
  max-width: 1000px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-response .efficacy-link {
    margin-block: 32px;
  }
}
.efficacy-page .main .fda-response .footnotes.footnotes-fda-response {
  padding-left: 5px;
}
.efficacy-page .main .fda-response .footnotes.footnotes-fda-response .f-sup {
  left: -6px;
}
.efficacy-page .main .fda-response .footnotes.footnotes-fda-response-last {
  padding-left: 5px;
}
.efficacy-page .main .fda-response .footnotes-container {
  padding-inline: 5px;
}
.efficacy-page .main .fda-response .footnotes-container--last .footnotes:first-child .f-sup {
  left: -1px;
}
.efficacy-page .main .fda-response .footnotes-container--last .footnotes:last-child {
  padding-left: 14px;
}
.efficacy-page .main .fda-response .footnotes-container--last .footnotes:last-child .f-sup {
  left: 0;
}
.efficacy-page .main .fda-response .footnotes-container--last + .efficacy-link {
  margin-block: 32px 0;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-response .footnotes-container--last {
    padding-left: 35px;
  }
  .efficacy-page .main .fda-response .footnotes-container--last + .efficacy-link {
    margin-left: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-response .footnotes-container {
    padding-right: 0;
  }
  .efficacy-page .main .fda-response .footnotes-container .footnotes {
    max-width: 135ch;
  }
}
.efficacy-page .main .fda-response .efficacy__banner {
  margin-bottom: 32px;
}
.efficacy-page .main .fda-response .efficacy__banner .banner__content {
  padding: 24px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-response .efficacy__banner .banner__content {
    padding: 24px 32px;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-response .efficacy__banner {
    max-width: 1080px;
  }
}
.efficacy-page .main .fda-response .efficacy-heading.heading-fda-response {
  margin-block: 0 20px;
}
.efficacy-page .main .fda-response .efficacy-heading--sub.subheading-fda-response {
  margin-block: 0;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #594059;
}
.efficacy-page .main .fda-response .efficacy-wrapper {
  max-width: 1080px;
  margin-bottom: 0;
}
.efficacy-page .main .fda-response .efficacy-subheading {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  letter-spacing: -1.3px;
}
@media screen and (min-width: 768px) {
  .efficacy-page .main .fda-response .efficacy-subheading {
    letter-spacing: unset;
  }
}
.efficacy-page .main .fda-response .gradient-divider {
  display: block;
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-response .gradient-divider {
    margin-bottom: 32px;
  }
}
.efficacy-page .main .fda-response .box {
  max-width: 1055px;
}
.efficacy-page .main .fda-response .box__header {
  padding: 8px 20px;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .fda-response .box__header {
    padding: 20px;
  }
}
.efficacy-page .main .fda-response .box__title {
  font-size: 9px;
}
@media screen and (min-width: 500px) {
  .efficacy-page .main .fda-response .box__title {
    font-size: 20px;
  }
}
.efficacy-page .main .fda-response .box__content {
  padding-right: 12px;
  padding-block: 40px;
}
.efficacy-page .main .patient-case .efficacy-wrapper {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .patient-case .efficacy-wrapper {
    max-width: 1136px;
    padding-left: 50px;
  }
}
.efficacy-page .main .patient-case .efficacy-card--slide {
  width: 100%;
  max-width: 306px;
  height: auto;
  padding: 32px 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.15);
}
.efficacy-page .main .patient-case .efficacy-card__title {
  margin-bottom: 22px;
  font-size: 20px;
  line-height: normal;
  color: #870051;
}
.efficacy-page .main .patient-case .efficacy-card__list {
  padding-left: 15px;
}
.efficacy-page .main .patient-case .efficacy-card__list-item {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
.efficacy-page .main .patient-case .efficacy-card__list-item::marker {
  color: #870051;
}
.efficacy-page .main .patient-case .efficacy-card__footnotes {
  line-height: 18px;
}
.efficacy-page .main .patient-case .efficacy-card--full {
  max-width: 100%;
  margin-top: 32px;
}
.efficacy-page .main .patient-case .efficacy-card--full .efficacy-card__content {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .patient-case .efficacy-card--full {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .patient-case .efficacy-card--slide {
    max-width: 337px;
  }
}
.efficacy-page .main .patient-case .efficacy-paragraph {
  margin-left: 0;
}
.efficacy-page .main .patient-case swiper-container {
  --swiper-pagination-color: #870051;
  --swiper-pagination-bullet-inactive-color: #529cb5;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 10px;
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (min-width: 1128px) {
  .efficacy-page .main .patient-case swiper-container {
    max-width: 1106px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: calc((100vw - 1106px) / 2 + 20px);
  }
}
.efficacy-page .main .patient-case swiper-container::part(pagination) {
  bottom: 0;
}
.efficacy-page .main .patient-case swiper-container::part(wrapper) {
  padding-top: 24px;
  padding-bottom: 34px;
  padding-inline: 20px;
}
@media screen and (min-width: 1128px) {
  .efficacy-page .main .patient-case swiper-container::part(wrapper) {
    padding-inline: 10px;
  }
}
.efficacy-page .main .patient-case swiper-container::part(bullet-active) {
  width: 10px;
  height: 10px;
}
.efficacy-page .main .patient-case swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
}
.efficacy-page .main .patient-case .efficacy-images .images__container {
  max-width: 550px;
  margin-inline: auto;
}
.efficacy-page .main .patient-case .efficacy-images .images__container img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .efficacy-page .main .patient-case .efficacy-images {
    display: flex;
    margin-bottom: 40px;
  }
  .efficacy-page .main .patient-case .efficacy-images .images__container {
    max-width: 50%;
  }
}
@media screen and (min-width: 450px) {
  .efficacy-page .references br {
    display: none;
  }
}

/*
  Refresh Header Styles
*/
.site__header--adjust-z-index .nav__subnav {
  z-index: 6;
}

/* stylelint-disable no-descending-specificity */
/* stylelint-disable declaration-block-no-shorthand-property-overrides */
.nf1-pn .heading::after {
  margin-top: 12px;
}
.nf1-pn .heading--hide-underline::after {
  display: none;
}
.nf1-pn__prevalent {
  margin-top: 0;
  padding-top: 0;
}
.nf1-pn__prevalent .heading {
  margin-top: 40px;
  font-size: 24px;
}
@media screen and (min-width: 764px) {
  .nf1-pn__prevalent .heading {
    margin-top: 48px;
    font-size: 32px;
  }
}
.nf1-pn__prevalent-header-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-block: 0 53.5px;
}
.nf1-pn__prevalent-header-container-content {
  width: 244.7px;
  margin-inline: auto;
  padding-block: 41.49px;
  padding-inline: 19.77px;
  background-color: #860152;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container-content {
    margin-inline: 0;
  }
}
.nf1-pn__prevalent-header-container-title {
  position: relative;
  line-height: normal;
  text-align: left;
}
.nf1-pn__prevalent-header-container-title::after {
  content: "";
  width: 80.541px;
  height: 2px;
  margin-top: 24px;
  margin-inline: auto;
  background-color: #559cb5;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container-title::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-51%);
    width: 2px;
    height: 80.541px;
    margin: 0;
  }
}
.nf1-pn__prevalent-header-container-title sup {
  top: -8px;
}
.nf1-pn__prevalent-header-container-title p {
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container-title p {
    max-width: 53ch;
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container-title {
    max-width: 45ch;
    padding-right: 64px;
    text-align: left;
  }
}
.nf1-pn__prevalent-header-container .color--dark-purple-75 {
  line-height: normal;
}
.nf1-pn__prevalent-header-container h3 {
  width: 207.7px;
  margin-inline: auto;
  font-size: 13.9px;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container h3 {
    font-size: 15.6px;
  }
}
.nf1-pn__prevalent-header-container .gradient-text {
  margin-bottom: 0;
  font-size: 24.84px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-shadow: 0 8px 12px rgba(89, 64, 89, 0.1);
  background: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  /* background: linear-gradient(
    85deg,
    #cb77a9 -0.43%,
    #8faac8 57.09%,
    #274f5d 112.26%
    );
  background-clip: text;

  -webkit-text-fill-color: transparent; */
}
.nf1-pn__prevalent-header-container .gradient-text span {
  display: block;
  font-size: 79.075px;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container .gradient-text span {
    font-size: 70.54px;
  }
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container .gradient-text {
    font-size: 27.843px;
  }
}
@media screen and (max-width: 768px) {
  .nf1-pn__prevalent-header-container .gradient-text {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    margin-top: 18px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn__prevalent-header-container .gradient-text {
    margin-inline: 0;
  }
  .nf1-pn__prevalent-header-container .gradient-text + .color--dark-purple-75 {
    margin-top: -20px;
  }
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-header-container {
    flex-direction: row;
    gap: 64px;
    align-items: center;
    justify-content: space-between;
    max-width: 1030px;
    margin-block: 0 46px;
    margin-inline: auto;
  }
}
.nf1-pn__prevalent-hystory-title {
  max-width: 1030px;
  margin-inline: auto;
  line-height: normal;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-hystory-title {
    margin-bottom: 15px;
  }
}
.nf1-pn__prevalent-hystory-card {
  margin-top: 20px;
  padding-block: 34px 12px;
  padding-inline: 20px;
  border-radius: 20px 0 20px 20px;
}
.nf1-pn__prevalent-hystory-card .card {
  max-width: 323px;
  margin-inline: auto;
  padding: 18px 0;
  padding-left: 0;
  background-color: transparent;
}
.nf1-pn__prevalent-hystory-card .card.bottom-line {
  position: relative;
}
.nf1-pn__prevalent-hystory-card .card.bottom-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 168px;
  height: 5px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 100vw;
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-hystory-card .card.bottom-line::after {
    top: 50%;
    right: 0;
    left: unset;
    transform: translateY(-50%);
    width: 5px;
    height: 168px;
    margin: 0;
  }
}
.nf1-pn__prevalent-hystory-card .card__icon {
  height: 80px;
  margin-bottom: 34px;
  margin-inline: auto;
}
.nf1-pn__prevalent-hystory-card .card.group .card__icon {
  width: 55.491px;
}
.nf1-pn__prevalent-hystory-card .card.calendar .card__icon {
  width: 122px;
}
.nf1-pn__prevalent-hystory-card .card.graph {
  padding-right: 0;
}
.nf1-pn__prevalent-hystory-card .card.graph .card__icon {
  width: 90.204px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn__prevalent-hystory-card .card.graph .card__title {
    max-width: 176px;
    margin-inline: auto;
  }
}
.nf1-pn__prevalent-hystory-card .card__title {
  margin: auto;
  color: #594059;
}
.nf1-pn__prevalent-hystory-card .card__title br {
  display: none;
}
.nf1-pn__prevalent-hystory-card .card__title span {
  font-weight: 500;
}
@media screen and (min-width: 1023px) {
  .nf1-pn__prevalent-hystory-card .card__title {
    width: 296px;
    margin-inline: auto;
  }
}
.nf1-pn__prevalent-hystory-card .card__content {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .nf1-pn__prevalent-hystory-card .card {
    padding: 0;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1023px) {
  .nf1-pn__prevalent-hystory-card .card {
    padding: 18px;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .nf1-pn__prevalent-hystory-card {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 1030px;
    margin: 0;
    margin-inline: auto;
    padding-block: 52px 32px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn__prevalent-hystory-card {
    --width: 16%;
    --height: 56px;
    position: relative;
    padding-inline: 20px;
  }
  .nf1-pn__prevalent-hystory-card::after {
    content: "";
    position: absolute;
    top: calc(var(--height) * -1);
    right: 0;
    width: var(--width);
    height: var(--height);
    background-color: #eef6f8;
    border-radius: 20px 20px 0 0;
  }
  .nf1-pn__prevalent-hystory-card::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: calc(var(--height) * -1 + 2.2rem);
    right: calc(var(--width) - 1.8rem);
    width: 50px;
    height: 50px;
    background-color: #eef6f8;
    border-radius: 100vw;
    -webkit-mask-image: radial-gradient(circle 10px at 0 0, transparent 0, transparent 20px, black 21px);
            mask-image: radial-gradient(circle 10px at 0 0, transparent 0, transparent 20px, black 21px);
  }
}
@media screen and (min-width: 1050px) {
  .nf1-pn__prevalent-hystory-card {
    --width: 19%;
  }
}
@media screen and (min-width: 1100px) {
  .nf1-pn__prevalent-hystory-card {
    --width: 21.5%;
  }
}
.nf1-pn__prevalent-hystory-footnotes {
  max-width: 1230px;
  margin-top: 20px;
}
.nf1-pn__prevalent-hystory-footnotes .footnotes:last-child {
  max-width: 1117px;
  margin-top: 2px;
  margin-inline: auto;
}
.nf1-pn__prevalent-hystory-footnotes .footnotes:not(.footnotes:last-child) {
  position: relative;
  max-width: 1126px;
  margin-inline: auto;
  padding-left: 4.7px;
  background: transparent;
}
.nf1-pn__prevalent-hystory-footnotes .footnotes:not(.footnotes:last-child) sup:first-of-type {
  position: absolute;
  top: 4.7px;
  left: 0;
}
.nf1-pn__concern {
  margin-top: 60px;
}
.nf1-pn__concern .pediatric-symptoms .heading {
  font-size: 24px;
}
@media screen and (min-width: 764px) {
  .nf1-pn__concern .pediatric-symptoms .heading {
    font-size: 32px;
  }
}
.nf1-pn__concern-heading {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: normal;
}
@media screen and (min-width: 764px) {
  .nf1-pn__concern-heading {
    font-size: 32px;
  }
}
.nf1-pn__concern-subheading {
  margin-bottom: 12px;
  line-height: normal;
  color: #210022;
}
@media screen and (min-width: 764px) {
  .nf1-pn__concern-subheading {
    margin-bottom: 16px;
  }
}
.nf1-pn__concern .bg-color--garnet-75 {
  border-radius: 12px;
}
.nf1-pn__concern .index-page__fasting .gradient-card {
  padding-block: 24px;
  padding-inline: 35px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
}
@media screen and (min-width: 764px) {
  .nf1-pn__concern .index-page__fasting .gradient-card {
    padding-block: 30px;
    padding-inline: 0;
  }
}
.nf1-pn__concern section.index-page__fasting {
  max-width: 1030px;
  margin-bottom: 0;
}
.nf1-pn__concern .gradient-card-title--secondary {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #fff;
}
@media screen and (min-width: 764px) {
  .nf1-pn__concern .gradient-card-title--secondary {
    font-size: 24px;
  }
}
.nf1-pn__concern-text {
  max-width: 1030px;
  margin-bottom: 20px;
  margin-inline: 0;
  line-height: normal;
}
.nf1-pn__concern-image {
  max-width: 1030px;
  margin-inline: auto;
}
.nf1-pn__concern .wrapper--wider {
  margin-top: 32px;
}
.nf1-pn__concern .wrapper--wider .footnotes {
  position: relative;
  max-width: 1161px;
  margin-inline: auto;
  padding-left: 4.7px;
  background: transparent;
}
.nf1-pn__concern .wrapper--wider .footnotes sup:first-of-type {
  position: absolute;
  top: 4.7px;
  left: 0;
}
@media screen and (max-width: 400px) {
  .nf1-pn__concern .wrapper--wider .footnotes {
    max-width: 51ch;
  }
}
.nf1-pn .footnotes {
  color: #594059;
}
.nf1-pn .dilemma {
  margin-top: 60px;
  padding-top: 0;
}
.nf1-pn .dilemma__tabs {
  max-width: 1030px;
  margin: auto;
}
.nf1-pn .dilemma__tabs ul.tabs[role=tablist] {
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-y: scroll;
  display: flex;
  align-items: center;
  height: 3.125rem;
  margin: 0;
  padding: 0.3125rem 0;
  background-color: transparent;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.nf1-pn .dilemma__tabs [role=tabpanel] {
  padding: 0;
}
.nf1-pn .dilemma__tabs [role=tablist] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.875rem;
  height: 100%;
  padding-right: 0;
  padding-left: 0;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.125rem;
  color: #210021;
  border: none;
  border-bottom: 5px solid transparent;
  transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma__tabs [role=tablist] a {
    font-size: 24px;
  }
}
.nf1-pn .dilemma__tabs [role=tablist] [aria-selected] {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #b24399;
  background-color: #fff;
  border-bottom: 5px solid #b24399;
  border-radius: 1px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma__tabs [role=tablist] [aria-selected] {
    font-size: 24px;
  }
}
.nf1-pn .dilemma__tabs .tab-br {
  display: none;
}
@media screen and (min-width: 390px) {
  .nf1-pn .dilemma__tabs .tab-br {
    display: block;
  }
}
@media screen and (min-width: 392px) {
  .nf1-pn .dilemma__tabs .tab-br {
    display: none;
  }
}
.nf1-pn .dilemma .nf1-pn__concern-subheading {
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 20px;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .nf1-pn__concern-subheading {
    margin-bottom: 17px;
    font-size: 24px;
  }
}
.nf1-pn .dilemma .after-subheading {
  margin-bottom: 32px;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .after-subheading {
    margin-bottom: 48px;
    font-size: 24px;
  }
}
.nf1-pn .dilemma .wrapper-custom {
  max-width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .nf1-pn .dilemma .wrapper-custom {
    max-width: calc(100% - 146px);
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .wrapper-custom {
    max-width: calc(100% - 70px);
  }
}
@media screen and (min-width: 1340px) {
  .nf1-pn .dilemma .wrapper-custom {
    max-width: 1240px;
  }
}
.nf1-pn .dilemma__box {
  margin-top: 1rem;
  padding: 32px 20px;
  background-color: #eef6f8;
  border-radius: 16px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma__box_image {
    max-width: 370.3px;
    padding-top: 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.nf1-pn .dilemma__box.graphic {
  padding: 0;
  padding-bottom: 40px;
}
.nf1-pn .dilemma__box.graphic .content-wrapper {
  padding: 40px 40px 51px 20px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma__box.graphic .content-wrapper {
    max-width: 457.6px;
    padding: 0;
  }
}
.nf1-pn .dilemma__box.graphic .desktop-divider {
  display: none;
}
@media screen and (min-width: 1212px) {
  .nf1-pn .dilemma__box.graphic .desktop-divider {
    display: block;
    width: 1px;
    height: 66px;
    margin-top: 20px;
    background-color: #fff;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma__box.graphic {
    display: flex;
    justify-content: space-between;
    padding: 40px;
  }
}
.nf1-pn .dilemma__box_heading {
  margin-bottom: 20px;
  padding-right: 20px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.nf1-pn .dilemma__box_heading_content sup {
  top: -0.7em;
}
.nf1-pn .dilemma__box_heading sup {
  top: -0.3em;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .nf1-pn .dilemma__box .lists {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
}
.nf1-pn .dilemma__box ul.first {
  margin-bottom: 24px;
}
.nf1-pn .dilemma__box ul.first :last-child {
  padding-bottom: 0;
}
.nf1-pn .dilemma__box ul.first li {
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .nf1-pn .dilemma__box ul.first {
    max-width: 568px;
    margin-bottom: 0;
  }
}
.nf1-pn .dilemma__box ul.second {
  margin-top: 24px;
}
.nf1-pn .dilemma__box ul.second :last-child {
  padding-bottom: 0;
}
.nf1-pn .dilemma__box ul.second li {
  padding-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .nf1-pn .dilemma__box ul.second {
    max-width: 568px;
    margin-top: 0;
  }
}
.nf1-pn .dilemma__box ul li {
  margin-left: 22px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
}
.nf1-pn .dilemma__box ul li::marker {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .nf1-pn .dilemma__box {
    padding: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .wrapper-dilemma {
    padding-right: 0;
    padding-left: 0;
  }
}
.nf1-pn .dilemma .wrapper-dilemma-gray {
  /* @media screen and (min-width: 1440px) {
    padding-left: 205px;
    padding-right: 205px;
  } */
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .wrapper-dilemma-gray {
    padding-right: 105px;
    padding-left: 105px;
  }
}
.nf1-pn .dilemma .box {
  margin-top: 24.42px;
  margin-bottom: 20px;
}
.nf1-pn .dilemma .box__border {
  border-top-left-radius: 4.552px;
}
.nf1-pn .dilemma .box__border-content {
  border-bottom-left-radius: 4.552px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box__border-content {
    border-bottom-left-radius: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box__border {
    border-top-left-radius: 12px;
  }
}
.nf1-pn .dilemma .box__header {
  padding: 7.58px;
  border-top-left-radius: 4.552px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box__header {
    padding: 20px;
    border-top-left-radius: 12px;
  }
}
.nf1-pn .dilemma .box__title {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box__title {
    font-size: 24px;
  }
}
.nf1-pn .dilemma .box__content {
  padding: 3.91px 0 0 8px;
  border-bottom-left-radius: 4.552px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box__content {
    padding-top: 10.32px;
    padding-right: 109px;
    padding-left: 50px;
    border-bottom-left-radius: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .box {
    margin-bottom: 36px;
  }
}
.nf1-pn .dilemma .footnotes-container {
  margin-top: 20px;
  margin-bottom: 60px;
}
.nf1-pn .dilemma .footnotes {
  position: relative;
}
.nf1-pn .dilemma .footnotes.modifier-padding {
  padding-bottom: 2px;
  padding-left: 4px;
}
.nf1-pn .dilemma .footnotes.modifier-padding .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 8px;
}
.nf1-pn .dilemma .footnotes sup {
  top: -5px;
}
.nf1-pn .dilemma .gradient-divider {
  display: none;
  width: 100%;
  height: 8px;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(207, 240, 251, 0) 0%, #6faec3 51.56%, rgba(207, 240, 251, 0) 100%);
}
@media screen and (min-width: 1024px) {
  .nf1-pn .dilemma .gradient-divider {
    display: block;
    margin-top: 64px;
    margin-bottom: 60px;
  }
}
.nf1-pn .dilemma .dilemma__boc_content sup {
  top: -6px;
  font-size: 11px;
}
.nf1-pn .dilemma .dilemma__boc_content sup.symbol {
  top: -4px;
  font-size: 14px;
}
.nf1-pn .discover {
  padding-top: 80px;
}
.nf1-pn .discover__icons {
  margin-bottom: 122px;
}
.nf1-pn .discover__icons :last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1176px) {
  .nf1-pn .discover__icons {
    display: flex;
    gap: 40px;
  }
}
.nf1-pn .discover__icons_wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
.nf1-pn .discover__icons_wrapper_icon {
  width: 102px;
}
.nf1-pn .discover__icons_wrapper_text sup {
  top: -0.7em;
}
@media screen and (min-width: 1176px) {
  .nf1-pn .discover__icons_wrapper {
    max-width: 386px;
    margin-bottom: 0;
  }
}
.nf1-pn .discover__operable {
  position: relative;
  max-width: 615px;
  margin: auto;
  margin-bottom: 40px;
  padding: 52px 35px 20px;
  background-color: #e9e6e9;
  border-radius: 12px;
}
.nf1-pn .discover__operable_image {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 102px;
}
.nf1-pn .discover__operable_text {
  line-height: normal;
  text-align: center;
}
.nf1-pn .discover__operable_text sup {
  top: -0.7em;
}
.nf1-pn .discover .support-page__prescribed {
  max-width: 1030px;
  margin: auto;
  margin-bottom: 8px;
}
.nf1-pn .discover .support-page__prescribed .wrapper {
  width: 100%;
  max-width: unset;
}
.nf1-pn .discover .support-page__prescribed .prescribed__border-gradient {
  background: linear-gradient(130deg, rgb(33, 61, 71) 4%, white 25%, white 80%, rgb(33, 61, 71) 88%);
}
@media screen and (min-width: 500px) {
  .nf1-pn .discover .support-page__prescribed .prescribed__border-gradient {
    background: linear-gradient(160deg, rgb(33, 61, 71) 0%, white 23%, white 83%, rgb(33, 61, 71) 100%);
  }
}
.nf1-pn .discover .support-page__prescribed .prescribed__card {
  background: linear-gradient(90deg, white 0% #eef6f8 50%, white 100%);
}
.nf1-pn .discover .prescribed__card-title {
  margin-bottom: 0;
  font-family: "ITC Franklin Gothic Std Condensed", sans-serif;
  font-size: 30px;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .discover .prescribed__card-title {
    width: unset;
    max-width: 819px;
  }
}
.nf1-pn .discover .footnotes {
  max-width: 1030px;
  margin: auto;
  margin-bottom: 80px;
}
.nf1-pn #isi-position {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .nf1-pn #isi-position {
    margin-top: 96px;
  }
}
.nf1-pn .appprove_medication_section {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 50px;
}
.nf1-pn .appprove_medication_section__conteiner {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  /* Float */
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
.nf1-pn .appprove_medication_section__conteiner::before {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: 13px;
  left: -19px;
  width: 704px;
  height: 425px;
  opacity: 0.6;
  background-image: url("/assets/images/moa-study-design/fda-approved-mobile-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(15px);
}
@media screen and (min-width: 768px) {
  .nf1-pn .appprove_medication_section__conteiner::before {
    bottom: -150px;
    left: 0;
    height: 600px;
    opacity: 0.8;
    background-image: url("/assets/images/moa-study-design/fda-approved-desktop-img.png");
    background-position: center;
    background-size: cover;
    filter: blur(10px);
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .appprove_medication_section__conteiner::before {
    bottom: -150px;
    left: 185px;
    height: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .appprove_medication_section__conteiner {
    padding-block: 36.5px;
    padding-inline: 40px;
  }
}
.nf1-pn .appprove_medication_section__conteiner-img {
  width: 72px;
  height: 77.143px;
}
.nf1-pn .appprove_medication_section__content {
  margin-top: 12px;
}
.nf1-pn .appprove_medication_section__desc {
  margin-top: 24px;
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .appprove_medication_section__desc {
    width: 100%;
    max-width: 811px;
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.nf1-pn .appprove_medication_section__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .appprove_medication_section__button {
    width: 171px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn .appprove_medication_section {
    margin-top: 28px;
    margin-bottom: 100px;
  }
}
.nf1-pn .inside-box {
  margin-top: 20px;
}
.nf1-pn .inside-box-last {
  padding-bottom: 15.64px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .inside-box-last {
    padding-bottom: 20px;
  }
}
.nf1-pn .callout-image__card {
  margin-top: 36px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .callout-image__card {
    margin-top: 0;
  }
}
.nf1-pn .ages-notes {
  max-width: 347px;
}
@media screen and (min-width: 391px) {
  .nf1-pn .ages-notes {
    max-width: 1161px;
  }
}
.nf1-pn .callout {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .callout {
    margin-bottom: 100px;
  }
}
.nf1-pn .surgical-dilemma-heading {
  font-size: 24px;
}
@media screen and (min-width: 764px) {
  .nf1-pn .surgical-dilemma-heading {
    font-size: 32px;
  }
}
.nf1-pn .nf1-pn-br-mobile {
  display: block;
}
@media screen and (min-width: 391px) {
  .nf1-pn .nf1-pn-br-mobile {
    display: none;
  }
}
.nf1-pn .pediatric-symptoms-info .feature span {
  font-weight: 500;
  color: #b24399;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nf1-pn .pediatric-symptoms-info h2.info-wrapper {
  margin-top: 24px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
  font-style: normal;
  color: #594059;
}
.nf1-pn .pn-diagram-br {
  display: block;
}
@media screen and (min-width: 391px) {
  .nf1-pn .pn-diagram-br {
    display: none;
  }
}
.nf1-pn .info-box-n .intro {
  margin-top: 16px;
  margin-bottom: 16px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: 24px;
  color: #594059;
}
@media screen and (min-width: 1025px) {
  .nf1-pn .info-box-n {
    width: 1030px;
    margin-inline: auto;
  }
}
.nf1-pn .info-box {
  align-items: center;
  margin-top: 16px;
}
.nf1-pn .info-box span {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .nf1-pn .info-box span {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.nf1-pn .info-box .info-heading {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #b24399;
}
@media screen and (min-width: 1025px) {
  .nf1-pn .info-box .info-heading {
    width: 330px;
  }
}
.nf1-pn .info-box .info-text {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1025px) {
  .nf1-pn .info-box .info-text {
    width: 395px;
    font-size: 24px;
  }
}
.nf1-pn .info-box .decoration {
  width: 100%;
  margin: auto;
  margin-block: 16px;
}
@media screen and (min-width: 1025px) {
  .nf1-pn .info-box .decoration {
    transform: rotate(90deg);
    width: 40px;
    height: 2px;
  }
}
@media screen and (min-width: 1025px) {
  .nf1-pn .info-box {
    gap: 39px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: unset;
  }
}
.nf1-pn .BurdenOfN1f1 .heading {
  font-size: 24px;
}
.nf1-pn .BurdenOfN1f1 .heading::after {
  display: none;
}
@media screen and (min-width: 764px) {
  .nf1-pn .BurdenOfN1f1 .heading {
    font-size: 32px;
  }
}
.nf1-pn .BurdenOfN1f1 .heading-secondary {
  margin-bottom: 46px;
  font-family: #594059;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: 24px;
}
.nf1-pn .BurdenOfN1f1 .symptom-unique-list .symptoms-list li {
  margin-bottom: 24px;
  margin-left: 18px;
}
.nf1-pn .BurdenOfN1f1 .symptom-unique-list .symptoms-list li h3 {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: #210021;
}
@media screen and (min-width: 1024px) {
  .nf1-pn .BurdenOfN1f1 .symptom-unique-list {
    display: flex;
    gap: 120px;
  }
}
@media screen and (min-width: 1025px) {
  .nf1-pn .BurdenOfN1f1 {
    width: 1030px;
  }
}
.nf1-pn .pediatric-symptoms-info .feature {
  justify-content: unset;
  width: 100%;
}
.nf1-pn .pediatric-symptoms-info .feature p {
  max-width: 1030px;
}
.nf1-pn .pediatric-symptoms .diagram__description {
  margin-top: 9px;
}
.nf1-pn .gradient-divider {
  display: none;
  width: 100%;
  height: 8px;
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(207, 240, 251, 0) 0%, #6faec3 51.56%, rgba(207, 240, 251, 0) 100%);
}
@media screen and (min-width: 1024px) {
  .nf1-pn .gradient-divider {
    display: block;
    margin-top: 40.18px;
    margin-bottom: 48px;
  }
}
.nf1-pn .internal-nav {
  margin-top: 40px;
  margin-bottom: 24px;
}
.nf1-pn .internal-nav.is--fixed {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .nf1-pn .internal-nav {
    margin-top: 48px;
    margin-bottom: 46px;
  }
}
@media screen and (min-width: 1024px) {
  .nf1-pn #isi-position {
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  .nf1-pn .pediatric-symptoms--mobile .diagram__figure img {
    width: 183.62px;
    height: 396.32px;
  }
}
@media screen and (max-width: 480px) {
  .nf1-pn .pediatric-symptoms--mobile .diagram__description--secondary {
    max-width: 169px;
    margin-top: 4px;
  }
}
@media screen and (max-width: 1024px) {
  .nf1-pn .pediatric-symptoms .diagram-footer {
    bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .nf1-pn .pediatric-symptoms--mobile .diagram-container {
    padding-bottom: 52.25px;
  }
}
@media screen and (min-width: 1025px) {
  .nf1-pn .pediatric-symptoms-info .info-box p:nth-of-type(2) {
    max-width: 330px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .nf1-pn .pediatric-symptoms .diagram__figure img {
    width: 420.09px;
    height: 593.2px;
  }
}

.sitemap-page .sitemap .parent-link {
  font-family: "ITC Franklin Gothic Std", sans-serif !important;
}
.sitemap-page .sitemap .sitemap__list-item-link {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
}
.sitemap-page .sitemap sup {
  top: -0.06em;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #594059;
}

.safety-page {
  /* Add page element styles below */
}
.safety-page .heading .asterisk {
  top: -5px;
  font-size: 28px;
}
.safety-page .safety__heading {
  line-height: normal;
  color: #594059;
}
.safety-page .safety__subheading {
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1200px) {
  .safety-page .safety__section-wrapper {
    padding-right: 108px;
    padding-left: 108px;
  }
}
.safety-page .footnotes {
  line-height: 18px;
  color: #594059;
}
.safety-page .footnotes__modifier-width {
  width: 100%;
  max-width: 45ch;
}
@media screen and (min-width: 768px) {
  .safety-page .footnotes__modifier-width {
    max-width: 100%;
  }
}
.safety-page .footnotes__container {
  margin-bottom: 60px;
  padding-right: 5px;
}
.safety-page .footnotes__container-third-item {
  position: relative;
  width: 100%;
  max-width: 46ch;
}
@media screen and (min-width: 500px) {
  .safety-page .footnotes__container-third-item {
    max-width: 100%;
  }
}
.safety-page .footnotes__container-last-item {
  position: relative;
  width: 100%;
  max-width: 40ch;
  padding-left: 7px;
}
@media screen and (min-width: 500px) {
  .safety-page .footnotes__container-last-item {
    max-width: 100%;
  }
}
.safety-page .footnotes__container .footnotes.modifier-padding {
  position: relative;
  padding-left: 7px;
}
.safety-page .footnotes__container .footnotes.modifier-padding .f-sup {
  position: absolute;
  top: 6px;
  right: calc(100% - 7px);
  font-size: 10px;
}
.safety-page .blue-box {
  margin-block: 32px;
  padding: 60px 20px 40px;
  padding-bottom: 32px;
  border-radius: 16px;
}
.safety-page .blue-box__text {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
.safety-page .blue-box__text sup {
  top: -7px;
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .safety-page .blue-box__text {
    display: flex;
    gap: 10px;
  }
}
.safety-page .blue-box__percentage {
  font-size: 64px;
  line-height: 20px;
}
@media screen and (min-width: 1024px) {
  .safety-page .blue-box__percentage {
    height: 60px;
    line-height: normal;
  }
}
.safety-page .blue-box__desc {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: 24px;
}
@media screen and (min-width: 1024px) {
  .safety-page .blue-box__desc {
    width: 100%;
    max-width: 70ch;
    font-size: 24px;
  }
}
.safety-page .blue-box__list {
  margin-top: 20px;
  padding-left: 24px;
}
.safety-page .blue-box__list-item {
  padding-right: 5px;
  font-size: 18px;
  line-height: 24px;
}
.safety-page .blue-box__list-item:nth-child(3) {
  width: 100%;
  max-width: 28ch;
}
@media screen and (min-width: 500px) {
  .safety-page .blue-box__list-item:nth-child(3) {
    max-width: 100%;
  }
}
.safety-page .blue-box__list-item .footnotes {
  color: #594059;
}
.safety-page .blue-box__list-item .footnotes.modifier-padding {
  position: relative;
  padding-left: 7px;
}
.safety-page .blue-box__list-item .footnotes.modifier-padding .f-sup {
  position: absolute;
  top: 4px;
  right: calc(100% - 7px);
}
.safety-page .blue-box__list .blue-box {
  margin-block: 32px;
  padding: 60px 20px 40px;
  border-radius: 16px;
}
.safety-page .blue-box__list .blue-box__text {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
.safety-page .blue-box__list .blue-box__text sup {
  top: -7px;
  font-size: 13px;
}
.safety-page .blue-box__list .blue-box sup {
  top: -5px;
}
@media screen and (min-width: 1024px) {
  .safety-page .blue-box__list .blue-box {
    padding-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .blue-box {
    padding: 40px;
  }
}
.safety-page .gradient-numbers,
.safety-page .bubble-numbers {
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  padding-top: 20px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .safety-page .gradient-numbers > *,
  .safety-page .bubble-numbers > * {
    margin: calc(24px / 2);
  }
}
.safety-page .gradient-numbers .numbers__divider,
.safety-page .bubble-numbers .numbers__divider {
  width: 80.54px;
  height: 2px;
  background-color: #559cb5;
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-numbers .numbers__divider,
  .safety-page .bubble-numbers .numbers__divider {
    width: 2px;
    height: 80.54px;
  }
}
.safety-page .gradient-numbers .numbers__item,
.safety-page .bubble-numbers .numbers__item {
  gap: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .safety-page .gradient-numbers .numbers__item > *,
  .safety-page .bubble-numbers .numbers__item > * {
    margin: calc(16px / 2);
  }
}
@media screen and (min-width: 768px) {
  .safety-page .gradient-numbers .numbers__item,
  .safety-page .bubble-numbers .numbers__item {
    flex-direction: row;
    align-items: center;
  }
}
.safety-page .gradient-numbers .number,
.safety-page .bubble-numbers .number {
  align-items: flex-start;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 64px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #b24399;
  text-shadow: 0 8px 12px rgba(89, 64, 89, 0.1);
  leading-trim: both;
  text-edge: cap;
  -webkit-text-fill-color: unset;
}
.safety-page .gradient-numbers .number__text,
.safety-page .bubble-numbers .number__text {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  line-height: normal;
  text-align: left;
}
.safety-page .gradient-numbers .number__text sup,
.safety-page .bubble-numbers .number__text sup {
  top: -6px;
}
@media screen and (min-width: 768px) {
  .safety-page .gradient-numbers .number__text,
  .safety-page .bubble-numbers .number__text {
    max-width: 21ch;
  }
}
.safety-page .gradient-numbers .number-sub,
.safety-page .bubble-numbers .number-sub {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #594059;
  text-shadow: 0 8px 12px rgba(89, 64, 89, 0.1);
}
.safety-page .gradient-numbers .number-complement,
.safety-page .bubble-numbers .number-complement {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}
.safety-page .gradient-numbers .number__container,
.safety-page .bubble-numbers .number__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-numbers,
  .safety-page .bubble-numbers {
    flex-direction: row;
  }
}
.safety-page .gradient-numbers {
  gap: 40px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .safety-page .gradient-numbers > * {
    margin: calc(40px / 2);
  }
}
@media screen and (min-width: 768px) {
  .safety-page .gradient-numbers .numbers__item {
    gap: 45.5px;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .safety-page .gradient-numbers .numbers__item > * {
      margin: calc(45.5px / 2);
    }
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-numbers .numbers__item {
    padding-left: 29.5px;
  }
}
.safety-page .gradient-numbers .numbers__divider {
  width: 208.99px;
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-numbers .numbers__divider {
    width: 2px;
    height: 95.4px;
  }
}
.safety-page .gradient-numbers .number__text {
  width: 100%;
  max-width: 16ch;
  font-size: 18px;
  color: #594059;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .safety-page .gradient-numbers .number__text {
    max-width: 21ch;
  }
}
.safety-page .gradient-numbers .number-sub {
  margin-top: -15px;
  color: #594059;
}
.safety-page .gradient-numbers .number__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.safety-page .numbers__item-bubbles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .safety-page .numbers__item-bubbles {
    flex-direction: row;
  }
}
.safety-page .Adverse {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin-top: 32px;
  margin-bottom: 40px;
}
.safety-page .Adverse__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .safety-page .Adverse__item {
    flex-direction: row;
    gap: 16px;
  }
}
.safety-page .Adverse__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}
.safety-page .Adverse__circle {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  margin-bottom: 16px;
  color: #fff;
  background-color: #870051;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  .safety-page .Adverse__circle {
    margin-bottom: 0;
  }
}
.safety-page .Adverse__number {
  width: 100%;
  height: 50px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 64px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-shadow: 0 8px 12px rgba(89, 64, 89, 0.1);
  leading-trim: both;
  text-edge: cap;
}
.safety-page .Adverse__sub_number {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-shadow: 0 8px 12px rgba(89, 64, 89, 0.1);
}
.safety-page .Adverse__sub_desc {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-shadow: 0 8px 12px rgba(89, 64, 89, 0.1);
}
.safety-page .Adverse__divider {
  width: 80.54px;
  height: 2px;
  background-color: #559cb5;
}
@media screen and (min-width: 1024px) {
  .safety-page .Adverse__divider {
    width: 2px;
    height: 80.54px;
  }
}
.safety-page .Adverse__text {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  line-height: normal;
  color: #594059;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .safety-page .Adverse__text {
    width: 100%;
    max-width: 42ch;
    font-size: 24px;
  }
}
.safety-page .Adverse__desc {
  width: 100%;
  max-width: 32ch;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #210022;
}
@media screen and (min-width: 500px) {
  .safety-page .Adverse__desc {
    max-width: 100%;
  }
}
@media screen and (min-width: 500px) {
  .safety-page .Adverse__desc_br {
    display: none;
  }
}
.safety-page .Adverse__sup {
  top: -6px;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  .safety-page .Adverse {
    flex-direction: row;
    margin-top: 52px;
    margin-bottom: 40px;
  }
}
.safety-page .bubble-numbers {
  margin-top: 52px;
  margin-bottom: 40px;
}
.safety-page .bubble-numbers .number__container {
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
}
.safety-page .bubble-numbers .number__text {
  width: 100%;
  max-width: 29ch;
  color: #594059;
}
.safety-page .bubble-numbers .number__text sup {
  top: -2px;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .safety-page .bubble-numbers .number__text {
    max-width: 30ch;
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .bubble-numbers .number__text {
    max-width: 20ch;
    font-size: 24px;
  }
}
@media screen and (min-width: 1250px) {
  .safety-page .bubble-numbers .number__text {
    max-width: 28ch;
  }
}
.safety-page .number__desc {
  width: 100%;
  max-width: 31.9ch;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #210022;
}
@media screen and (min-width: 500px) {
  .safety-page .number__desc_br {
    display: none;
  }
}
@media screen and (min-width: 500px) {
  .safety-page .number__desc {
    max-width: 100%;
  }
}
.safety-page .safety__section--first {
  padding-top: 20px;
}
.safety-page .safety__section--first .heading {
  width: 100%;
  max-width: 15ch;
  margin-bottom: 40px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
}
@media screen and (min-width: 500px) {
  .safety-page .safety__section--first .heading {
    max-width: 100%;
  }
}
.safety-page .safety__section--first .safety__heading {
  margin-bottom: 24px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
}
.safety-page .safety__section--first .safety__subheading {
  margin-bottom: 24px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
}
.safety-page .safety__section--first .footnotes__container {
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section--first .footnotes__container {
    margin-bottom: 40px;
  }
}
.safety-page .safety__section--second .heading {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section--second .heading {
    font-size: 32px;
  }
}
.safety-page .safety__section .box .box__title {
  color: #594059;
}
.safety-page .safety__section .box--adverse-reaction {
  margin-block: 24px;
}
.safety-page .safety__section .box--adverse-reaction .symbol {
  font-weight: 600;
}
.safety-page .safety__section .box--adverse-reaction .box__content {
  padding-top: 57px;
  padding-inline: 12px;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .box--adverse-reaction .box__content {
    padding-inline: 20px;
  }
}
.safety-page .safety__section .box--adverse-reaction sup {
  font-size: 12px;
}
.safety-page .safety__section .box--laboratory-abnormality .box__content {
  padding-top: 53px;
}
@media screen and (max-width: 350px) {
  .safety-page .safety__section .box--laboratory-abnormality .box__content {
    padding-inline: 10px 0;
  }
}
.safety-page .safety__section .management-guide__section {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding: 24px;
  background-color: #fff;
  border-radius: 12px;
  /* Float */
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
.safety-page .safety__section .management-guide__section::before {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: -118px;
  left: -177px;
  width: 704px;
  height: 500px;
  opacity: 0.6;
  background-image: url("/assets/images/moa-study-design/fda-approved-mobile-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(15px);
}
@media screen and (min-width: 768px) {
  .safety-page .safety__section .management-guide__section::before {
    bottom: -150px;
    left: 0;
    height: 600px;
    opacity: 0.8;
    background-image: url("/assets/images/moa-study-design/fda-approved-desktop-img.png");
    background-position: center;
    background-size: cover;
    filter: blur(10px);
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__section::before {
    bottom: -258px;
    left: 185px;
    height: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__section {
    padding-block: 20px;
    padding-inline: 40px;
  }
}
.safety-page .safety__section .management-guide__conteiner_img {
  width: 100%;
  margin: 0;
}
.safety-page .safety__section .management-guide__image {
  position: relative;
  width: 44px;
  height: 59.697px;
  margin: 0;
}
.safety-page .safety__section .management-guide__title {
  margin-block: 12px;
  /* M - H3 */
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__title {
    margin-top: 16px;
    margin-bottom: 14px;
    font-size: 24px;
  }
}
.safety-page .safety__section .management-guide__desc {
  width: 100%;
  max-width: 27ch;
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-feature-settings: "liga" off;
  font-weight: 400;
  font-style: normal;
  font-kerning: none;
  line-height: 24px;
  color: #000;
}
@media screen and (min-width: 500px) {
  .safety-page .safety__section .management-guide__desc {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__desc {
    width: 100%;
    max-width: 85ch;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 500px) {
  .safety-page .safety__section .management-guide__break {
    display: none;
  }
}
.safety-page .safety__section .management-guide__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety__section .management-guide__button {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 0;
  }
}
.safety-page .safety__section .gradient-box {
  margin-top: 40px;
  margin-bottom: 60px;
}
.safety-page .safety__section .gradient-box .footnotes sup {
  top: -4px;
  font-size: 7px;
}
.safety-page .safety__section .gradient-box .footnotes.modifier-padding {
  padding-left: 11px;
}
.safety-page .safety__section .gradient-box .footnotes.modifier-padding .f-sup {
  right: calc(100% - 11px);
}
@media screen and (min-width: 1024px) {
  .safety-page-wrapper {
    max-width: 1030px;
    margin: 0 auto;
  }
}
.safety-page .box .box__title {
  color: #594059;
}
.safety-page .box--adverse-reaction {
  margin-block: 24px;
}
.safety-page .box--adverse-reaction .symbol {
  font-weight: 600;
}
.safety-page .management-guide__section {
  position: relative;
  margin-bottom: 60px;
  padding-top: 141.92px;
}
.safety-page .management-guide__section .heading::after {
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__section {
    margin-bottom: 85.46px;
    padding-top: 0;
    padding-right: 141.92px;
  }
}
.safety-page .management-guide__image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  width: 205px;
  height: 205px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__image {
    top: 0;
    right: 0;
    bottom: 0;
    left: unset;
    margin-block: auto;
    margin-inline: 0;
  }
}
.safety-page .management-guide__content {
  gap: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 81px 19px 19px;
  background-color: #eef6f8;
  border-radius: 12px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .safety-page .management-guide__content > * {
    margin: calc(40px / 2);
  }
}
.safety-page .management-guide__content-border {
  padding: 1px;
  background: linear-gradient(180deg, rgb(238, 246, 248) 0%, rgb(238, 246, 248) 45%, rgb(135, 0, 81) 100%);
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__content-border {
    background: linear-gradient(270deg, rgb(238, 246, 248) 0%, rgb(238, 246, 248) 45%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__content {
    flex-direction: row;
    align-items: center;
    padding-top: 31px;
    padding-bottom: 31px;
    padding-inline: 31px;
  }
}
@media screen and (min-width: 1250px) {
  .safety-page .management-guide__content {
    padding-bottom: 8px;
  }
}
.safety-page .management-guide__text {
  max-width: 68ch;
}
.safety-page .management-guide__text .heading {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__text {
    max-width: 48ch;
  }
}
@media screen and (min-width: 1250px) {
  .safety-page .management-guide__text {
    max-width: 68ch;
  }
}
.safety-page .management-guide__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .safety-page .management-guide__button {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 23px;
  }
}
.safety-page .gradient-box {
  margin-top: 40px;
  padding: 1px;
  background: linear-gradient(109deg, rgb(135, 0, 81) 0%, white 23%, white 82%, rgb(135, 0, 81) 100%);
  border-radius: 20px;
}
.safety-page .gradient-box__background {
  padding-block: 19px;
  background-color: white;
  border-radius: 20px;
}
.safety-page .gradient-box__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 20px;
  padding-inline: 20px;
  background: radial-gradient(circle at 50% 50%, #eef6f8, transparent 100%);
}
.safety-page .gradient-box__text {
  max-width: 56ch;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
  line-height: normal;
  color: #8c0f57;
  text-align: center;
}
.safety-page .gradient-box__text .asterisk {
  top: -6px;
  font-size: 24px;
}
.safety-page .gradient-box__text .gradient-box__sup {
  top: -8px;
  font-size: 16px;
}
.safety-page .gradient-box__text .gradient-box__asterisk {
  top: 0;
}
.safety-page .gradient-box__text .gradient-box__symbol {
  top: -8px;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-box__text {
    max-width: 46ch;
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .gradient-box {
    background: linear-gradient(165deg, rgb(135, 0, 81) 0%, white 23%, white 82%, rgb(135, 0, 81) 100%);
  }
}
.safety-page .safety-video {
  position: relative;
  width: 100%;
  max-width: 1103px;
  margin-inline: auto;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  /* Float */
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
.safety-page .safety-video::before {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: 150px;
  left: -177px;
  width: 704px;
  height: 500px;
  opacity: 0.4;
  background-image: url("/assets/images/moa-study-design/fda-approved-mobile-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(15px);
}
@media screen and (min-width: 768px) {
  .safety-page .safety-video::before {
    bottom: -150px;
    left: 0;
    height: 600px;
    opacity: 0.8;
    background-image: url("/assets/images/moa-study-design/fda-approved-desktop-img.png");
    background-position: center;
    background-size: cover;
    filter: blur(10px);
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .safety-video::before {
    bottom: -258px;
    left: 185px;
    height: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .safety-video__conteiner-img {
    height: 276px;
    border-radius: 12px 0 0 12px;
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .safety-video__img {
    border-radius: 12px 0 0 12px;
  }
}
.safety-page .safety-video__title {
  margin-block: 16px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety-video__title {
    font-size: 24px;
  }
}
.safety-page .safety-video__desc {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 24px;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety-video__desc {
    width: 100%;
    max-width: 40ch;
    margin-bottom: 14.5px;
    line-height: 25.2px;
  }
}
@media screen and (min-width: 1220px) {
  .safety-page .safety-video__desc {
    max-width: 60ch;
  }
}
.safety-page .safety-video__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .safety-page .safety-video__button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .safety-page .safety-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
  }
}
@media screen and (min-width: 1024px) {
  .safety-page .safety-video {
    display: grid;
    grid-template-columns: 361px 1fr;
    gap: 40px;
    align-items: center;
    height: 276px;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
  }
}

.dosing-page .footnotes {
  color: #594059;
}
.dosing-page .box {
  --chart-bg: linear-gradient(90deg, #eef6f8 81.73%, #fff 100%);
}
.dosing-page .box--dosage-modifications {
  margin-top: 40px;
}
.dosing-page .box--dosage-modifications .box__title {
  padding-right: 7px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  color: #594059;
}
.dosing-page .box--dosage-modifications .box__content {
  padding-top: 20px;
  padding-inline: 12px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .box--dosage-modifications .box__content {
    padding-top: 50px;
    padding-bottom: 40px;
    padding-inline: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .dosing-page .box--dosage-modifications {
    max-width: 1033px;
    margin-inline: auto;
  }
}
.dosing-page .recommended {
  padding-top: 40px;
  padding-bottom: 40px;
}
.dosing-page .recommended .heading {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  line-height: 32px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended .heading {
    line-height: normal;
  }
}
.dosing-page .recommended__grid {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__grid {
    display: grid;
    grid-template-columns: 610px auto;
    gap: 20px;
    width: 100%;
    max-width: 1030px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1440px) {
  .dosing-page .recommended__grid {
    margin-right: auto;
    margin-left: auto;
  }
}
.dosing-page .recommended__heading {
  margin-top: 40px;
  margin-bottom: 0;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__heading {
    margin-top: 0;
    margin-bottom: 12px;
  }
}
.dosing-page .recommended__sup-heading {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #908091;
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__sup-heading {
    font-size: 21px;
  }
}
.dosing-page .recommended__descripcion {
  width: 100%;
  max-width: 31ch;
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
@media screen and (min-width: 450px) {
  .dosing-page .recommended__descripcion {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__descripcion {
    max-width: 55ch;
    margin-bottom: 20px;
  }
}
.dosing-page .recommended__content-img {
  position: relative;
  display: grid;
  grid-template-columns: 55px auto;
  gap: 20px;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.dosing-page .recommended__content-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -20.505096vw;
  right: -20px;
  width: 100vw;
  height: 127.44vw;
  opacity: 0.7;
  background-image: url("/assets/images/dosing/circle-bg-mobile1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .dosing-page .recommended__content-img::before {
    top: -10.2vw;
    right: -10vw;
    height: 68vw;
    background-image: url("/assets/images/dosing/circle-bg-desktop.png");
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__content-img::before {
    top: -285px;
    right: -100%;
    width: 819px;
    height: 559px;
    opacity: 0.85;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__content-img {
    grid-template-columns: 55px 534px;
    margin-bottom: 0;
  }
}
.dosing-page .recommended__div-img {
  width: 55px;
}
.dosing-page .recommended__monitor {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  line-height: normal;
  color: #594059;
}
.dosing-page .recommended__capsule {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 31.89px;
  padding-right: 3.98px;
  padding-bottom: 31.89px;
  background-color: #fff;
  border-radius: 12.756px;
}
@media screen and (min-width: 600px) {
  .dosing-page .recommended__capsule {
    padding: 31.89px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended__capsule {
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .recommended {
    padding-top: 48px;
  }
}
.dosing-page .administration {
  padding-top: 29px;
}
.dosing-page .administration__heading {
  max-width: 25ch;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 400px) {
  .dosing-page .administration__heading {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__heading {
    max-width: 1030px;
    margin-inline: auto;
  }
}
.dosing-page .administration__grid {
  margin-top: 8.44px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__grid {
    display: grid;
    grid-template-columns: 398px minmax(0, 729px);
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1030px;
    margin-top: 0;
    margin-bottom: 0;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1150px) {
  .dosing-page .administration__grid {
    grid-template-columns: 398px 729px;
  }
}
.dosing-page .administration__content-img {
  width: 100%;
  max-width: 350px;
  margin-right: auto;
  margin-bottom: -72px;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__content-img {
    position: relative;
    z-index: 2;
    max-width: 350px;
    margin-bottom: 0;
    margin-left: 30px;
  }
}
.dosing-page .administration__content-text {
  width: 100%;
  max-width: 350px;
  margin-right: auto;
  margin-left: auto;
  padding: 114px 20px 20px;
  background-color: #eef6f8;
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__content-text {
    max-width: 100%;
    margin-right: 50px;
    margin-left: -102px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 102px;
  }
}
.dosing-page .administration__subtitle {
  width: 100%;
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 16px;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 375px) {
  .dosing-page .administration__subtitle {
    font-size: 20px;
  }
}
.dosing-page .administration__list span {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-weight: 600;
}
.dosing-page .administration__item {
  margin-bottom: 8px;
  margin-left: 15px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__item:nth-child(1) {
    max-width: 61ch;
  }
}
.dosing-page .administration__item:nth-child(2) {
  max-width: 29ch;
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__item:nth-child(2) {
    max-width: 55ch;
  }
}
.dosing-page .administration__item:last-of-type {
  margin-bottom: 0;
}
.dosing-page .administration .administration__list .administration__item::marker {
  width: 100%;
  font-size: 26px;
  color: #559cb5;
}
.dosing-page .administration__title-list {
  position: relative;
  display: grid;
  grid-template-columns: 190px 60px;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 32ch;
  margin-bottom: 8px;
  padding-top: 19px;
  padding-bottom: 19px;
  background: linear-gradient(270deg, rgba(135, 0, 81, 0) 5.19%, rgba(135, 0, 81, 0.1) 52.55%, rgba(135, 0, 81, 0) 99.92%);
}
.dosing-page .administration__title-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(135, 0, 81, 0) 0%, rgb(135, 0, 81) 50%, rgba(135, 0, 81, 0) 100%);
}
.dosing-page .administration__title-list::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(135, 0, 81, 0) 0%, rgb(135, 0, 81) 50%, rgba(135, 0, 81, 0) 100%);
}
@media screen and (min-width: 1024px) {
  .dosing-page .administration__title-list {
    grid-template-columns: 329px 60px;
    width: 100%;
    max-width: 607px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.dosing-page .administration__heading-list {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #870051;
}
.dosing-page__flexibility {
  margin-top: 28px;
}
.dosing-page__flexibility .dosing-page__border-gradient {
  overflow: hidden;
  background: linear-gradient(115deg, rgb(135, 0, 81) 10%, white 24%, white 77%, rgb(135, 0, 81) 100%);
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .dosing-page__flexibility .dosing-page__border-gradient {
    background: linear-gradient(160deg, rgb(135, 0, 81) 0%, white 23%, white 83%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page__flexibility .dosing-page__border-gradient {
    max-width: calc(100% - 140px);
  }
}
@media screen and (min-width: 1100px) {
  .dosing-page__flexibility .dosing-page__border-gradient {
    max-width: 1033px;
  }
}
.dosing-page__flexibility .bg-color--white {
  height: 100%;
  margin: 1px;
  padding-block: 20px;
  border-radius: inherit;
}
.dosing-page__flexibility .dosing-page-content-with-gradient {
  padding: 20px;
  padding-right: 18px;
  padding-left: 18px;
  background: radial-gradient(circle at 50% 50%, #eef6f8, transparent 100%);
}
@media screen and (min-width: 1024px) {
  .dosing-page__flexibility .dosing-page-content-with-gradient {
    padding-block: 20px;
  }
}
.dosing-page__flexibility .dosing-page__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.dosing-page__flexibility .dosing-page__card-title {
  width: 100%;
  max-width: 22ch;
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #8c0f57;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .dosing-page__flexibility .dosing-page__card-title {
    max-width: 26ch;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page__flexibility .dosing-page__card-title {
    max-width: 34ch;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page__flexibility .dosing-page__card-title {
    max-width: 40ch;
    margin-top: 0;
    font-size: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page__flexibility {
    margin-top: 20px;
  }
}
.dosing-page .advise {
  margin-top: 32px;
  margin-bottom: 40px;
}
.dosing-page .advise__heading {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .dosing-page .advise__heading {
    max-width: 1030px;
    margin-right: auto;
    margin-bottom: 12px;
    margin-left: auto;
    font-size: 24px;
    text-align: left;
  }
}
.dosing-page .advise__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.dosing-page .advise__grid::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 50%;
  width: 2px;
  height: 80.541px;
  background-color: #559cb5;
}
@media screen and (min-width: 375px) {
  .dosing-page .advise__grid::after {
    top: 38%;
  }
}
@media screen and (min-width: 390px) {
  .dosing-page .advise__grid::after {
    top: 22%;
  }
}
@media screen and (min-width: 472px) {
  .dosing-page .advise__grid::after {
    top: 0;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page .advise__grid::after {
    position: absolute;
    top: 0;
    right: 50%;
    width: 2px;
    height: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .advise__grid {
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1030px;
    height: 80px;
    margin-right: auto;
    margin-left: auto;
  }
}
.dosing-page .advise__content {
  width: 100%;
  max-width: 20ch;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 500px) {
  .dosing-page .advise__content {
    max-width: 100%;
  }
}
.dosing-page .advise__span {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .dosing-page .advise {
    margin-top: 73px;
    margin-bottom: 50px;
  }
}
.dosing-page .requirements {
  margin-bottom: 40px;
}
.dosing-page .requirements .requirements-box {
  --chart-bg: linear-gradient(90deg, #eef6f8 32.47%, #fff 100%);
}
.dosing-page .requirements .requirements-box .box__border {
  border-top-left-radius: 12px;
}
.dosing-page .requirements .requirements-box .box__border-content {
  border-bottom-left-radius: 12px;
}
.dosing-page .requirements .requirements-box .box__header {
  border-top-left-radius: 12px;
}
.dosing-page .requirements .requirements-box .box__title {
  color: #594059;
}
.dosing-page .requirements .requirements-box .box__content {
  padding: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 9.36px;
  border-bottom-left-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .requirements .requirements-box .box__content {
    padding-top: 20px;
    padding-bottom: 0;
    padding-left: 87.55px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .requirements .requirements-box .requirements-box__pic {
    width: 100%;
    max-width: 855px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .requirements .requirements-box {
    max-width: 1033px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .requirements {
    margin-bottom: 50px;
  }
}
.dosing-page .evaluation {
  padding-top: 0;
}
.dosing-page .evaluation__heading {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std Compressed", sans-serif;
  font-size: 24px;
  line-height: normal;
  color: #594059;
  leading-trim: both;
  text-edge: cap;
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__heading {
    font-size: 24px;
  }
}
.dosing-page .evaluation__descripcion {
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
}
.dosing-page .evaluation__descripcion:nth-child(2) {
  max-width: 32ch;
}
@media screen and (min-width: 500px) {
  .dosing-page .evaluation__descripcion:nth-child(2) {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page .evaluation__descripcion:nth-child(2) {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__descripcion:nth-child(2) {
    max-width: 120ch;
  }
}
.dosing-page .evaluation__descripcion:nth-child(3) {
  max-width: 32.5ch;
}
@media screen and (min-width: 500px) {
  .dosing-page .evaluation__descripcion:nth-child(3) {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page .evaluation__descripcion:nth-child(3) {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__descripcion:nth-child(3) {
    max-width: 120ch;
  }
}
.dosing-page .evaluation__descripcion:nth-child(4) {
  max-width: 32.5ch;
}
@media screen and (min-width: 500px) {
  .dosing-page .evaluation__descripcion:nth-child(4) {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page .evaluation__descripcion:nth-child(4) {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__descripcion:nth-child(4) {
    max-width: 120ch;
  }
}
.dosing-page .evaluation__descripcion:last-of-type {
  max-width: 32.5ch;
  margin-bottom: 0;
}
@media screen and (min-width: 500px) {
  .dosing-page .evaluation__descripcion:last-of-type {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dosing-page .evaluation__descripcion:last-of-type {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__descripcion:last-of-type {
    max-width: 120ch;
  }
}
.dosing-page .evaluation__span {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-weight: 600;
}
.dosing-page .evaluation__grid-footnotes {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .evaluation__grid-footnotes {
    margin-top: 60px;
  }
}
.dosing-page .evaluation .footnotes {
  line-height: 18px;
  color: #594059;
}
.dosing-page .bsa {
  padding-top: 60px;
}
.dosing-page .bsa .heading {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .heading {
    font-size: 32px;
  }
}
.dosing-page .bsa .bsa__box {
  margin-top: 32px;
}
.dosing-page .bsa .bsa__box .box__title {
  width: 100%;
  max-width: 17ch;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-weight: 600;
  color: #594059;
}
@media screen and (min-width: 500px) {
  .dosing-page .bsa .bsa__box .box__title {
    max-width: 100%;
  }
}
.dosing-page .bsa .bsa__box .box__content {
  padding: 0;
  padding-top: 22px;
  padding-bottom: 12px;
  padding-left: 12px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box .box__content {
    padding-top: 50px;
    padding-bottom: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box {
    max-width: 1033px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}
.dosing-page .bsa .bsa__box-reaction {
  margin-top: 32px;
  margin-bottom: 32px;
}
.dosing-page .bsa .bsa__box-reaction .box__content {
  padding: 0;
  padding-top: 22px;
  padding-bottom: 12px;
  padding-left: 12px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box-reaction .box__content {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box-reaction .bsa__box-reaction-img {
    width: 100%;
    max-width: 990px;
  }
}
.dosing-page .bsa .bsa__box-reaction .box__title {
  width: 100%;
  max-width: 25ch;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-weight: 600;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box-reaction .box__title {
    max-width: 60ch;
  }
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__box-reaction {
    max-width: 1033px;
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto;
  }
}
.dosing-page .bsa .bsa__grid-footnotes {
  color: #594059;
}
.dosing-page .bsa .bsa__grid-footnotes .footnotes {
  position: relative;
  line-height: 18px;
}
.dosing-page .bsa .bsa__grid-footnotes .footnotes.modifier-padding {
  padding-bottom: 3px;
  padding-left: 4px;
}
.dosing-page .bsa .bsa__grid-footnotes .footnotes.modifier-padding:last-child {
  padding-bottom: 0;
}
.dosing-page .bsa .bsa__grid-footnotes .footnotes .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 6px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .bsa .bsa__grid-footnotes {
    margin-left: 105px;
  }
}
.dosing-page .interaction {
  margin-top: 32px;
  margin-bottom: 60px;
}
.dosing-page .interaction__footer-subtitle {
  margin-bottom: 10px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .dosing-page .interaction__footer-subtitle {
    margin-bottom: 20px;
  }
}
.dosing-page .interaction__footer-subtitle--modif {
  margin-top: 32px;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .interaction__footer-subtitle--modif {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.dosing-page .interaction__footer-content:last-of-type {
  margin-bottom: 20px;
}
.dosing-page .interaction .interaction__grid-footnotes .footnotes {
  position: relative;
  line-height: 18px;
}
.dosing-page .interaction .interaction__grid-footnotes .footnotes.modifier-padding {
  padding-bottom: 3px;
  padding-left: 4px;
}
.dosing-page .interaction .interaction__grid-footnotes .footnotes.modifier-padding:last-child {
  padding-bottom: 0;
}
.dosing-page .interaction .interaction__grid-footnotes .footnotes .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 6px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .interaction {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
.dosing-page .modifications .heading {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .modifications .heading {
    font-size: 32px;
  }
}
.dosing-page .modifications .table--cardiomyopathy .table__header-cell:first-child {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 22.201px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}
.dosing-page .modifications .table--cardiomyopathy .table__header-cell:nth-child(2) {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
}
.dosing-page .modifications .table--cardiomyopathy .table__subtitle {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
}
.dosing-page .modifications__grid-footnotes {
  margin-top: 44px;
  margin-bottom: 60px;
}
.dosing-page .modifications__grid-footnotes .footnotes {
  position: relative;
  line-height: 18px;
}
.dosing-page .modifications__grid-footnotes .footnotes.modifier-padding {
  padding-bottom: 3px;
  padding-left: 4px;
}
.dosing-page .modifications__grid-footnotes .footnotes.modifier-padding:last-child {
  padding-bottom: 0;
}
.dosing-page .modifications__grid-footnotes .footnotes .f-sup {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 6px;
}
@media screen and (min-width: 1024px) {
  .dosing-page .modifications__grid-footnotes {
    margin-left: 105px;
  }
}

.patient-journey-page {
  /* Add page element styles below */
}
@media screen and (max-width: 400px) {
  .patient-journey-page .patient-journey__overview .wrapper {
    max-width: calc(100% - 37px);
  }
}
.patient-journey-page .patient-journey__overview .heading {
  width: 100%;
  max-width: 17ch;
  margin-top: 40px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
}
@media screen and (min-width: 500px) {
  .patient-journey-page .patient-journey__overview .heading {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__overview .heading {
    margin-top: 48px;
  }
}
.patient-journey-page .patient-journey__overview_text {
  margin-top: 12px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .patient-journey-page .patient-journey__overview_text {
    margin-bottom: 45.6px;
  }
}
.patient-journey-page .patient-journey__overview-heading {
  margin-bottom: 20.52px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  font-kerning: none;
  line-height: 24px;
  color: #870051;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__overview-heading {
    margin-bottom: 28.6px;
    font-size: 24px;
    line-height: normal;
  }
}
.patient-journey-page .patient-journey__results_subheading {
  margin-top: 24px;
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
.patient-journey-page .patient-journey__results_subheading.last {
  margin-bottom: 40px;
}
.patient-journey-page .patient-journey__results_subheading sup {
  top: -8px;
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results_subheading {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .patient-journey-page .patient-journey__results_subheading {
    margin-bottom: 20px;
  }
}
.patient-journey-page .patient-journey__results_paragraph {
  margin-bottom: 24px;
}
.patient-journey-page .patient-journey__results .footnotes-container {
  margin-bottom: 40px;
}
.patient-journey-page .patient-journey__results .footnotes-container .footnotes {
  position: relative;
  color: #594059;
}
.patient-journey-page .patient-journey__results .footnotes-container .footnotes.modifier-padding {
  padding-bottom: 3px;
  padding-left: 4px;
}
.patient-journey-page .patient-journey__results .footnotes-container .footnotes.modifier-padding:last-child {
  padding-bottom: 0;
}
.patient-journey-page .patient-journey__results .footnotes-container .footnotes .f-sup {
  position: absolute;
  top: 5px;
  left: -5px;
  font-size: 12px;
}
.patient-journey-page .patient-journey__results .footnotes-container .footnotes:last-child {
  padding-left: 4px;
}
@media screen and (min-width: 500px) {
  .patient-journey-page .patient-journey__results .footnotes-container .footnotes__results-break {
    display: none;
  }
}
.patient-journey-page .patient-journey__results .footnotes-container .footnotes__results-break-blurred {
  display: none;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .footnotes-container .footnotes__results-break-blurred {
    display: block;
  }
}
.patient-journey-page .patient-journey__results .management-guide__section {
  position: relative;
  margin-bottom: 60px;
  padding-top: 156.92px;
}
.patient-journey-page .patient-journey__results .management-guide__section .heading::after {
  margin-top: 12px;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__section {
    margin-bottom: 85.46px;
    padding-top: 0;
    padding-right: 141.92px;
  }
}
.patient-journey-page .patient-journey__results .management-guide__image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  width: 205px;
  height: 205px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__image {
    top: 0;
    right: 0;
    bottom: 0;
    left: unset;
    margin-block: auto;
    margin-inline: 0;
  }
}
.patient-journey-page .patient-journey__results .management-guide__content {
  gap: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 81px 31px 31px;
  background-color: #eef6f8;
  border-radius: 12px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .patient-journey-page .patient-journey__results .management-guide__content > * {
    margin: calc(40px / 2);
  }
}
.patient-journey-page .patient-journey__results .management-guide__content-border {
  padding: 1px;
  background: linear-gradient(180deg, rgb(238, 246, 248) 0%, rgb(238, 246, 248) 20%, rgb(135, 0, 81) 100%);
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__content-border {
    background: linear-gradient(270deg, rgb(238, 246, 248) 0%, rgb(238, 246, 248) 45%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__content {
    flex-direction: row;
    align-items: center;
    padding-top: 31px;
    padding-bottom: 31px;
    padding-inline: 31px;
  }
}
.patient-journey-page .patient-journey__results .management-guide__text {
  max-width: 73ch;
}
.patient-journey-page .patient-journey__results .management-guide__text .heading {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__text {
    max-width: 48ch;
  }
}
@media screen and (min-width: 1100px) {
  .patient-journey-page .patient-journey__results .management-guide__text {
    max-width: 60%;
  }
}
@media screen and (min-width: 1300px) {
  .patient-journey-page .patient-journey__results .management-guide__text {
    max-width: 73ch;
  }
}
.patient-journey-page .patient-journey__results .management-guide__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient-journey__results .management-guide__button {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 23px;
  }
}
.patient-journey-page .guide {
  width: 100%;
}
.patient-journey-page .guide__conteiner {
  position: relative;
  width: 100%;
  max-width: 1106px;
  margin-inline: auto;
}
.patient-journey-page .guide__conteiner::before {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: 25.77px;
  left: -177px;
  width: 704px;
  height: 640px;
  opacity: 0.6;
  background-image: url("/assets/images/patient-journey/bg-card-patient-mobile.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(15px);
}
@media screen and (min-width: 768px) {
  .patient-journey-page .guide__conteiner::before {
    bottom: -150px;
    left: 0;
    height: 600px;
    opacity: 0.8;
    background-image: url("/assets/images/patient-journey/bg-card-patient-desktop.png");
    background-position: center;
    background-size: cover;
    filter: blur(10px);
  }
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .guide__conteiner::before {
    bottom: -258px;
    left: 185px;
    height: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .guide__conteiner {
    display: flex;
    flex-direction: row;
    gap: 64px;
  }
}
.patient-journey-page .guide__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
  max-width: 521px;
  margin-bottom: 20px;
  margin-inline: auto;
  padding-block: 32px;
  padding-inline: 24px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
.patient-journey-page .guide__card:nth-child(2) {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .guide__card {
    gap: 0;
    margin-bottom: 0;
    padding-inline: 40px;
  }
}
.patient-journey-page .guide__conteiner_img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .guide__conteiner_img {
    margin-bottom: 12px;
  }
}
.patient-journey-page .guide__title {
  /* M - H3 */
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
  leading-trim: both;
  text-edge: cap;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .guide__title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.patient-journey-page .guide__desc {
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  font-kerning: none;
  line-height: 24px; /* 133.333% */
  color: #000;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .guide__desc {
    margin-bottom: 24px;
  }
}
.patient-journey-page .guide__desc-dosing {
  width: 100%;
  max-width: 28ch;
}
@media screen and (min-width: 500px) {
  .patient-journey-page .guide__desc-dosing {
    max-width: 100%;
  }
}
.patient-journey-page .guide__desc-journal {
  width: 100%;
  max-width: 23ch;
}
@media screen and (min-width: 500px) {
  .patient-journey-page .guide__desc-journal {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .guide__desc-journal {
    height: 72px;
  }
}
.patient-journey-page .guide__image-dosing {
  width: 44px;
  height: 59.698px;
}
.patient-journey-page .guide__image-journal {
  width: 57px;
  height: 61.071px;
}
.patient-journey-page .guide__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .guide__button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.patient-journey-page .patient_support_section {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}
.patient-journey-page .patient_support_section__card {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding-block: 40px;
  padding-inline: 24px;
  background: #fff;
  border-radius: 12px;
  /* Float */
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
.patient-journey-page .patient_support_section__card::before {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: 50px;
  left: -177px;
  width: 704px;
  height: 348px;
  opacity: 0.6;
  background-image: url("/assets/images/patient-journey/bg-card-patient-mobile.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(15px);
}
@media screen and (min-width: 768px) {
  .patient-journey-page .patient_support_section__card::before {
    bottom: -150px;
    left: 0;
    height: 600px;
    opacity: 0.8;
    background-image: url("/assets/images/patient-journey/bg-card-patient-desktop.png");
    background-position: center;
    background-size: cover;
    filter: blur(10px);
  }
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient_support_section__card::before {
    bottom: -258px;
    left: 185px;
    height: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient_support_section__card {
    padding-block: 44px;
    padding-inline: 40px;
  }
}
.patient-journey-page .patient_support_section__conteiner_img {
  width: 100%;
  max-width: 299px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient_support_section__conteiner_img {
    max-width: 214px;
  }
}
.patient-journey-page .patient_support_section__image {
  width: 100%;
}
.patient-journey-page .patient_support_section__desc {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  font-kerning: none;
  line-height: 24px;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient_support_section__desc {
    width: 100%;
    max-width: 90ch;
    margin-bottom: 24px;
  }
}
.patient-journey-page .patient_support_section__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient_support_section__button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1024px) {
  .patient-journey-page .patient_support_section {
    margin-top: 80px;
  }
}
.patient-journey-page #isi-position {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .patient-journey-page #isi-position {
    margin-top: 0;
  }
}

.support-page .footnotes {
  color: #594059;
}
.support-page .helping {
  padding-top: 40px;
}
.support-page .helping__heading {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 32px;
  line-height: 32px;
  color: #870051;
}
@media screen and (min-width: 1024px) {
  .support-page .helping__heading {
    line-height: normal;
  }
}
.support-page .helping__content {
  display: flex;
  flex-direction: column;
  gap: 29px;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .support-page .helping__content {
    display: unset;
    display: grid;
    grid-template-columns: 500px auto;
    height: auto;
  }
}
@media screen and (min-width: 1240px) {
  .support-page .helping__content {
    grid-template-columns: 822px 299px;
    gap: 69.5px;
    height: 144px;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .helping__text {
    width: 47ch;
  }
}
@media screen and (min-width: 1240px) {
  .support-page .helping__text {
    width: 76ch;
  }
}
.support-page .helping__text sup {
  top: 0;
  font-size: 100%;
}
.support-page .helping__image {
  width: 100%;
  margin-bottom: 0;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .support-page .helping__image {
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
  }
}
.support-page .helping__icon {
  width: 299px;
  height: 86px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .support-page .helping {
    padding-top: 49px;
  }
}
.support-page .team {
  padding-top: 39px;
}
.support-page .team__heading {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}
@media screen and (min-width: 1024px) {
  .support-page .team__heading {
    font-size: 32px;
  }
}
.support-page .team__subtitle {
  margin-bottom: 32px;
}
.support-page .team__image {
  aspect-ratio: 1/1;
  width: 190px;
  height: 190px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .support-page .team__image {
    margin-right: 0;
    margin-left: 0;
  }
}
.support-page .team__image--modif {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .support-page .team__image--modif {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .team__container {
    margin-left: 0;
  }
}
@media screen and (min-width: 1440px) {
  .support-page .team__container {
    flex-basis: 820px;
  }
}
.support-page .team__decription {
  margin-top: 0;
  margin-bottom: 6.41px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .support-page .team__decription {
    margin-top: 0;
  }
}
.support-page .team__nav {
  margin-left: 22px;
}
.support-page .team__nav--modif {
  width: 89%;
}
@media screen and (min-width: 1024px) {
  .support-page .team__nav--modif {
    width: 94%;
  }
}
.support-page .team__item {
  margin-bottom: 13px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 22px;
  color: #210022;
}
.support-page .team__item:nth-child(1) {
  max-width: 28ch;
}
@media screen and (min-width: 500px) {
  .support-page .team__item:nth-child(1) {
    width: 100%;
    max-width: 100%;
  }
}
.support-page .team__item:nth-child(2) {
  max-width: 28ch;
}
@media screen and (min-width: 500px) {
  .support-page .team__item:nth-child(2) {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .team__item:nth-child(3) {
    width: 100%;
    max-width: 45ch;
  }
}
.support-page .team__item:nth-child(4) {
  max-width: 28ch;
}
@media screen and (min-width: 500px) {
  .support-page .team__item:nth-child(4) {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .team__item:nth-child(4) {
    max-width: 45ch;
  }
}
.support-page .team__item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 1440px) {
  .support-page .team__item {
    margin-bottom: 5px;
  }
}
.support-page .team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .support-page .team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1240px) {
  .support-page .team__grid {
    grid-template-columns: 515px auto;
    gap: 105px;
  }
}
.support-page .team__block {
  display: unset;
  width: 100%;
  margin-left: 0;
}
@media screen and (min-width: 1024px) {
  .support-page .team {
    padding-top: 64px;
  }
}
.support-page .insurance {
  margin-top: 40px;
  margin-bottom: 40px;
}
.support-page .insurance__conteiner {
  padding: 20px;
  background: #eef6f8;
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .support-page .insurance__conteiner {
    padding-left: 105px;
  }
}
.support-page .insurance__flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .support-page .insurance__flex {
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.support-page .insurance__image {
  width: 100%;
  max-width: 53.19px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .support-page .insurance__image {
    margin-bottom: 0;
  }
}
.support-page .insurance__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.support-page .insurance__heading {
  margin-bottom: 4px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .support-page .insurance__heading {
    font-size: 20px;
  }
}
@media screen and (min-width: 1240px) {
  .support-page .insurance__heading {
    font-size: 24px;
  }
}
.support-page .insurance__text {
  width: 100%;
  max-width: 29ch;
  margin-bottom: 0;
}
@media screen and (min-width: 500px) {
  .support-page .insurance__text {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .insurance__text {
    max-width: 81ch;
  }
}
.support-page .insurance__list {
  width: 100%;
  max-width: 29ch;
  margin-left: 10px;
}
@media screen and (min-width: 390px) {
  .support-page .insurance__list {
    margin-left: 25px;
  }
}
@media screen and (min-width: 500px) {
  .support-page .insurance__list {
    max-width: 100%;
  }
}
.support-page .insurance__item {
  margin-bottom: 6px;
  font-size: 18px;
  font-style: normal;
  line-height: 22px;
}
.support-page .insurance__item:nth-child(2) {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .support-page .insurance {
    margin-top: 48px;
    margin-bottom: 60px;
  }
}
.support-page__prescribed {
  margin-bottom: 40px;
}
.support-page__prescribed .prescribed__border-gradient {
  overflow: hidden;
  background: linear-gradient(115deg, rgb(135, 0, 81) 10%, white 24%, white 77%, rgb(135, 0, 81) 100%);
  border-radius: 20px;
}
@media screen and (min-width: 1024px) {
  .support-page__prescribed .prescribed__border-gradient {
    background: linear-gradient(160deg, rgb(135, 0, 81) 0%, white 23%, white 83%, rgb(135, 0, 81) 100%);
  }
}
@media screen and (min-width: 1300px) {
  .support-page__prescribed .prescribed__border-gradient {
    max-width: 1030px;
  }
}
.support-page__prescribed .bg-color--white {
  height: 100%;
  margin: 1px;
  padding-block: 20px;
  border-radius: inherit;
}
.support-page__prescribed .prescribed-content-with-gradient {
  padding: 20px;
  padding-right: 20px;
  padding-left: 20px;
  background: radial-gradient(circle at 50% 50%, #eef6f8, transparent 100%);
}
@media screen and (min-width: 1024px) {
  .support-page__prescribed .prescribed-content-with-gradient {
    padding-block: 20px;
  }
}
.support-page__prescribed .prescribed__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.support-page__prescribed .prescribed__card-text {
  max-width: 26ch;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
  leading-trim: both;
  text-edge: cap;
}
@media screen and (min-width: 500px) {
  .support-page__prescribed .prescribed__card-text br {
    display: none;
  }
}
@media screen and (min-width: 500px) {
  .support-page__prescribed .prescribed__card-text {
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .support-page__prescribed .prescribed__card-text {
    max-width: 61ch;
  }
}
.support-page__prescribed .prescribed__card-link {
  display: block;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
@media screen and (min-width: 1024px) {
  .support-page__prescribed .prescribed__card-link {
    display: inline;
  }
}
.support-page .Acces {
  width: 100%;
  margin-bottom: 40px;
}
.support-page .Acces__conteiner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1106px;
  margin-inline: auto;
}
.support-page .Acces__conteiner::before {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: -7px;
  left: -177px;
  width: 704px;
  height: 640px;
  opacity: 0.6;
  background-image: url("/assets/images/support/bg-acces-mobile.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  filter: blur(15px);
}
@media screen and (min-width: 550px) {
  .support-page .Acces__conteiner::before {
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .support-page .Acces__conteiner::before {
    bottom: -200px;
    height: 1000px;
    opacity: 0.6;
    background-image: url("/assets/images/support/bg-acces-desktop.png");
    background-position: center;
    background-size: cover;
    filter: blur(15px);
  }
}
@media screen and (min-width: 1024px) {
  .support-page .Acces__conteiner::before {
    bottom: -258px;
    left: 185px;
    height: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .Acces__conteiner {
    flex-direction: row;
    gap: 64px;
  }
}
.support-page .Acces__card {
  width: 100%;
  max-width: 521px;
  margin-inline: auto;
  padding: 32px 24px;
  background: #fff;
  -webkit-backdrop-filter: blur(28.75px);
          backdrop-filter: blur(28.75px);
  border-radius: 12px;
  /* Float */
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
@media screen and (min-width: 1024px) {
  .support-page .Acces__card {
    padding: 24px 40px;
  }
}
.support-page .Acces__conteiner_img {
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .support-page .Acces__conteiner_img {
    margin-bottom: 19px;
  }
}
.support-page .Acces__image-acces {
  width: 162px;
  height: 52px;
}
.support-page .Acces__image-pdf {
  width: 64.768px;
  height: 84px;
}
.support-page .Acces__title {
  margin-bottom: 16px;
  /* M - H3 */
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
  leading-trim: both;
  text-edge: cap;
}
@media screen and (min-width: 1024px) {
  .support-page .Acces__title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.support-page .Acces__desc {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic Std", sans-serif;
  font-size: 18px;
  font-feature-settings: "liga" off;
  font-weight: 400;
  font-style: normal;
  font-kerning: none;
  line-height: 24px;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .support-page .Acces__desc {
    margin-bottom: 24px;
  }
}
.support-page .Acces__button {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .support-page .Acces__button {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .Acces {
    margin-bottom: 108px;
  }
}
.support-page .tools .heading {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
}
@media screen and (min-width: 1024px) {
  .support-page .tools .heading {
    font-size: 32px;
  }
}
.support-page .tools__curvy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  max-width: 390px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
}
@media screen and (min-width: 1024px) {
  .support-page .tools__curvy-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 1240px;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .tools__curvy-grid--modif {
    width: 100%;
    margin-bottom: 48px;
  }
}
.support-page .tools__cards {
  background-color: white;
}
.support-page .tools .curvy__card.coming-soon {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
}
.support-page .tools .curvy__card.coming-soon .download-label {
  display: block;
}
.support-page .tools .curvy__card.coming-soon .coming-label {
  pointer-events: none;
}
.support-page .tools .curvy__card_first-block {
  gap: 0;
  padding-left: 24px;
}
.support-page .tools .curvy__card_heading {
  font-family: "ITC Franklin Gothic Std Compressed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  text-edge: cap;
}
.support-page .tools .curvy__card_body {
  height: 129px;
  margin-top: 12px;
  padding-bottom: 0;
  line-height: 25.7px;
}
.support-page .tools .curvy__card .labels {
  margin-top: 24px;
}
.support-page .tools .curvy__card .download-label {
  margin-top: 0;
}
.support-page .tools .curvy__card .download-label a {
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (min-width: 1200px) {
  .support-page .tools .tools__curvy-grid:not(.tools__curvy-grid--modif) .curvy__card_body {
    height: 103px;
  }
}
.support-page .tools__sub-heading {
  margin-top: 20px;
  margin-bottom: 12px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  color: #594059;
  leading-trim: both;
  text-edge: cap;
}
.support-page .tools__desc {
  margin-bottom: 20px;
}
.support-page .video-library {
  overflow: hidden;
}
.support-page .video-library .heading {
  margin-bottom: 16px;
}
.support-page .video-library .heading + p {
  margin-bottom: 16px;
  line-height: normal;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .support-page .video-library .heading + p {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .video-library .heading {
    margin-bottom: 24px;
  }
}
.support-page .video-library .video-player {
  position: relative;
  display: grid;
  grid-template-areas: "list" "player";
  gap: 29px;
}
@media screen and (min-width: 1024px) {
  .support-page .video-library .video-player::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 100px;
    left: -122px;
    display: block;
    width: 577px;
    height: 348px;
    opacity: 0.6;
    background-color: #e1bfd3;
    filter: blur(91.5658px);
    border-radius: 577px;
  }
}
.support-page .video-library .video-player.hidden {
  display: none;
}
.support-page .video-library .video-player .main-video {
  grid-area: player;
}
.support-page .video-library .video-player .main-video__title {
  margin-bottom: 15px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #594059;
}
@media screen and (min-width: 1024px) {
  .support-page .video-library .video-player .main-video__title {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .video-library .video-player .main-video .main-video__bgs {
    position: relative;
  }
  .support-page .video-library .video-player .main-video .main-video__bgs::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -110px;
    right: 0;
    left: 0;
    display: block;
    width: 430px;
    height: 269.234px;
    margin-right: auto;
    margin-left: auto;
    background-image: url("/assets/images/refresh/videos/title-desktop-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .support-page .video-library .video-player .main-video .main-video__bgs::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: -100px;
    display: block;
    width: 430.719px;
    height: 266.893px;
    opacity: 0.6;
    background-color: #aaceda;
    filter: blur(91.5658px);
    border-radius: 430.719px;
  }
}
.support-page .video-library .video-player .main-video__container {
  overflow: hidden;
  max-width: 743px;
  height: 53vw;
  max-height: 400px;
  margin-bottom: 15px;
  border-radius: 12px;
}
.support-page .video-library .video-player .main-video__description,
.support-page .video-library .video-player .main-video .transcript__text .content {
  margin-bottom: 15px;
  padding-right: 3px;
  font-size: 18px;
  line-height: 140%;
  color: #000;
}
.support-page .video-library .video-player .main-video[data-video-id="1"], .support-page .video-library .video-player .main-video[data-video-id="3"] {
  padding-right: 16px;
}
.support-page .video-library .video-player .main-video .transcript__text .content {
  margin-bottom: 0;
  padding: 0 12px;
  transition: all 0.3s ease;
}
.support-page .video-library .video-player .main-video .transcript__text .content.is-open {
  padding: 12px;
}
.support-page .video-library .video-player .videos-list {
  max-height: 350px;
  padding-right: 12px;
  background-color: transparent;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.support-page .video-library .video-player .videos-list::-webkit-scrollbar {
  width: 6px;
}
.support-page .video-library .video-player .videos-list::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 10px 5px 5px transparent;
}
.support-page .video-library .video-player .videos-list::-webkit-scrollbar-thumb {
  background: #870051;
  border-radius: 10px;
}
.support-page .video-library .video-player .videos-list::-webkit-scrollbar-thumb:hover {
  background: #991576;
}
.support-page .video-library .video-player .videos-list__container {
  --margin-top-list: 40px;
  position: relative;
  grid-area: list;
}
.support-page .video-library .video-player .videos-list__container::before {
  --bubble-width: 128vw;
  content: "";
  position: absolute;
  z-index: -1;
  top: -0.42px;
  right: calc(var(--bubble-width) * -0.2);
  transform: rotate(-45deg);
  display: block;
  width: 200vw;
  max-width: var(--bubble-width);
  height: calc(var(--bubble-width) * 0.65);
  max-height: 100%;
  opacity: 0.6;
  background-color: #e1bfd3;
  filter: blur(91.5658px);
  border-radius: 498.716px;
}
@media screen and (min-width: 500px) {
  .support-page .video-library .video-player .videos-list__container::before {
    --bubble-width: 100vw;
    top: 20%;
  }
}
@media screen and (min-width: 600px) {
  .support-page .video-library .video-player .videos-list__container::before {
    top: 30%;
  }
}
@media screen and (min-width: 768px) {
  .support-page .video-library .video-player .videos-list__container::before {
    top: 40%;
  }
}
@media screen and (min-width: 950px) {
  .support-page .video-library .video-player .videos-list__container::before {
    top: 55%;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .video-library .video-player .videos-list__container::before {
    display: none;
  }
}
.support-page .video-library .video-player .videos-list__container::after {
  --bubble-width: 110vw;
  content: "";
  position: absolute;
  z-index: -1;
  top: 60%;
  left: calc(var(--bubble-width) * -0.37);
  transform: rotate(-45deg);
  display: block;
  width: 200vw;
  max-width: var(--bubble-width);
  height: calc(var(--bubble-width) * 0.62);
  max-height: 100%;
  opacity: 0.6;
  background-color: #aaceda;
  filter: blur(91.5658px);
  border-radius: 430.719px;
}
@media screen and (min-width: 500px) {
  .support-page .video-library .video-player .videos-list__container::after {
    --bubble-width: 55vw;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .video-library .video-player .videos-list__container::after {
    top: 27px;
    right: -97px;
    left: unset;
    transform: unset;
    width: 381px;
    height: 266px;
  }
}
.support-page .video-library .video-player .videos-list__container > p {
  margin-top: 0;
  margin-bottom: 8px;
  margin-left: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .support-page .video-library .video-player .videos-list__container > p {
    margin-top: var(--margin-top-list);
  }
}
.support-page .video-library .video-player .videos-list .video-item {
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 5px 9px 20.9px 0 rgba(13, 52, 66, 0.15);
}
.support-page .video-library .video-player .videos-list .video-item:first-child {
  margin-top: 10px;
}
.support-page .video-library .video-player .videos-list .video-item .video-link {
  display: flex;
  gap: 12px;
  padding: 12px;
}
.support-page .video-library .video-player .videos-list .video-item video-thumbnail {
  width: 148.5px;
  height: 80px;
}
.support-page .video-library .video-player .videos-list .video-item .video-information {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 8px;
}
.support-page .video-library .video-player .videos-list .video-item .video-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #870051;
}
.support-page .video-library .video-player .videos-list .video-item .video-duration {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 8px 0;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background-color: #870051;
  border-radius: 4px;
}
.support-page .video-library .video-player .videos-list .video-item--active {
  background-color: #870051;
}
.support-page .video-library .video-player .videos-list .video-item--active .video-title {
  color: #fff;
}
.support-page .video-library .video-player .videos-list .video-item--active .video-duration {
  color: #870051;
  background-color: #fff;
}
.support-page .video-library .video-player .button[data-toggle-transcript] {
  --button-text-color: #870051;
  --button-background-color: #fff;
  --button-border-color: #870051;
  --button-hover-text-color: #fff;
  --button-hover-background-color: linear-gradient(
      0deg,
      rgb(89 64 89 / 40%) 0%,
      rgb(89 64 89 / 40%) 100%
    ),
    #870051;
  --button-hover-border-color: #870051;
  position: relative;
  align-items: center;
  justify-content: start;
  width: 100%;
  max-width: 219px;
  padding: 12px 24px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 22px;
  border-radius: 81px;
}
.support-page .video-library .video-player .button[data-toggle-transcript]::after {
  content: "+";
  position: absolute;
  top: 15px;
  left: 114px;
  display: inline-block;
}
.support-page .video-library .video-player .button[data-toggle-transcript].is-open::after {
  content: "-";
  top: 13px;
}
@media screen and (min-width: 1024px) {
  .support-page .video-library .video-player .button[data-toggle-transcript] {
    max-width: 167px;
  }
}
@media screen and (min-width: 1024px) {
  .support-page .video-library .video-player {
    grid-template-areas: "player list";
    grid-template-columns: 1fr minmax(0, 348px);
    max-width: 1136px;
    margin-right: auto;
    margin-left: auto;
    background-image: url("/assets/images/refresh/videos/main-desktop-bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.support-page .video-library .footnotes {
  margin-top: 56px;
  margin-bottom: 40px;
}
.support-page .parent-readiness-kit .heading {
  margin-bottom: 20px;
  font-family: "ITC Franklin Gothic LT Pro", sans-serif;
}

.video-player .videos-list {
  scroll-behavior: smooth;
  overflow-y: scroll;
}
.video-player .videos-list .video-item--active {
  background-color: #870051;
}
.video-player .videos-list .video-item img {
  max-width: 148px;
}
.video-player .main-video__container {
  width: 100%;
  height: 100%;
}
.video-player .main-video__container .wistia_embed {
  height: 100% !important;
}
.video-player .main-video__container [id^=wistia_chrome_] {
  width: 100% !important;
  height: 100% !important;
}
.video-player .main-video .transcript__text {
  overflow: hidden;
}
.video-player .main-video .transcript__text .content {
  height: 0;
}
.video-player .main-video .transcript__text .content.is-open {
  height: auto;
}

/* {outputFileName:style} */