@charset "UTF-8";
: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: .2s ease-out .1s both f-zoomInUp;
}
.f-zoomOutDown {
  animation: .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: .175s ease-out both f-throwOutUp;
}
.f-throwOutDown {
  animation: .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: .2s ease both f-fadeIn;
  z-index: 2;
}
.f-fadeOut {
  animation: .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: .5s ease both f-fadeSlowIn;
  z-index: 2;
}
.f-fadeSlowOut {
  animation: .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: .2s ease-out both f-fadeFastIn;
  z-index: 2;
}
.f-fadeFastOut {
  animation: .2s ease-out both f-fadeFastOut;
  z-index: 2;
}
@keyframes f-fadeFastIn {
  0% {
    opacity: .75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: .2s ease-out both f-crossfadeIn;
  z-index: 2;
}
.f-crossfadeOut {
  animation: .1s linear .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: .85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}
.f-slideIn.from-prev {
  animation: .85s cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}
.f-slideOut.to-next {
  animation: .85s cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}
.f-slideOut.to-prev {
  animation: .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: .85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}
.f-classicIn.from-prev {
  animation: .85s cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}
.f-classicOut.to-next {
  animation: .85s cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}
.f-classicOut.to-prev {
  animation: .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 .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;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  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%;
}
.fancybox__slide.is-animating > .fancybox__content {
  filter: blur(0px);
  will-change:
    transform,
    width,
    height;
}
.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  user-select: none;
}
.hide-image .fancybox-image {
  opacity: 0;
}
.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: .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 .25s ease;
}
.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, .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: .15s ease-out both f-fadeOut;
}
.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: .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;
  user-select: none;
}
.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  z-index: 40;
  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: .25s ease .1s backwards f-fadeIn;
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: .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: .15s ease forwards f-fadeOut;
}
.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: .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, .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);
  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: 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 > * {
  clip-path: var(--clip-path);
}
.is-modern.in-touch .f-thumbs__slide {
  filter: none;
}
.is-modern.is-resting .f-thumbs__slide {
  transition: all .33s ease;
}
.is-modern.is-resting .f-thumbs__slide > * {
  transition: all .33s ease;
}
.f-thumbs__slide__button {
  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 .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 .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;
  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 .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: .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;
  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: .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;
}
:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}
: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;
  user-select: none;
  pointer-events: none;
}
:root {
  --black: #000000;
  --primary-font:
    Helvetica,
    Arial,
    sans-serif;
  --secondary-font: Verdana;
}
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation: none !important;
    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;
}
em,
i {
  font-style: italic;
}
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;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Thin.ttf);
  font-weight: 100;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Medium.ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Roboto Regular";
  src: url(/assets/fonts/Roboto-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Bold.ttf);
  font-weight: 500;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Regular.ttf);
  font-weight: 600, bold;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Black.ttf);
  font-weight:
    700,
    900,
    bolder;
}
@font-face {
  font-family: "Roboto Black";
  src: url(/assets/fonts/Roboto-Black.ttf);
  font-weight: 900;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: Inter;
  src: url(/assets/fonts/Inter-Black.ttf);
  font-weight: 900;
}
*,
*::before,
*::after {
  font-family:
    Roboto,
    Arial,
    Helvetica,
    sans-serif;
}
:root {
  --margin: 2rem;
}
@media screen and (min-width: 428px) {
  :root {
    --margin: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --margin: 4rem;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --margin: 4.2813rem;
  }
}
@media screen and (min-width: 1366px) {
  :root {
    --margin: 5.2813rem;
  }
}
@media screen and (min-width: 1366px) {
  :root {
    --margin: 8.2813rem;
  }
}
.wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: calc(100% - var(--margin));
}
.wrapper--only-left {
  max-width: calc(100% - var(--margin) / 2);
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .wrapper--only-left--mobile-only {
    max-width: calc(100% - var(--margin));
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1600px) {
  .wrapper--only-left--mobile-only {
    max-width: 90rem !important;
  }
}
.wrapper--only-right {
  max-width: calc(100% - var(--margin) / 2);
  margin-left: 0;
  margin-right: auto;
}
@media screen and (min-width: 1600px) {
  .wrapper {
    max-width: 90rem;
  }
  .wrapper--only-left,
  .wrapper--only-right {
    max-width: calc(100% - (100vw - 90rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .wrapper--desktop-only {
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  line-height: 1.5;
}
h1 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 2.1563rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 2.925rem;
  }
}
h2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5625rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 1.875rem;
    line-height: 2.3438rem;
  }
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7581rem;
}
h4 {
  font-size: 1.25rem;
  line-height: 1.465rem;
}
h5 {
  font-size: 1rem;
  line-height: 1.5rem;
}
p {
  color: #626469;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.3181rem;
}
label a,
p a {
  color: #B41E8C;
  text-decoration: underline;
  font-weight: bold;
}
small {
  font-size: 0.75rem;
  line-height: 0.8788rem;
}
ul li {
  list-style-type: none;
}
ul li::marker {
  display: none;
}
main ul li {
  list-style-type: disc;
}
main ul li::marker {
  color: #48D597;
}
sup.symbol-sup {
  font-size: inherit;
  line-height: 0;
  top: initial;
}
.mobile--only {
  display: block;
}
@media (min-width: 1200px) {
  .mobile--only {
    display: none;
  }
}
.desktop--only {
  display: none;
}
@media (min-width: 1200px) {
  .desktop--only {
    display: block;
  }
}
.text-transform--none {
  text-transform: none;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text--center {
  text-align: center;
}
.text--right {
  text-align: right;
}
.text--left {
  text-align: left;
}
.text--justify {
  text-align: justify;
}
.text--nowrap {
  white-space: nowrap;
}
.text--decoration-underline {
  text-decoration: underline !important;
}
.color--yellow {
  color: #DFDF00;
}
.color--white {
  color: #FFFFFF;
}
.color--green {
  color: #48D597;
}
.color--dark-green {
  color: #00494F;
}
.color--dark-pink {
  color: #B41E8C;
}
.color--blue {
  color: #006F97;
}
.color--slate-gray {
  color: #6D868E;
}
.color--dark-gray {
  color: #626469;
}
.animated--bg {
  --animation-speed: 2.5s;
  --animation-color: rgba(92, 199, 153, 0.4);
  --animation-type: ease-out;
  --animation-origin: left;
  position: relative;
}
.animated--bg--gray {
  --animation-color: rgba(98, 100, 105, 0.4);
}
.animated--bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--animation-color);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: var(--animation-origin);
  transform-origin: var(--animation-origin);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: var(--animation-speed);
  transition-duration: var(--animation-speed);
  -webkit-transition-timing-function: var(--animation-type);
  transition-timing-function: var(--animation-type);
  z-index: -1;
}
.animated--bg.fill-in::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
@media screen and (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .xl\:block {
    display: block;
  }
}
.font-thin {
  font-weight: 200 !important;
}
.button {
  background-color: #B41E8C;
  border-radius: 1.5625rem;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.125rem;
  max-height: 3.125rem;
  padding: 0.9375rem 1.25rem;
  width: max-content;
  -webkit-transition:
    all,
    0.4s,
    ease-in-out 1s ease-in-out;
  -moz-transition:
    all,
    0.4s,
    ease-in-out 1s ease-in-out;
  -ms-transition:
    all,
    0.4s,
    ease-in-out 1s ease-in-out;
  -o-transition:
    all,
    0.4s,
    ease-in-out 1s ease-in-out;
  transition:
    all,
    0.4s,
    ease-in-out 1s ease-in-out;
}
.button::after {
  content: "";
  background-image: url(/assets/icons/icon-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  display: inline-block;
  -webkit-transition:
    all,
    0.4s,
    ease-in-out 1s ease-in-out;
  -moz-transition:
    all,
    0.4s,
    ease-in-out 1s ease-in-out;
  -ms-transition:
    all,
    0.4s,
    ease-in-out 1s ease-in-out;
  -o-transition:
    all,
    0.4s,
    ease-in-out 1s ease-in-out;
  transition:
    all,
    0.4s,
    ease-in-out 1s ease-in-out;
  margin-left: 1rem;
  height: 1.125rem;
  width: 1.125rem;
}
.button:hover,
.button:focus {
  background-color: #FFFFFF;
  color: #B41E8C;
}
.button:hover::after,
.button:focus::after {
  background-image: url(/assets/icons/icon-arrow-pink.svg);
}
.button--secondary {
  background-color: #00494F;
  color: #FFFFFF;
}
.button--secondary:hover,
.button--secondary:focus {
  color: #00494F;
}
.button--secondary:hover::after,
.button--secondary:focus::after {
  background-image: url(/assets/icons/icon-arrow-green.svg);
}
.button--tertiary {
  background-color: #006F97;
  color: #FFFFFF;
}
.button--tertiary::after {
  content: "";
  background-image: url(/assets/icons/icon-arrows-expand.svg);
  height: 1.875rem;
  width: 1.875rem;
}
.button--tertiary:hover,
.button--tertiary:focus {
  color: #006F97;
}
.button--tertiary:hover::after,
.button--tertiary:focus::after {
  background-image: url(/assets/icons/icon-arrows-expand-blue.svg);
}
.button--drawer {
  background-color: #006F97;
  border-top-right-radius: 1.875rem;
  border-top-left-radius: 1.875rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  color: #FFFFFF;
}
.button--drawer::after {
  content: "";
  background-image: url(/assets/icons/icon-arrow-down.svg);
  height: 1.1875rem;
  width: 1.1875rem;
}
.button--drawer:hover,
.button--drawer:focus {
  background-color: #006F97;
  color: #FFFFFF;
}
.button--drawer:hover::after,
.button--drawer:focus::after {
  background-image: url(/assets/icons/icon-arrow-down.svg);
}
.button--drawer[aria-expanded=true]::after {
  background-image: url(/assets/icons/icon-arrow-up.svg);
}
.button--white {
  background-color: #FFFFFF;
  color: #00494F;
}
.button--white::after {
  background-image: url(/assets/icons/icon-arrow-green.svg);
}
.button--white:hover,
.button--white:focus {
  color: #00494F;
}
.button--white:hover::after,
.button--white:focus::after {
  background-image: url(/assets/icons/icon-arrow-green.svg);
}
.button--pich-to-zoom {
  width: 2.375rem;
  height: 2.375rem;
  background: #E2E7EA;
  padding: 0;
}
.button--pich-to-zoom::after {
  content: url(/assets/icons/icon-arrows-expand-pink.svg);
  background-image: none;
  border-radius: inherit;
  margin: 0;
  height: initial;
  width: 100%;
}
.button--pich-to-zoom:hover,
.button--pich-to-zoom:focus {
  background: #E2E7EA;
}
.button--pich-to-zoom:hover::after,
.button--pich-to-zoom:focus::after {
  background-image: none;
}
.site__header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 4;
  width: 100%;
}
.site__header .header__inner {
  position: relative;
  width: 100%;
}
.site__header .header__inner.is--sticky-down {
}
.site__header .header__inner.is--sticky-down .main_bar {
  visibility: hidden;
  height: 0;
  z-index: -1;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    visibility 0s,
    height 0s,
    opacity 0s;
}
.site__header .header__inner.is--sticky-down .main_bar .button {
  transition: visibility 0s;
}
.site__header .header__inner.is--sticky-down .main_bar .button::after {
  transition: visibility 0s;
}
.site__header .header__inner.is--sticky-up {
}
.site__header .header__inner.is--sticky-up .main_bar {
  visibility: visible !important;
  height: auto !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transition-delay: 0s;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.site__header .header__inner.is--sticky-up .desktop .main_bar {
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
}
@media screen and (min-width: 1100px) {
  .site__header {
    box-shadow: 0px 4px 4px rgba(221, 221, 221, 0.8);
  }
}
.site__header .top_bar {
  background-color: #00494F;
  color: #FFFFFF;
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
  width: 100%;
}
.site__header .top_bar .header__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  font-size: 10px;
  line-height: 0.9375rem;
  gap: 0.45rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .site__header .top_bar .header__links > * {
    margin: calc(0.45rem / 2);
  }
}
@media screen and (min-width: 375px) {
  .site__header .top_bar .header__links {
    gap: 1rem;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .site__header .top_bar .header__links > * {
      margin: calc(1rem / 2);
    }
  }
}
.site__header .main_bar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #FFFFFF;
}
.site__header .main_bar .wrapper {
  display: grid;
  grid-template-columns: 127px 1fr;
  align-items: center;
  gap: 0.8862rem;
}
.site__header .main_bar .buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .site__header .main_bar .buttons > * {
    margin: calc(1rem / 2);
  }
}
@media screen and (min-width: 1199px) {
  .site__header .mobile {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .site__header .mobile .top_bar .header__links {
    justify-content: center;
    font-size: 0.875rem;
  }
}
.site__header .mobile .top_bar .header__links li {
  position: relative;
}
.site__header .mobile .top_bar .header__links li a {
  font-family: Roboto, sans-serif;
  font-weight: 500;
}
.site__header .mobile .top_bar .header__links li + li::before {
  content: "";
  position: absolute;
  top: 0.1rem;
  left: -1rem;
  background-color: #48D597;
  display: inline-block;
  height: 0.7rem;
  width: 1px;
}
@media screen and (min-width: 375px) {
  .site__header .mobile .top_bar .header__links li + li::before {
    left: -1.25rem;
  }
}
@media screen and (min-width: 480px) {
  .site__header .mobile .top_bar .header__links li + li::before {
    left: -1.5rem;
  }
}
@media screen and (min-width: 600px) {
  .site__header .mobile .top_bar .header__links li + li::before {
    left: -0.55rem;
  }
}
.site__header .mobile .main_bar .menu__toggle .line {
  background-color: #B41E8C;
  cursor: pointer;
  display: block;
  height: 3px;
  margin: 0.25rem 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 1.5rem;
}
.site__header .mobile .main_bar .menu__toggle.is--open .line:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}
.site__header .mobile .main_bar .menu__toggle.is--open .line:nth-child(2) {
  opacity: 0;
}
.site__header .mobile .main_bar .menu__toggle.is--open .line:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}
.site__header .mobile .main_bar .button {
  font-size: 0.875rem;
  line-height: 0.875rem;
  min-height: 2.5rem;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media screen and (min-width: 375px) {
  .site__header .mobile .main_bar .button {
    font-size: 1.125rem;
    line-height: 1.125rem;
    width: 8.6875rem;
  }
}
.site__header .mobile .main_bar .button::after {
  display: none;
}
.site__header .desktop {
  display: none;
}
@media screen and (min-width: 1200px) {
  .site__header .desktop {
    display: block;
  }
}
.site__header .desktop .top_bar {
  padding-right: 0;
  padding-left: 0;
}
.site__header .desktop .top_bar .header__links {
  font-size: 0.875rem;
  line-height: 1.4rem;
  font-weight: 400;
  justify-content: flex-end;
}
.site__header .desktop .main_bar {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.site__header .desktop .main_bar .wrapper {
  grid-template-columns: 188px 1fr 191px;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 1365px) {
  .site__header .desktop .main_bar .wrapper {
    gap: 3.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .site__header .desktop .main_bar .wrapper {
    gap: 5rem;
  }
}
.site__header .desktop .main_bar .nav__menu {
  position: relative;
  display: block;
  font-size: 0;
  padding: 0;
}
.site__header .desktop .main_bar .nav__menu_item {
  border-bottom: 0;
  text-align: center;
  display: inline-block;
  font-size: 1rem;
  margin-right: 1rem;
  margin-left: 1rem;
  width: auto;
}
@media screen and (min-width: 1366px) {
  .site__header .desktop .main_bar .nav__menu_item {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .site__header .desktop .main_bar .nav__menu_item {
    margin-right: 2rem;
    margin-left: 2rem;
  }
}
.site__header .desktop .main_bar .nav__menu_item.has__sub_menu.current-page .nav__menu_item_link::after {
  border-top: 2px solid #B41E8C;
  border-right: 2px solid #B41E8C;
  font-weight: 900;
}
.site__header .desktop .main_bar .nav__menu_item.has__sub_menu .nav__sub_menu {
  position: absolute;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  width: 13.875rem;
  z-index: 4;
}
.site__header .desktop .main_bar .nav__menu_item.has__sub_menu .nav__sub_menu_item {
  text-align: center;
}
.site__header .desktop .main_bar .nav__menu_item.has__sub_menu .nav__menu_item_link.current-page {
  color: #B41E8C;
}
.site__header .desktop .main_bar .nav__menu_item.has__sub_menu .nav__menu_item_link::after {
}
@media screen and (min-width: 1200px) {
  .site__header .desktop .main_bar .nav__menu_item.has__sub_menu:hover .nav__sub_menu {
    display: block;
  }
  .site__header .desktop .main_bar .nav__menu_item.has__sub_menu:hover .nav__menu_item_link {
    color: #B41E8C;
  }
  .site__header .desktop .main_bar .nav__menu_item.has__sub_menu:hover .nav__menu_item_link::after {
    top: 50%;
    border-top: 3px solid #B41E8C;
    border-right: 3px solid #B41E8C;
    transform: translateY(15%) rotate(-45deg);
  }
}
@media screen and (min-width: 1200px) {
  .site__header .desktop .main_bar .nav__menu_item_link {
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1.8rem;
    width: auto;
  }
  .site__header .desktop .main_bar .nav__menu_item_link:hover,
  .site__header .desktop .main_bar .nav__menu_item_link.current-page {
    color: #B41E8C;
    font-weight: 900;
    position: relative;
  }
  .site__header .desktop .main_bar .nav__menu_item_link:hover::before,
  .site__header .desktop .main_bar .nav__menu_item_link.current-page::before {
    content: "";
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 100%;
    border-bottom: 4px solid #B41E8C;
  }
  .site__header .desktop .main_bar .nav__menu_item_link:hover .nav__sub_menu {
    display: block;
  }
}
.site__header .clinical-item {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1200px) {
  .site__header .clinical-item {
    display: flex !important;
    align-items: center !important;
  }
}
.site__header .clinical-item::after {
  content: "";
  top: 1.65rem;
  margin-left: 5px;
  height: 0.5rem;
  border-top: 2px solid #00494F;
  border-right: 2px solid #00494F;
  transform: translateY(-50%) rotate(135deg);
  width: 0.5rem;
}
.site__navigation {
  position: relative;
}
.nav__menu {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  color: #00494F;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1rem;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
  padding-top: 2.5rem;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  text-align: center;
  width: 100%;
}
.nav__menu.is--open {
  display: flex;
  z-index: 1000;
}
.nav__menu_item {
  border-bottom: 1px solid #EEEEEE;
  text-align: left;
  width: 100%;
}
.nav__menu_item.has__sub_menu {
  position: relative;
}
.nav__menu_item.has__sub_menu.current-page .nav__menu_item_link {
  color: #B41E8C;
  font-weight: 900;
}
@media screen and (min-width: 1200px) {
  .nav__menu_item.has__sub_menu.current-page .nav__menu_item_link {
    position: relative;
  }
  .nav__menu_item.has__sub_menu.current-page .nav__menu_item_link::before {
    content: "";
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 100%;
    border-bottom: 4px solid #B41E8C;
  }
}
.nav__menu_item.has__sub_menu.current-page .nav__menu_item_link::after {
  border-top: 2px solid #B41E8C;
  border-right: 2px solid #B41E8C;
  font-weight: 900;
}
.nav__menu_item.has__sub_menu .nav__menu_item_link::after {
}
.nav__menu_item.has__sub_menu.is--open .nav__sub_menu {
  display: block;
}
.nav__menu_item.has__sub_menu.is--open .nav__menu_item_link {
  color: #B41E8C;
}
.nav__menu_item.has__sub_menu.is--open .nav__menu_item_link::after {
  top: 50%;
  border-top: 3px solid #B41E8C;
  border-right: 3px solid #B41E8C;
  transform: translateY(-50%) rotate(-45deg);
}
.nav__menu_item_link {
  position: relative;
  color: #00494F;
  display: block;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-decoration: none;
}
.nav__menu_item_link.current-page {
  color: #B41E8C;
  font-weight: 900;
}
.nav__menu .nav__sub_menu {
  position: relative;
  display: none;
  -webkit-transition: display 0.5s ease-in-out;
  -moz-transition: display 0.5s ease-in-out;
  -ms-transition: display 0.5s ease-in-out;
  -o-transition: display 0.5s ease-in-out;
  transition: display 0.5s ease-in-out;
  width: 100%;
}
.nav__menu .nav__sub_menu_item {
  border-bottom: 0;
  text-align: left;
  width: 100%;
}
.nav__menu .nav__sub_menu_item:first-of-type a {
  padding-top: 0;
}
.nav__menu .nav__sub_menu_item:last-of-type {
  margin-bottom: 1rem;
}
.nav__menu .nav__sub_menu_item_link {
  position: relative;
  color: #626469;
  display: block;
  font-size: 1rem;
  line-height: 1.625rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.nav__menu .nav__sub_menu_item_link.current-page {
  color: #B41E8C;
  font-weight: 900;
}
.nav__menu .nav__sub_menu_item_link:hover {
  color: #B41E8C;
}
.internal__nav {
  --nav-top-position: 48px;
  scroll-margin-top: 7em;
  position: sticky;
  top: 48px;
  left: 0;
  z-index: 3;
  background-color: #E2E7EA;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.5rem;
  align-items: center;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 1100px) {
  .internal__nav {
    top: 40px;
  }
}
@media screen and (min-width: 500px) {
  .internal__nav {
    gap: 3rem;
  }
}
.internal__nav_heading {
  color: #626469;
  font-family: Inter;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.125rem;
}
.internal__nav_list {
  display: flex;
  justify-content: flex-start;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.internal__nav_list::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 500px) {
  .internal__nav_list {
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .internal__nav_list {
    overflow-x: hidden;
  }
}
.internal__nav_list_item {
  flex: 0 0 auto;
  list-style-type: none;
  marker: none;
  text-align: center;
}
.internal__nav_list_item:not(:last-of-type) {
  margin-right: 0.75rem;
}
.internal__nav_list_item.is--active a {
  background-color: #00494F;
  border-radius: 3.6875rem;
  color: #FFFFFF;
  font-family:
    "Roboto Black",
    "Roboto",
    sans-serif;
  font-weight: 400;
}
.internal__nav_list a {
  color: #00494F;
  font-size: 1rem;
  font-weight: 400;
  font-family:
    "Roboto Regular",
    "Roboto",
    sans-serif;
  line-height: 1.125rem;
  text-decoration: none;
  padding-top: 1rem;
  padding-right: 1.25rem;
  padding-bottom: 1rem;
  padding-left: 1.25rem;
}
.internal__nav.is--fixed {
  --nav-top-position: 165px;
  position: fixed;
  left: 0;
  top: var(--nav-top-position);
  width: 100%;
  z-index: 3;
}
@media screen and (max-width: 1100px) {
  .internal__nav.is--fixed {
    --nav-top-position: 117px;
    top: var(--nav-top-position);
  }
}
.internal__nav_expand-icon {
  border-bottom: 3px solid #006F97;
}
@media screen and (max-width: 500px) {
  .internal__nav_expand-icon--desktop {
    display: none;
  }
}
.internal__nav_expand-icon--mobile {
  display: none;
}
@media screen and (max-width: 500px) {
  .internal__nav_expand-icon--mobile {
    display: block;
  }
}
.internal__nav_expand-icon--anchor {
  display: flex;
  flex-direction: row;
  color: #006F97 !important;
  font-size: 1rem;
  font-weight: 900;
  padding-top: auto !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  text-decoration: none;
}
.internal__nav_expand-icon--img {
  height: 25px;
  width: 25px;
  margin-left: 10px;
}
.internal__nav .internal-nav__container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.5rem;
  align-items: center;
}
.cookie {
  background-color: #E2E7EA;
}
.cookie.hidden {
  display: none;
}
.cookie__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .cookie__content > * {
    margin: calc(2rem / 2);
  }
}
@media screen and (min-width: 1200px) {
  .cookie__content {
    gap: 6.25rem;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .cookie__content > * {
      margin: calc(6.25rem / 2);
    }
  }
}
.cookie__text {
  color: #00494F;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 0.8125rem;
}
@media screen and (min-width: 1200px) {
  .cookie__text {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.cookie__text a {
  color: #B41E8C;
  font-weight: 600;
  text-decoration: underline;
}
.cookie__button {
  position: relative;
  color: #B41E8C;
  cursor: pointer;
  height: 30px;
  padding: 4px;
  padding-bottom: 0;
}
.cookie__button .line {
  background-color: #B41E8C;
  display: block;
  height: 3px;
  width: 1.5rem;
}
.cookie__button .line:first-of-type {
  transform: rotate(45deg);
}
.cookie__button .line:last-of-type {
  position: relative;
  top: -3px;
  transform: rotate(-45deg);
}
.isi {
  background-color: #FFFFFF;
  color: #626469;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.0938rem;
}
@media screen and (min-width: 1024px) {
  .isi {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.isi .indication-text {
  margin-bottom: 24px;
}
.isi .boxed-warning {
  border: 2px solid #000000;
  padding: 4px;
  margin-top: 10px;
  margin-bottom: 32px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .isi .boxed-warning {
    padding: 6px 12px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.isi .boxed-warning__head {
  margin-bottom: 16px;
}
.isi .boxed-warning__title {
  text-align: center;
  margin-bottom: 16px;
}
.isi .boxed-warning__text {
  font-weight: 900;
}
.isi .boxed-warning__text:first-of-type {
  margin-bottom: 16px;
}
.isi ul li {
  list-style-type: disc;
}
.isi ul li::marker {
  color: #48D597;
}
.isi ul li p {
  margin-bottom: 0;
}
.isi p {
  font-size: 14px;
  font-weight: inherit;
  line-height: 120%;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .isi p {
    font-size: 18px;
  }
}
.isi strong {
  font-weight: 900;
  line-height: 1.05rem;
}
@media screen and (min-width: 1024px) {
  .isi strong {
    font-size: 1.125rem;
    line-height: 1.35rem;
  }
}
.isi br.only-mobile {
  display: none;
}
@media screen and (min-width: 370px) {
  .isi br.only-mobile {
    display: inline;
  }
}
@media screen and (min-width: 385px) {
  .isi br.only-mobile {
    display: none;
  }
}
.isi br.only-desktop {
  display: none;
}
@media screen and (min-width: 1400px) {
  .isi br.only-desktop {
    display: inline;
  }
}
.isi br.br-footnote {
  display: none;
}
@media screen and (min-width: 370px) {
  .isi br.br-footnote {
    display: inline;
  }
}
@media screen and (min-width: 385px) {
  .isi br.br-footnote {
    display: none;
  }
}
@media screen and (min-width: 1400px) {
  .isi br.br-footnote {
    display: inline;
  }
}
.isi .isi__section.grid {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}
.isi .isi__section.grid .grid__item.left .isi__footnote:not(:last-of-type) {
  margin-bottom: 32px;
}
.isi .isi__section.grid .grid__item.right {
  padding-bottom: 48px;
}
.isi .isi__section.grid .grid__item.right p {
  margin-bottom: 0;
}
.isi .isi__section.grid .grid__item.right p.isi__footnote--right {
  margin-top: 30px;
}
@media screen and (min-width: 1024px) {
  .isi .isi__section.grid .grid__item.right p {
    max-width: 39ch;
  }
}
@media screen and (min-width: 1024px) {
  .isi .isi__section.grid {
    grid-template-columns: 1fr 33%;
    gap: 2.75rem;
  }
}
.isi__section_header_inner {
  position: relative;
  background-color: #E2E7EA;
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem;
}
.isi .wrapper__inner {
  padding-right: 3.125rem;
}
.isi__section_heading {
  color: #00494F;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.3125rem;
  max-width: 88%;
}
@media screen and (min-width: 500px) {
  .isi__section_heading {
    max-width: 95%;
  }
}
@media (min-width: 768px) {
  .isi__section_heading {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}
.isi__section_subheading {
  color: #00494F;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 1024px) {
  .isi__section_subheading {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.isi__section_subheading--no-margin-bottom {
  margin-bottom: 0;
}
.isi__section_list {
  color: #626469;
  padding-right: 3.125rem;
  padding-left: 1rem;
}
@media screen and (max-width: 375px) {
  .isi__section_list {
    max-width: 18.125rem;
  }
}
.isi__section_list li {
  margin-bottom: 1.25rem;
}
.isi__section_list li a {
  color: #626469;
  font-weight: 300;
}
.isi__section_list--no-style li {
  list-style: none !important;
}
.isi__section_list--no-item-space {
  margin-bottom: 1.25rem;
}
.isi__section_list--no-item-space li {
  margin-bottom: 0;
}
.isi__section_header {
  position: relative;
  background-color: #FFFFFF;
}
.isi__section_header .wrapper__inner .isi__section_content,
.isi__section_header .wrapper__inner .isi__section_footer {
  display: none;
}
.isi-fixed .isi__section_header {
  display: none;
}
.isi__section_header.is--fixed {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  height: 155px;
  width: 100%;
  z-index: 3;
}
@media (min-width: 768px) {
  .isi__section_header.is--fixed {
    height: 10.6875rem;
  }
}
.isi__section_header.is--fixed .wrapper__inner {
  position: relative;
}
.isi__section_header.is--fixed .wrapper__inner .isi__section_content {
  display: none;
}
.isi__section_header.is--fixed .isi__section_toggle {
  display: block;
}
.isi__section_header.is--fixed.is--open {
  top: 25%;
  overflow-y: scroll;
  height: auto;
}
.isi__section_header.is--fixed.is--open .wrapper__inner .isi__section_content {
  display: none;
}
.isi__section_header.is--fixed.is--open .isi__section_toggle {
  transform: rotate(180deg);
}
.isi__section_toggle {
  background-image: url(/assets/vectors/isi-arrow-up.svg);
  border: 0;
  cursor: pointer;
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
  height: 0.5rem;
  width: 1.1875rem;
  position: absolute;
  right: 1.375rem;
  top: 40%;
}
.isi__footnote {
  color: #00494F;
  font-weight: 700 !important;
}
.isi__footnote--left {
  margin-left: 1rem;
}
.isi__footnote--right {
  margin-top: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .isi__footnote {
    max-width: 100%;
  }
  .isi__footnote--left {
    display: block;
  }
  .isi__footnote--right {
    display: none;
  }
}
.isi__link {
  display: inline;
}
@media screen and (min-width: 1024px) {
  .isi__link {
    text-decoration: underline;
  }
}
#isi .isi-back-top {
  display: block;
  transform: rotate(180deg);
}
#isi .isi-back-top.hidden {
  display: none;
}
#isi.has--scrollbar {
  --isi-height: calc(100vh - 41px - 60px - 56px);
}
@media screen and (min-width: 1200px) {
  #isi.has--scrollbar {
    --isi-height: calc(100vh - 48.4px - 60px - 52px);
  }
}
#isi.has--scrollbar .isi__section_toggle {
  right: -0.3125rem;
}
#isi.has--scrollbar .isi__section_content .wrapper {
  overflow-y: scroll;
  height: var(--isi-height);
  scrollbar-width: thin;
  scrollbar-color: #b41e8c #E2E7EA;
}
#isi.has--scrollbar .isi__section_content .wrapper:hover {
  scrollbar-color: rgba(180, 30, 140, 0.5) #E2E7EA;
}
#isi.has--scrollbar .isi__section_content .wrapper::-webkit-scrollbar {
  width: 8px;
}
#isi.has--scrollbar .isi__section_content .wrapper::-webkit-scrollbar-track {
  background: #E2E7EA;
}
#isi.has--scrollbar .isi__section_content .wrapper::-webkit-scrollbar-thumb {
  background-color: #b41e8c;
  border-radius: 4px;
}
#isi.has--scrollbar .isi__section_content .wrapper::-webkit-scrollbar-thumb:hover {
  background-color: rgba(180, 30, 140, 0.5);
}
.references {
  font-size: 0.875rem;
  line-height: 1.0938rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .references {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    margin-top: 3.25rem;
    margin-bottom: 3.25rem;
  }
}
.references a {
  color: #626469;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.0938rem;
  word-wrap: break-word;
  text-decoration: underline;
}
@media screen and (min-width: 500px) {
  .references a {
    word-wrap: normal;
  }
}
@media (min-width: 768px) {
  .references a {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.references p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.0938rem;
}
@media (min-width: 768px) {
  .references p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.references strong {
  color: #00494F;
}
.references i {
  font-style: italic;
}
[role=tablist] {
  background-color: #E2E7EA;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  margin: 0;
  overflow-y: scroll;
  padding-top: 0.3125rem;
  padding-right: 0.9375rem;
  padding-bottom: 0.3125rem;
  padding-left: 0.9375rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 3.125rem;
}
[role=tablist]::-webkit-scrollbar {
  display: none;
}
[role=tablist] li {
  list-style-type: none;
  margin-right: 0.25rem;
  height: 2.5rem;
}
[role=tablist] li::marker {
  display: none;
}
[role=tablist] a {
  border: 2px solid #E2E7EA;
  border-radius: 1.6875rem;
  color: #00494F;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.125rem;
  min-width: 6.875rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  transition: all 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (min-width: 768px) {
  [role=tablist] a {
    font-size: 1.25rem;
    line-height: 1.4375rem;
  }
}
[role=tablist] [aria-selected] {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-weight: 900;
}
[role=tabpanel] {
  padding: 1rem;
}
.cta {
  background-color: #48D597;
  padding-top: 3rem;
  padding-right: 2rem;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .cta {
    padding-left: 3.125rem;
  }
}
.cta__heading {
  color: #00494F;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 2.1563rem;
  letter-spacing: -0.03em;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.9513rem;
}
@media screen and (max-width: 375px) {
  .cta__heading {
    max-width: 205px;
  }
}
@media (min-width: 768px) {
  .cta__heading {
    margin-bottom: 1.3125rem;
  }
}
.cta__heading + .cta__text {
  margin-top: -1rem;
  margin-bottom: 1rem;
}
.cta__link {
  margin-right: auto;
  margin-left: auto;
  width: max-content;
}
.cta__link:hover {
  background-color: #00494F;
  color: #FFFFFF;
}
.cta__link:hover::after {
  background-image: url(/assets/icons/icon-arrow-white.svg);
}
.footer {
  position: relative;
  overflow: hidden;
  padding-top: 0.875rem;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 2.6875rem;
  }
  .footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: -86%;
    background: #E2E7EA;
    border-radius: 36.1168rem;
    height: 196%;
    transform: rotate(164deg);
    width: 154%;
    z-index: -1;
  }
}
@media screen and (min-width: 1024px) {
  .footer::after {
    right: -86%;
    height: 230%;
    transform: rotate(163deg);
    width: 140%;
  }
}
@media screen and (min-width: 1366px) {
  .footer::after {
    right: -90%;
    height: 230%;
    transform: rotate(169deg);
    width: 144.5%;
    top: -23px;
  }
}
@media screen and (min-width: 1920px) {
  .footer::after {
    top: -32px;
  }
}
@media screen and (min-width: 2300px) {
  .footer::after {
    top: -50px;
  }
}
@media screen and (min-width: 2450px) {
  .footer::after {
    top: -75px;
  }
}
@media (min-width: 768px) {
  .footer .wrapper {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
.footer__branding {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2.0625rem;
}
@media (min-width: 768px) {
  .footer__branding {
    margin-left: 0;
    margin-bottom: 2rem;
    grid-area: 1/1/2/2;
  }
}
.footer__branding_strensiq {
  display: grid;
  grid-template-columns: 139px 1fr;
  align-items: center;
  gap: 1.875rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 17.0625rem;
}
@media (min-width: 768px) {
  .footer__branding_strensiq {
    grid-template-columns: 9.5819rem 1fr;
    max-width: 100%;
  }
}
.footer__branding_strensiq_link {
  position: relative;
}
.footer__branding_strensiq_link::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -1rem;
  border: 2px solid #DFDF00;
  height: 50px;
}
.footer__branding_strensiq_text {
  position: relative;
  color: #00494F;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25rem;
}
@media (min-width: 768px) {
  .footer__links {
    grid-area: 2/1/3/2;
  }
}
.footer__links .footer__nav_menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .footer__links .footer__nav_menu > * {
    margin: calc(1.25rem / 2);
  }
}
@media (min-width: 768px) {
  .footer__links .footer__nav_menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .footer__links .footer__nav_menu > * {
      margin: calc(0.8rem / 2);
    }
  }
}
@media screen and (min-width: 1024px) {
  .footer__links .footer__nav_menu {
    row-gap: 12px;
    max-width: 70ch;
  }
}
@media (min-width: 1200px) {
  .footer__links .footer__nav_menu {
    column-gap: 2.5rem;
    margin-bottom: 4.5rem;
  }
}
.footer__links .footer__nav_menu_item_link {
  color: #00494F;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5625rem;
}
.footer__text {
  color: #626469;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.6875rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  max-width: 328px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__text {
    grid-area: 1/2/4/3;
    align-self: center;
  }
}
@media screen and (min-width: 1024px) {
  .footer__text {
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin-top: 2.5rem;
    max-width: 370px;
  }
}
@media (min-width: 1200px) {
  .footer__text {
    max-width: 370px;
  }
}
.footer__text p {
  color: currentColor;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.footer__text .button {
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0.9375rem 2.1563rem;
}
@media (min-width: 768px) {
  .footer__text .button {
    padding: 0.9375rem 1.25rem;
  }
}
.footer__alexion {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}
.footer__alexion br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer__alexion br {
    display: block;
  }
}
.footer__alexion br.mobile__br {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__alexion br.mobile__br {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer__alexion {
    grid-area: 3/1/4/2;
    align-items: flex-start;
    margin-left: 0;
    max-width: 410px;
  }
}
@media screen and (min-width: 1024px) {
  .footer__alexion {
    margin-bottom: 0;
    max-width: 100%;
  }
}
.footer__alexion_logo {
  margin-bottom: 1.25rem;
  width: 8.875rem;
}
.footer__alexion_text {
  color: #626469;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  letter-spacing: 0.01em;
  text-align: center;
  max-width: 43ch;
}
.footer__alexion_text:last-of-type {
  margin-bottom: 0.6875rem;
  max-width: 39ch;
}
@media (min-width: 768px) {
  .footer__alexion_text {
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .footer__alexion_text {
    max-width: 62ch;
  }
  .footer__alexion_text:last-of-type {
    max-width: 46ch;
  }
}
.footer__alexion .footer__nav_menu {
  display: flex;
  align-items: center;
  column-gap: 1.125rem;
  margin-bottom: 1.5rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__alexion .footer__nav_menu {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .footer__alexion .footer__nav_menu > * {
      margin: calc(0.5rem / 2);
    }
  }
}
@media screen and (min-width: 1024px) {
  .footer__alexion .footer__nav_menu {
    gap: 1.125rem;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .footer__alexion .footer__nav_menu > * {
      margin: calc(1.125rem / 2);
    }
  }
}
.footer__alexion .footer__nav_menu_item.privacy__choices a {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.footer__alexion .footer__nav_menu_item.privacy__choices a::before {
  content: "";
  position: relative;
  display: block;
  width: 36px;
  height: 18px;
  background-image: url(/assets/images/privacy-choices-icon.svg);
  background-repeat: no-repeat;
}
.footer__alexion .footer__nav_menu_item_link {
  color: #626469;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 18px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__alexion .footer__nav_menu_item_link {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.work-box {
  background-color: #00494F;
  max-width: 18.5rem;
  height: 6.25rem;
  margin: auto;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 350px) {
  .work-box {
    max-width: 21.5rem;
  }
}
@media (min-width: 768px) {
  .work-box {
    position: relative;
    height: 11.7825rem;
    width: 18.75rem;
    display: block;
  }
}
.work-box__link {
  display: flex;
  height: 100%;
  padding-right: 0.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .work-box__link {
    display: block;
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
    padding-left: 1.8125rem;
  }
}
.work-box__image {
  width: 7.5625rem;
  margin-bottom: -27px;
  margin-left: -10px;
}
@media (min-width: 768px) {
  .work-box__image {
    margin-bottom: unset;
    position: absolute;
    bottom: -64px;
    right: 4rem;
    width: 9.25rem;
  }
}
.work-box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-box__content-arrow {
  width: 2.0625rem;
}
@media (min-width: 768px) {
  .work-box__content-arrow {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
  }
}
.work-box__content-text {
  max-width: 8.75rem;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.25rem;
  color: #FFFFFF;
}
@media screen and (min-width: 350px) {
  .work-box__content-text {
    margin-right: 2rem;
  }
}
@media screen and (min-width: 370px) {
  .work-box__content-text {
    margin-right: unset;
    max-width: 11.75rem;
  }
}
@media (min-width: 768px) {
  .work-box__content-text {
    font-weight: 700;
    line-height: 115%;
    letter-spacing: -0.5px;
    font-size: 1.5625rem;
    max-width: 12.9375rem;
  }
}
.steps-box {
  max-width: 21.25rem;
  margin: auto;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .steps-box {
    margin: 0.3125rem;
  }
}
@media screen and (min-width: 1300px) {
  .steps-box {
    max-width: 23.875rem;
  }
}
@media screen and (min-width: 1100px) {
  .steps-box {
    margin: 0;
  }
}
.steps-box__title {
  font-style: normal;
  font-weight: 400;
  font-size: 3.125rem;
  line-height: 3.9063rem;
  letter-spacing: -0.03em;
  color: #00494F;
}
@media screen and (min-width: 768px) {
  .steps-box__title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .steps-box__title {
    line-height: 3.5rem;
    font-size: 70px;
  }
}
@media screen and (min-width: 1366px) {
  .steps-box__title {
    line-height: 4.5rem;
  }
}
.steps-box__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}
@media screen and (min-width: 1024px) {
  .steps-box__heading {
    min-height: 4.5rem;
  }
}
@media screen and (min-width: 1366px) {
  .steps-box__heading {
    padding-right: 4rem;
  }
}
.steps-box__image {
  width: 2.5625rem;
}
.steps-box__content-line {
  height: 0.75rem;
  max-width: 21.25rem;
  background-color: #48D597;
  margin-bottom: 1.375rem;
}
@media screen and (min-width: 1024px) {
  .steps-box__content-line {
    margin-top: 10px;
  }
}
.steps-box__text {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  max-width: 20.625rem;
}
@media screen and (min-width: 1366px) {
  .steps-box__text {
    max-width: unset;
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
.steps-box button {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2.1875rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .steps-box button {
    max-width: 13rem;
    margin-bottom: 0;
  }
}
.tip__wrapper {
  display: block;
  margin: 0 auto;
  max-width: 90.625rem;
  overflow-x: hidden;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
.tip__box {
  position: relative;
  background-color: #E2E7EA;
  border-radius: 0px 581.67px 581.67px 0px;
  color: #00494F;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.0625rem;
  padding-top: 0.8125rem;
  padding-right: 1rem;
  padding-bottom: 0.8125rem;
  padding-left: 1rem;
  margin-top: 2rem;
  margin-right: 1.5rem;
  margin-bottom: 2rem;
  max-width: 30rem;
}
@media (min-width: 768px) {
  .tip__box {
    font-size: 1.25rem;
    line-height: 1.875rem;
    padding-top: 1.5rem;
    padding-right: 2rem;
    padding-bottom: 1.5rem;
    padding-left: 2rem;
    max-width: 42.5rem;
  }
}
@media screen and (min-width: 1366px) {
  .tip__box {
    max-width: 44.6875rem;
  }
}
@media screen and (min-width: 1600px) {
  .tip__box {
    max-width: 44.6875rem;
  }
}
.tip__box::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: -1.875rem;
  width: 100%;
  height: 100%;
  background-color: #48D597;
  border-radius: 0px 581.67px 581.67px 0px;
  z-index: -1;
}
@media (min-width: 768px) {
  .tip__box::before {
    top: 1rem;
    left: -3.75rem;
  }
}
.tip__box a,
.tip__box button {
  cursor: pointer;
  display: inline-block;
  color: #B41E8C;
  font-weight: 700;
  text-decoration: underline;
}
.tip__box.align-right {
  background: #006F97;
  color: #FFFFFF;
  border-radius: 95.5px 0px 0px 95.5px;
  margin-left: 1.5rem;
  margin-right: 0;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .tip__box.align-right {
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .tip__box.align-right {
    text-align: left;
    max-width: 43.75rem;
  }
}
.tip__box.align-right::before {
  left: auto;
  right: -1.875rem;
  background-color: #B41E8C;
  border-radius: 581.67px 0px 0px 581.67px;
}
@media (min-width: 768px) {
  .tip__box.align-right::before {
    right: -3.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .exit__modal_main .modal__content p br {
    display: none;
  }
}
.modal {
  display: none;
  padding-top: 2.5625rem;
  max-width: 57.125rem;
  min-height: 29.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
.modal.fancybox__content {
  width: 57.125rem;
  height: 0;
  background-color: #FFFFFF !important;
  position: relative;
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}
.modal.fancybox__content > .f-button.is-close-btn {
  display: none;
}
.modal::before {
  --width-shape: 96.25rem;
  --height-shape: 40.3125rem;
  --rotation-shape: 21deg;
  background-color: #00494F;
  border-radius: 45.0506rem;
  bottom: 18.125rem;
  right: 3.3125rem;
  content: "";
  height: var(--height-shape);
  margin-left: calc(-1 * var(--width-shape) / 2 + var(--height-shape) / 2 * tan(var(--rotation-shape)));
  position: absolute;
  transform: rotate(var(--rotation-shape));
  width: var(--width-shape);
  z-index: -100;
}
@media screen and (max-width: 768px) {
  .modal::before {
    --height-shape: 21.3125rem;
    --rotation-shape: -141deg;
    bottom: 34rem;
    right: -7.5625rem;
  }
}
@media screen and (max-width: 400px) {
  .modal::before {
    --height-shape: 23.3125rem;
    --rotation-shape: -141deg;
    bottom: 34.6875rem;
    right: -7.8125rem;
  }
}
.modal__wrapper {
  height: auto;
  margin: auto;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 990px) {
  .modal__wrapper {
    padding-top: 1rem;
  }
}
.modal__wrapper .modal__close {
  width: 6.0625rem;
  transform: rotate(45deg);
  background-color: #FFFFFF;
  position: absolute;
  right: -1.25rem;
  top: 1.3125rem;
  cursor: pointer;
  font-style: normal;
  font-weight: 300;
  font-size: 4.6875rem;
  line-height: 125%;
  display: flex;
  align-items: center;
  letter-spacing: -0.03em;
  color: #B41E8C;
}
@media screen and (max-width: 768px) {
  .modal__wrapper .modal__close {
    width: 6.2rem;
    font-size: 2.5rem;
    right: -2.875rem;
    top: 0.6875rem;
  }
}
@media screen and (max-width: 400px) {
  .modal__wrapper .modal__close {
    width: 4rem;
    right: -1rem;
    top: 0;
  }
}
.modal__content {
  height: 100%;
  max-width: 44.875rem;
  margin: auto;
}
.modal__title {
  text-align: center;
  font-size: 3.125rem;
  margin-bottom: 0.875rem;
  max-height: 10.125rem;
  line-height: 125%;
  text-align: center;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .modal__title {
    padding-bottom: 0;
    font-size: 1.875rem;
  }
}
.modal__sub-title {
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 125%;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .modal__sub-title {
    font-size: 1.125rem;
    text-align: center;
    max-width: 15.5rem;
    margin: auto;
    margin-bottom: 2rem;
  }
}
.modal__text p {
  font-style: normal;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 150%;
  text-align: center;
  color: #626469;
}
@media screen and (max-width: 768px) {
  .modal__text p {
    font-size: 0.875rem;
    padding: 0.0625rem;
  }
}
.modal__text-link {
  color: #B41E8C;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.modal__buttons {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .modal__buttons {
    margin-bottom: 4.5625rem;
  }
}
.modal__buttons button {
  margin: auto;
  margin-bottom: 1rem;
}
.modal__buttons a {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .modal__title {
    font-size: 2rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 400px) {
  .modal__title {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 1260px) {
  .modal {
    width: 59.375rem;
  }
}
@media screen and (max-width: 990px) {
  .modal {
    max-width: 48rem;
    padding-top: unset;
    padding-right: unset;
    padding-bottom: unset;
    padding-left: unset;
  }
  .modal {
    padding-top: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .modal {
    max-width: 23.4375rem;
  }
}
@media screen and (max-width: 400px) {
  .modal {
    max-width: 20rem;
    height: 32.5rem !important;
  }
}
.fancybox__backdrop {
  background-color: rgba(0, 0, 0, 0.4) !important;
  position: absolute;
  height: 110%;
}
html.with-fancybox {
  overflow: hidden;
}
.toolkit__modal {
  --modal-bg-color: #E2E7EA;
  display: none;
  background-color: var(--modal-bg-color) !important;
  border-radius: 1.25rem;
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.0938rem;
  padding-top: 52px !important;
  padding-bottom: 31px !important;
  min-height: 29.75rem;
  max-width: 57.125rem;
  overflow: hidden;
}
.toolkit__modal.fancybox__content {
  width: 57.125rem;
  height: 0;
  position: relative;
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}
.toolkit__modal.fancybox__content > .f-button.is-close-btn {
  display: none;
}
@media (min-width: 768px) {
  .toolkit__modal {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.toolkit__modal::before {
  display: none;
}
.toolkit__modal_wrapper {
  position: relative;
  height: 100%;
  padding-top: 2rem;
  padding-left: 1rem;
}
.toolkit__modal_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  background-color: #FFFFFF;
  border-radius: 0px 368px 368px 0px;
  height: 100%;
  width: 120%;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .toolkit__modal_wrapper::before {
    width: 90%;
  }
}
.toolkit__modal_close:focus,
.toolkit__modal_close:hover,
.toolkit__modal_close {
  position: absolute;
  top: -2.5rem;
  right: -1.5rem;
  background-color: var(--modal-bg-color);
  color: #B41E8C;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 300;
  font-size: 4.6875rem;
  line-height: 125%;
  letter-spacing: -0.03em;
  transform: rotate(45deg);
  width: 5rem;
}
.toolkit__modal_title {
  color: #00494F;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.6875rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-align: left;
}
.toolkit__modal ul li {
  position: relative;
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .toolkit__modal ul li {
    margin-bottom: 0.625rem;
  }
}
.toolkit__modal ul li::before {
  content: "";
  background-color: #48D597;
  border-radius: 50%;
  display: block;
  margin-right: 4px;
  height: 6px;
  width: 6px;
}
@media screen and (max-width: 1260px) {
  .toolkit__modal {
    width: 59.375rem;
  }
}
@media screen and (max-width: 990px) {
  .toolkit__modal {
    max-width: 46rem;
    padding-top: unset;
    padding-right: unset;
    padding-bottom: unset;
    padding-left: unset;
  }
  .toolkit__modal {
    padding-top: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .toolkit__modal {
    max-width: 23.4375rem;
  }
}
@media screen and (max-width: 400px) {
  .toolkit__modal {
    max-width: 20rem;
    height: auto !important;
  }
}
.fancybox__backdrop {
  background-color: rgba(0, 0, 0, 0.4) !important;
  position: absolute;
  height: 110%;
}
html.with-fancybox {
  overflow: hidden;
}
.main-hero {
  position: relative;
  background: #00494F;
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__wrapper {
    display: flex;
    flex-direction: row;
  }
}
@media screen and (min-width: 1600px) {
  .main-hero .main-hero__wrapper {
    max-width: 90rem;
    margin: 0 auto;
  }
}
.main-hero .main-hero__image-wrapper {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__image-wrapper {
    order: 2;
    flex: 1 1 auto;
  }
}
@media screen and (min-width: 2000px) {
  .main-hero .main-hero__image-wrapper {
    max-height: 43.75rem;
  }
}
.main-hero .main-hero__image-wrapper .main-hero__image {
  position: relative;
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__image-wrapper .main-hero__image {
    height: 100%;
  }
}
.main-hero .main-hero__image-wrapper .main-hero__image figcaption {
  position: absolute;
  bottom: 0.25rem;
  right: 0.5rem;
  font-size: 0.625rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .main-hero .main-hero__image-wrapper .main-hero__image figcaption {
    font-size: 0.875rem;
    right: 3rem;
    bottom: 0.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__image-wrapper .main-hero__image img {
    height: 100%;
    object-position: -179px;
  }
}
@media screen and (min-width: 1200px) {
  .main-hero .main-hero__image-wrapper .main-hero__image img {
    max-width: 120%;
    object-position: right;
    width: 120%;
  }
}
@media screen and (min-width: 1290px) {
  .main-hero .main-hero__image-wrapper .main-hero__image img {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (min-width: 1366px) {
  .main-hero .main-hero__image-wrapper .main-hero__image img {
    object-position: left;
  }
}
@media screen and (min-width: 1600px) {
  .main-hero .main-hero__image-wrapper .main-hero__image img {
    object-position: right;
    position: absolute;
    right: calc(100% - 61vw);
  }
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__content-wrapper {
    flex: 1 1 auto;
    max-width: 50%;
  }
}
@media screen and (min-width: 1366px) {
  .main-hero .main-hero__content-wrapper {
    max-width: 40%;
    margin-right: -35px;
  }
}
@media screen and (min-width: 1640px) {
  .main-hero .main-hero__content-wrapper {
    margin-right: -35px;
  }
}
.main-hero .main-hero__content-wrapper .main-hero__content {
  padding: 0.75rem 1.5rem 3.125rem;
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__content-wrapper .main-hero__content {
    padding-bottom: 1.875rem;
    padding-left: 4.1875rem;
    padding-top: 1.875rem;
  }
}
@media screen and (min-width: 1366px) {
  .main-hero .main-hero__content-wrapper .main-hero__content {
    padding-bottom: 4.1875rem;
    padding-left: 4.1875rem;
    padding-right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .main-hero .main-hero__content-wrapper .main-hero__content {
    padding-top: 5rem;
  }
}
@media screen and (min-width: 1600px) {
  .main-hero .main-hero__content-wrapper .main-hero__content {
    padding-left: 0;
  }
}
.main-hero .main-hero__content-wrapper .main-hero__title {
  margin-top: 2rem;
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__content-wrapper .main-hero__title {
    margin-top: 0;
  }
}
.main-hero .main-hero__content-wrapper .main-hero__title h1 {
  text-transform: uppercase;
  font-weight: 400;
  color: #FFFFFF;
  position: relative;
  margin-bottom: 0.625rem;
  line-height: 24px;
  font-size: 1.5rem;
}
.main-hero .main-hero__content-wrapper .main-hero__title h1 .good-text {
  font-size: 3rem;
  line-height: 50px;
  position: relative;
  letter-spacing: -1px;
}
.main-hero .main-hero__content-wrapper .main-hero__title h1 .good-text .positioned {
  position: absolute;
  left: -15px;
}
@media screen and (min-width: 375px) {
  .main-hero .main-hero__content-wrapper .main-hero__title h1 .good-text .positioned {
    left: -18px;
  }
}
.main-hero .main-hero__content-wrapper .main-hero__title h1 .good-text::after {
  content: "";
  background-image: url(/assets/images/home/main-hero/home-title-asset.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 93%;
  width: 9.625rem;
  height: 3.6875rem;
}
@media screen and (min-width: 375px) {
  .main-hero .main-hero__content-wrapper .main-hero__title h1 {
    font-size: 1.8125rem;
    line-height: 29px;
  }
  .main-hero .main-hero__content-wrapper .main-hero__title h1 .good-text {
    font-size: 3.625rem;
  }
  .main-hero .main-hero__content-wrapper .main-hero__title h1 .good-text::after {
    width: 12rem;
    height: 4rem;
    transform: translateY(-55%);
  }
}
@media screen and (min-width: 1366px) {
  .main-hero .main-hero__content-wrapper .main-hero__title h1 {
    font-size: 32px;
    line-height: 32px;
  }
  .main-hero .main-hero__content-wrapper .main-hero__title h1 .good-text {
    font-size: 65px;
  }
  .main-hero .main-hero__content-wrapper .main-hero__title h1 .good-text::after {
    width: 14rem;
    height: 6rem;
    transform: translateY(-45%);
  }
}
.main-hero .main-hero__content-wrapper .main-hero__info {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.5rem;
}
.main-hero .main-hero__content-wrapper .main-hero__info br {
  display: none;
}
@media screen and (min-width: 1366px) {
  .main-hero .main-hero__content-wrapper .main-hero__info {
    width: 31.0625rem;
    padding: 0 2.1875rem 0 0;
    position: relative;
  }
  .main-hero .main-hero__content-wrapper .main-hero__info:last-of-type br {
    display: block;
  }
}
@media screen and (min-width: 1920px) {
  .main-hero .main-hero__content-wrapper .main-hero__info {
    width: 100%;
  }
}
.main-hero .main-hero__content-wrapper .main-hero__callout-wrapper {
  width: 25.75rem;
  height: 5rem;
  background: #FFFFFF;
  padding: 1.125rem 1.25rem;
  border-radius: 95.5px;
  transform: translateX(-40%);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 2.375rem;
}
.main-hero .main-hero__content-wrapper .main-hero__callout-wrapper::before {
  content: "";
  position: absolute;
  width: 25.75rem;
  height: 5rem;
  background: #48D597;
  border-radius: 95.5px;
  z-index: -1;
  top: 0.625rem;
  right: 3rem;
}
@media screen and (min-width: 768px) {
  .main-hero .main-hero__content-wrapper .main-hero__callout-wrapper::before {
    width: 49.1875rem;
  }
}
@media screen and (min-width: 1760px) {
  .main-hero .main-hero__content-wrapper .main-hero__callout-wrapper::before {
    width: 125rem;
  }
}
.main-hero .main-hero__content-wrapper .main-hero__callout-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 95.5px;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 500px) {
  .main-hero .main-hero__content-wrapper .main-hero__callout-wrapper {
    transform: translateX(-25%);
    padding: 1.125rem 4rem;
  }
}
@media screen and (min-width: 768px) {
  .main-hero .main-hero__content-wrapper .main-hero__callout-wrapper {
    transform: translateX(0%);
    width: 39.6875rem;
    justify-content: center;
  }
}
@media screen and (min-width: 1366px) {
  .main-hero .main-hero__content-wrapper .main-hero__callout-wrapper {
    margin-bottom: 5.5rem;
  }
}
@media screen and (min-width: 2200px) {
  .main-hero .main-hero__content-wrapper .main-hero__callout-wrapper {
    width: 53.6875rem;
  }
}
.main-hero .main-hero__content-wrapper .main-hero__callout-wrapper .main-hero__callout-text {
  font-weight: bold;
  color: #00494F;
  display: inline-block;
  text-align: center;
  max-width: 14.0625rem;
}
@media screen and (min-width: 768px) {
  .main-hero .main-hero__content-wrapper .main-hero__callout-wrapper .main-hero__callout-text {
    max-width: max-content;
    display: block;
    font-size: 1.4375rem;
  }
}
.main-hero .main-hero__content-wrapper .button {
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 500px) {
  .main-hero .main-hero__content-wrapper .button {
    width: max-content;
  }
}
@media screen and (min-width: 768px) {
  .main-hero .main-hero__content-wrapper .button {
    margin: initial;
  }
}
.main-hero__footnote {
  color: #FFFFFF;
  font-size: 0.75rem;
  line-height: 0.9rem;
  margin-bottom: 1.875rem;
}
.main-hero__subtitle {
  line-height: 1.875rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .main-hero__subtitle {
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1.9531rem;
  }
}
@keyframes bg-crossfade-1 {
  0% {
    opacity: 1;
  }
  0.5555555556% {
    opacity: 1;
  }
  32.7777777778% {
    opacity: 1;
  }
  33.8888888889% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
  99.4444444444% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bg-crossfade-2 {
  32.7777777778% {
    opacity: 1;
  }
  33.8888888889% {
    opacity: 1;
  }
  66.1111111111% {
    opacity: 1;
  }
  67.2222222222% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bg-crossfade-3 {
  66.1111111111% {
    opacity: 1;
  }
  67.2222222222% {
    opacity: 1;
  }
  99.4444444444% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (min-width: 1600px) {
  .main-hero .main-hero__wrapper {
    max-width: calc(100% - (100% - 90rem) / 2);
    margin-left: auto;
    margin-right: 0;
  }
}
.main-hero .main-hero__wrapper .main-hero__image-wrapper {
  position: relative;
  height: calc(213px + 355 * (100vw - 320px) / 679);
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__wrapper .main-hero__image-wrapper {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 1600px) {
  .main-hero .main-hero__wrapper .main-hero__image-wrapper {
    width: auto;
  }
}
.main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation-name: bg-crossfade;
  animation-duration: 90s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
.main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image img {
  width: auto;
  max-width: max-content;
  height: 100%;
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image img {
    max-width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image img {
    width: 100%;
  }
}
.main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image.image-1 figcaption {
  color: #626469;
}
.main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image.image-2 figcaption {
  color: #FFFFFF;
}
.main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image.image-3 figcaption {
  color: #FFFFFF;
}
@media screen and (min-width: 1000px) {
  .main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image.image-3 img {
    max-width: 100%;
  }
}
.main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image:nth-child(1) {
  animation-name: bg-crossfade-1;
  z-index: 2;
}
.main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image:nth-child(2) {
  animation-name: bg-crossfade-2;
  z-index: 1;
}
.main-hero .main-hero__wrapper .main-hero__image-wrapper .main-hero__image:nth-child(3) {
  animation-name: bg-crossfade-3;
  z-index: 0;
}
.page-hero {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .page-hero {
    height: 20.25rem;
  }
}
.page-hero .wrapper {
  z-index: 3;
  padding-top: 1.5625rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-hero .wrapper {
    justify-content: center;
  }
}
.page-hero .shape {
  position: absolute;
}
.page-hero .shape--primary {
  z-index: 2;
  background: #00494F;
}
.page-hero .shape--secondary {
  z-index: 1;
  background: #48D597;
}
.page-hero .shape--tertiary {
  z-index: 3;
  height: 0.8125rem;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  width: calc(100% - 5.9375rem);
  max-width: 29.5625rem;
  background: #DFDF00;
  bottom: 1.875rem;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .page-hero .shape--tertiary {
    bottom: 4.5625rem;
  }
}
@media screen and (min-width: 1600px) {
  .page-hero .shape--tertiary {
    max-width: 50rem;
  }
}
.page-hero .page-hero__subtitle {
  color: #48D597;
  font-size: 0.875rem;
  line-height: 16.8px;
  font-weight: 500;
  text-transform: uppercase;
}
.page-hero .page-hero__title {
  margin-bottom: 4.5rem;
}
.page-hero#hypophosphatasia-page-hero .page-hero__title {
  color: #FFFFFF;
  max-width: 21.5625rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .page-hero#hypophosphatasia-page-hero .page-hero__title {
    max-width: 25.9375rem;
  }
}
.page-hero#hypophosphatasia-page-hero .shape--primary {
  top: 0;
  right: -2rem;
  bottom: 0.9375rem;
  width: calc(100% + 2rem);
  border-radius: 0rem 0rem 10.875rem 0rem;
}
@media screen and (min-width: 1024px) {
  .page-hero#hypophosphatasia-page-hero .shape--primary {
    right: initial;
    top: initial;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 36.125rem;
    border-radius: 0rem 24.4609rem 24.4609rem 0rem;
  }
}
.page-hero#hypophosphatasia-page-hero .shape--secondary {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page-hero#hypophosphatasia-page-hero .shape--secondary {
    height: 36.1875rem;
    top: initial;
    bottom: 6.75rem;
    right: -2rem;
    left: initial;
    width: calc(100% + 2rem);
    border-radius: 34.0543rem;
  }
}
.page-hero#how-it-works-page-hero {
  --custom-margin: 1.75rem;
}
.page-hero#how-it-works-page-hero .page-hero__title {
  color: #00494F;
  max-width: 20ch;
  font-weight: 400;
}
.page-hero#how-it-works-page-hero .page-hero__title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-hero#how-it-works-page-hero .page-hero__title {
    margin-bottom: 2.5rem;
    max-width: 34ch;
  }
  .page-hero#how-it-works-page-hero .page-hero__title br {
    display: block;
  }
}
.page-hero#how-it-works-page-hero .shape--primary {
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
}
.page-hero#how-it-works-page-hero .shape--secondary {
  z-index: 2;
  right: -165px;
  bottom: -365px;
  width: 1182.11px;
  height: 792.68px;
  border-radius: 416.484px;
  transform: rotate(34deg);
}
@media (min-width: 321px) {
  .page-hero#how-it-works-page-hero .shape--secondary {
    right: -130px;
  }
}
@media (min-width: 377px) {
  .page-hero#how-it-works-page-hero .shape--secondary {
    right: -90px;
  }
}
@media (min-width: 768px) {
  .page-hero#how-it-works-page-hero .shape--secondary {
    right: -50px;
  }
}
@media screen and (min-width: 1024px) {
  .page-hero#how-it-works-page-hero .shape--secondary {
    right: unset;
    left: calc(85% - 100vw);
    bottom: -413px;
    transform: rotate(28deg);
  }
}
@media (min-width: 1366px) {
  .page-hero#how-it-works-page-hero .shape--secondary {
    bottom: -880px;
    height: 1463.26px;
    left: calc(25% - 100vw);
    width: 2182.11px;
  }
}
@media (min-width: 1520px) {
  .page-hero#how-it-works-page-hero .shape--secondary {
    left: unset;
    right: calc(100vw - 70%);
  }
}
.page-hero#how-it-works-page-hero .shape--tertiary {
  background: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .page-hero#how-it-works-page-hero .shape--tertiary {
    max-width: 44rem;
  }
}
.page-hero#clinical-data-page-hero {
}
@media screen and (min-width: 768px) {
  .page-hero#clinical-data-page-hero {
    height: calc(182.8px + 141.2 * (100vw - 768px) / 256);
    max-height: 20.25rem;
  }
}
.page-hero#clinical-data-page-hero .page-hero__image-container {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.page-hero#clinical-data-page-hero .page-hero__image-container img {
  max-width: initial;
  width: 100%;
  height: 100%;
  object-position: right;
  object-fit: contain;
}
@media screen and (min-width: 425px) {
  .page-hero#clinical-data-page-hero .page-hero__image-container {
    right: -82px;
  }
  .page-hero#clinical-data-page-hero .page-hero__image-container img {
    object-fit: cover;
    object-position: left;
  }
}
@media screen and (min-width: 768px) {
  .page-hero#clinical-data-page-hero .page-hero__image-container {
    right: 0;
    max-width: fit-content;
  }
  .page-hero#clinical-data-page-hero .page-hero__image-container img {
    object-fit: contain;
    object-position: right center;
    border-bottom-left-radius: 8.9375rem;
  }
}
@media screen and (min-width: 1024px) {
  .page-hero#clinical-data-page-hero .page-hero__image-container img {
    border-bottom-left-radius: 14.9375rem;
  }
}
.page-hero#clinical-data-page-hero .page-hero__subtitle {
  font-size: 0.75rem;
}
@media screen and (min-width: 375px) {
  .page-hero#clinical-data-page-hero .page-hero__subtitle {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .page-hero#clinical-data-page-hero .page-hero__subtitle {
    font-size: 1.25rem;
  }
}
.page-hero#clinical-data-page-hero .page-hero__title {
  color: #FFFFFF;
  font-size: 1.5625rem;
  line-height: 1.75rem;
  max-width: 12.5rem;
  font-weight: 400;
}
.page-hero#clinical-data-page-hero .page-hero__title br {
  display: none;
}
@media screen and (min-width: 375px) {
  .page-hero#clinical-data-page-hero .page-hero__title {
    font-size: 1.875rem;
    line-height: 2.1563rem;
    max-width: 14.0625rem;
  }
  .page-hero#clinical-data-page-hero .page-hero__title br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .page-hero#clinical-data-page-hero .page-hero__title {
    max-width: 22.0625rem;
  }
  .page-hero#clinical-data-page-hero .page-hero__title br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .page-hero#clinical-data-page-hero .page-hero__title {
    max-width: 19ch;
    font-size: 2.5rem;
    line-height: 50px;
  }
}
.page-hero#clinical-data-page-hero .shape--primary {
  top: 0;
  right: auto;
  left: 0;
  bottom: 0;
  width: calc(100% - 5rem);
  max-width: 18.4375rem;
  border-radius: 0rem 8.9375rem 8.9375rem 0rem;
}
@media screen and (min-width: 500px) {
  .page-hero#clinical-data-page-hero .shape--primary {
    border-radius: 0rem 0rem 12.9375rem 0rem;
  }
}
@media screen and (min-width: 768px) {
  .page-hero#clinical-data-page-hero .shape--primary {
    max-width: 55%;
  }
}
@media screen and (min-width: 1024px) {
  .page-hero#clinical-data-page-hero .shape--primary {
    right: initial;
    top: initial;
    bottom: 2.375rem;
    left: 0;
    width: 70%;
    height: 37.6875rem;
    border-radius: 0rem 26.0302rem 26.0302rem 0rem;
  }
}
@media screen and (min-width: 1440px) {
  .page-hero#clinical-data-page-hero .shape--primary {
    width: 100%;
    max-width: calc(100% - 37rem);
  }
}
.page-hero#clinical-data-page-hero .shape--secondary {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page-hero#clinical-data-page-hero .shape--secondary {
    height: 36.1875rem;
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 11rem);
    border-radius: 24.4609rem;
  }
}
.page-hero#clinical-data-page-hero .shape--tertiary {
  width: calc(100% - 3.9375rem);
}
@media screen and (min-width: 1440px) {
  .page-hero#clinical-data-page-hero .shape--tertiary {
    max-width: 32.375rem;
  }
}
.page-hero#dosing-page-hero .page-hero__title {
  color: #00494F;
  font-weight: 400;
}
.page-hero#dosing-page-hero .shape--tertiary {
  background: #FFFFFF;
}
@media screen and (min-width: 500px) {
  .page-hero#dosing-page-hero .shape--tertiary {
    max-width: 27.5rem;
  }
}
.page-hero#dosing-page-hero .shape--primary {
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .page-hero#dosing-page-hero .shape--primary {
    width: calc(100% + 3.75rem);
    height: 603px;
    border-radius: 416.484px;
    bottom: 5.375rem;
    right: 3.75rem;
  }
}
.page-hero#dosing-page-hero .shape--secondary {
  z-index: 2;
  width: calc(100% + 33rem);
  height: 415px;
  border-radius: 207.5px;
  bottom: 0;
  right: -47px;
}
@media screen and (min-width: 1024px) {
  .page-hero#dosing-page-hero .shape--secondary {
    width: 1182.11px;
    height: 792.68px;
    left: -33rem;
    transform: rotate(22deg);
    bottom: -28rem;
    border-radius: 416.484px;
  }
}
@media screen and (min-width: 1440px) {
  .page-hero#dosing-page-hero .shape--secondary {
    left: auto;
    right: 45%;
    width: 1700.11px;
    height: 880.68px;
  }
}
.page-hero#toolkit-page-hero {
  background-color: #00494F;
}
.page-hero#toolkit-page-hero .page-hero__title {
  color: #FFFFFF;
  max-width: 17ch;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .page-hero#toolkit-page-hero .page-hero__title {
    max-width: 25ch;
  }
}
.page-hero#toolkit-page-hero .page-hero__image-container {
  border-radius: 50px 0 0 50px;
  bottom: -10px;
  height: 100px;
  overflow: hidden;
  position: absolute;
  right: -40px;
  width: 200px;
}
@media (min-width: 425px) {
  .page-hero#toolkit-page-hero .page-hero__image-container {
    bottom: 0;
    width: 250px;
  }
}
@media (min-width: 700px) {
  .page-hero#toolkit-page-hero .page-hero__image-container {
    --width-picture: 28.125rem;
    --height-picture: calc(var(--width-picture) * 0.7);
    border-radius: 0;
    border-bottom-left-radius: calc(var(--width-picture) * 0.69);
    bottom: calc(100% - var(--height-picture));
    height: var(--height-picture);
    right: calc(40% - var(--width-picture));
    width: var(--width-picture);
    z-index: -1;
  }
}
@media (min-width: 768px) {
  .page-hero#toolkit-page-hero .page-hero__image-container {
    --width-picture: 32.8125rem;
  }
}
@media (min-width: 900px) {
  .page-hero#toolkit-page-hero .page-hero__image-container {
    right: calc(50% - var(--width-picture));
  }
}
@media (min-width: 1024px) {
  .page-hero#toolkit-page-hero .page-hero__image-container {
    --width-picture: 700px;
    right: calc(40% - var(--width-picture));
  }
  .page-hero#toolkit-page-hero .page-hero__image-container img {
    height: auto;
  }
}
@media (min-width: 1100px) {
  .page-hero#toolkit-page-hero .page-hero__image-container {
    right: calc(45% - var(--width-picture));
  }
}
@media (min-width: 1440px) {
  .page-hero#toolkit-page-hero .page-hero__image-container {
    right: calc(1440px - var(--width-picture) - 56vw);
  }
}
@media (min-width: 1575px) {
  .page-hero#toolkit-page-hero .page-hero__image-container {
    right: calc(1440px - var(--width-picture) - 53vw);
  }
}
.page-hero#toolkit-page-hero .page-hero__image {
  width: 100%;
}
@media (min-width: 1024px) {
  .page-hero#toolkit-page-hero .page-hero__image {
    height: 100%;
  }
}
.page-hero#toolkit-page-hero .shape--tertiary {
  max-width: 40%;
}
@media screen and (min-width: 500px) {
  .page-hero#toolkit-page-hero .shape--tertiary {
    max-width: 50%;
  }
}
@media screen and (min-width: 1440px) {
  .page-hero#toolkit-page-hero .shape--tertiary {
    width: 50%;
    max-width: initial;
  }
}
.testimonial {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  overflow: hidden;
  padding: 1.875rem 0.625rem 4.375rem;
  position: relative;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .testimonial > * {
    margin: calc(1rem / 2);
  }
}
@media (min-width: 1024px) {
  .testimonial {
    gap: 4rem;
    padding-top: 8.125rem;
    padding-bottom: 10.9375rem;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .testimonial > * {
      margin: calc(4rem / 2);
    }
  }
}
.testimonial__author {
  font-weight: 500;
}
.testimonial__content {
  width: 100%;
}
@media (min-width: 1024px) {
  .testimonial__content {
    width: fit-content;
  }
}
.testimonial__description {
  font-weight: 400;
}
.testimonial__image {
  width: 100%;
}
.testimonial__image-container {
  max-width: 10.625rem;
  width: 10.625rem;
}
@media (min-width: 700px) {
  .testimonial__image-container {
    max-width: 19.375rem;
    width: 14.0625rem;
  }
}
.testimonial__quote {
  margin: 0 auto;
  padding: 1.875rem 1.8rem 1.25rem;
  position: relative;
  width: fit-content;
}
.testimonial__quote::before,
.testimonial__quote::after {
  color: #FFFFFF;
  display: inline;
  font-size: 150px;
  font-weight: 900;
  height: 4.6875rem;
  line-height: 11.7188rem;
  margin: 0;
  position: absolute;
  width: 3.75rem;
  z-index: -1;
}
@media (min-width: 1024px) {
  .testimonial__quote::before,
  .testimonial__quote::after {
    font-size: 12.5rem;
    line-height: 15.625rem;
  }
}
.testimonial__quote::before {
  content: open-quote;
  left: -0.625rem;
  top: -1.25rem;
}
@media (min-width: 1024px) {
  .testimonial__quote::before {
    left: -2.5rem;
    top: -0.625rem;
  }
}
.testimonial__quote::after {
  content: close-quote;
  bottom: 1.25rem;
  right: 0;
}
@media (min-width: 1024px) {
  .testimonial__quote::after {
    bottom: 2.1875rem;
    right: -0.625rem;
  }
}
.testimonial__quote p {
  font-weight: 700;
  line-height: 1.05rem;
  margin: 0 auto;
  max-width: 33ch;
  position: relative;
}
@media (min-width: 700px) {
  .testimonial__quote p {
    font-size: 24px;
    line-height: 2.25rem;
  }
}
.testimonial__quote p:last-child:after {
  background-color: #B41E8C;
  bottom: -0.625rem;
  content: "";
  display: block;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 7rem;
  height: 0.1875rem;
}
@media (min-width: 1024px) {
  .testimonial__quote p:last-child:after {
    width: 10.6875rem;
  }
}
.testimonial__shape-container {
  margin: 0;
  position: absolute;
  z-index: -1;
}
.testimonial p {
  color: #00494F;
  margin-bottom: 0.375rem;
  text-align: center;
}
.testimonial p.testimonial__author,
.testimonial p.testimonial__author-description {
  font-size: 14px;
  line-height: 1.0938rem;
}
@media (min-width: 700px) {
  .testimonial p.testimonial__author,
  .testimonial p.testimonial__author-description {
    font-size: 20px;
    line-height: 1.5625rem;
  }
}
.testimonial--hypophosphatasia {
  padding-top: 3.125rem;
  padding-bottom: 6.875rem;
}
.testimonial--hypophosphatasia .testimonial__quote::before {
  top: -1.5625rem;
  left: -1.5625rem;
}
@media screen and (min-width: 375px) {
  .testimonial--hypophosphatasia .testimonial__quote::before {
    left: -2.5rem;
  }
}
@media (min-width: 1024px) {
  .testimonial--hypophosphatasia .testimonial__quote::before {
    top: -1.5625rem;
    left: -0.625rem;
  }
}
.testimonial--hypophosphatasia .testimonial__quote::after {
  bottom: 2.5rem;
  right: -2.1875rem;
}
@media screen and (min-width: 375px) {
  .testimonial--hypophosphatasia .testimonial__quote::after {
    right: -2.5rem;
  }
}
@media (min-width: 1024px) {
  .testimonial--hypophosphatasia .testimonial__quote::after {
    bottom: 2.8125rem;
  }
}
.testimonial--hypophosphatasia .testimonial__quote p {
  font-size: 0.875rem;
  line-height: 1.0625rem;
  max-width: 37ch;
}
@media (min-width: 1024px) {
  .testimonial--hypophosphatasia .testimonial__quote p {
    font-size: 1.5rem;
    line-height: 2.25rem;
    max-width: 38.4ch;
  }
}
@media (min-width: 1024px) {
  .testimonial--shape-top::before {
    --width-shape: 152.25rem;
    --height-shape: 85.3125rem;
    --rotation-shape: 32deg;
    background-color: #48D597;
    border-radius: 45.0506rem;
    bottom: 50%;
    content: "";
    height: var(--height-shape);
    margin-left: calc(-1 * var(--width-shape) / 2 + var(--height-shape) / 2 * tan(var(--rotation-shape)));
    position: absolute;
    transform: rotate(var(--rotation-shape));
    width: var(--width-shape);
    z-index: -1;
  }
}
.testimonial--shape-top .testimonial__shape-container {
  bottom: 1.5625rem;
}
@media (min-width: 1024px) {
  .testimonial--shape-top .testimonial__shape-container {
    display: none;
  }
}
.testimonial--shape-right::before {
  --width-shape: 93.75rem;
  --height-shape: 80%;
  background-color: #48D597;
  border-radius: 36.36rem;
  content: "";
  height: var(--height-shape);
  left: 0;
  position: absolute;
  top: 20%;
  width: var(--width-shape);
  z-index: -1;
}
@media (min-width: 1024px) {
  .testimonial--shape-right::before {
    --width-shape: 200vw;
    --height-shape: calc(var(--width-shape) * 0.4);
    left: unset;
    margin-left: calc(var(--width-shape) * 0.7);
    top: 0;
  }
}
.testimonial--shape-right .testimonial__shape-container {
  display: none;
}
.not-found-hero {
  background-color: #00494F;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 12.5rem;
  height: calc(200px + 490 * (100vw - 375px) / 1065);
}
.not-found-hero .not-found-hero__content {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.not-found-hero .not-found-hero__title {
  color: #00494F;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.75rem;
  margin-bottom: 1rem;
  max-width: 75%;
}
@media screen and (min-width: 515px) {
  .not-found-hero .not-found-hero__title {
    max-width: 13.3125rem;
  }
}
@media screen and (min-width: 555px) {
  .not-found-hero .not-found-hero__title {
    font-size: 1.875rem;
    max-width: 16.3125rem;
  }
}
@media screen and (min-width: 768px) {
  .not-found-hero .not-found-hero__title {
    font-size: 2.5rem;
    line-height: 48px;
    max-width: 21.3125rem;
  }
}
@media screen and (min-width: 885px) {
  .not-found-hero .not-found-hero__title {
    font-size: 3.125rem;
    margin-bottom: 1rem;
    max-width: 27.3125rem;
  }
}
@media screen and (min-width: 1200px) {
  .not-found-hero .not-found-hero__title {
    font-size: 4.25rem;
    line-height: 4.6875rem;
    margin-bottom: 3rem;
    max-width: 37rem;
  }
}
.not-found-hero .not-found-hero__shape {
  position: absolute;
  z-index: 2;
  width: 301.33px;
  height: 492.48px;
  border-radius: 187.5px;
  background: #48D597;
  transform: rotate(-24.25deg);
  bottom: -8rem;
  right: 30%;
}
@media screen and (min-width: 515px) {
  .not-found-hero .not-found-hero__shape {
    width: 722.33px;
    height: 615.48px;
    bottom: -15rem;
    border-radius: 222.5px;
  }
}
@media screen and (min-width: 640px) {
  .not-found-hero .not-found-hero__shape {
    right: 20rem;
  }
}
@media screen and (min-width: 737px) {
  .not-found-hero .not-found-hero__shape {
    width: 1494.64px;
    height: 894.64px;
    border-radius: 31.5487rem;
    transform: rotate(49.87deg);
    right: 24%;
    bottom: -13rem;
  }
}
@media screen and (min-width: 1024px) {
  .not-found-hero .not-found-hero__shape {
    right: 28%;
    bottom: -9rem;
  }
}
@media screen and (min-width: 1080px) {
  .not-found-hero .not-found-hero__shape {
    transform: rotate(59.87deg);
  }
}
@media screen and (min-width: 1440px) {
  .not-found-hero .not-found-hero__shape {
    right: 22%;
    width: calc(1494.64px + 75%);
    height: calc(894.64px + 75%);
    border-radius: calc(31.5487rem + 1%);
  }
}
@media screen and (min-width: 1820px) {
  .not-found-hero .not-found-hero__shape {
    right: 27%;
    bottom: 4rem;
  }
}
.not-found-hero .not-found-hero__image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
}
.not-found-hero .not-found-hero__image img {
  height: 100%;
  width: auto;
}
.custom-section {
  width: 100%;
  background: #FFFFFF;
}
.custom-section .custom-section__header {
  height: 5.5625rem;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .custom-section .custom-section__header {
    min-width: 50.3125rem;
  }
}
.custom-section .custom-section__header .custom-section__header-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.custom-section .custom-section__header .custom-section__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 20px;
  color: #00494F;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .custom-section .custom-section__header .custom-section__title {
    font-size: 1.25rem;
    line-height: 25px;
  }
}
.custom-section .custom-section__header .custom-section__header-line-shape {
  width: 100%;
  max-width: 12.4375rem;
  height: 0.1875rem;
  background: #FFFFFF;
  border-radius: 0.1875rem;
}
.custom-section .custom-section__header::before {
  background: #48D597;
  border-bottom-right-radius: 1.875rem;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}
@media (min-width: 1024px) {
  .custom-section .custom-section__header::before {
    width: 50%;
  }
}
.custom-section .custom-section__content {
  padding-top: 1.5625rem;
}
.table {
  width: 100%;
}
.table sup {
  font-size: 65%;
  top: -0.4em;
  left: 0.0625rem;
}
.table__title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #FFFFFF !important;
  padding: 10px 0px;
}
@media screen and (max-width: 720px) {
  .table__title {
    padding: 10px;
    font-size: 0.8rem;
  }
}
.table__title--sections {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.table__title--section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #FFFFFF !important;
}
.table__title--section :nth-child(n) {
  color: #FFFFFF !important;
  text-align: center;
}
.table__title--section h3 {
  font-size: 1.2rem;
  font-weight: bold;
}
.table__title--section p {
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .table__wrapper {
    overflow-x: auto;
    padding-bottom: 1px;
  }
}
.table__wrapper .table__body.no-padding tr td {
  padding: 10px;
}
.table__header {
  background-color: #00494F;
  margin-left: 16%;
}
.table__header h2 {
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem;
  text-align: center;
}
.table__header--mh {
  color: #FFFFFF;
  font-weight: bold;
  background-color: #00494F;
  border-bottom: 6px solid #48D597;
}
.table__header--mh--empty {
  background-color: #FFFFFF;
  color: #626469;
  font-weight: 300;
  border: none !important;
}
.table__header--mh--nb {
  border-left: 0 !important;
  border-right: 0 !important;
}
.table__header--mh--paragraph {
  display: flex;
  gap: 0.25rem;
  flex-direction: column;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .table__header--mh--paragraph > * {
    margin: calc(0.25rem / 2);
  }
}
@media screen and (max-width: 768px) {
  .table__header--mh--paragraph {
    font-size: 1.1rem;
  }
}
.table__header--mh--paragraph span:first-child {
  color: #FFFFFF !important;
  font-size: 0.9375rem;
  font-weight: 700;
}
.table__header--mh--paragraph span {
  font-size: 0.625rem;
  font-weight: 300;
  line-height: 0.8rem;
  color: #FFFFFF !important;
}
@media screen and (max-width: 768px) {
  .table__header--mh--paragraph span {
    font-size: 0.7rem;
  }
}
.table__header--mh--cell {
  border: 0 !important;
}
.table__header--sh {
  color: #00494F;
  font-weight: bold;
}
.table__header--sh--nb {
  border-left: 0 !important;
  border-right: 0 !important;
}
.table__header--ssh {
  color: #626469;
  font-weight: bold;
}
.table__header--ssh--nb {
  border-left: 0 !important;
  border-right: 0 !important;
}
.table__header--ssh--cg {
  color: #00494F !important;
  text-align: left !important;
}
@media (max-width: 767px) {
  .table__header {
    margin-left: 0;
  }
}
.table__content {
  display: table;
  width: 100%;
  table-layout: auto;
  border-spacing: 0;
  border-bottom: 6px solid #48D597;
  background-color: #fff;
  border-collapse: collapse;
}
@media screen and (min-width: 1200px) {
  .table__content {
    table-layout: fixed;
  }
}
@media screen and (max-width: 768px) {
  .table__content {
    min-width: 700px;
  }
}
.table__content td {
  color: #626469;
  font-weight: 300;
  vertical-align: middle;
  padding: 0.32rem 0.75rem;
}
@media screen and (min-width: 1024px) {
  .table__content td {
    padding: 2rem 1rem;
  }
}
.table__content th {
  padding: 0.5rem;
}
.table__content td,
.table__content th {
  border: 1px solid #E2E7EA;
  text-align: center;
  font-size: 0.9rem;
}
.table__content tr:first-child th {
  border-top: 0;
}
.table__content tr:last-child td {
  border-bottom: 0;
}
.table__content tr td:first-child,
.table__content tr th:first-child {
  border-left: 0;
  border-top: 0;
  width: 16% !important;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .table__content tr td:first-child,
  .table__content tr th:first-child {
    position: sticky;
    left: 0;
    background-color: #fff;
  }
}
.table__content tr td:last-child,
.table__content tr th:last-child {
  border-right: 0;
}
.table__body__row--mh :first-child {
  color: #00494F !important;
  text-align: left !important;
}
.table__body__row--mb td {
  font-weight: bold !important;
}
.table__body__cell--head {
  text-align: left !important;
  padding: 10px 10px 10px 2rem !important;
}
@media screen and (max-width: 768px) {
  .table__body__cell--head {
    padding: 0.2rem 1rem 0.2rem 2rem !important;
  }
}
.table__footer {
  display: flex;
  flex-direction: column;
  color: #626469;
  font-size: 0.75rem;
  font-weight: 300;
  padding: 10px 0px;
}
.table__footer sup .positioned {
  top: -0.3em;
  left: 0.3em;
}
.request-a-rep__modal-form {
  width: 100% !important;
  height: max-content;
  background: #FFFFFF;
  border-radius: 1.25rem;
  max-width: 58.5rem;
  position: relative;
  margin: 0 !important;
  padding: 1rem 0.7813rem;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .request-a-rep__modal-form {
    padding: 2.5rem;
  }
}
.request-a-rep__modal-form .request-a-rep__header .request-a-rep__actions {
  text-align: end;
}
@media screen and (min-width: 768px) {
  .request-a-rep__modal-form .request-a-rep__header .request-a-rep__actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 2.5rem;
  }
}
.request-a-rep__modal-form .request-a-rep__header .request-a-rep__close-button {
  color: #B41E8C;
  font-size: 4.6875rem;
  font-weight: 300;
  display: inline;
  line-height: 100%;
  cursor: pointer;
}
.request-a-rep__modal-form .request-a-rep__header .request-a-rep__title {
  color: #00494F;
  font-weight: 900;
  text-align: center;
  font-size: 2.25rem;
  line-height: 35.82px;
}
.request-a-rep__modal-form .request-a-rep__header .request-a-rep__subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 25px;
  color: #626469;
  margin-bottom: 2.0787rem;
}
.request-a-rep__modal-form .form__group-label {
  color: #626469;
  font-size: 0.75rem;
  line-height: 14.4px;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.request-a-rep__modal-form .form__control .form__control-checkbox .form__control-label {
  color: #626469;
  font-size: 0.875rem;
  line-height: 1.0938rem;
  font-weight: 300;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .request-a-rep__modal-form .form__control .form__control-checkbox .form__control-label {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.request-a-rep__modal-form .form__control-checkbox--last {
  align-items: flex-start !important;
}
.request-a-rep__modal-form .form__control-checkbox--last .form__control-label {
  font-size: 1.125rem !important;
  font-weight: 300 !important;
  line-height: 27px !important;
}
.request-a-rep__modal-form .request-a-rep__terms-text {
  font-weight: 600;
  margin-bottom: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .request-a-rep__modal-form .request-a-rep__terms-text {
    text-align: center;
  }
}
.request-a-rep__modal-form .request-a-rep__terms-text a {
  text-decoration: none;
}
.request-a-rep__modal-form .button {
  width: 100%;
  justify-content: center;
  margin-bottom: 2.6875rem;
}
.request-a-rep__modal-form .button::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .request-a-rep__modal-form .button {
    max-width: 20.3125rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .request-a-rep__modal-form .form__controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.875rem;
  }
  .request-a-rep__modal-form .form__controls .form__group-label,
  .request-a-rep__modal-form .form__controls .form__control:last-of-type {
    grid-column: span 2/span 2;
  }
}
.request-a-rep__modal-form .nice-select {
  align-items: center;
  display: flex;
  font-size: 1.125rem;
  font-weight: 300;
  border: none;
}
.request-a-rep__modal-form .nice-select::after {
  top: 0;
  bottom: 0;
  margin: auto;
}
.request-a-rep__modal-form .nice-select-dropdown {
  width: 100%;
}
.request-a-rep__modal-form .nice-select .option {
  font-weight: 300;
  text-align: center;
}
.request-a-rep__modal-form .nice-select .option.disabled {
  display: none;
}
.request-a-rep__modal-form .nice-select .option.focus,
.request-a-rep__modal-form .nice-select .option:hover {
  background-color: rgba(226, 231, 234, 0.5);
  color: #626469;
  font-weight: 500;
}
.request-a-rep__modal-form .nice-select .option.selected {
  background-color: #00494F !important;
  color: #FFFFFF;
  font-weight: 400;
}
.request-a-rep__modal-form .nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.request-a-rep__modal-form .nice-select .list:hover .option.selected:not(:hover) {
  background-color: #00494F !important;
}
.request-a-rep__modal-form #specialty + .nice-select .list {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #b41e8c #E2E7EA;
}
.request-a-rep__modal-form #specialty + .nice-select .list:hover {
  scrollbar-color: rgba(180, 30, 140, 0.5) #E2E7EA;
}
.request-a-rep__modal-form #specialty + .nice-select .list::-webkit-scrollbar {
  width: 8px;
}
.request-a-rep__modal-form #specialty + .nice-select .list::-webkit-scrollbar-track {
  background: #E2E7EA;
}
.request-a-rep__modal-form #specialty + .nice-select .list::-webkit-scrollbar-thumb {
  background-color: #b41e8c;
  border-radius: 4px;
}
.request-a-rep__modal-form #specialty + .nice-select .list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(180, 30, 140, 0.5);
}
.request-a-rep__content .form.hidden {
  display: none;
}
.thank__you {
  display: flex;
  justify-content: center;
  min-height: 300px;
  flex-direction: column;
}
.thank__you.hidden {
  display: none;
}
.thank__you .request-a-rep__title {
  margin-bottom: 2rem;
}
input {
  width: 100%;
}
input[type=submit] {
  cursor: pointer;
}
input[type=checkbox],
input[type=radio] {
  color: currentColor;
  width: 2rem;
  height: 2rem;
  border: 3px solid #48D597;
  transform: translateY(-0.075em);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
input[type=radio] {
  border-radius: 50%;
}
input[type=radio]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #48D597;
  background-color: CanvasText;
}
input[type=radio]:checked::before {
  transform: scale(1.5);
}
input[type=checkbox] {
  border-radius: 0.25rem;
  -webkit-appearance: none;
  position: relative;
}
input[type=checkbox]:checked {
  background-color: #48D597;
  border-color: #48D597;
}
.form__control {
  display: block;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 2rem;
  transition: all 100ms ease-in-out;
}
.form__control .form__control-label,
.form__control .form__control-legend {
  font-size: 1rem;
  font-weight: 400;
  line-height: 14px;
  color: #626469;
  display: inline-block;
}
.form__control .form__control-legend {
  margin-bottom: 0.5rem;
  line-height: 18px;
}
.form__control .form__control-error {
  position: absolute;
  display: none;
  color: #DF2A4A;
  font-size: 0.75rem;
  font-weight: 500;
  top: 102%;
  left: 0;
}
@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: "*";
  color: #DF2A4A;
  display: inline-block;
  margin-left: 0.25rem;
}
.form__control .form__control-input {
  height: 2.9375rem;
  padding: 0.625rem 1.875rem;
  background-color: #FFFFFF;
  width: 100%;
  outline: 1px solid #626469;
  color: #626469;
  font-size: 1.125rem;
  font-weight: 300;
}
.form__control .form__control-input::placeholder {
  color: #626469;
  font-size: 1.125rem;
  font-weight: 300;
}
.form__control .form__control-select-wrapper {
  position: relative;
  height: 2.9375rem;
  outline: 1px solid #626469;
  color: #626469;
  font-size: 1.125rem;
  font-weight: 300;
}
.form__control .form__control-select-wrapper::after {
  content: url(/assets/icons/icon-select-arrow-pink.svg);
  position: absolute;
  width: 0.8125rem;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  transition: transform 200ms ease-in-out;
  z-index: -1;
}
.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 {
  outline: none;
  border: none;
}
.form__control .form__control-select-wrapper .form__control-select option,
.form__control .form__control-select-wrapper .form__control-select option:checked {
  color: #626469;
  font-size: 1.125rem;
  font-weight: 300;
}
.form__control .form__control-radio,
.form__control .form__control-checkbox {
  display: flex;
  align-items: center;
}
.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: center;
}
.form__control .form__control-checkbox .form__control-label {
  font-size: 1rem;
  font-weight: 300;
  line-height: 17.5px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .form__control .form__control-checkbox .form__control-label {
    font-size: 1.125rem;
  }
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-label {
  color: #DF2A4A;
}
.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: #DF2A4A;
  outline-width: 3px;
}
.form__control.form__control--invalid[data-touched=true][data-required=true][data-is-valid=false] .form__control-error {
  display: block;
}
.skeleton {
  background-color: #00494F;
  border-radius: 1.875rem;
  box-sizing: border-box;
  width: fit-content;
}
.skeleton__point {
  --point-border-style: solid;
  --point-before-width: 5.3094rem;
  background-color: #48D597;
  border: 2px solid transparent;
  border-radius: 50px;
  height: 1.125rem;
  position: absolute;
  transition: all 1s;
  width: 1.125rem;
}
.skeleton__point::before,
.skeleton__point::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
}
.skeleton__point::before {
  border-bottom: 1px var(--point-border-style) #FFFFFF;
  right: 100%;
  width: var(--point-before-width);
}
.skeleton__point::after {
  background-color: #FFFFFF;
  border-radius: 50%;
  height: 0.3125rem;
  left: calc(var(--point-before-width) * -1);
  width: 0.3125rem;
}
.skeleton__point[data-word-alignment=right]::before {
  left: 100%;
  right: unset;
}
.skeleton__point[data-word-alignment=right]::after {
  left: unset;
  right: calc(var(--point-before-width) * -1);
}
.skeleton__point[data-word-alignment=right] .skeleton__word {
  left: unset;
  right: calc(var(--point-before-width) * -1);
}
.skeleton__point--active {
  --point-border-style: dashed;
  --point-active-before-width: 0px;
  --point-active-after-height: 3.125rem;
  border-color: #FFFFFF;
  background-color: #B41E8C;
}
.skeleton__point--active .skeleton__word {
  color: #FFFFFF;
}
.skeleton__point--active::before {
  border-color: #48D597;
  border-width: 3px;
  bottom: unset;
  left: unset;
  right: unset;
  top: unset;
  width: var(--point-active-before-width);
}
.skeleton__point--active::after {
  background-color: transparent;
  border-left: 3px var(--point-border-style) #48D597;
  border-radius: unset;
  bottom: unset;
  height: var(--point-active-after-height);
  left: unset;
  right: unset;
  top: unset;
  width: 0;
}
.skeleton__point--active[data-horizontal-line=none]::after {
  left: 0;
  margin: 0 auto;
  right: 0;
}
.skeleton__point--active[data-horizontal-line=none][data-vertical-line=bottom]:after {
  top: 100%;
}
.skeleton__point--active[data-horizontal-line=none][data-vertical-line=top]:after {
  bottom: 100%;
}
.skeleton__point--active[data-horizontal-line=left]::before {
  bottom: 0;
  left: unset;
  margin: auto;
  right: 100%;
  top: 0;
}
.skeleton__point--active[data-horizontal-line=left][data-vertical-line=bottom]::after,
.skeleton__point--active[data-horizontal-line=left][data-vertical-line=top]::after {
  right: calc(100% + var(--point-active-before-width));
}
.skeleton__point--active[data-horizontal-line=right]::before {
  bottom: 0;
  margin: auto;
  top: 0;
  left: 100%;
}
.skeleton__point--active[data-horizontal-line=right][data-vertical-line=bottom]::after,
.skeleton__point--active[data-horizontal-line=right][data-vertical-line=top]::after {
  left: calc(100% + var(--point-active-before-width));
}
.skeleton__point--active[data-vertical-line=bottom]::after {
  top: 45%;
}
.skeleton__point--active[data-vertical-line=top]::after {
  bottom: 45%;
}
.skeleton__point[data-word=neurologic] {
  --point-before-width: 48vw;
  --point-active-before-width: 1.25rem;
  right: 35%;
  top: 5%;
}
.skeleton__point[data-word=neurologic] .skeleton__word {
  top: -1.25rem;
}
@media screen and (min-width: 458px) {
  .skeleton__point[data-word=neurologic] {
    --point-before-width: 193px;
  }
}
.skeleton__point[data-word=dental] {
  --point-before-width: 30vw;
  right: 38%;
  top: 18%;
}
.skeleton__point[data-word=dental] .skeleton__word {
  top: -1.25rem;
}
@media screen and (min-width: 458px) {
  .skeleton__point[data-word=dental] {
    --point-before-width: 8.5rem;
  }
}
.skeleton__point[data-word=respiratory] {
  --point-before-width: 21vw;
  right: 55%;
  top: 38%;
}
.skeleton__point[data-word=respiratory] .skeleton__word {
  top: -2.1875rem;
  left: calc(var(--point-before-width) * -1 - 30px);
}
@media screen and (min-width: 360px) {
  .skeleton__point[data-word=respiratory] {
    --point-before-width: 22vw;
  }
}
@media screen and (min-width: 410px) {
  .skeleton__point[data-word=respiratory] {
    --point-before-width: 23vw;
  }
}
@media screen and (min-width: 458px) {
  .skeleton__point[data-word=respiratory] {
    --point-before-width: 5rem;
  }
}
.skeleton__point[data-word=muscular] {
  --point-before-width: 14vw;
  right: 20%;
  top: 43%;
}
@media screen and (min-width: 360px) {
  .skeleton__point[data-word=muscular] {
    --point-before-width: 13.5vw;
  }
}
@media screen and (min-width: 458px) {
  .skeleton__point[data-word=muscular] {
    --point-before-width: 3.8125rem;
  }
}
.skeleton__point[data-word=renal] {
  --point-active-before-width: 1rem;
  --point-before-width: 27vw;
  right: 35%;
  top: 54%;
}
@media screen and (min-width: 360px) {
  .skeleton__point[data-word=renal] {
    --point-before-width: 27.2vw;
  }
}
@media screen and (min-width: 458px) {
  .skeleton__point[data-word=renal] {
    --point-before-width: 7.8125rem;
  }
}
.skeleton__point[data-word=rheumatic] {
  --point-active-before-width: 3.4375rem;
  --point-before-width: 21vw;
  right: 65%;
  top: 55%;
}
@media screen and (min-width: 400px) {
  .skeleton__point[data-word=rheumatic] {
    --point-before-width: 20.7vw;
  }
}
@media screen and (min-width: 458px) {
  .skeleton__point[data-word=rheumatic] {
    --point-before-width: 68px;
  }
}
.skeleton__point[data-word=skeletal] {
  --point-active-before-width: 7.1875rem;
  --point-before-width: 13vw;
  right: 74%;
  top: 72%;
}
.skeleton__point[data-word=skeletal] .skeleton__word {
  top: -2.8125rem;
  width: 13ch;
}
@media screen and (min-width: 400px) {
  .skeleton__point[data-word=skeletal] {
    --point-before-width: 12.5vw;
  }
}
@media screen and (min-width: 458px) {
  .skeleton__point[data-word=skeletal] {
    --point-before-width: 30px;
  }
}
.skeleton__point[data-word=growth] {
  --point-active-before-width: 0;
  --point-before-width: 25vw;
  right: 33%;
  top: 26%;
}
.skeleton__point[data-word=growth] .skeleton__word {
  left: calc(var(--point-before-width) * -2);
  max-width: 13ch;
  top: -2.8125rem;
}
@media screen and (min-width: 458px) {
  .skeleton__point[data-word=growth] {
    --point-before-width: 6.3125rem;
  }
}
.skeleton__image {
  max-width: 418px;
}
.skeleton__image-container {
  position: relative;
  width: fit-content;
}
.skeleton__symptom {
  color: #626469;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.0938rem;
  margin-left: 2rem;
}
.skeleton__symptom::marker {
  color: #000000;
}
.skeleton__symptoms-list {
  background-color: #FFFFFF;
  border-radius: 0 0 0 1.875rem;
  border-top: 0.7881rem solid #48D597;
  margin: 0 auto;
  left: 0;
  max-width: 19rem;
  padding-bottom: 1.25rem;
  padding-top: 1.125rem;
  position: absolute;
  right: 0;
  top: 26%;
  width: 85%;
}
.skeleton__symptoms-list--hidden {
  animation: fadeOut 0.5s;
  opacity: 0;
  z-index: -1;
}
.skeleton__symptoms-list.in-animation {
  animation: fadeIn 0.5s;
}
.skeleton__word {
  color: #48D597;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  left: calc(var(--point-before-width) * -1);
  line-height: 1.4375rem;
  position: absolute;
  top: -1.5625rem;
  transition: none;
}
.skeleton__word:hover {
  color: #FFFFFF;
}
.skeleton__word .smaller {
  font-size: 0.625rem;
  line-height: 0.6625rem;
  position: absolute;
  left: 0;
  bottom: -0.625rem;
}
.skeleton__word sup {
  font-size: 0.625rem;
  line-height: 0.6625rem;
}
.skeleton__footnote {
  bottom: 0.625rem;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 0.9rem;
  position: absolute;
  text-align: center;
  width: 100%;
}
.skeleton--desktop {
  background-color: #00494F;
  border-radius: 36.3544rem 0 0 0;
  display: flex;
  justify-content: center;
  min-width: 53.125rem;
  padding: 3.125rem 15% 0;
}
.skeleton--desktop .skeleton__point {
  --point-before-width: 6.875rem;
  height: 1.375rem;
  width: 1.375rem;
}
.skeleton--desktop .skeleton__point--active[data-horizontal-line=right]::after,
.skeleton--desktop .skeleton__point--active[data-horizontal-line=left]::after {
  left: 0;
  margin: 0 auto;
  right: 0;
}
.skeleton--desktop .skeleton__point--active[data-vertical-line=top]::before {
  top: -135px;
}
.skeleton--desktop .skeleton__point--active[data-vertical-line=top]::after {
  bottom: 125%;
  top: unset;
}
.skeleton--desktop .skeleton__point--active[data-vertical-line=bottom]::before {
  bottom: calc(var(--point-active-after-height) * -1 - 5px);
  margin: 0;
  top: unset;
}
.skeleton--desktop .skeleton__point--active[data-vertical-line=bottom]::after {
  top: 125%;
}
.skeleton--desktop .skeleton__point--active[data-horizontal-line=left]::before {
  right: 10px;
}
.skeleton--desktop .skeleton__point--active[data-horizontal-line=right]::before {
  left: 10px;
  margin: 0;
}
.skeleton--desktop .skeleton__point[data-word-alignment=right] .skeleton__word {
  left: calc(var(--point-before-width) + 25px);
  right: unset;
}
.skeleton--desktop .skeleton__point[data-word-alignment=left] .skeleton__word {
  right: calc(var(--point-before-width) + 25px);
  left: unset;
}
.skeleton--desktop .skeleton__point[data-word=neurologic] {
  --point-before-width: 4.5rem;
}
.skeleton--desktop .skeleton__point[data-word=dental] {
  --point-before-width: 6.4375rem;
}
.skeleton--desktop .skeleton__point[data-word=respiratory] {
  --point-before-width: 4.0625rem;
}
.skeleton--desktop .skeleton__point[data-word=muscular] {
  --point-before-width: 4.125rem;
}
.skeleton--desktop .skeleton__point[data-word=rheumatic] {
  --point-before-width: 7.25rem;
}
.skeleton--desktop .skeleton__point[data-word=skeletal] {
  --point-before-width: 8.80rem;
}
.skeleton--desktop .skeleton__point[data-word=skeletal] .skeleton__word {
  right: 58px;
  top: -15px;
}
.skeleton--desktop .skeleton__point[data-word=growth] {
  --point-before-width: 4.125rem;
}
.skeleton--desktop .skeleton__symptoms-list {
  margin: 0;
  max-width: 12.5rem;
  left: unset;
  right: unset;
}
.skeleton--desktop .skeleton__word {
  font-size: 40px;
  left: unset;
  line-height: 1;
  right: calc(var(--point-before-width) + 100%);
  top: -1.125rem;
}
.skeleton--desktop .skeleton__word .smaller {
  font-size: 1.25rem;
  line-height: 1.5625rem;
  position: absolute;
  left: 0;
  bottom: -1.375rem;
}
.skeleton--desktop .skeleton__word sup {
  font-size: 40%;
  top: -1rem;
}
.skeleton--desktop .skeleton__footnote {
  left: unset;
  right: -16.5625rem;
  bottom: 1.25rem;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.clinical-study {
  position: relative;
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
}
.clinical-study::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.75rem;
  background: #48D597;
}
@media screen and (min-width: 1024px) {
  .clinical-study::after {
    max-width: 21.25rem;
  }
}
.clinical-study .clinical-study__title {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 23.44px;
  color: #626469;
  margin-bottom: 0.25rem;
}
.clinical-study .clinical-study__results {
  display: flex;
}
.clinical-study .clinical-study__results .clinical-study__result:not(:last-of-type) {
  margin-right: 3.625rem;
}
.clinical-study .clinical-study__results .clinical-study__result--flex {
  display: flex;
}
.clinical-study .clinical-study__results .clinical-study__result--flex .clinical-study__percentage {
  margin-right: 0.5rem;
}
.clinical-study .clinical-study__results .clinical-study__result .clinical-study__percentage {
  color: #00494F;
  font-weight: 400;
  font-size: 3.75rem;
  line-height: 50px;
  display: inline-flex;
  align-items: baseline;
}
.clinical-study .clinical-study__results .clinical-study__result .clinical-study__percentage::after {
  content: "%";
  font-size: 1.875rem;
  line-height: 37.5px;
}
.clinical-study .clinical-study__results .clinical-study__result .clinical-study__nopercentage {
  color: #00494F;
  font-weight: 900;
  font-size: 3.75rem;
  line-height: 45px;
  display: inline-flex;
  align-items: baseline;
  padding-top: 0.3rem;
}
.clinical-study .clinical-study__results .clinical-study__result .clinical-study__nopercentage span {
  font-size: 32px;
  margin-left: 8px;
}
.clinical-study .clinical-study__description {
  color: #00494F;
  line-height: 24px;
}
@media screen and (min-width: 1100px) {
  .clinical-study .clinical-study__description {
    max-width: 21.25rem;
  }
}
.clinical-study .clinical-study__order {
  font-weight: 500;
  line-height: 1.5rem;
  color: #626469;
  text-transform: uppercase;
}
.accordion-mobile .expansion-panel-mobile:not(:last-of-type) {
  margin-bottom: 0.625rem;
}
.accordion-mobile .expansion-panel-mobile .expansion-panel-mobile__content {
  height: 100%;
  max-height: 0px;
  transition: max-height 200ms ease-in-out;
  overflow: hidden;
}
.accordion-mobile .expansion-panel-mobile[aria-expanded=true] .expansion-panel-mobile__content {
  max-height: 1000px;
}
.accordion-mobile .expansion-panel-mobile__button {
  width: 100%;
}
.radiographic-comparator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (min-width: 1024px) {
  .radiographic-comparator {
    grid-template-columns: repeat(2, minmax(0, 27.4375rem));
  }
}
.radiographic-comparator > div {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.radiographic-comparator [data-radiographic-title] {
  text-align: center;
  font-size: 0.875rem;
  line-height: 17.5px;
  font-weight: 600;
  height: 3.125rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .radiographic-comparator [data-radiographic-title] {
    font-size: 1.125rem;
    line-height: 27px;
    max-width: 15.625rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.radiographic-comparator [data-radiographic-image] {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 9.4375rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .radiographic-comparator [data-radiographic-image] {
    max-width: 19.3125rem;
    max-height: 20.4375rem;
    margin-left: initial;
    margin-right: initial;
  }
  .radiographic-comparator [data-radiographic-image] img {
    object-fit: contain;
  }
}
@media screen and (min-width: 1440px) {
  .radiographic-comparator [data-radiographic-image] {
    height: 20.4375rem;
  }
  .radiographic-comparator [data-radiographic-image] img {
    height: 100%;
  }
}
.radiographic-comparator [data-radiographic-footer] {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 17.5px;
  margin-bottom: 2.625rem;
}
@media screen and (min-width: 768px) {
  .radiographic-comparator [data-radiographic-footer] {
    margin-bottom: 6.375rem;
    max-width: 17rem;
    font-size: 1.125rem;
    line-height: 20.7px;
  }
}
.radiographic-comparator .radiographic-comparator__left {
  padding-left: 0.3125rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
}
.radiographic-comparator .radiographic-comparator__left > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .radiographic-comparator .radiographic-comparator__left {
    padding-left: 1.375rem;
    padding-right: 2.125rem;
    max-width: fit-content;
    margin-left: auto;
  }
  .radiographic-comparator .radiographic-comparator__left [data-radiographic-footer] {
    line-height: 27px;
  }
}
.radiographic-comparator .radiographic-comparator__left [data-radiographic-title] {
  color: #626469;
}
.radiographic-comparator .radiographic-comparator__left [data-radiographic-footer] {
  margin-bottom: 41px;
}
@media screen and (min-width: 768px) {
  .radiographic-comparator .radiographic-comparator__left [data-radiographic-footer] {
    margin-bottom: 47px;
  }
}
.radiographic-comparator .radiographic-comparator__left .second-footer {
  font-weight: 300;
  font-size: 10px;
  line-height: 120%;
  margin-bottom: 1rem;
  max-width: 259px;
}
@media screen and (min-width: 1024px) {
  .radiographic-comparator .radiographic-comparator__left .second-footer {
    font-size: 12px;
    display: block !important;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1024px) {
  .radiographic-comparator .radiographic-comparator__left .second-footer {
    font-size: 12px;
    max-width: 198px;
    margin-top: 153px;
  }
}
.radiographic-comparator .radiographic-comparator__right {
  padding-right: 0.3125rem;
  padding-left: 1rem;
  background: hsla(154, 49%, 57%, 0.4);
  border-bottom-right-radius: 3.125rem;
}
.radiographic-comparator .radiographic-comparator__right > div {
  max-width: fit-content;
}
@media screen and (min-width: 768px) {
  .radiographic-comparator .radiographic-comparator__right {
    padding-left: 2.125rem;
    padding-right: 1.375rem;
    border-bottom-right-radius: 10.625rem;
  }
}
.radiographic-comparator .radiographic-comparator__right [data-radiographic-title] {
  color: #00494F;
}
.radiographic-comparator .radiographic-comparator__right [data-radiographic-footer] {
  color: #00494F;
  font-weight: 500;
  line-height: 16.1px;
  display: block;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .radiographic-comparator .radiographic-comparator__right [data-radiographic-footer] {
    line-height: 20.7px;
    margin-bottom: 64px;
    display: block;
    visibility: visible;
  }
}
.radiographic-comparator .radiographic-comparator__right .second-footer {
  font-weight: 300;
  font-size: 10px;
  line-height: 120%;
  max-width: 259px;
}
@media screen and (min-width: 1024px) {
  .radiographic-comparator .radiographic-comparator__right .second-footer {
    font-size: 12px;
    max-width: 198px;
  }
}
.custom-title {
  background: #00494F;
  min-height: 5.5625rem;
  width: 100%;
  border-bottom-left-radius: 1.875rem;
  padding: 0.5625rem 1.5rem 1.25rem 1.5rem;
}
.custom-title .custom-title__text {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 20px;
  position: relative;
}
.custom-title .custom-title__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.625rem;
  width: 100%;
  max-width: 92px;
  height: 3px;
  background: #DFDF00;
  border-radius: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .custom-title {
    min-height: 3.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .custom-title {
    min-height: auto;
    padding-bottom: 1.6875rem;
  }
  .custom-title .custom-title__text {
    font-size: 1.25rem;
    line-height: 25px;
  }
  .custom-title .custom-title__text::after {
    max-width: 12.5rem;
  }
}
.highlight-information {
  border-bottom: 12px solid #48D597;
}
.highlight-information__title {
  color: #626469;
  text-transform: uppercase;
}
.highlight-information__title sup {
  text-transform: none;
}
.highlight-information__content {
  color: #00494F;
  font-size: 60px;
  font-weight: 400;
  line-height: 4.6875rem;
  position: relative;
}
@media (min-width: 1200px) {
  .highlight-information__content {
    font-size: 70px;
    line-height: 5.4688rem;
  }
}
.highlight-information__content sub {
  bottom: 0;
  font-size: 35px;
  font-weight: 900;
  line-height: 2.7344rem;
}
.highlight-information__footnote {
  color: #00494F;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6875rem;
  max-width: 40ch;
}
@media (min-width: 1200px) {
  .highlight-information__footnote {
    max-width: 25ch;
  }
}
.highlight-information__footnote strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5rem;
}
.highlight-information__sub-content {
  bottom: -10px;
  color: #626469;
  font-size: 16px;
  font-weight: 500;
  left: 0;
  line-height: 1.5rem;
  position: absolute;
}
.highlight-information__subtitle {
  color: #00494F;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5rem;
  max-width: 35ch;
}
.highlight-information--contains-subcontent .highlight-information__footnote {
  margin-top: 15px;
}
.highlight-information--gray .highlight-information__title {
  color: #6D868E;
}
.highlight-information--gray .highlight-information__content {
  color: #6D868E;
}
.highlight-information--gray .highlight-information__footnote {
  color: #626469;
}
.highlight-information--gray .highlight-information__footnote strong {
  color: #006F97;
}
.highlight-information--gray .highlight-information__sub-content {
  color: #626469;
}
.highlight-information--blue-gray {
  border-color: #48D597;
}
.highlight-information--blue-gray .highlight-information__title {
  color: #626469;
}
.highlight-information--blue-gray .highlight-information__content {
  color: #3D5F66;
}
.highlight-information--blue-gray .highlight-information__footnote {
  color: #626469;
}
.highlight-information--blue-gray .highlight-information__footnote strong {
  color: #626469;
}
.highlight-information--blue-gray .highlight-information__sub-content {
  color: #626469;
}
.highlight-information--blue-gray-footnote {
  padding-bottom: 1rem;
}
.highlight-information--blue-gray-footnote .highlight-information__footnote strong {
  color: #3D5F66;
}
.pinch-to-zoom {
  height: 100%;
  margin: 0 !important;
  width: 100% !important;
  padding: 0.5rem 1rem;
}
.pinch-to-zoom .pinch-to-zoom__button-container {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}
.pinch-to-zoom .pinch-to-zoom__button-container--right-bottom {
  top: auto;
  bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .pinch-to-zoom .pinch-to-zoom__button-container {
    display: none;
  }
}
.pinch-to-zoom .pinch-to-zoom__close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3.125rem;
  line-height: 40%;
  font-weight: 300;
  color: #B41E8C;
}
.clinical-data-modal {
  height: 100%;
  max-height: 42.3125rem;
  width: 100%;
  max-width: 20.5rem;
  border-radius: 1.875rem;
  padding: 0;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 425px) {
  .clinical-data-modal {
    max-width: 23.5rem;
  }
}
@media screen and (min-width: 768px) {
  .clinical-data-modal {
    max-width: 95%;
    max-height: 45.3125rem;
  }
}
@media screen and (min-width: 1024px) {
  .clinical-data-modal {
    flex-direction: row;
  }
}
@media screen and (min-width: 1366px) {
  .clinical-data-modal {
    max-width: 100%;
    width: 90rem !important;
  }
}
.clinical-data-modal .clinical-data-modal--close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3.125rem;
  line-height: 40%;
  font-weight: 300;
  color: #B41E8C;
  z-index: 2;
  cursor: pointer;
}
@media screen and (min-width: 1366px) {
  .clinical-data-modal .clinical-data-modal--close-modal {
    font-size: 4.6875rem;
  }
}
.clinical-data-modal .clinical-data-modal__shape {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 20.5rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-modal .clinical-data-modal__shape {
    max-width: 24rem;
    height: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .clinical-data-modal .clinical-data-modal__shape {
    max-width: 24rem;
  }
}
@media screen and (min-width: 1300px) {
  .clinical-data-modal .clinical-data-modal__shape {
    max-width: 25.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .clinical-data-modal .clinical-data-modal__shape {
    max-width: 28rem;
  }
}
.clinical-data-modal .clinical-data-modal__head {
  width: 100%;
  height: 14.0625rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .clinical-data-modal .clinical-data-modal__head {
    height: 13.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .clinical-data-modal .clinical-data-modal__head {
    max-width: 14.4375rem;
    height: 100%;
  }
}
@media screen and (min-width: 1366px) {
  .clinical-data-modal .clinical-data-modal__head {
    max-width: 20.4375rem;
  }
}
.clinical-data-modal .clinical-data-modal__wrapper {
  height: auto;
  margin-bottom: 1.9231rem;
  overflow-y: scroll;
  z-index: -1;
}
@media screen and (min-width: 425px) {
  .clinical-data-modal .clinical-data-modal__wrapper {
    padding-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .clinical-data-modal .clinical-data-modal__wrapper {
    padding-top: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .clinical-data-modal .clinical-data-modal__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow-y: unset;
    padding-top: 0;
    padding-left: 1.5625rem;
  }
}
.clinical-data-modal .clinical-data-modal__header {
  position: relative;
  z-index: 1;
  margin: 0 1.25rem;
  margin-top: 4.8937rem;
}
.clinical-data-modal .clinical-data-modal__header .clinical-data-modal__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #00494F;
}
@media screen and (min-width: 1366px) {
  .clinical-data-modal .clinical-data-modal__header {
    margin-left: 4.1875rem;
  }
}
.clinical-data-modal .clinical-data-modal__content {
  margin-left: 1.25rem;
  overflow-x: visible;
}
@media screen and (min-width: 1024px) {
  .clinical-data-modal .clinical-data-modal__content {
    margin-right: 2.0769rem;
    margin-left: 0;
  }
}
@media (min-width: 1024px) and (max-height: 730px) {
  .clinical-data-modal .clinical-data-modal__content {
    margin-top: 6.875rem;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
  }
  .clinical-data-modal .clinical-data-modal__content:hover {
    scrollbar-color: rgba(0, 0, 0, 0.5) transparent;
  }
  .clinical-data-modal .clinical-data-modal__content::-webkit-scrollbar {
    width: 8px;
  }
  .clinical-data-modal .clinical-data-modal__content::-webkit-scrollbar-track {
    background: transparent;
  }
  .clinical-data-modal .clinical-data-modal__content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
  }
  .clinical-data-modal .clinical-data-modal__content::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media screen and (min-width: 1366px) {
  .clinical-data-modal .clinical-data-modal__content {
    margin-right: 4.0769rem;
  }
}
.clinical-data-modal .clinical-data-modal__content .table__body__row--mh td:first-child {
  color: #00494F;
  font-family:
    "Roboto Black",
    "Roboto",
    sans-serif;
  font-weight: 900;
}
.clinical-data-modal .table__body__cell {
  padding: 0 0 0 1.25rem;
}
.clinical-data-modal .table__body__cell .font-thin {
  padding: 0 !important;
}
.clinical-data-modal .table__body__cell :first-child {
  color: #626469 !important;
  font-weight: 300;
  padding-left: 0 !important;
}
.clinical-data-modal .table__body__cell--head {
  padding: 0 0 0 1.25rem !important;
  z-index: 1;
}
.clinical-data-modal .table__body__cell sup {
  padding: 0 !important;
}
@media (min-width: 768px) {
  .clinical-data-modal .table__body__cell {
    padding: 0 0 0 1.875rem;
  }
}
.clinical-data-modal .table__body__row--mh,
.clinical-data-modal .table__body__row--normal {
  height: 4.4375rem;
}
.clinical-data-modal .table__content p {
  font-size: inherit;
  line-height: inherit;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.clinical-data-modal .table__content p:last-child {
  max-width: 50ch;
}
@media (min-width: 768px) {
  .clinical-data-modal .table__content p:last-child {
    max-width: none;
  }
}
.clinical-data-modal .table__content p.limit-width {
  max-width: 48ch !important;
}
.clinical-data-modal .table__content span {
  padding: 0;
}
.clinical-data-modal .table__content strong {
  font-weight: bold !important;
  padding: 0 !important;
}
.clinical-data-modal .table__content td {
  text-align: left;
}
.clinical-data-modal .table__content td.table__body__cell:last-child p:first-child {
  max-width: 87ch;
}
.clinical-data-modal .table__content th {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .clinical-data-modal .table__content tbody tr td:first-child {
    border-bottom: none;
  }
  .clinical-data-modal .table__content tbody tr td:first-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #E2E7EA;
    display: block;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .clinical-data-modal .table__content tbody tr:last-child td:first-child::after {
    display: none;
  }
}
.clinical-data-modal .table__header--mb--cell {
  color: #626469;
}
.clinical-data-modal .table__header--mh--cell {
  padding: 0.625rem 1rem;
}
@media (min-width: 768px) {
  .clinical-data-modal .table__header--mh--cell {
    padding: 0.625rem 1.875rem;
  }
}
.clinical-data-modal .table__header--mh--empty {
  border-top: 0;
}
.clinical-data-modal .table__header--mh--paragraph span:first-child {
  margin-bottom: 0.3125rem;
}
.clinical-data-modal .table__header--mh--paragraph span:last-child {
  font-size: 70%;
  max-width: 13ch;
}
@media (min-width: 768px) {
  .clinical-data-modal .table__header--mh--paragraph span:last-child {
    font-size: 90%;
    max-width: none;
  }
}
.clinical-data-modal .table__footer p {
  font-size: 12px;
  line-height: 0.9rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-modal--adults .clinical-data-modal__wrapper {
    justify-content: flex-end;
    margin-bottom: 1.125rem;
  }
}
.clinical-data-modal--adults .clinical-data-modal__shape {
  max-width: 24rem;
}
.clinical-data-modal--adults .clinical-data-modal__header .clinical-data-modal__title {
  color: #3D5F66;
}
.clinical-data-modal--adults .table__header--mh {
  background-color: #6D868E;
}
.clinical-data-modal--adults .table__header--mh--cell .table__header--mh--paragraph span {
  margin-bottom: 0;
}
.clinical-data-modal--adults .table__header--mh--cell p {
  color: #FFFFFF;
}
.clinical-data-modal--adults .table__body__row--mh .table__body__cell--head {
  color: #3D5F66 !important;
}
.clinical-data-modal--adults .table__content td.table__body__cell:last-child p:first-child {
  max-width: 95ch;
}
.clinical-data-modal--adults .table__content p.limit-width {
  max-width: 57ch !important;
}
.disability-index-modal {
  background-color: #9BAAAF;
  border-radius: 1.875rem;
  color: #FFFFFF;
  height: 100%;
  margin: 0 auto;
  max-height: 23.125rem;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 425px) {
  .disability-index-modal {
    max-width: 23.5rem;
  }
}
@media screen and (min-width: 768px) {
  .disability-index-modal {
    max-width: 95%;
    max-height: 37.625rem;
  }
}
@media screen and (min-width: 1366px) {
  .disability-index-modal {
    width: 90rem !important;
  }
}
.disability-index-modal--close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3.125rem;
  line-height: 40%;
  font-weight: 300;
  color: #FFFFFF;
  z-index: 2;
  cursor: pointer;
}
@media screen and (min-width: 1366px) {
  .disability-index-modal--close-modal {
    font-size: 4.6875rem;
  }
}
.disability-index-modal__wrapper {
  height: 100%;
}
.disability-index-modal__content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.disability-index-modal__words-container {
  height: 18.75rem;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .disability-index-modal__words-container {
    max-width: 32.8125rem;
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .disability-index-modal__words-container {
    max-width: 45.625rem;
  }
}
.disability-index-modal__main-word {
  bottom: 0;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 900;
  height: fit-content;
  line-height: 1.2581rem;
  margin: auto 0;
  padding-left: 1.9rem;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
@media (min-width: 425px) {
  .disability-index-modal__main-word {
    padding-left: 3.125rem;
  }
}
@media (min-width: 768px) {
  .disability-index-modal__main-word {
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .disability-index-modal__main-word {
    font-size: 44px;
    line-height: 2.5162rem;
  }
}
.disability-index-modal__main-word sup {
  font-size: 0.75rem;
  line-height: 0.6863rem;
  letter-spacing: -0.03em;
  top: -0.5rem;
}
@media (min-width: 1200px) {
  .disability-index-modal__main-word sup {
    font-size: 20px;
    line-height: 1.7156rem;
    right: -5px;
    top: -0.75rem;
  }
}
.disability-index-modal__word {
  font-size: 16px;
  font-weight: 500;
  line-height: 0.915rem;
  height: fit-content;
  max-width: 11ch;
  position: absolute;
  text-align: center;
  z-index: 1;
}
.disability-index-modal__word::before {
  --width-line: 1.9375rem;
  --position-line: calc(var(--width-line) * -1);
  border-top: 3px dashed #FFFFFF;
  content: "";
  height: 0.1875rem;
  position: absolute;
  z-index: -1;
  width: var(--width-line);
}
.disability-index-modal__word[data-word=grip] {
  bottom: 0;
  right: 0.3125rem;
  margin: auto 0;
  top: 0;
}
.disability-index-modal__word[data-word=grip]::before {
  --width-line: 1.8rem;
  bottom: 0;
  margin: auto 0;
  top: 0;
  left: var(--position-line);
}
.disability-index-modal__word[data-word=activities] {
  bottom: 0;
  left: 0.3125rem;
  margin: auto 0;
  top: 0;
}
.disability-index-modal__word[data-word=activities]::before {
  bottom: 0;
  margin: auto 0;
  top: 0;
  right: var(--position-line);
}
@media (min-width: 425px) {
  .disability-index-modal__word[data-word=activities]::before {
    --width-line: 2.8125rem;
  }
}
.disability-index-modal__word[data-word=hygiene] {
  left: 15%;
  top: 25%;
}
.disability-index-modal__word[data-word=hygiene]::before {
  --width-line: 4rem;
  border-top: unset;
  border-left: 0.1875rem dashed #FFFFFF;
  bottom: calc(var(--position-line) + 0.5rem);
  height: var(--width-line);
  right: -0.5rem;
  transform: rotate(-50deg);
  width: 0.1875rem;
}
.disability-index-modal__word[data-word=dressing-and-grooming] {
  left: 0;
  margin: 0 auto;
  right: 0;
  top: 10%;
}
.disability-index-modal__word[data-word=dressing-and-grooming]::before {
  --width-line: 4.5rem;
  border-top: unset;
  border-left: 0.1875rem dashed #FFFFFF;
  bottom: var(--position-line);
  height: var(--width-line);
  left: 0;
  margin: 0 auto;
  top: 120%;
  right: 0;
  width: 0.1875rem;
}
.disability-index-modal__word[data-word=walking] {
  top: 25%;
  right: 15%;
}
.disability-index-modal__word[data-word=walking]::before {
  --width-line: 3rem;
  border-top: unset;
  border-left: 0.1875rem dashed #FFFFFF;
  bottom: calc(var(--position-line) + 0.625rem);
  height: var(--width-line);
  left: 0;
  top: 100%;
  transform: rotate(30deg);
  width: 0.1875rem;
}
.disability-index-modal__word[data-word=eating] {
  bottom: 25%;
  left: 15%;
}
.disability-index-modal__word[data-word=eating]::before {
  --width-line: 3.8rem;
  border-top: unset;
  border-left: 0.1875rem dashed #FFFFFF;
  height: var(--width-line);
  top: calc(var(--position-line) + 0.4rem);
  transform: rotate(40deg);
  right: -0.625rem;
  width: 0.1875rem;
}
.disability-index-modal__word[data-word=reach] {
  bottom: 10%;
  left: 0;
  margin: 0 auto;
  right: 0;
}
.disability-index-modal__word[data-word=reach]::before {
  --width-line: 5.5rem;
  border-top: unset;
  border-left: 0.1875rem dashed #FFFFFF;
  height: var(--width-line);
  left: 0;
  margin: 0 auto;
  top: var(--position-line);
  right: 0;
  width: 0.1875rem;
}
.disability-index-modal__word[data-word=arising] {
  bottom: 25%;
  right: 15%;
}
.disability-index-modal__word[data-word=arising]::before {
  --width-line: 3.5rem;
  border-top: unset;
  border-left: 0.1875rem dashed #FFFFFF;
  height: var(--width-line);
  left: 0;
  top: calc(var(--position-line) + 0.2rem);
  transform: rotate(-35deg);
  width: 0.1875rem;
}
@media (min-width: 768px) {
  .disability-index-modal__word[data-word=grip]::before {
    --width-line: 7rem;
    --position-line: calc((var(--width-line) * -1) - .3125rem) ;
  }
  .disability-index-modal__word[data-word=activities]::before {
    --width-line: 5rem;
    --position-line: calc((var(--width-line) * -1) - .3125rem) ;
  }
  .disability-index-modal__word[data-word=hygiene] {
    top: 20%;
    left: 20%;
  }
  .disability-index-modal__word[data-word=hygiene]::before {
    --width-line: 5.25rem;
    bottom: calc(var(--position-line) + 0.6rem);
    right: -1.25rem;
  }
  .disability-index-modal__word[data-word=dressing-and-grooming] {
    top: 0;
  }
  .disability-index-modal__word[data-word=dressing-and-grooming]::before {
    --width-line: 6rem;
  }
  .disability-index-modal__word[data-word=walking] {
    top: 20%;
    right: 20%;
  }
  .disability-index-modal__word[data-word=walking]::before {
    --width-line: 5.5rem;
    bottom: calc(var(--position-line) + 0.8rem);
    left: -1.5rem;
    top: unset;
    transform: rotate(50deg);
  }
  .disability-index-modal__word[data-word=eating] {
    bottom: 20%;
    left: 20%;
  }
  .disability-index-modal__word[data-word=eating]::before {
    --width-line: 4.75rem;
    right: -1.875rem;
  }
  .disability-index-modal__word[data-word=reach] {
    bottom: 0;
  }
  .disability-index-modal__word[data-word=reach]::before {
    --width-line: 7.25rem;
  }
  .disability-index-modal__word[data-word=arising] {
    bottom: 20%;
    right: 20%;
  }
  .disability-index-modal__word[data-word=arising]::before {
    --width-line: 5rem;
    top: calc(var(--position-line) + 0.5rem);
    left: -1.875rem;
    transform: rotate(-45deg);
  }
}
@media (min-width: 1200px) {
  .disability-index-modal__word {
    font-size: 26px;
    line-height: 1.4869rem;
  }
  .disability-index-modal__word[data-word=grip]::before {
    --width-line: 7rem;
  }
  .disability-index-modal__word[data-word=activities]::before {
    --width-line: 4rem;
  }
  .disability-index-modal__word[data-word=hygiene] {
    top: 15%;
    left: 15%;
  }
  .disability-index-modal__word[data-word=hygiene]::before {
    --width-line: 5.3125rem;
    bottom: calc(var(--position-line) + 0.625rem);
    right: -0.625rem;
  }
  .disability-index-modal__word[data-word=dressing-and-grooming]::before {
    --width-line: 4rem;
  }
  .disability-index-modal__word[data-word=walking] {
    top: 15%;
    right: 15%;
  }
  .disability-index-modal__word[data-word=walking]::before {
    --width-line: 4.5rem;
    left: -1.875rem;
    bottom: calc(var(--position-line) + 0.9375rem);
  }
  .disability-index-modal__word[data-word=eating] {
    bottom: 15%;
    left: 15%;
  }
  .disability-index-modal__word[data-word=eating]::before {
    --width-line: 4.5rem;
  }
  .disability-index-modal__word[data-word=reach]::before {
    --width-line: 5.5rem;
  }
  .disability-index-modal__word[data-word=arising] {
    bottom: 15%;
    right: 15%;
  }
  .disability-index-modal__word[data-word=arising]::before {
    --width-line: 4.5rem;
  }
}
.video-modal {
  width: 100%;
  max-width: 1290px;
  border-radius: 10px;
  padding: 30px 60px 60px 60px;
}
.video-modal--close-modal {
  position: absolute;
  right: 60px;
  top: 0.7rem;
  font-size: 3rem;
  font-weight: 300;
  color: #B41E8C;
  cursor: pointer;
}
.video-modal--close-modal:focus-visible {
  outline: unset;
}
@media screen and (max-width: 768px) {
  .video-modal--close-modal {
    top: 5px;
    right: 30px;
    font-size: 40px;
  }
}
@media screen and (max-width: 350px) {
  .video-modal--close-modal {
    top: 15px;
  }
}
.video-modal__wrapper {
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.video-modal__wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) {
  .video-modal__wrapper {
    overflow-y: unset;
  }
}
.video-modal__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  line-height: 22.5px;
}
@media screen and (min-width: 768px) {
  .video-modal__title {
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 30px;
  }
}
@media screen and (max-width: 350px) {
  .video-modal__title {
    font-size: 16px;
    max-width: 22ch;
  }
}
.video-modal__content {
  display: grid;
  grid-template-columns: auto 35%;
  grid-auto-rows: minmax(100px, auto);
  max-width: 1170px;
  column-gap: 12px;
}
.video-modal__content-video {
  height: fit-content;
  max-height: fit-content;
}
.video-modal__content-video > .wistia_embed {
  height: auto !important;
}
.video-modal__content-video > .wistia_embed > [id^=wistia_chrome] {
  height: auto !important;
  width: 100% !important;
}
.video-modal__content-chapters {
  --max-height-chapters: 421px;
  --is-visible: hidden;
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: var(--max-height-chapters);
  padding-right: 16.85px;
}
.video-modal__content-chapters .chapter {
  visibility: var(--is-visible);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 0.8rem;
  padding: 17.46px 8.73px;
  border-bottom: 1px solid #EEEEEE;
}
.video-modal__content-chapters .chapter.--active {
  background-color: #EEEEEE;
}
.video-modal__content-chapters .chapter[href*="time=0"] {
  display: none;
}
.video-modal__content-chapters .chapter img {
  width: 80.31px;
  height: 54.49px;
}
.video-modal__content-chapters .chapter__info--title {
  font-size: 13.968px;
  font-weight: 700;
  line-height: 17.46px;
  color: #262626;
}
.video-modal__content-chapters .chapter__info--desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 13.968px;
  font-weight: 300;
  line-height: 17.46px;
  color: #262626;
}
.video-modal__content-chapters::-webkit-scrollbar {
  width: 0;
}
.video-modal__content-chapters.visible {
  --is-visible: visible;
}
.video-modal__content-chapters.visible::-webkit-scrollbar {
  width: 5px;
}
.video-modal__content-chapters.visible::-webkit-scrollbar-track {
  box-shadow: inset 10px 5px 5px rgba(226, 231, 234, 0.5);
  border-radius: 10px;
}
.video-modal__content-chapters.visible::-webkit-scrollbar-thumb {
  background: #B41E8C;
  border-radius: 10px;
}
.video-modal__content-chapters.visible::-webkit-scrollbar-thumb:hover {
  background: #991576;
}
@media screen and (max-width: 1024px) {
  .video-modal__content-chapters {
    margin-top: 0;
    padding-left: 0;
    padding-right: 12px;
  }
}
@media screen and (max-width: 1280px) {
  .video-modal__content {
    grid-template-columns: auto 50%;
  }
}
@media screen and (max-width: 1024px) {
  .video-modal__content {
    grid-template-columns: 1fr;
    grid-row-gap: 14.67px;
  }
}
@media screen and (max-width: 1024px) {
  .video-modal {
    max-width: 80%;
    height: 90vh;
    max-height: 90vh;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .video-modal {
    max-width: 95%;
    height: 90vh;
    max-height: 90vh;
    overflow: hidden;
    padding: 20px;
  }
}
.videos__section .video-card {
  cursor: pointer;
  height: 100%;
}
.videos__section .video-card__thumb {
  position: relative;
}
.videos__section .video-card__thumb .thumb {
  height: 310px;
  width: 582px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .videos__section .video-card__thumb .thumb {
    height: 165px;
    width: 312px;
  }
}
.videos__section .video-card__thumb .play-icon {
  display: block;
  position: absolute;
  top: calc((100% - 42px) / 2);
  left: calc((100% - 32px) / 2);
  width: 32px;
  height: auto;
}
.videos__section .video-card__content {
  justify-content: flex-start;
}
.videos__section .video-card__content .title {
  color: #00494F;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .videos__section .video-card__content .title {
    padding-top: 20px;
    font-size: 18px;
    line-height: 22.5px;
  }
}
.videos__section .video-card__content .description {
  text-align: left;
  padding-top: 20px;
  max-width: 59ch;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
}
@media screen and (max-width: 768px) {
  .videos__section .video-card__content .description {
    font-size: 16px;
    line-height: 24px;
    max-width: 35ch;
  }
}
.crosslink-trigger {
  cursor: pointer;
  display: flex;
  gap: 16px;
}
.crosslink-trigger__images-container {
  display: inline-flex;
  flex-shrink: 0;
}
.crosslink-trigger__images-container--img {
  width: 70px;
  aspect-ratio: 1;
  border-radius: 100vw;
  object-fit: cover;
  object-position: top;
  border: 2px solid #B41E8C;
}
@media screen and (min-width: 768px) {
  .crosslink-trigger__images-container--img {
    width: 100px;
  }
}
.crosslink-trigger__images-container--img-wrapper {
  position: relative;
}
.crosslink-trigger__images-container--img-wrapper:nth-child(2) {
  margin-left: -19px;
}
@media screen and (min-width: 768px) {
  .crosslink-trigger__images-container--img-wrapper:nth-child(2) {
    margin-left: -28px;
  }
}
.crosslink-trigger__images-container--img-wrapper::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 100vw;
  background-color: #B41E8C;
  opacity: 0.15;
  top: 0;
  left: 0;
  transition: opacity ease-in-out 200ms;
}
@media screen and (min-width: 768px) {
  .crosslink-trigger__images-container--img-wrapper::before {
    width: 100px;
    height: 100px;
  }
}
.crosslink-trigger__text-container {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .crosslink-trigger__text-container {
    margin-top: 8px;
  }
}
.crosslink-trigger__text-container--heading {
  color: #00494F;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  transition: font-weight ease-in-out 200ms;
}
@media screen and (min-width: 768px) {
  .crosslink-trigger__text-container--heading {
    font-size: 18px;
    line-height: 22.5px;
  }
}
.crosslink-trigger__text-container--body {
  color: #585858;
  font-weight: 300;
  line-height: 15px;
  font-size: 12px;
  padding-bottom: 4px;
}
.crosslink-trigger__text-container--body span {
  display: block;
}
@media screen and (min-width: 768px) {
  .crosslink-trigger__text-container--body {
    line-height: 17.5px;
    font-size: 14px;
  }
}
.crosslink-trigger__text-container--cta {
  width: fit-content;
  color: #B41E8B;
  font-weight: 700;
  margin-top: 10px;
  border-bottom: 2px solid #B41E8B;
  font-size: 18px;
  line-height: 22.5px;
}
.crosslink-trigger.video {
  max-width: 328px;
}
@media screen and (min-width: 375px) {
  .crosslink-trigger.video {
    width: 328px;
  }
}
@media screen and (min-width: 768px) {
  .crosslink-trigger.video {
    max-width: 414px;
    width: 414px;
  }
}
.crosslink-trigger.video .crosslink-trigger__text-container--cta::after {
  content: url(/assets/icons/icon-arrow-triangle.svg);
  display: inline;
  margin-left: 8px;
}
.crosslink-trigger.patient-story {
  max-width: 328px;
}
@media screen and (min-width: 375px) {
  .crosslink-trigger.patient-story {
    width: 328px;
  }
}
@media screen and (min-width: 768px) {
  .crosslink-trigger.patient-story {
    max-width: 278px;
    width: 278px;
  }
}
.crosslink-trigger.patient-story .crosslink-trigger__text-container--cta::after {
  content: url(/assets/icons/icon-arrow-pink.svg);
  display: inline;
  margin-left: 8px;
}
.crosslink-trigger.patient-story .crosslink-trigger__text-container {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .crosslink-trigger.patient-story .crosslink-trigger__text-container {
    margin-top: 7.5px;
  }
}
.crosslink-trigger.patient-story .crosslink-trigger__text-container--cta {
  margin-top: 10px;
}
.crosslink-trigger:hover .crosslink-trigger__images-container--img-wrapper::before {
  opacity: 0;
}
.crosslink-trigger:hover .crosslink-trigger__text-container--heading {
  font-weight: 900;
}
.crosslink-trigger.crosslink-trigger--fw {
  width: 100%;
  max-width: unset;
}
.crosslink-container {
  margin-block: 12px;
}
.lets-work {
  padding-bottom: 1.25rem;
}
.lets-work__title {
  color: #00494F;
  margin-bottom: 1.6694rem;
}
@media (min-width: 768px) {
  .lets-work__title {
    margin-bottom: 2.6694rem;
  }
}
.lets-work .work-box {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .lets-work .work-box {
    margin-bottom: 4.25rem;
    margin-right: 0.3125rem;
  }
}
@media screen and (min-width: 980px) {
  .lets-work .work-box {
    margin: auto !important;
    margin-right: 0;
  }
}
@media screen and (min-width: 970px) {
  .lets-work .work-box {
    margin-bottom: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .lets-work__boxes {
    display: flex;
    max-width: 64.5rem;
    margin: auto;
  }
}
.lets-work .modifier {
  max-width: 8.75rem;
}
@media screen and (min-width: 370px) {
  .lets-work .modifier {
    max-width: 11.625rem;
  }
}
@media screen and (min-width: 800px) {
  .lets-work .modifier {
    max-width: 13.375rem;
  }
}
@media (min-width: 768px) {
  .lets-work {
    padding-top: 3.125rem;
  }
}
@media screen and (min-width: 970px) {
  .lets-work {
    padding-bottom: 5.625rem;
  }
}
@media screen and (min-width: 500px) {
  .how-it-works__page-hero .page-hero__title br {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .mtable {
    margin-right: 2.3rem;
  }
}
@media screen and (min-width: 500px) {
  .clinical-data-overview__page-hero .page-hero__title br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .clinical-data-overview__page-hero .page-hero__title {
    max-width: 28.75rem;
  }
}
.clinical-data-overview__submenu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-bottom: 1rem;
  gap: 1rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .clinical-data-overview__submenu > * {
    margin: calc(1rem / 2);
  }
}
.clinical-data-overview__study-design {
  margin-bottom: 1rem;
  padding-top: 0.5rem;
  width: 100%;
}
.clinical-data-overview__study-design__table {
  width: 100%;
}
.clinical-data-overview__study-design__table .table__header--mh--study-4 {
  background-color: #6d868e;
}
.clinical-data-overview__study-design__table .table__body__row--mh sup {
  color: #626469 !important;
}
.clinical-data-overview__study-design__table .buttons-table-header {
  display: none;
}
@media screen and (min-width: 1024px) {
  .clinical-data-overview__study-design__table .buttons-table-header {
    display: table-row;
  }
}
.clinical-data-overview__study-design__table .buttons-table-header th {
  padding: 0;
  border: none;
}
.clinical-data-overview__study-design__table .buttons-table-header th:last-of-type .button {
  margin-left: 0.25rem;
  margin-right: 0;
}
.clinical-data-overview__study-design__table .buttons-table-header .button {
  width: calc(100% - 0.25rem);
  justify-content: center;
  margin-bottom: 0.75rem;
  padding: 0.9375rem 0.25rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-overview__study-design__table .buttons-table-header th.buttons-container {
    display: table-cell;
    width: 330px;
  }
}
.clinical-data-overview__study-design__table .buttons-table-header .buttons-container {
  display: flex;
}
.clinical-data-overview__study-design__table .buttons-table-header .buttons-container .button {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.clinical-data-overview__study-design__head {
  margin: 0 0 3rem;
  width: 100%;
  padding-top: 3rem;
}
@media screen and (max-width: 768px) {
  .clinical-data-overview__study-design__head {
    margin: 0 0 1.5rem;
    padding-top: 1.5rem;
  }
}
.clinical-data-overview__study-design--title {
  color: #00494F;
  position: relative;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-overview__study-design--title {
    max-width: 53.875rem;
    margin-left: 0;
  }
}
.clinical-data-overview__study-design--square {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 85px;
  color: #00494F;
  background-color: #48D597;
  border-radius: 0 0 0 30px;
  padding: 1rem 0;
}
@media screen and (min-width: 768px) {
  .clinical-data-overview__study-design--square {
    border-radius: 0 0 30px 0;
    max-width: 56.0625rem;
  }
}
@media screen and (min-width: 1600px) {
  .clinical-data-overview__study-design--square {
    max-width: 60%;
  }
  .clinical-data-overview__study-design--square .wrapper {
    max-width: fit-content;
    margin-left: calc((100vw - 90rem) / 2);
  }
}
.clinical-data-overview__study-design .button--adults {
  background-color: #c183b1;
  justify-content: center;
  min-width: 276px;
}
.clinical-data-overview__safety {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .clinical-data-overview__safety > * {
    margin: calc(2rem / 2);
  }
}
@media screen and (min-width: 1201px) {
  .clinical-data-overview__safety {
    padding-top: 5rem;
  }
}
@media screen and (min-width: 1201px) {
  .clinical-data-overview__safety__description {
    max-width: 40%;
  }
}
.clinical-data-overview__safety__description--title {
  margin: 0 0 10px;
  color: #00494F;
  padding-top: 0.625rem;
}
.clinical-data-overview__safety__description--paragraph1 {
  margin: 10px 0;
  font-weight: 500;
  color: #626469;
  font-size: 1.125rem;
  line-height: 21.6px;
}
@media screen and (min-width: 1024px) {
  .clinical-data-overview__safety__description--paragraph1 {
    font-size: 1.5rem;
    line-height: 36px;
  }
}
.clinical-data-overview__safety__description--paragraph1 span {
  color: #E23F5C;
}
.clinical-data-overview__safety__description--paragraph2 {
  margin: 10px 0;
  font-size: 1.125rem;
  line-height: 28.8px;
}
.clinical-data-overview__safety__description--paragraph3 {
  font-size: 0.8rem;
  margin: 10px 0;
  justify-self: flex-end;
  align-self: flex-end;
}
.clinical-data-overview__safety__description .wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 1440px) {
  .clinical-data-overview__safety__description .wrapper {
    max-width: calc(100% - var(--margin) / 2);
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .clinical-data-overview__safety__description .wrapper {
    max-width: calc(100% - (100vw - 90rem) / 2);
  }
}
@media screen and (min-width: 1201px) {
  .clinical-data-overview__safety__table {
    max-width: 60%;
  }
}
@media screen and (max-width: 1200px) {
  .clinical-data-overview__safety {
    flex-direction: column;
  }
}
.clinical-data-overview__safety__anotations p {
  font-size: 0.8125rem;
  margin: 0;
}
.clinical-data-overview__safety__anotations p sup {
  font-size: 0.6rem;
  top: -0.3em;
}
.clinical-data-overview__safety__anotations--disclaimer {
  font-size: 1rem !important;
  margin-top: 1rem !important;
}
.clinical-data-overview__safety__anotations--desktop {
  margin: auto 0 0 0 !important;
}
.clinical-data-overview__safety__anotations--desktop > p {
  font-size: 0.625rem;
  line-height: 15px;
}
.clinical-data-overview__cta .cta__heading {
  max-width: 100%;
}
.clinical-data-overview__white-line {
  width: 5.7869rem;
  border: 2px solid #FFFFFF;
  margin: 0;
  border-radius: 10px;
  margin-top: 0.8rem;
}
@media (max-width: 767px) {
  .clinical-data-overview__white-line {
    margin-bottom: 1rem;
  }
}
.clinical-data-overview__paragraph {
  color: #00494F;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
}
.clinical-data-overview__paragraph::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 5.7869rem;
  height: 0.1875rem;
  background: #FFFFFF;
}
@media screen and (min-width: 1024px) {
  .clinical-data-overview__paragraph {
    font-size: 1.25rem;
    line-height: 25px;
  }
}
.clinical-data-overview-container__panel {
  padding: 2.4688rem 0 0;
}
.clinical-data-overview-container__panel-title {
  background-color: #00494F;
  border-radius: 0 0 0 30px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 1.5625rem;
  position: relative;
}
.clinical-data-overview-container__panel-title::after {
  border: 2px solid #DFDF00;
  content: "";
  margin-top: 1.3125rem;
  position: relative;
  width: 5.8125rem;
  border-radius: 0.625rem;
}
@media (min-width: 1200px) {
  .clinical-data-overview-container__panel-title::after {
    width: 12.5rem;
  }
}
.safety-table .table__content tr td:first-child,
.safety-table .table__content tr th:first-child {
  width: 28% !important;
}
.safety-table .table__header--ssh sup {
  top: -0.3125rem;
}
#clinical-data-page-hero.clinical-data-adults__page-hero .page-hero__title {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  #clinical-data-page-hero.clinical-data-adults__page-hero .page-hero__title {
    margin-bottom: 4rem;
  }
}
#clinical-data-page-hero.clinical-data-adults__page-hero .page-hero__subtitle {
  max-width: 49ch;
}
#clinical-data-page-hero.clinical-data-adults__page-hero .shape--primary {
  max-width: 100%;
  top: -9.375rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #clinical-data-page-hero.clinical-data-adults__page-hero .shape--primary {
    top: unset;
  }
}
@media screen and (min-width: 1200px) {
  #clinical-data-page-hero.clinical-data-adults__page-hero .shape--primary {
    width: 75%;
    max-width: 75%;
  }
}
@media screen and (max-width: 1023px) {
  #adults-changes-in-substractes .wrapper--desktop {
    margin: 0;
    max-width: 100%;
  }
}
@media screen and (min-width: 1023px) {
  #adults-changes-in-substractes .wrapper--mobile {
    margin: 0;
    max-width: 100%;
  }
}
.clinical-data-adults--tabs-menu .modifier {
  height: 3.125rem;
  width: 100%;
  justify-content: center;
  margin-top: 23px;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults--tabs-menu .modifier {
    margin-top: 48px;
  }
}
@media screen and (min-width: 1000px) {
  .mwt-block {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1000px) {
  .mwt-block ul {
    display: block;
    max-width: 506px;
  }
}
@media screen and (min-width: 1000px) {
  .mwt-block ul li {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .mwt-block ul li p {
    max-width: 69ch;
  }
}
@media screen and (min-width: 1000px) {
  .mwt-block--right {
    width: 50%;
  }
}
@media screen and (min-width: 1000px) {
  .mwt-block--left {
    width: 45%;
  }
}
.clinical-data-adults__page-hero .shape--primary {
  background-color: #6d868e;
}
.clinical-data-adults__page-hero .shape--secondary {
  background-color: #91e6c1;
}
.clinical-data-adults__page-hero .shape--tertiary {
  background-color: white;
}
.clinical-data-adults-cta .cta__heading {
  max-width: 15ch;
}
@media screen and (min-width: 768px) {
  .clinical-data-adults-cta .cta__heading {
    max-width: 100%;
  }
}
.clinical-data-adults__footnote {
  font-size: 0.75rem;
  line-height: 1.125rem;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__footnote {
    line-height: 0.9rem;
    margin-bottom: 5rem;
  }
}
.clinical-data-adults__changes-in-substractes {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__changes-in-substractes {
    flex-direction: row;
    margin-top: 1rem;
  }
}
.clinical-data-adults__changes-in-substractes [role=tabpanel] {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults__changes-in-substractes .custom-title {
    width: 100vw;
  }
  .clinical-data-adults__changes-in-substractes .custom-title__text {
    max-width: 50% !important;
  }
  .clinical-data-adults__changes-in-substractes .custom-title__text::after {
    max-width: 13.5rem !important;
  }
  .clinical-data-adults__changes-in-substractes .custom-title__text br {
    display: block !important;
  }
}
.clinical-data-adults__changes-in-substractes .custom-title__text {
  max-width: 33ch;
}
.clinical-data-adults__changes-in-substractes .custom-title__text br {
  display: none;
}
.clinical-data-adults__col {
  width: 100%;
  position: relative;
}
.clinical-data-adults__col .custom-title {
  background-color: #3d5f66;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__col {
    width: 47%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__col--mobility {
    width: 100%;
    margin-top: 6rem;
  }
}
.clinical-data-adults__col--mobility .custom-title__text {
  padding-top: 1rem;
}
.clinical-data-adults--img1,
.clinical-data-adults--img2 {
  max-width: 300px;
  margin: auto;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults--img1,
  .clinical-data-adults--img2 {
    max-width: 100%;
  }
}
.clinical-data-adults__title {
  color: #3d5f66;
  margin: 1.25rem auto 0 auto;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__title {
    margin: 3rem 0 0 0;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__title--real-world-outcomes {
    width: 50%;
    word-wrap: break-word;
    hyphens: auto;
  }
}
.clinical-data-adults__subtitle {
  color: #626469;
  font-size: 0.875rem;
  font-weight: 300;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults__subtitle {
    font-size: 1.125rem;
  }
}
.clinical-data-adults__list {
  color: #626469;
  font-size: 0.875rem;
  font-weight: 300;
  padding-left: 15px;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__list {
    margin-bottom: 1.4375rem;
  }
}
.clinical-data-adults__list li {
  margin-bottom: 0.5rem;
}
.clinical-data-adults__list li p {
  font-size: 0.875rem;
  line-height: 1.0938rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults__list li p {
    max-width: 45ch;
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
@media screen and (min-width: 1200px) {
  .clinical-data-adults__list li p {
    max-width: 51ch;
  }
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults__list li:first-child > p {
    max-width: 49ch;
  }
  .clinical-data-adults__list li:first-child ul p {
    max-width: 41ch;
  }
}
.clinical-data-adults__list-mobility {
  margin-top: 1rem;
}
.clinical-data-adults__list--time-to-bone {
  margin-left: 1rem;
  padding-left: 0;
}
.clinical-data-adults__list--limitations {
  margin-left: 1rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults__list {
    font-size: 1.125rem;
  }
}
.clinical-data-adults__sublist {
  margin-top: 8px;
  margin-left: 2rem;
}
.clinical-data-adults__sublist li {
  list-style-type: circle !important;
}
.clinical-data-adults__sublist li::marker {
  color: #626469 !important;
}
.clinical-data-adults__time-to-bone-mineralization {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__time-to-bone-mineralization {
    flex-direction: row;
  }
}
.clinical-data-adults__time-to-bone-mineralization .clinical-data-adults__title {
  color: #626469;
  margin-bottom: 1rem;
}
.clinical-data-adults__time-to-bone-mineralization .clinical-data-adults--paragraph {
  font-size: 0.875rem;
  line-height: 1.0938rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults__time-to-bone-mineralization .clinical-data-adults--paragraph {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.clinical-data-adults__time-to-bone-mineralization--content {
  margin: 0;
}
.clinical-data-adults--title1,
.clinical-data-adults--title2 {
  color: #3d5f66;
  margin-bottom: 1rem;
}
.clinical-data-adults--title1 {
  font-size: 1rem;
  line-height: 1.3rem;
  margin: 1.6875rem 0 1.1875rem;
  max-width: 41ch;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults--title1 {
    font-size: 1.25rem;
    line-height: 1.465rem;
    max-width: 46ch;
  }
}
.clinical-data-adults--tabs [role=tablist] {
  max-width: fit-content;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}
.clinical-data-adults--tabs [role=tablist] li {
  background-color: #E2E7EA;
  margin: 0;
  padding-top: 0.3125rem;
  padding-right: 0.9375rem;
  padding-bottom: 0.3125rem;
  padding-left: 0.9375rem;
  height: 3rem;
}
.clinical-data-adults--tabs [role=tablist] li:first-child {
  border-radius: 5rem 0 0 5rem;
}
.clinical-data-adults--tabs [role=tablist] li:last-child {
  border-radius: 0 5rem 5rem 0;
  margin-right: 1rem;
}
.clinical-data-adults--tabs-menu {
  width: 100%;
  background-color: transparent;
  margin-right: 1rem;
}
.clinical-data-adults--tabs-menu [role=tablist] a {
  padding: 0.6875rem 2.8125rem;
}
@media screen and (max-width: 999px) {
  .clinical-data-adults--content1,
  .clinical-data-adults__list-mobility1 {
    display: block;
  }
}
@media screen and (max-width: 999px) and (min-width: 1000px) {
  .clinical-data-adults--content1,
  .clinical-data-adults__list-mobility1 {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults--content2,
  .clinical-data-adults__list-mobility2 {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults--content2 {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__list-mobility {
    margin-top: 8.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .clinical-data-adults__list-mobility {
    margin-top: 7.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .clinical-data-adults__list-mobility {
    margin-top: 7rem;
  }
}
.clinical-data-adults__mobility {
  position: relative;
  background-color: rgba(226, 231, 234, 0.5);
  overflow: hidden;
  z-index: 2;
}
.clinical-data-adults__mobility .clinical-data-adults__title {
  color: #626469;
}
@media screen and (max-width: 999px) {
  .clinical-data-adults__mobility .wrapper--desktop {
    margin: 0;
    max-width: 100%;
  }
}
@media screen and (min-width: 999px) {
  .clinical-data-adults__mobility .wrapper--mobile {
    margin: 0;
    max-width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__mobility .custom-title {
    width: 100vw;
    padding: 1.3rem 0 1.5rem 1.5rem;
  }
}
.clinical-data-adults__mobility .custom-title__text {
  max-width: 35ch;
}
@media screen and (min-width: 1250px) {
  .clinical-data-adults__mobility .custom-title__text {
    max-width: 100%;
  }
}
.clinical-data-adults__content {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
.clinical-data-adults__content--highlightinformation {
  margin-top: 2rem;
  width: fit-content;
}
@media screen and (max-width: 1000px) {
  .clinical-data-adults__content--highlightinformation .highlight-information {
    margin-bottom: 1rem;
  }
}
.clinical-data-adults__content--highlightinformation .highlight-information__footnote span:nth-child(2) {
  font-size: 0.8rem;
}
.clinical-data-adults__content--highlightinformation-no-border .highlight-information {
  border-bottom: 0px !important;
}
.clinical-data-adults__content--highlightinformation-span {
  font-size: 2rem;
  margin-left: -6px;
  letter-spacing: -0.03em;
}
.clinical-data-adults__content--highlightinformation .highlight-information__content {
  letter-spacing: -2px;
  line-height: 3.4688rem !important;
}
@media screen and (max-width: 1000px) {
  .clinical-data-adults__content--highlightinformation .highlight-information__content {
    margin: 0 0 -14px 0;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__content--highlightinformation .highlight-information__content {
    margin: 1rem 0 0 0;
  }
}
.clinical-data-adults__content--highlightinformation .highlight-information__content span {
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__content--highlightinformation .highlight-information__title {
    margin-bottom: 0.5rem;
  }
}
.clinical-data-adults__content--paragraph {
  margin-top: 1rem;
  max-width: 39ch;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults__content--paragraph {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    max-width: 51ch;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.clinical-data-adults__video {
  background-color: #006F97;
  padding: 1rem;
  padding-bottom: 3.0625rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.clinical-data-adults__video--title {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 0.8rem;
  line-height: 125%;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults__video--title {
    font-size: 30px;
    margin-left: 74px;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__video::before {
    content: "";
    background-color: #006F97;
    position: absolute;
    z-index: 1;
    height: 45.5175rem;
    width: 69.295rem;
    border-radius: 22.7588rem 0px 0px 22.7588rem;
    transform: rotate(-21deg);
    left: -50px;
    bottom: 100px;
  }
}
@media screen and (min-width: 2200px) {
  .clinical-data-adults__video::before {
    height: 52.55rem;
    width: 80rem;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__video {
    background-color: transparent;
    padding: 0;
    margin: 5rem auto 0 auto;
  }
}
.clinical-data-adults__video-container {
  position: relative;
  z-index: 2;
}
.clinical-data-adults--img-6MWT {
  background-color: #FFFFFF;
  max-width: 375px;
  margin: auto;
  margin-top: 2rem;
}
@media screen and (min-width: 700px) {
  .clinical-data-adults--img-6MWT {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
.clinical-data-adults--img-video {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults--img-video {
    max-width: 80%;
    margin: 0 1rem 0 auto;
  }
}
.clinical-data-adults--real-world-outcomes {
  background-color: rgba(226, 231, 234, 0.5);
  padding-top: 0.5rem;
}
.clinical-data-adults--real-world-outcomes .clinical-data-adults__title {
  color: #626469;
}
.clinical-data-adults--real-world-outcomes .clinical-data-adults__tabs-title {
  color: #3D5F66;
}
.clinical-data-adults--real-world-outcomes .clinical-data-adults--tabs-menu [role=tablist] {
  max-width: none;
  white-space: nowrap;
  width: 110%;
}
@media screen and (min-width: 700px) {
  .clinical-data-adults--real-world-outcomes .clinical-data-adults--tabs-menu [role=tablist] {
    width: 100%;
  }
}
.clinical-data-adults--real-world-outcomes .clinical-data-adults--tabs-menu [role=tablist] a {
  padding: 0.625rem 2.375rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults--real-world-outcomes .clinical-data-adults--tabs-menu [role=tablist] a {
    padding: 0.625rem 3.25rem;
  }
}
.clinical-data-adults--real-world-outcomes .table__header--mh--cell {
  background-color: #6D868E;
}
.clinical-data-adults--real-world-outcomes .table__body__cell--head {
  color: #3D5F66;
}
.clinical-data-adults--real-world-outcomes .table__header--mh {
  border-bottom-width: 0.3125rem;
}
.clinical-data-adults--real-world-outcomes .table__footer {
  line-height: 0.9rem;
}
.clinical-data-adults--real-world-outcomes-table {
  max-width: 1000px;
  margin: 1.5rem auto 0 auto;
}
.clinical-data-adults--real-world-outcomes-table .table__wrapper {
  margin-right: -1rem;
}
@media screen and (min-width: 768px) {
  .clinical-data-adults--real-world-outcomes-table .table__wrapper {
    margin-right: auto;
  }
}
.clinical-data-adults--real-world-outcomes-table .table__footer sup:first-child {
  left: 3px;
}
.clinical-data-adults--real-world-outcomes-table .table__footer sup:last-child {
  left: 0;
}
.clinical-data-adults--real-world-outcomes-table .table__footer span {
  text-indent: -3px;
}
.clinical-data-adults--real-world-outcomes-table td,
.clinical-data-adults--real-world-outcomes-table th {
  text-align: left;
  font-weight: 500;
}
@media only screen and (min-width: 500px) and (max-width: 1090px) {
  .clinical-data-adults--real-world-outcomes-table {
    max-width: 800px;
  }
}
.clinical-data-adults--real-world-outcomes-table th {
  padding: 1.5rem;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults--real-world-outcomes-table {
    max-width: 80%;
    margin: 2rem auto;
  }
}
.clinical-data-adults--real-world-outcomes-content {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  border-bottom-width: 0.3125rem;
}
.clinical-data-adults--real-world-outcomes-content p {
  font-size: 0.875rem;
  line-height: 1.0938rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults--real-world-outcomes-content p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults--real-world-outcomes-content {
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 2rem;
  }
}
.clinical-data-adults--real-world-outcomes-table .table__body__cell {
  font-weight: 300;
}
.clinical-data-adults--real-world-outcomes-table .table__body__cell strong {
  color: #626469 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-weight: 700 !important;
}
@media screen and (max-width: 768px) {
  .clinical-data-adults--real-world-outcomes-table .table__body__cell .lb-desktop {
    display: none;
  }
}
.clinical-data-adults--real-world-outcomes-paragraph {
  margin-bottom: 1rem;
}
.clinical-data-adults--real-world-outcomes [role=tabpanel] {
  padding-left: 0;
  padding-right: 0;
}
.clinical-data-adults--real-world-outcomes [role=tabpanel] .clinical-data-adults__title {
  color: #3D5F66;
}
.clinical-data-adults--real-world-outcomes [role=tabpanel] .clinical-data-adults__title br.only-desktop {
  display: none;
}
@media screen and (min-width: 1400px) {
  .clinical-data-adults--real-world-outcomes [role=tabpanel] .clinical-data-adults__title br.only-desktop {
    display: inline;
  }
}
.clinical-data-adults--real-world-outcomes [role=tabpanel] .clinical-data-adults__list {
  margin-left: 0;
}
.clinical-data-adults--real-world-outcomes [role=tabpanel] .highlight-information {
  max-width: 23.4375rem;
}
.clinical-data-adults--real-world-outcomes [role=tabpanel] .highlight-information--rise-test {
  max-width: 16.7rem;
}
.clinical-data-adults--real-world-outcomes [role=tabpanel] .highlight-information__content {
  font-size: 3.125rem;
  line-height: 3.9063rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults--real-world-outcomes [role=tabpanel] .highlight-information__content {
    font-size: 2.5rem;
    line-height: 3.75rem;
  }
}
.clinical-data-adults--real-world-outcomes [role=tabpanel] .highlight-information__footnote {
  font-size: 0.875rem;
  line-height: 1.0938rem;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults--real-world-outcomes [role=tabpanel] .highlight-information__footnote {
    font-size: 1.125rem;
    line-height: 1.6875rem;
    max-width: 32ch;
  }
}
.clinical-data-adults--real-world-outcomes [role=tabpanel] .highlight-information__footnote strong {
  font-size: 1rem;
  line-height: 1.5rem;
}
.clinical-data-adults__tabs-title {
  margin-bottom: 2rem;
}
.clinical-data-adults__6MWT {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__6MWT {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.clinical-data-adults__6MWT--list {
  margin: 1rem 0 1rem 1rem;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__6MWT--list {
    margin: 1rem 0 2rem 0;
  }
}
.clinical-data-adults__6MWT--graph {
  background-color: #FFFFFF;
  padding-bottom: 1rem;
}
.clinical-data-adults__6MWT--graph-paragraph {
  font-size: 12px;
  line-height: 0.9rem;
  margin: auto;
  margin-top: 1rem;
  text-align: left;
  max-width: 737px;
  padding-left: 4%;
}
@media screen and (min-width: 415px) {
  .clinical-data-adults__6MWT--graph-paragraph {
    padding-left: 0;
    max-width: 400px;
  }
}
@media screen and (min-width: 500px) {
  .clinical-data-adults__6MWT--graph-paragraph {
    text-align: center;
    max-width: 500px;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__6MWT--graph-paragraph {
    margin: none;
    margin-top: 1rem;
    text-align: left;
    max-width: none;
    padding-left: 14%;
  }
}
.clinical-data-adults__6MWT--graph-paragraph sup {
  font-size: 10px;
  line-height: 0.9375rem;
  top: -0.3125rem;
}
.clinical-data-adults__6MWT--graph-img {
  padding: 0 0.5rem;
}
.clinical-data-adults__6MWT--graph .pinch-to-zoom .pinch-to-zoom__button-container {
  top: 12px !important;
}
.clinical-data-adults__6MWT--graph .pinch-to-zoom {
  padding-left: 0;
  padding-right: 0;
}
.clinical-data-adults__6MWT--highlight {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__6MWT--highlight {
    margin-top: 1rem;
  }
}
.clinical-data-adults__6MWT .clinical-data-adults__title {
  margin: 0.8rem 0 0 0;
}
.clinical-data-adults__6MWT--img {
  margin: 1rem 2rem 2rem;
  max-width: 80%;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__6MWT--img {
    margin: 1.25rem 0 1rem 2rem;
    max-width: 16.9719rem;
  }
}
.clinical-data-adults__6MWT--img--left {
  margin: 1rem 2rem 0 2rem;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__6MWT--img--left {
    margin-left: 0;
  }
}
.clinical-data-adults__6MWT--button {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.clinical-data-adults__6MWT.--TUG .clinical-data-adults__tabs-footnote {
  padding-top: 16.75px;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__6MWT.--TUG .clinical-data-adults__tabs-footnote {
    padding-top: 63.75px;
    margin-left: -1rem;
  }
}
.clinical-data-adults__6MWT.--CHAIR-RISE .highlight-information {
  max-width: 18.7rem !important;
}
@media screen and (max-width: 999px) {
  .clinical-data-adults__6MWT.--CHAIR-RISE .highlight-information {
    max-width: 100% !important;
  }
}
.clinical-data-adults__6MWT.--CHAIR-RISE .clinical-data-adults__6MWT--img {
  margin-right: 0 !important;
  margin-left: 0 !important;
  max-width: 22.1875rem;
}
@media screen and (max-width: 999px) {
  .clinical-data-adults__6MWT.--CHAIR-RISE .clinical-data-adults__6MWT--img {
    max-width: 97% !important;
  }
}
.clinical-data-adults__6MWT.--CHAIR-RISE .clinical-data-adults__tabs-footnote {
  padding-top: 25px;
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults__6MWT.--CHAIR-RISE .clinical-data-adults__tabs-footnote {
    padding-top: 64px;
  }
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults__6MWT.--LEFS .clinical-data-adults__6MWT--graph {
    margin-top: 6.5rem;
  }
}
.clinical-data-adults__6MWT.--LEFS .clinical-data-adults__tabs-footnote {
  padding-top: 142.75px;
}
@media screen and (max-width: 999px) {
  .clinical-data-adults__6MWT.--LEFS .clinical-data-adults__tabs-footnote {
    padding-top: 12px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1500px) {
  .clinical-data-adults__6MWT.--LEFS .clinical-data-adults__tabs-footnote {
    bottom: -5px;
  }
}
.clinical-data-adults--clinical-data-table {
  margin: 2rem 2rem;
  height: 380px;
}
.clinical-data-adults--clinical-data-table .table__content td {
  padding: 1rem 1rem !important;
}
.clinical-data-adults--clinical-data-table .table__body__cell sup {
  padding: 0 !important;
  margin: 0 !important;
  color: #626469 !important;
  font-weight: 300 !important;
}
.clinical-data-adults--lefs-info-table {
  max-width: 1000px;
  margin-top: 1rem;
}
.clinical-data-adults--lefs-info-table .table__content tr td:first-child,
.clinical-data-adults--lefs-info-table .table__content tr th:first-child {
  width: 35% !important;
}
@media screen and (max-width: 768px) {
  .clinical-data-adults--lefs-info-table .table__content tr td:first-child,
  .clinical-data-adults--lefs-info-table .table__content tr th:first-child {
    width: 25% !important;
  }
}
.clinical-data-adults--lefs-info-table td {
  padding: 0.7rem !important;
}
.clinical-data-adults--lefs-info-table th.table__header--mh--cell {
  padding: 1.5rem !important;
}
.clinical-data-adults--lefs-info-table .table__header--sh th:first-child {
  text-align: left !important;
}
@media screen and (min-width: 1000px) {
  .clinical-data-adults--paragraph {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .clinical-data-adults--paragraph {
    font-size: 1.125rem;
  }
}
.clinical-data-adults__tabs-footnote {
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}
#picture-bone img {
  max-width: 375px;
  margin: auto;
}
@media screen and (min-width: 700px) {
  #picture-bone img {
    max-width: 100%;
  }
}
.clinical-data-info-modal .clinical-data-modal--close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3.125rem;
  line-height: 40%;
  font-weight: 300;
  color: #b41e8c;
  z-index: 2;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .dosing__page-hero .page-hero__title br {
    display: block;
  }
}
.toolkit-steps {
  padding-top: 1.5625rem;
  margin-bottom: 2.625rem;
}
@media (min-width: 768px) {
  .toolkit-steps {
    padding-top: 3rem;
    margin-bottom: 4rem;
  }
}
.toolkit-steps__desc {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  margin-bottom: 1rem;
  color: #00494F;
}
@media screen and (min-width: 1200px) {
  .toolkit-steps__desc {
    font-size: 1.875rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .toolkit-steps__boxes {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
}
.toolkit-steps .image-modifier {
  width: 4.1856rem;
}
@media screen and (max-width: 767px) {
  .toolkit-steps .title-modifier {
    line-height: 4.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .toolkit-steps .title-modifier {
    line-height: 4.375rem !important;
  }
}
@media screen and (min-width: 1366px) {
  .toolkit-steps .title-modifier {
    line-height: 4.5rem;
  }
}
.toolkit-steps .tip__box {
  margin-top: 0rem;
  padding-left: 0;
}
@media (min-width: 768px) {
  .toolkit-steps .tip__box {
    margin-top: 2rem;
  }
}
.toolkit-steps .tip__wrapper {
  overflow: unset;
}
.toolkit-steps .tip__wrapper .tip__box_content p {
  color: #00494F;
  font-size: 0.875rem;
  line-height: 1.05rem;
}
@media (min-width: 1200px) {
  .toolkit-steps .tip__wrapper {
    max-width: 100vw;
  }
  .toolkit-steps .tip__wrapper .tip__box {
    max-width: unset;
    width: fit-content;
  }
  .toolkit-steps .tip__wrapper .tip__box_content p {
    font-size: 1.25rem;
    line-height: 1.875rem;
    max-width: 96ch;
  }
}
@media screen and (min-width: 1600px) {
  .toolkit-steps .tip__wrapper .tip__box {
    display: flex;
    justify-content: end;
    padding-left: calc((100vw - 90rem) / 2);
  }
}
.toolkit__strensiq {
  position: relative;
  background-color: rgba(226, 231, 234, 0.5);
  overflow-x: hidden;
  padding-top: 2rem;
}
@media screen and (min-width: 1100px) {
  .toolkit__strensiq .toolkit__grid {
    display: grid;
    grid-template-columns: 380px 308px 1fr;
    gap: 3rem;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .toolkit__strensiq .toolkit__grid {
    grid-template-columns: 450px 308px 1fr;
    gap: 4rem;
  }
}
@media screen and (min-width: 1400px) {
  .toolkit__strensiq .toolkit__grid {
    grid-template-columns: 500px 308px 1fr;
    gap: 5rem;
  }
}
.toolkit__strensiq_title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5625rem;
  color: #00494F;
  margin-bottom: 1.5rem;
}
.toolkit__strensiq_title br {
  display: none;
}
@media (min-width: 768px) {
  .toolkit__strensiq_title br {
    display: block;
  }
}
.toolkit__strensiq_title sup {
  top: 0.3125rem;
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .toolkit__strensiq_title {
    font-size: 1.875rem;
    line-height: 2.3438rem;
    margin-top: 2rem;
    max-width: 35ch;
  }
}
@media screen and (min-width: 1100px) {
  .toolkit__strensiq_title {
    margin-bottom: 2rem;
  }
}
.toolkit__strensiq_os {
  position: relative;
  display: grid;
  padding-top: 2.5rem;
  padding-right: 1.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 1100px) {
  .toolkit__strensiq_os {
    padding-top: 2rem;
    padding-right: 3rem;
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .toolkit__strensiq_os {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
.toolkit__strensiq_os > * {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.125rem;
  z-index: 2;
}
@media screen and (min-width: 600px) {
  .toolkit__strensiq_os > * {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.toolkit__strensiq_os::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0%;
  background-color: #FFFFFF;
  border-radius: 0px 368px 368px 0px;
  height: 100%;
  width: 118%;
  z-index: 1;
}
@media screen and (min-width: 1440px) {
  .toolkit__strensiq_os::before {
    left: unset;
    right: 0%;
    width: 300%;
  }
}
.toolkit__strensiq_os_title {
  color: #00494F;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5625rem;
}
.toolkit__strensiq_os_title sup {
  top: 0.3125rem;
  font-size: 1.75rem;
}
.toolkit__strensiq_os_image {
  height: auto;
  margin-bottom: 1rem;
  width: 7.6269rem;
}
@media (min-width: 768px) {
  .toolkit__strensiq_os_image {
    width: 10.125rem;
  }
}
.toolkit__strensiq p {
  margin-bottom: 0.6875rem;
}
@media screen and (min-width: 1100px) {
  .toolkit__strensiq p {
    font-size: 1.125rem;
    line-height: 27px;
  }
}
.toolkit__strensiq ul {
  color: #626469;
  margin-bottom: 0.3125rem;
  margin-left: 1rem;
}
@media screen and (min-width: 1100px) {
  .toolkit__strensiq ul {
    font-size: 1.125rem;
    line-height: 27px;
  }
}
.toolkit__strensiq ul li {
  margin-bottom: 0.625rem;
  font-style: normal;
  font-weight: 300;
}
.toolkit__strensiq ul li::marker {
  display: none;
}
.toolkit__strensiq .phone {
  color: #626469 !important;
  font-weight: bolder;
}
.toolkit__strensiq_os.strensiq__panther {
  padding-right: 0.75rem;
  padding-bottom: 0;
}
@media screen and (min-width: 1100px) {
  .toolkit__strensiq_os.strensiq__panther {
    padding-top: 1rem;
  }
}
@media screen and (min-width: 1365px) {
  .toolkit__strensiq_os.strensiq__panther {
    padding-left: 0;
  }
}
.toolkit__strensiq_os.strensiq__panther::before {
  display: none;
}
.toolkit__strensiq_os.strensiq__panther .toolkit__strensiq_os_image {
  width: 10rem;
}
@media (min-width: 768px) {
  .toolkit__strensiq_os.strensiq__panther .toolkit__strensiq_os_image {
    width: 11rem;
  }
}
.toolkit__strensiq .contact__info {
  position: relative;
  font-weight: 900;
  margin-bottom: 2rem;
  padding-top: 2rem;
  padding-right: 0;
  padding-bottom: 2rem;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .toolkit__strensiq .contact__info {
    padding-left: 2rem;
  }
}
@media screen and (min-width: 1100px) {
  .toolkit__strensiq .contact__info {
    align-self: flex-end;
    margin-bottom: 1rem;
  }
}
.toolkit__strensiq .contact__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  background-color: #FFFFFF;
  border-radius: 0px 368px 368px 0px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  height: 100%;
  width: 118%;
  z-index: 1;
}
@media screen and (min-width: 1100px) {
  .toolkit__strensiq .contact__info::before {
    width: 300%;
  }
}
.toolkit__strensiq .contact__info p {
  color: #626469;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.3125rem;
}
@media (min-width: 768px) {
  .toolkit__strensiq .contact__info p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.toolkit__strensiq .contact__info p:last-of-type {
  margin-bottom: 0;
}
.toolkit__patient {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.toolkit__patient_title {
  color: #00494F;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5625rem;
  margin-bottom: 1.3125rem;
}
@media screen and (min-width: 1100px) {
  .toolkit__patient_title {
    font-size: 1.875rem;
    line-height: 38px;
  }
}
.toolkit__patient p {
  margin-bottom: 1rem;
}
.toolkit__patient .pro__tip {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  margin-top: 1.25rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 1100px) {
  .toolkit__patient .pro__tip {
    padding-top: 4rem;
    padding-bottom: 0;
    padding-left: 7rem;
  }
  .toolkit__patient .pro__tip .wrapper {
    max-width: 100%;
  }
}
@media screen and (min-width: 1365px) {
  .toolkit__patient .pro__tip {
    padding-top: 6rem;
    padding-left: 10rem;
  }
}
@media screen and (min-width: 1440px) {
  .toolkit__patient .pro__tip {
    padding-left: 12rem;
  }
}
.toolkit__patient .pro__tip > * {
  position: relative;
  z-index: 2;
}
.toolkit__patient .pro__tip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -165%;
  background-color: #00494F;
  border-top-right-radius: 581.67px;
  height: 100%;
  width: 1084.45px;
  z-index: 1;
}
@media screen and (min-width: 375px) {
  .toolkit__patient .pro__tip::before {
    left: -145%;
  }
}
@media screen and (min-width: 425px) {
  .toolkit__patient .pro__tip::before {
    left: -110%;
  }
}
@media screen and (min-width: 480px) {
  .toolkit__patient .pro__tip::before {
    left: -80%;
  }
}
@media screen and (min-width: 600px) {
  .toolkit__patient .pro__tip::before {
    left: -50%;
  }
}
@media screen and (min-width: 768px) {
  .toolkit__patient .pro__tip::before {
    left: -30%;
  }
}
@media screen and (min-width: 1100px) {
  .toolkit__patient .pro__tip::before {
    display: none;
  }
}
.toolkit__patient .pro__tip_text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4375rem;
  text-transform: uppercase;
}
.toolkit__patient .pro__tip_title {
  position: relative;
  color: #FFFFFF;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 2.1875rem;
  margin-bottom: 2rem;
  max-width: 17.5rem;
}
@media screen and (min-width: 1100px) {
  .toolkit__patient .pro__tip_title {
    font-size: 4.375rem;
    letter-spacing: -0.03em;
    line-height: 3.9375rem;
    margin-bottom: 2.5rem;
    max-width: 21.25rem;
  }
  .toolkit__patient .pro__tip_title span {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 2.5rem;
    display: block;
  }
}
.toolkit__patient .pro__tip_title::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  background-color: #48D597;
  height: 0.75rem;
  width: 105%;
}
@media screen and (min-width: 375px) {
  .toolkit__patient .pro__tip_title::before {
    width: 120%;
  }
}
@media screen and (min-width: 1100px) {
  .toolkit__patient .pro__tip_title::before {
    bottom: -1.5rem;
    width: 100%;
  }
}
.toolkit__patient .pro__tip p,
.toolkit__patient .pro__tip ul {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
.toolkit__patient .pro__tip ul {
  margin-bottom: 1rem;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .toolkit__patient .pro__tip ul {
    max-width: 600px;
  }
}
@media screen and (min-width: 1100px) {
  .toolkit__patient .pro__tip ul {
    max-width: 540px;
  }
}
.toolkit__patient .pro__tip ul ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
@media screen and (min-width: 1100px) {
  .toolkit__patient .pro__tip ul ul {
    margin-left: 2.5rem;
  }
}
.toolkit__patient .pro__tip ul ul li {
  list-style-type: circle;
}
.toolkit__patient .pro__tip ul ul li::marker {
  color: #FFFFFF;
}
.toolkit__patient .grid {
  position: relative;
}
@media screen and (min-width: 1100px) {
  .toolkit__patient .grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
    margin-right: auto;
    margin-left: auto;
    max-width: 90rem;
    min-height: 700px;
    padding: 0 2.2813rem;
  }
}
@media screen and (min-width: 1366px) {
  .toolkit__patient .grid {
    grid-template-columns: 555px 1fr;
  }
}
@media screen and (min-width: 1440px) {
  .toolkit__patient .grid {
    margin-right: auto;
    margin-left: auto;
  }
}
.toolkit__patient .grid::before {
  content: "";
  display: none;
  position: absolute;
  top: 330px;
  right: 0;
  left: -40px;
  background-color: #00494F;
  border-radius: 581.67px;
  height: 928.19px;
  transform: rotate(-61.71deg);
  width: 1645.73px;
}
@media screen and (min-width: 1100px) {
  .toolkit__patient .grid::before {
    display: block;
    top: 285px;
    left: 40px;
  }
}
@media screen and (min-width: 1365px) {
  .toolkit__patient .grid::before {
    left: 40px;
  }
}
@media screen and (min-width: 1440px) {
  .toolkit__patient .grid::before {
    height: 88.125rem;
    left: unset;
    right: -50%;
    top: 31.875rem;
    width: 156.25rem;
  }
}
.toolkit__cta .cta__text {
  margin-left: auto;
  margin-right: auto;
  max-width: 34ch;
}
@media (min-width: 768px) {
  .toolkit__cta .cta__text {
    max-width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .toolkit__cta .cta__heading {
    max-width: 100%;
  }
}
.hiw .hiw-cta .cta__heading {
  max-width: 550px;
}
.hiw .custom-section {
  padding-top: 1.875rem;
}
@media screen and (min-width: 1200px) {
  .hiw .custom-section {
    padding-top: 3.875rem;
  }
}
.hiw .hpp {
  padding-bottom: 1.625rem;
}
@media screen and (min-width: 1024px) {
  .hiw .hpp {
    padding-bottom: 3.125rem;
    max-width: 62rem;
    margin: auto;
  }
}
@media screen and (min-width: 1400px) {
  .hiw .hpp {
    max-width: 81.5625rem;
    margin: unset;
  }
}
.hiw .hpp__title {
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: -0.0313rem;
  color: #00494F;
  max-width: 33.8125rem;
}
@media screen and (min-width: 1024px) {
  .hiw .hpp__title {
    font-size: 1.875rem;
    line-height: 2.375rem;
  }
}
.hiw .hpp__sub-title {
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.375rem;
  color: #626469;
  margin-bottom: 0.5rem;
  max-width: 39.6875rem;
}
@media screen and (min-width: 1024px) {
  .hiw .hpp__sub-title {
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin-bottom: 0.6875rem;
    margin-top: 1.125rem;
    max-width: 27.6875rem;
  }
}
@media screen and (min-width: 1400px) {
  .hiw .hpp__sub-title {
    max-width: 39.6875rem;
  }
}
.hiw .hpp__block {
  max-width: 39.6875rem;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .hiw .hpp__block {
    margin: unset;
    width: 26.875rem;
  }
}
@media screen and (min-width: 1400px) {
  .hiw .hpp__block {
    width: 39.6875rem;
  }
}
.hiw .hpp__normal-text {
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.0938rem;
  margin-bottom: 0.9375rem;
  max-width: 39.6875rem;
}
@media screen and (min-width: 1024px) {
  .hiw .hpp__normal-text {
    max-width: 27.6875rem;
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
@media screen and (min-width: 1400px) {
  .hiw .hpp__normal-text {
    max-width: 39.6875rem;
  }
}
.hiw .hpp__item {
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 150%;
  color: #626469;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 0.25rem;
  max-width: 570px;
}
@media screen and (min-width: 768px) {
  .hiw .hpp__item {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1400px) {
  .hiw .hpp__item.dmodifier {
    max-width: 474px;
  }
}
.hiw .hpp__item-nosub {
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 150%;
  color: #626469;
  margin-top: 1.0625rem;
  margin-right: 1rem;
  margin-left: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .hiw .hpp__item-nosub {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .hiw .hpp__item-nosub {
    margin-bottom: 38px;
  }
}
@media screen and (min-width: 1400px) {
  .hiw .hpp__item-nosub.nosubmod {
    margin-bottom: 31px;
  }
}
@media screen and (min-width: 1024px) {
  .hiw .hpp__item-nosub.modifier {
    margin-bottom: 0.875rem;
  }
}
@media screen and (min-width: 1400px) {
  .hiw .hpp__item-nosub.modifier {
    margin-bottom: 2.125rem;
  }
}
.hiw .hpp__sub-item {
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 150%;
  color: #626469;
  margin-left: 2.75rem;
  margin-bottom: 1.75rem;
  max-width: 17.8125rem;
  list-style-type: circle;
}
.hiw .hpp__sub-item::marker {
  color: #626469;
}
.hiw .hpp__sub-item.modifier {
  margin-top: 0.75rem;
  margin-bottom: 1.6875rem;
}
@media screen and (min-width: 1400px) {
  .hiw .hpp__sub-item.dmodifier {
    max-width: 533px;
  }
}
@media screen and (min-width: 768px) {
  .hiw .hpp__sub-item {
    font-size: 1.125rem;
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) {
  .hiw .hpp__sub-item {
    margin-top: 1rem;
    margin-bottom: 15px;
    max-width: 459px;
    margin-left: 71px;
  }
}
@media screen and (min-width: 1024px) {
  .hiw .hpp__sub-item.modifier2 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.hiw .hpp__image {
  width: 100%;
}
.hiw .hpp__image-disclaimer {
  font-style: normal;
  font-weight: 300;
  font-size: 0.625rem;
  line-height: 0.75rem;
  text-align: center;
  color: #626469;
  margin-top: 0.3025rem;
  margin-bottom: 1.8125rem;
}
@media screen and (min-width: 1024px) {
  .hiw .hpp__image-disclaimer {
    margin-top: 0.625rem;
    margin-bottom: 0;
    text-align: left;
    font-size: 0.75rem;
  }
}
.hiw .hpp__img-container {
  position: relative;
  width: 100vw;
  left: -1rem;
}
@media screen and (min-width: 428px) {
  .hiw .hpp__img-container {
    left: -1.25rem;
  }
}
@media screen and (min-width: 675px) {
  .hiw .hpp__img-container {
    position: unset;
    width: unset;
  }
}
@media screen and (min-width: 675px) {
  .hiw .hpp__img-container.modifier img {
    max-height: 353px;
  }
}
.hiw .hpp__container {
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .hiw .hpp__container {
    display: flex;
    justify-content: space-between;
  }
  .hiw .hpp__container :first-child {
    width: 410px;
    margin-right: 0.3125rem;
    margin-top: 0.1875rem;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1400px) {
  .hiw .hpp__container :first-child {
    width: 39.6875rem;
  }
}
.hiw .moa {
  background-color: rgba(226, 231, 234, 0.5);
  overflow: hidden;
}
.hiw .moa.custom-section {
  padding-bottom: 1.875rem;
}
.hiw .moa .hpp {
  padding-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .hiw .moa .hpp__image.modifier {
    margin-top: 126px;
  }
}
@media screen and (min-width: 1400px) {
  .hiw .moa .hpp__image.modifier {
    margin-top: 125px;
    max-height: 353px;
  }
}
.hiw .moa__container {
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .hiw .moa__container {
    display: flex;
    justify-content: space-between;
  }
  .hiw .moa__container :first-child {
    width: 27.0625rem;
    margin-right: 0.3125rem;
    margin-top: 0.1875rem;
  }
}
.hiw .hpp-mod-section .hpp {
  padding-bottom: 0.8125rem;
}
.hiw .hpp-mod-section .hpp__title {
  margin-bottom: 1.25rem;
}
.hiw .hpp-mod-section .hpp__sub-title {
  margin-bottom: 0.6875rem;
}
.hiw .hpp-mod-section .hpp__image-disclaimer--second {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .hiw .hpp-mod-section .hpp__image-disclaimer--second {
    display: none;
  }
}
.hiw .hpp-mod-section .hpp__image-disclaimer--fourth {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .hiw .hpp-mod-section .hpp__image-disclaimer--fourth {
    display: none;
  }
}
.hiw .hpp-mod-section .hpp--first .hpp__title {
  max-width: 30ch;
}
.hiw .hpp-mod-section .hpp--second {
  padding-bottom: 1.0625rem;
}
.hiw .hpp-mod-section .hpp--second .hpp__sub-title {
  margin-bottom: 0.375rem;
  max-width: 42ch;
}
.hiw .hpp-mod-section .hpp--second .hpp__sub-title br {
  display: none;
}
@media screen and (min-width: 500px) {
  .hiw .hpp-mod-section .hpp--second .hpp__sub-title br {
    display: block;
  }
}
.hiw .hpp-mod-section .hpp--second .hpp__normal-text {
  max-width: 61ch;
}
@media screen and (min-width: 1400px) {
  .hiw .hpp-mod-section .hpp--second .hpp__block--left img {
    max-height: 353px;
  }
}
.hiw .strensiq-moa-section {
  padding-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .hiw .strensiq-moa-section {
    margin-top: 3rem;
  }
}
.hiw .strensiq-moa-section .custom-section__title {
  margin-bottom: 0.6rem;
}
.hiw .strensiq-moa-section .hpp--third .hpp__title {
  margin-bottom: 1.3125rem;
  max-width: 35ch;
}
.hiw .strensiq-moa-section .hpp--third .hpp__sub-title {
  margin-bottom: 1.25rem;
  max-width: 40ch;
}
.hiw .strensiq-moa-section .hpp--third .hpp__block--right .hpp__item {
  margin-bottom: 0.4375rem;
}
.hiw .strensiq-moa-section .hpp--third .hpp__block--right .hpp__sub-item {
  margin-top: 0;
  margin-bottom: 0.8125rem;
}
.hiw .strensiq-moa-section .hpp--third .hpp__block--right .hpp__sub-item:last-child {
  margin-bottom: 1.6875rem;
}
.hiw .strensiq-moa-section .hpp__image-disclaimer--fifth {
  margin-bottom: 2.1875rem;
}
.hiw .strensiq-moa-section .hpp__image-disclaimer--sixth {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .hiw .strensiq-moa-section .hpp__image-disclaimer--sixth {
    display: none;
  }
}
.hiw sub {
  margin-right: 0 !important;
}
.without-strensiq {
  max-width: 20.5rem;
  padding-top: 8.125rem;
  position: relative;
}
@media screen and (min-width: 650px) {
  .without-strensiq {
    padding-left: 10%;
  }
}
@media screen and (min-width: 900px) {
  .without-strensiq {
    max-width: 21.25rem;
  }
}
@media screen and (min-width: 1345px) {
  .without-strensiq {
    padding-left: 3%;
  }
}
@media screen and (min-width: 1500px) {
  .without-strensiq {
    padding-left: 0;
  }
}
.without-strensiq__title {
  position: relative;
  z-index: 2;
  font-style: normal;
  font-weight: 900;
  font-size: 2.8125rem;
  line-height: 2.75rem;
  letter-spacing: -0.03em;
  color: #00494F;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 900px) {
  .without-strensiq__title {
    font-size: 70px;
    line-height: 3.9375rem;
  }
}
.without-strensiq__text {
  position: relative;
  z-index: 2;
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #00494F;
  margin-bottom: 0.4rem;
}
@media screen and (min-width: 900px) {
  .without-strensiq__text {
    font-size: 18px;
    line-height: 1.6875rem;
  }
}
.without-strensiq__sub-title {
  position: relative;
  z-index: 2;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #00494F;
  margin-bottom: 0.2rem;
}
@media screen and (min-width: 900px) {
  .without-strensiq__sub-title {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.without-strensiq .steps-box__content-line {
  position: relative;
  z-index: 2;
  margin-bottom: 1.875rem;
}
.without-strensiq__shape {
  position: absolute;
  z-index: 1;
  width: 73.0269rem;
  height: 37.0644rem;
  left: -15.0581rem;
  top: 10.75rem;
  background: #FFFFFF;
  border-radius: 36.3544rem;
  transform: rotate(26.66deg);
}
@media screen and (min-width: 600px) {
  .without-strensiq__shape {
    transform: rotate(17.66deg);
  }
}
@media screen and (min-width: 650px) {
  .without-strensiq__shape {
    left: -10.0581rem;
    top: 8.75rem;
  }
}
@media screen and (min-width: 900px) {
  .without-strensiq__shape {
    width: 90.0269rem;
    left: -6.0581rem;
    top: 11.75rem;
  }
}
@media screen and (min-width: 1190px) {
  .without-strensiq__shape {
    width: 200.0269rem;
    left: -10.0581rem;
    top: 27.75rem;
  }
}
@media screen and (min-width: 1500px) {
  .without-strensiq__shape {
    left: -16.0581rem;
    width: 257.0269rem;
    top: 34.75rem;
  }
}
@media screen and (min-width: 1750px) {
  .without-strensiq__shape {
    left: -20.0581rem;
    width: 303.0269rem;
    top: 43.75rem;
  }
}
@media screen and (min-width: 1820px) {
  .without-strensiq__shape {
    left: -36.0581rem;
    width: 387.0269rem;
    top: 50.75rem;
    height: 80.0644rem;
  }
}
@media screen and (min-width: 2000px) {
  .without-strensiq__shape {
    left: -67.0581rem;
    width: 612.0269rem;
    top: 102.75rem;
    height: 152.0644rem;
    transform: rotate(22.66deg);
  }
}
@media screen and (min-width: 2300px) {
  .without-strensiq__shape {
    left: -195.0581rem;
    width: 769.0269rem;
    top: 204.75rem;
    height: 290.0644rem;
    transform: rotate(41.66deg);
  }
}
.crosslink-container .eric-and-steven-three {
  margin-top: 20px;
  margin-bottom: 24.2px;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .crosslink-container .eric-and-steven-three {
    margin-top: 30px;
    margin-bottom: 34px;
  }
}
.crosslink-container .eric-and-steven-two {
  margin-top: 15px;
  margin-bottom: 24.2px;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .crosslink-container .eric-and-steven-two {
    margin-top: 30px;
    margin-bottom: 34px;
  }
}
.crosslink-container .eric-and-steven-one {
  margin-top: 30px;
  margin-bottom: 20.2px;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .crosslink-container .eric-and-steven-one {
    margin-bottom: 34px;
  }
}
.crosslink-container .carol-story {
  max-width: 278px;
  align-items: flex-end;
}
.crosslink-container .carol-story .crosslink-trigger__images-container {
  align-items: center;
  height: 74px;
}
@media screen and (min-width: 1081px) {
  .crosslink-container .carol-story .crosslink-trigger__images-container {
    height: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .crosslink-container .carol-story {
    align-items: center;
  }
}
.crosslink-container .quinn-story-mobile {
  margin-top: 34px;
  margin-bottom: 12px;
  max-width: 221px;
  align-items: flex-end;
}
.crosslink-container .quinn-story-mobile .crosslink-trigger__images-container--img {
  border: none;
}
@media screen and (min-width: 1024px) {
  .crosslink-container .quinn-story-mobile {
    display: none;
  }
}
.crosslink-container .quinn-story {
  display: none;
}
.crosslink-container .quinn-story .crosslink-trigger__images-container--img {
  border: none;
}
@media screen and (min-width: 1024px) {
  .crosslink-container .quinn-story {
    display: flex;
    margin-top: 2rem;
  }
}
.crosslink-container .larry-story {
  margin-top: 20px;
  margin-bottom: 4px;
}
.crosslink-container .larry-story .crosslink-trigger__images-container--img {
  border: none;
}
@media screen and (min-width: 1024px) {
  .crosslink-container .larry-story {
    margin-left: 15px;
    margin-top: 34px;
    max-width: 100%;
    width: 500px;
  }
}
.cta-hypophosphatasia .cta__heading {
  max-width: 18ch;
}
@media screen and (min-width: 768px) {
  .cta-hypophosphatasia .cta__heading {
    max-width: 100%;
  }
}
.testimonial--hypophosphatasia .testimonial__quote p {
  max-width: 25ch;
}
@media (min-width: 768px) {
  .testimonial--hypophosphatasia .testimonial__quote p {
    max-width: 31ch;
  }
}
.hypophosphatasia-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 1199px) {
  .hypophosphatasia-container {
    max-width: none;
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container {
    padding-bottom: 2.25rem;
  }
}
.hypophosphatasia-container .html-symbol {
  color: #626469;
  font-weight: 200;
}
@media (min-width: 1200px) {
  .hypophosphatasia-container__tabs-container {
    padding-top: 1.5625rem;
  }
}
.hypophosphatasia-container__content {
  padding: 0;
}
.hypophosphatasia-container__content .highlight-information--what-is-hpp + p {
  margin-bottom: 30px;
  max-width: 43ch;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 400px) {
  .hypophosphatasia-container__content .highlight-information--what-is-hpp + p {
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) {
  .hypophosphatasia-container__content .highlight-information--what-is-hpp + p {
    font-size: 18px;
    max-width: 50ch;
  }
}
.hypophosphatasia-container__content .highlight-information--what-is-hpp .highlight-information__title {
  margin-bottom: 8px;
  line-height: normal;
}
.hypophosphatasia-container__content .highlight-information--what-is-hpp .highlight-information__content .highlight-information__paragraph {
  font-weight: 900;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.9px;
  margin-bottom: 10px;
}
.hypophosphatasia-container__content .highlight-information--what-is-hpp .highlight-information__content .highlight-information__paragraph .fs40 {
  font-size: 40px;
  line-height: 125%;
  letter-spacing: -1.2px;
}
@media screen and (min-width: 1024px) {
  .hypophosphatasia-container__content .highlight-information--what-is-hpp .highlight-information__content .highlight-information__paragraph .fs40 {
    font-size: 50px;
    letter-spacing: -1.5px;
  }
}
.hypophosphatasia-container__content .highlight-information--what-is-hpp .highlight-information__content .highlight-information__paragraph .fs70 {
  font-size: 70px;
  line-height: 125%;
  letter-spacing: -2.1px;
}
.hypophosphatasia-container__content .highlight-information--what-is-hpp .highlight-information__content .highlight-information__paragraph .fs70::after {
  content: "+";
  display: inline;
}
@media screen and (min-width: 1024px) {
  .hypophosphatasia-container__content .highlight-information--what-is-hpp .highlight-information__content .highlight-information__paragraph .fs70 {
    display: inline-block;
    width: 85%;
    text-align: center;
    position: relative;
    height: 30px;
  }
  .hypophosphatasia-container__content .highlight-information--what-is-hpp .highlight-information__content .highlight-information__paragraph .fs70::after {
    position: absolute;
    top: -20px;
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container__content {
    max-width: 61ch;
    padding-left: 0;
  }
}
.hypophosphatasia-container__footnote {
  font-size: 12px;
  line-height: 0.9rem;
  margin-bottom: 2.5rem;
}
.hypophosphatasia-container__list {
  margin-bottom: 0.9375rem;
  padding-left: 1rem;
}
.hypophosphatasia-container__list-item {
  margin-bottom: 0.9375rem;
}
.hypophosphatasia-container__list-item p {
  font-size: 14px;
  line-height: 1.0938rem;
}
@media (min-width: 1200px) {
  .hypophosphatasia-container__list-item p {
    font-size: 18px;
    line-height: 1.6875rem;
  }
}
.hypophosphatasia-container__sub-list {
  margin-left: 1.875rem;
}
.hypophosphatasia-container__sub-list-item {
  list-style-type: circle;
}
.hypophosphatasia-container__sub-list-item::marker {
  color: #626469;
}
.hypophosphatasia-container__tabs {
  justify-content: space-evenly;
  overflow-y: hidden;
}
@media (min-width: 1200px) {
  .hypophosphatasia-container__tabs {
    justify-content: center;
    margin: 0;
  }
}
.hypophosphatasia-container__tabs-container {
  width: 100%;
}
.hypophosphatasia-container__tabs li a {
  font-weight: 700;
  padding: 0.625rem 2.5rem;
}
.hypophosphatasia-container__title {
  font-weight: 700;
  margin-bottom: 1.5625rem;
}
@media (min-width: 1200px) {
  .hypophosphatasia-container__title {
    font-size: 30px;
    line-height: 2.3438rem;
  }
}
.hypophosphatasia-container__title sup {
  font-weight: 700;
}
.hypophosphatasia-container__panel {
  padding: 2.4688rem 0 0;
}
.hypophosphatasia-container__panel-title {
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.25rem;
  padding: 1.5625rem 0;
  position: relative;
}
.hypophosphatasia-container__panel-title::after {
  border: 3px solid #DFDF00;
  content: "";
  margin-top: 0.4375rem;
  position: relative;
  width: 5.8125rem;
}
.hypophosphatasia-container__panel-title::before {
  background-color: #00494F;
  border-radius: 0 0 0 30px;
  content: "";
  height: 100%;
  left: -1rem;
  position: absolute;
  top: 0;
  width: 200%;
  z-index: -1;
}
@media (min-width: 428px) {
  .hypophosphatasia-container__panel-title::before {
    left: -1.5rem;
  }
}
@media (min-width: 768px) {
  .hypophosphatasia-container__panel-title::before {
    left: -2rem;
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container__panel-title {
    font-size: 20px;
    line-height: 1.5625rem;
    padding-left: 1.25rem;
  }
  .hypophosphatasia-container__panel-title::after {
    width: 12.5rem;
  }
  .hypophosphatasia-container__panel-title::before {
    left: 0;
  }
}
.hypophosphatasia-container__panel-chart {
  margin: 0 auto;
}
.hypophosphatasia-container__panel-chart img {
  margin: 0 auto;
  max-width: 675px;
}
@media (min-width: 1200px) {
  .hypophosphatasia-container__panel-chart img {
    margin: 0;
  }
}
.hypophosphatasia-container__panel-content {
  padding: 0;
  position: relative;
}
.hypophosphatasia-container__panel-content--flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hypophosphatasia-container__panel-footnote {
  font-size: 12px;
  line-height: 0.9rem;
}
@media (min-width: 1024px) {
  .hypophosphatasia-container__panel-footnote--only-mobile {
    display: none;
  }
}
.hypophosphatasia-container__panel-footnote--only-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .hypophosphatasia-container__panel-footnote--only-desktop {
    display: block;
  }
}
.hypophosphatasia-container__panel-footnote-container.position--bottom .hypophosphatasia-container__panel-footnote {
  margin: 0;
}
.hypophosphatasia-container__panel-footnote-container.position--bottom .hypophosphatasia-container__panel-footnote:last-child {
  margin-bottom: 1.3125rem;
}
@media (min-width: 1024px) {
  .hypophosphatasia-container__panel-footnote-container.position--bottom {
    bottom: 0;
    position: absolute;
  }
}
.hypophosphatasia-container__panel .hypophosphatasia-container__title {
  font-weight: 600;
  margin-bottom: 0.625rem;
}
@media (min-width: 1200px) {
  .hypophosphatasia-container__panel .hypophosphatasia-container__title {
    font-size: 18px;
    line-height: 1.6875rem;
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container__panel .hypophosphatasia-container__list-item {
    font-size: 18px;
    line-height: 1.6875rem;
  }
}
.hypophosphatasia-container__paragraph {
  font-size: 14px;
  line-height: 1.0938rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1200px) {
  .hypophosphatasia-container__paragraph {
    font-size: 18px;
    line-height: 1.6875rem;
  }
  .hypophosphatasia-container__paragraph .text--italic {
    font-size: 16px;
    font-style: italic;
    line-height: 1.5rem;
  }
}
.hypophosphatasia-container--ages .hypophosphatasia-container__content {
  width: 100%;
  padding-top: 1.5625rem;
}
.hypophosphatasia-container--ages .hypophosphatasia-container__tabs {
  overflow-x: scroll;
  width: 115%;
  padding: 0 2.5rem;
}
.hypophosphatasia-container--ages .hypophosphatasia-container__tabs li a {
  padding: 0.6875rem 0.6563rem;
}
.hypophosphatasia-container--ages .hypophosphatasia-container__tabs li:first-child {
  margin-left: calc(80px - (100vw - 320px));
}
@media (min-width: 420px) {
  .hypophosphatasia-container--ages .hypophosphatasia-container__tabs li:first-child {
    margin-left: -20px;
  }
}
@media (min-width: 460px) {
  .hypophosphatasia-container--ages .hypophosphatasia-container__tabs li:first-child {
    margin-left: -30px;
  }
}
@media (min-width: 480px) {
  .hypophosphatasia-container--ages .hypophosphatasia-container__tabs li:first-child {
    margin-left: -40px;
  }
}
@media (min-width: 530px) {
  .hypophosphatasia-container--ages .hypophosphatasia-container__tabs {
    overflow-x: hidden;
    width: fit-content;
    padding: 0 10px;
  }
  .hypophosphatasia-container--ages .hypophosphatasia-container__tabs li:first-child {
    margin-left: 0px;
  }
}
.hypophosphatasia-container--ages .hypophosphatasia-container__title {
  margin-bottom: 0.625rem;
}
.hypophosphatasia-container--ages .hypophosphatasia-container__panel {
  padding-top: 1.25rem;
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--ages .hypophosphatasia-container__panel--flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .hypophosphatasia-container--ages .hypophosphatasia-container__panel--flex > .hypophosphatasia-container__panel-chart {
    margin: 0;
    width: 55%;
  }
  .hypophosphatasia-container--ages .hypophosphatasia-container__panel--flex > .hypophosphatasia-container__panel-content {
    width: 40%;
  }
}
.hypophosphatasia-container--ages .hypophosphatasia-container__panel-footnote {
  margin-top: 0.9375rem;
  margin-bottom: 1.875rem;
  max-width: 87ch;
}
@media (min-width: 1200px) {
  .hypophosphatasia-container--ages .information {
    align-self: center;
    justify-self: flex-end;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container--ages .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.hypophosphatasia-container--ages #adults .hypophosphatasia-container__title {
  margin-bottom: 0.125rem;
}
.hypophosphatasia-container--ages #adults .hypophosphatasia-container__list {
  margin-bottom: 2.5rem;
}
.hypophosphatasia-container--ages #adults .hypophosphatasia-container__list-item {
  margin-bottom: 0.625rem;
}
.hypophosphatasia-container--ages #adults .footnotes-container .hypophosphatasia-container__panel-footnote {
  margin: 0;
}
.hypophosphatasia-container--ages #adults .footnotes-container .hypophosphatasia-container__panel-footnote:last-child {
  margin-bottom: 4.375rem;
}
.hypophosphatasia-container--ages #adults .highlight-information {
  margin-bottom: 1.875rem;
}
.hypophosphatasia-container--ages #adults .highlight-information__footnote {
  font-size: 0.875rem;
  line-height: 1.0938rem;
}
.hypophosphatasia-container--ages #adults .hypophosphatasia-container__panel-footnote.no--margin-bottom {
  margin-bottom: 0;
}
.hypophosphatasia-container--ages #adults .hypophosphatasia-container__panel-footnote.no--margin-top {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--ages #adults .hypophosphatasia-container__panel-footnotes-main {
    padding-top: 1.25rem;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .hypophosphatasia-container--ages #adults .footnotes-container {
    width: 48%;
  }
}
.hypophosphatasia-container--ages #children .hypophosphatasia-container__title {
  margin-bottom: 0.3125rem;
}
.hypophosphatasia-container--ages #children .hypophosphatasia-container__list-item {
  margin-bottom: 0.625rem;
}
.hypophosphatasia-container--ages #children .hypophosphatasia-container__panel-footnote {
  margin-bottom: 3.75rem;
}
@media (min-width: 1000px) {
  .hypophosphatasia-container--ages #children .hypophosphatasia-container__panel-footnote {
    margin-bottom: 4.95rem;
  }
}
.hypophosphatasia-container--ages #children .hypophosphatasia-container__panel-chart .hypophosphatasia-container__panel-footnote {
  margin-top: 0;
  margin-bottom: 5rem;
}
.hypophosphatasia-container--ages #children .highlight-information__footnote {
  font-size: 0.875rem;
  line-height: 1.0938rem;
  max-width: 35ch;
  margin-bottom: 0.625rem;
}
.hypophosphatasia-container--ages #children .highlight-information__footnote strong {
  font-size: 1rem;
  line-height: 1.5rem;
}
.hypophosphatasia-container--ages #children .highlight-information:nth-of-type(1) {
  margin-bottom: 2.875rem;
}
.hypophosphatasia-container--ages #children .highlight-information:nth-of-type(1) .highlight-information__footnote {
  padding-top: 0.9375rem;
}
.hypophosphatasia-container--ages #children .highlight-information:nth-of-type(2) .highlight-information__title {
  max-width: 29ch;
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--ages #children .hypophosphatasia-container__list {
    margin-bottom: 2.5rem;
  }
}
.hypophosphatasia-container--ages #neonates .hypophosphatasia-container__title {
  margin-bottom: 0.3125rem;
}
.hypophosphatasia-container--ages #neonates .hypophosphatasia-container__list {
  margin-bottom: 1.5625rem;
}
.hypophosphatasia-container--ages #neonates .hypophosphatasia-container__list:first-of-type {
  margin-bottom: 0.625rem;
}
.hypophosphatasia-container--ages #neonates .hypophosphatasia-container__paragraph {
  margin-bottom: 0.8125rem;
}
.hypophosphatasia-container--ages #neonates .hypophosphatasia-container__list-item {
  margin-bottom: 0.3125rem;
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--ages #neonates .hypophosphatasia-container__list:first-of-type {
    margin-bottom: 2.8125rem;
  }
  .hypophosphatasia-container--ages #neonates .hypophosphatasia-container__list:first-of-type .hypophosphatasia-container__list-item:first-child {
    max-width: 45ch;
  }
  .hypophosphatasia-container--ages #neonates .hypophosphatasia-container__list:first-of-type .hypophosphatasia-container__list-item:nth-child(2) {
    max-width: 39ch;
  }
  .hypophosphatasia-container--ages #neonates .hypophosphatasia-container__paragraph {
    margin-bottom: 0.375rem;
    max-width: 53ch;
  }
  .hypophosphatasia-container--ages #neonates > .hypophosphatasia-container__panel-chart {
    width: 55%;
  }
  .hypophosphatasia-container--ages #neonates > .hypophosphatasia-container__panel-content {
    padding-bottom: 6.25rem;
    width: 45%;
  }
}
@media screen and (min-width: 1200px) {
  .hypophosphatasia-container--ages #neonates .hypophosphatasia-container__list:first-of-type .hypophosphatasia-container__list-item:nth-child(2) {
    max-width: 40ch;
  }
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--ages {
    padding-bottom: 0;
  }
  .hypophosphatasia-container--ages .hypophosphatasia-container__title {
    margin-bottom: 0.9375rem;
  }
  .hypophosphatasia-container--ages .hypophosphatasia-container__content {
    padding-top: 4.375rem;
  }
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--children .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--children .hypophosphatasia-container__content {
    padding-top: 0;
  }
}
.hypophosphatasia-container--children .hypophosphatasia-container__paragraph.mbottom--50 {
  margin-bottom: 3.125rem;
}
.hypophosphatasia-container--children .hypophosphatasia-container__list {
  margin-top: 0.9375rem;
  margin-bottom: 2.1875rem;
}
.hypophosphatasia-container--children .hypophosphatasia-container__paragraph:nth-of-type(2) {
  margin-bottom: 2.5rem;
}
.hypophosphatasia-container--children .hypophosphatasia-container__title {
  max-width: 28ch;
}
.hypophosphatasia-container--children .highlight-information__content {
  line-height: 1;
}
.hypophosphatasia-container--children .highlight-information:nth-of-type(2) .highlight-information__content {
  margin-top: -0.375rem;
}
.hypophosphatasia-container--children .hypophosphatasia-container__intro {
  padding: 1.5625rem 0 0;
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--children {
    padding-bottom: 0;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__paragraph {
    max-width: 53ch;
    margin-bottom: 1.875rem;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__paragraph.mbottom--50 {
    margin-bottom: 1.875rem;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__paragraph.mbottom--50 sup {
    font-size: inherit;
    top: 0;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__list-item {
    max-width: 53ch;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__content {
    padding-top: 0;
    width: 50%;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__tabs-container {
    padding-top: 0;
    width: 45%;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__title {
    margin-bottom: 0.4375rem;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__intro {
    padding-top: 0;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__intro .hypophosphatasia-container__title {
    max-width: unset;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__intro .hypophosphatasia-container__paragraph {
    max-width: 102ch;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__panel {
    padding-top: 1.9375rem;
    height: 100%;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__panel-footnote {
    margin-top: 70px;
  }
  .hypophosphatasia-container--children .wrapper {
    padding-top: 4.375rem;
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container--children .hypophosphatasia-container__content {
    width: 100%;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__tabs-container {
    width: 50%;
  }
  .hypophosphatasia-container--children .hypophosphatasia-container__title {
    max-width: 31ch;
  }
}
@media screen and (min-width: 1300px) {
  .hypophosphatasia-container--children .hypophosphatasia-container__tabs-container {
    width: 54%;
  }
}
@media screen and (min-width: 1400px) {
  .hypophosphatasia-container--children .hypophosphatasia-container__tabs-container {
    width: 55%;
  }
}
.hypophosphatasia-container--gray-bg {
  background-color: rgba(226, 231, 234, 0.5);
  z-index: 0;
}
.hypophosphatasia-container--diagnosis {
  overflow: hidden;
}
@media (min-width: 1081px) {
  .hypophosphatasia-container--diagnosis {
    padding-top: 3.125rem;
  }
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__content {
  padding-right: 0;
  padding-left: 0;
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments {
  color: #FFFFFF;
  padding-bottom: 5.25rem;
  padding-top: 2.5rem;
  padding-left: 0;
  position: relative;
  width: fit-content;
}
@media (min-width: 1081px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments {
    padding-bottom: 0;
  }
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments::after {
  background-color: #00494F;
  border-radius: 0 581.76px 0 0;
  content: "";
  height: 38.2269rem;
  right: -120%;
  position: absolute;
  top: 0;
  width: 67.7781rem;
  z-index: -2;
}
@media (min-width: 800px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments::after {
    right: -65vw;
  }
}
@media screen and (min-width: 886px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments::after {
    width: 75.7781rem;
  }
}
@media (min-width: 970px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments::after {
    width: 93.75rem;
  }
}
@media (min-width: 1081px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments::after {
    border-radius: 391.37px;
    height: 225%;
    left: -70%;
    top: -25%;
    right: unset;
    width: 79.25rem;
    transform: rotate(-47.77deg);
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments::after {
    left: -46%;
  }
}
@media (min-width: 1276px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments::after {
    left: -48%;
  }
}
@media (min-width: 1335px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments::after {
    left: -55%;
  }
}
@media (min-width: 1500px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments::after {
    left: -57%;
    width: 156.25rem;
    height: 350%;
    top: -150%;
  }
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__paragraph {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.33rem;
  margin-bottom: 0;
  max-width: 32ch;
}
@media (min-width: 768px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__paragraph {
    padding: 0 0.9375rem;
    max-width: 52ch;
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__paragraph {
    font-size: 18px;
    line-height: 1.6875rem;
  }
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__list {
  margin-top: 0.625rem;
  padding-left: 0;
}
@media screen and (min-width: 1081px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__list {
    padding-left: 0.625rem;
  }
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__list-item {
  list-style-type: none;
  font-weight: 900;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 1024px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__list-item {
    margin-bottom: 1.25rem;
  }
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__list-item:first-of-type {
    margin-top: 1.25rem;
  }
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__list-item::before {
  content: "\d7";
  position: relative;
  top: 5px;
  color: #B41E8C;
  display: inline-block;
  font-size: 60px;
  line-height: 0;
  vertical-align: middle;
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__list-item span {
  display: inline-block;
  font-size: 25px;
  line-height: 1;
  max-width: 15ch;
  vertical-align: text-top;
}
@media screen and (min-width: 768px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__list-item span {
    max-width: fit-content;
  }
}
@media (min-width: 412px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__list-item::before {
    font-size: 75px;
  }
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content--treatments .hypophosphatasia-container__list-item span {
    font-size: 36px;
    line-height: 2.115rem;
  }
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__content:first-child {
  max-width: 73ch;
  padding-bottom: 30px;
  padding-top: 1.5625rem;
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__content:first-child .crosslink-trigger__images-container--img {
  border: none;
}
@media (min-width: 1021px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content:first-child .hypophosphatasia-container__paragraph {
    max-width: 54ch;
  }
}
@media screen and (min-width: 1081px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__content:first-child {
    padding-bottom: 150px;
    padding-top: 10px;
  }
}
.hypophosphatasia-container--diagnosis .hypophosphatasia-container__title {
  margin-bottom: 0.625rem;
  max-width: 29ch;
}
@media screen and (min-width: 768px) {
  .hypophosphatasia-container--diagnosis .hypophosphatasia-container__title {
    max-width: 100%;
  }
}
.hypophosphatasia-container--diagnosis .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  z-index: 0;
}
@media (min-width: 1081px) {
  .hypophosphatasia-container--diagnosis .wrapper {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container--diagnosis .wrapper {
    justify-content: space-between;
  }
}
.hypophosphatasia-container--diagnosis section.information {
  bottom: 0;
  position: absolute;
}
@media (min-width: 1081px) {
  .hypophosphatasia-container--diagnosis section.information {
    justify-content: flex-start;
    left: 0;
    max-width: 50vw;
    padding: 0;
  }
  .hypophosphatasia-container--diagnosis section.information .hypophosphatasia-container__paragraph {
    padding: 1.125rem 6.25rem;
  }
  .hypophosphatasia-container--diagnosis section.information .hypophosphatasia-container__paragraph::after {
    border-radius: 0 5.9688rem 5.9688rem 0;
    left: unset;
    right: 90px;
  }
  .hypophosphatasia-container--diagnosis section.information .hypophosphatasia-container__paragraph::before {
    right: 0;
    left: unset;
    width: 100%;
  }
}
.hypophosphatasia-container--diagnosis section.information .hypophosphatasia-container__paragraph {
  max-width: 33ch;
  text-align: center;
  padding-left: 1.625rem;
}
@media (min-width: 530px) {
  .hypophosphatasia-container--diagnosis section.information .hypophosphatasia-container__paragraph {
    max-width: 32ch;
  }
}
@media (min-width: 1081px) {
  .hypophosphatasia-container--diagnosis section.information .hypophosphatasia-container__paragraph {
    max-width: 65ch;
    padding: 1.125rem 9.375rem;
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container--diagnosis section.information .hypophosphatasia-container__paragraph {
    max-width: 50ch;
    padding: 1.125rem 8.125rem;
  }
}
@media (min-width: 1400px) {
  .hypophosphatasia-container--diagnosis section.information .hypophosphatasia-container__paragraph {
    max-width: 57ch;
    padding: 1.25rem 10.25rem;
  }
}
.hypophosphatasia-container--diagnosis section.information .hypophosphatasia-container__paragraph--highlight::after {
  bottom: -5px;
}
@media screen and (min-width: 1081px) {
  .hypophosphatasia-container--diagnosis section.information .hypophosphatasia-container__paragraph--highlight::after {
    bottom: -10px;
  }
}
.hypophosphatasia-container--testimonial .testimonial {
  overflow: unset;
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--testimonial .testimonial {
    padding-top: 10.625rem;
    padding-bottom: 2.5rem;
  }
}
.hypophosphatasia-container--testimonial .testimonial__image-container {
  border-radius: 2.5rem;
  height: 12.125rem;
  max-width: 10.5rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--testimonial .testimonial__image-container {
    height: 100%;
  }
}
.hypophosphatasia-container--testimonial .testimonial--shape-right::before {
  left: -15px;
}
@media (min-width: 500px) {
  .hypophosphatasia-container--testimonial .testimonial--shape-right::before {
    left: 0;
  }
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--testimonial .testimonial--shape-right::before {
    --width-shape: 150.0625rem;
    --height-shape: calc(var(--width-shape) * 0.4);
    border-radius: 36.36rem;
    left: unset;
    margin-left: calc(var(--width-shape) * 0.55);
  }
}
@media (min-width: 1400px) {
  .hypophosphatasia-container--testimonial .testimonial--shape-right::before {
    margin-left: calc(var(--width-shape) * 0.45);
  }
}
@media (min-width: 1024px) {
  .hypophosphatasia-container--testimonial {
    padding-bottom: 0;
  }
}
.hypophosphatasia-container--skeleton {
  background-color: rgba(226, 231, 234, 0.5);
  padding-bottom: 0;
}
.hypophosphatasia-container .highlight-information {
  margin-bottom: 0.625rem;
  max-width: 21.25rem;
}
.hypophosphatasia-container .highlight-information__footnote {
  color: #626469;
}
.hypophosphatasia-container .highlight-information__footnote strong {
  color: #00494F;
}
.hypophosphatasia-container .highlight-information__title {
  height: auto;
}
.hypophosphatasia-container .information {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.875rem;
  position: relative;
  width: 100%;
}
.hypophosphatasia-container .information .hypophosphatasia-container__paragraph--highlight {
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 900;
  line-height: 1.0063rem;
  margin-bottom: 0;
  max-width: 60ch;
  padding: 0.625rem 1.25rem;
  position: relative;
  text-align: center;
}
.hypophosphatasia-container .information .hypophosphatasia-container__paragraph--highlight::after {
  background-color: #B41E8C;
  border-radius: 5.9688rem 0 0 5.9688rem;
  bottom: -10px;
  content: "";
  height: 75%;
  position: absolute;
  width: 200%;
  z-index: -2;
}
.hypophosphatasia-container .information .hypophosphatasia-container__paragraph--highlight::before {
  background-color: #006F97;
  border-radius: 2rem 0 0 2rem;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 150%;
  z-index: -1;
}
@media (min-width: 530px) {
  .hypophosphatasia-container .information .hypophosphatasia-container__paragraph--highlight {
    padding: 0.625rem;
  }
  .hypophosphatasia-container .information .hypophosphatasia-container__paragraph--highlight::after {
    left: 25px;
  }
  .hypophosphatasia-container .information .hypophosphatasia-container__paragraph--highlight::before {
    border-radius: 2rem;
    left: -25px;
  }
}
@media (min-width: 1200px) {
  .hypophosphatasia-container .information .hypophosphatasia-container__paragraph--highlight {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
  .hypophosphatasia-container .information .hypophosphatasia-container__paragraph--highlight::before {
    border-radius: 5.9688rem;
    left: -1.5625rem;
    width: 110%;
  }
}
.hypophosphatasia-container .animated--bg {
  color: #00494F;
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.5938rem;
  padding: 0 0.125rem;
}
@media (min-width: 1200px) {
  .hypophosphatasia-container .animated--bg {
    font-size: 1.4375rem;
    line-height: 2.1563rem;
  }
}
.skeleton-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  width: 100%;
}
@media (min-width: 1200px) {
  .skeleton-container {
    justify-content: space-between;
    padding: 0;
  }
}
.skeleton-container h2 {
  color: #00494F;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
@media (min-width: 1200px) {
  .skeleton-container h2 {
    margin-bottom: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .skeleton-container::after {
    background-color: #00494F;
    border-radius: 36.3544rem 0 0 0;
    content: "";
    height: 100%;
    position: absolute;
    left: 33%;
    width: 110%;
    z-index: 0;
  }
}
@media screen and (min-width: 1400px) {
  .skeleton-container::after {
    left: 31%;
  }
}
.skeleton-container__content {
  z-index: 1;
}
.skeleton-container__content p {
  font-size: 0.875rem;
  line-height: 1.0938rem;
  margin-bottom: 1.875rem;
}
.skeleton-container__content p.skeleton-container__footnote {
  font-size: 0.75rem;
  line-height: 0.9rem;
}
.skeleton-container__content p.discussion-guide-paragraph {
  margin-bottom: 15px;
}
.skeleton-container__content p.discussion-guide-paragraph strong {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
}
@media screen and (min-width: 1200px) {
  .skeleton-container__content p.discussion-guide-paragraph {
    max-width: 31ch;
  }
}
.skeleton-container__content .discussion-guide-button {
  font-size: 20px;
  line-height: 115%;
  font-weight: 500;
  margin-bottom: 36px;
}
.skeleton-container__content .discussion-guide-button::after {
  background-image: url(/assets/icons/icon-arrow-white.svg);
  transform: rotate(90deg);
  width: 17px;
  height: 17.953px;
}
.skeleton-container__content .discussion-guide-button:hover::after {
  background-image: url(/assets/icons/icon-arrow-blue.svg);
}
@media screen and (min-width: 1200px) {
  .skeleton-container__content .discussion-guide-button {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .skeleton-container__content {
    max-width: 48ch;
    padding: 2rem 0 0 0;
  }
  .skeleton-container__content p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.skeleton-container__symbol {
  font-size: 0.625rem;
  top: -4px;
}
.skeleton-container__skeleton {
  border-radius: 1.875rem;
  background-color: #00494F;
  z-index: 1;
}
@media (min-width: 1024px) {
  .skeleton-container__skeleton {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .skeleton-container__skeleton {
    background-color: transparent;
    padding-right: 2.5rem;
    width: fit-content;
  }
}
.skeleton-container .skeleton--desktop {
  border-radius: 0;
  display: none;
  min-width: 43.75rem;
  padding: 3.125rem 0 0;
}
@media (min-width: 1024px) {
  .skeleton-container .skeleton--desktop {
    background-color: transparent;
    display: flex;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .skeleton-container .skeleton--desktop {
    min-width: 37.5rem;
  }
  .skeleton-container .skeleton--desktop .skeleton__word {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .skeleton-container .skeleton--mobile {
    display: none;
  }
}
.dosing {
  padding-top: 1.6875rem;
}
@media screen and (min-width: 1000px) {
  .dosing__container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
}
@media screen and (min-width: 600px) {
  .dosing__first {
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .dosing__first {
    max-width: 33.25rem;
  }
}
@media screen and (min-width: 1000px) {
  .dosing__first {
    margin-top: 1rem;
    margin-right: 2.5rem;
  }
}
@media screen and (min-width: 1300px) {
  .dosing__first {
    margin: unset;
  }
}
.dosing__first__title {
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  margin-bottom: 1.3125rem;
  color: #00494F;
}
@media screen and (min-width: 1000px) {
  .dosing__first__title {
    font-size: 1.875rem;
    line-height: 2.375rem;
  }
}
.dosing__first__text p {
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin-bottom: 1.375rem;
}
@media screen and (min-width: 1000px) {
  .dosing__first__text p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
@media screen and (min-width: 1200px) {
  .dosing__second {
    margin-left: 5rem;
  }
}
.dosing__second__title {
  font-style: normal;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  letter-spacing: -0.0313rem;
  color: #626469;
}
.dosing__second__title br {
  display: none;
}
@media screen and (min-width: 358px) {
  .dosing__second__title br {
    display: block;
  }
}
@media screen and (min-width: 376px) {
  .dosing__second__title br {
    display: none;
  }
}
@media screen and (min-width: 1300px) {
  .dosing__second__title {
    margin-left: 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .dosing__second__shapes {
    display: flex;
    height: 16.0625rem;
  }
}
.dosing__second__shapes__container {
  display: flex;
  position: relative;
  align-items: center;
}
@media screen and (min-width: 1400px) {
  .dosing__second__shapes__container {
    margin-left: 4rem;
  }
}
.dosing__second__shapes__container .shape-heading {
  font-style: normal;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4375rem;
  margin-top: 2.9375rem;
  color: #626469;
}
@media screen and (min-width: 1300px) {
  .dosing__second__shapes__container .shape-heading {
    margin-top: 0.9375rem;
  }
}
.dosing__second__shapes__container .shape-body {
  font-style: normal;
  font-weight: 400;
  font-size: 3.75rem;
  line-height: 3.1875rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.625rem;
  color: #00494F;
}
@media screen and (min-width: 1300px) {
  .dosing__second__shapes__container .shape-body {
    width: 10rem;
    font-size: 4.375rem;
    letter-spacing: -0.03em;
    margin-top: 1rem;
  }
}
.dosing__second__shapes__container .shape-body span {
  letter-spacing: 0.0375rem;
  font-size: 0.875rem;
}
.dosing__second__shapes__container .steps-box__content-line {
  margin-top: -1.1875rem;
  position: absolute;
  width: 100vw;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 1200px) {
  .dosing__second__shapes__container .steps-box__content-line {
    width: 12vw;
  }
}
@media screen and (min-width: 1300px) {
  .dosing__second__shapes__container .steps-box__content-line {
    margin-top: -0.625rem;
    width: 10.5625rem;
  }
}
@media screen and (min-width: 1400px) {
  .dosing__second__shapes__container .steps-box__content-line {
    width: 13.625rem;
  }
}
.dosing__second__shapes__container .steps-box__content-line.modifier {
  background-color: #FFFFFF;
}
@media screen and (min-width: 1300px) {
  .dosing__second__shapes__container .steps-box__content-line.modifier {
    width: 12vw;
  }
}
@media screen and (min-width: 1400px) {
  .dosing__second__shapes__container .steps-box__content-line.modifier {
    width: 13.625rem;
  }
}
.dosing__second__shapes__container::before {
  content: "";
  background-image: url(/assets/icons/injection-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 4.8125rem;
  height: 4.8125rem;
  margin-right: 0.75rem;
  margin-top: 1.8125rem;
  margin-left: 0.625rem;
}
@media screen and (min-width: 1300px) {
  .dosing__second__shapes__container::before {
    background-size: cover;
    width: 7.9375rem;
    height: 7.9375rem;
    margin-right: 0.75rem;
    margin-top: 1.625rem;
    margin-left: 1.4375rem;
  }
}
@media screen and (min-width: 1400px) {
  .dosing__second__shapes__container::before {
    margin-left: 0.75rem;
    margin-right: 1.5rem;
  }
}
.dosing__second__shapes__container.modifier::before {
  background-image: none;
}
@media screen and (min-width: 1300px) {
  .dosing__second__shapes__container.modifier::before {
    margin-left: -1rem;
  }
}
.dosing__second__shapes__container .dosing__second__shape--one {
  position: absolute;
  height: 9.3125rem;
  left: -1rem;
  top: 1.25rem;
  background: #e2e7ea;
  border-radius: 36.3544rem 0rem 0rem 36.3544rem;
  z-index: -1;
  width: 100vw;
}
@media screen and (min-width: 1200px) {
  .dosing__second__shapes__container .dosing__second__shape--one {
    height: 16.0625rem;
  }
}
@media screen and (min-width: 1300px) {
  .dosing__second__shapes__container .dosing__second__shape--one {
    height: 16.0625rem;
    left: 0;
  }
}
@media screen and (min-width: 1400px) {
  .dosing__second__shapes__container .dosing__second__shape--one {
    left: -2rem;
  }
}
.dosing__second__shapes__container .dosing__second__shape--two {
  position: absolute;
  height: 9.3125rem;
  left: -1rem;
  top: 1.25rem;
  background: #48D597;
  border-radius: 36.3544rem 0rem 0rem 36.3544rem;
  z-index: -1;
  width: 100vw;
}
@media screen and (min-width: 1200px) {
  .dosing__second__shapes__container .dosing__second__shape--two {
    left: 2rem;
    height: 16.0625rem;
  }
}
@media screen and (min-width: 1300px) {
  .dosing__second__shapes__container .dosing__second__shape--two {
    left: 1rem;
  }
}
.dosing__second .pdf-text {
  margin-top: 3.125rem;
  text-align: center;
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin-bottom: 1.25rem;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 600px) {
  .dosing__second .pdf-text {
    max-width: 100%;
  }
}
@media screen and (min-width: 1300px) {
  .dosing__second .pdf-text {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
@media screen and (min-width: 1300px) {
  .dosing__second .pdf-text {
    margin-left: 4rem;
  }
}
.dosing__second .button {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.125rem;
  margin: auto;
  margin-bottom: 1.875rem;
}
.dosing__second .button:hover,
.dosing__second .button:focus {
  background-color: #006F97;
  color: #FFFFFF;
}
.dosing__second .button::after {
  content: "";
  background-image: url(/assets/icons/icon-arrow-white.svg);
  height: 1.125rem;
  width: 1.125rem;
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .dosing__second .button {
    font-size: 1.25rem;
    line-height: 1.4375rem;
  }
}
@media screen and (min-width: 1300px) {
  .dosing__second .button {
    margin-left: 13rem;
  }
}
.injection-site {
  background: rgba(226, 231, 234, 0.5);
  padding-top: 2.1875rem;
  padding-bottom: 2.1875rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .injection-site {
    padding-top: 4.6875rem;
    padding-bottom: 2.625rem;
  }
}
@media screen and (min-width: 768px) {
  .injection-site__container {
    display: flex;
    justify-content: space-between;
    max-width: 79.3125rem;
  }
}
@media screen and (min-width: 1024px) {
  .injection-site__container {
    align-items: end;
  }
}
@media screen and (min-width: 1300px) {
  .injection-site__container {
    margin: auto;
    max-width: unset;
  }
}
.injection-site__first {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 850px) {
  .injection-site__first {
    max-width: 31.625rem;
  }
}
@media screen and (min-width: 850px) {
  .injection-site__first {
    max-width: 30.625rem;
  }
}
@media screen and (min-width: 1340px) {
  .injection-site__first {
    max-width: 30.75rem;
  }
}
.injection-site__first__title {
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  color: #00494F;
}
@media screen and (min-width: 1024px) {
  .injection-site__first__title {
    font-size: 1.875rem;
    line-height: 2.375rem;
    text-align: left;
  }
}
@media screen and (min-width: 1300px) {
  .injection-site__second {
    max-width: 43rem;
  }
}
@media screen and (min-width: 1340px) {
  .injection-site__second {
    margin-top: 4rem;
  }
}
.injection-site__second__sub-heading {
  position: relative;
  z-index: 2;
  font-style: normal;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4375rem;
  margin-top: 2.9375rem;
  margin-bottom: 0.5625rem;
  color: #E2E7EA;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .injection-site__second__sub-heading {
    margin-top: 0;
  }
}
@media screen and (min-width: 1420px) {
  .injection-site__second__sub-heading {
    margin-top: 1.9375rem;
  }
}
.injection-site__second__heading {
  position: relative;
  z-index: 2;
  font-style: normal;
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 2.1875rem;
  color: #FFFFFF;
  max-width: 13ch;
}
@media screen and (min-width: 1024px) {
  .injection-site__second__heading {
    max-width: 19ch;
    line-height: 2.4375rem;
  }
}
@media screen and (min-width: 1400px) {
  .injection-site__second__heading {
    max-width: unset;
    font-size: 4.375rem;
    letter-spacing: -0.03em;
    line-height: 3.5rem;
    margin-bottom: 0.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  .injection-site__second__heading {
    font-size: 4.375rem !important;
  }
}
.injection-site__second__heading br {
  display: none;
}
@media screen and (min-width: 1440px) {
  .injection-site__second__heading br {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .injection-site__second__heading span {
    font-size: 50px;
    display: block;
    width: 42.6131rem;
  }
}
.injection-site__second__sub-text {
  position: relative;
  z-index: 2;
  font-style: normal;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
  color: #FFFFFF;
}
@media screen and (min-width: 1440px) {
  .injection-site__second__sub-text {
    margin-top: -7px;
  }
}
.injection-site__second__text {
  position: relative;
  z-index: 2;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.05em;
  color: #E2E7EA;
}
.injection-site__second .steps-box__content-line {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media screen and (min-width: 1340px) {
  .injection-site__second .steps-box__content-line {
    max-width: 416px;
  }
}
.injection-site__second__shape {
  position: absolute;
  height: 26.75rem;
  right: -4rem;
  bottom: -12rem;
  background: #00494F;
  border-radius: 36.3544rem;
  z-index: 1;
  width: 195vw;
}
@media screen and (min-width: 768px) {
  .injection-site__second__shape {
    --width-dosing-shape: calc(100vw * 1.11);
    --height-dosing-shape: calc(var(--width-dosing-shape) * 0.564);
    right: calc(var(--height-dosing-shape) * -0.426);
    top: calc(var(--width-dosing-shape) * 0.135);
    height: var(--height-dosing-shape);
    transform: rotate(-50deg);
    width: var(--width-dosing-shape);
  }
}
@media screen and (min-width: 1024px) {
  .injection-site__second__shape {
    right: calc(var(--height-dosing-shape) * -0.35);
    top: calc(var(--width-dosing-shape) * 0.25);
  }
}
@media screen and (min-width: 1400px) {
  .injection-site__second__shape {
    left: calc((100vw - 95%) / 2 * -1);
    top: calc(var(--width-dosing-shape) * 0.18);
    right: unset;
  }
}
@media screen and (min-width: 1525px) {
  .injection-site__second__shape {
    left: calc((100vw - 1440px) / 2 * -1);
  }
}
@media screen and (min-width: 2000px) {
  .injection-site__second__shape {
    top: calc(var(--width-dosing-shape) * 0.2);
    left: calc((100vw - 1250px) / 2 * -1);
  }
}
.injection-site__list {
  max-width: 19.5rem;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 517px) {
  .injection-site__list {
    max-width: 28.5rem;
  }
}
@media screen and (min-width: 768px) {
  .injection-site__list {
    max-width: 19.5rem;
  }
}
@media screen and (min-width: 850px) {
  .injection-site__list {
    max-width: 28.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .injection-site__list {
    max-width: 28.75rem;
  }
}
.injection-site__item {
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin-top: 1rem;
  color: #626469;
}
@media screen and (min-width: 768px) {
  .injection-site__item:nth-child(3) {
    max-width: 85%;
  }
  .injection-site__item:last-child {
    max-width: 70%;
  }
}
@media screen and (min-width: 850px) {
  .injection-site__item {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
  .injection-site__item:nth-child(2) {
    max-width: 38ch;
  }
  .injection-site__item:nth-child(3) {
    max-width: 70%;
  }
  .injection-site__item:last-child {
    max-width: 20ch;
  }
}
@media screen and (min-width: 950px) {
  .injection-site__item:nth-child(2) {
    max-width: unset;
  }
  .injection-site__item:nth-child(3) {
    max-width: 37ch;
  }
  .injection-site__item:last-child {
    max-width: 30ch;
  }
}
@media screen and (min-width: 1050px) {
  .injection-site__item:nth-child(3) {
    max-width: unset;
  }
  .injection-site__item:last-child {
    max-width: 35ch;
  }
}
@media screen and (min-width: 1550px) {
  .injection-site__item:last-child {
    max-width: unset;
  }
}
.dosing__cta .cta__heading {
  max-width: 100%;
}
.dosing__cta .cta__heading br:not(.mobile) {
  display: block;
}
@media screen and (min-width: 768px) {
  .dosing__cta .cta__heading br:not(.mobile) {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .dosing__cta .cta__heading br:not(.mobile).mobile {
    display: block;
  }
}
.alp-levels {
  padding-top: 1.875rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 1350px) {
  .alp-levels {
    padding-top: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .alp-levels__container {
    display: flex;
  }
}
.alp-levels__list {
  max-width: 19.5rem;
  margin-left: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 4.125rem;
}
@media screen and (min-width: 768px) {
  .alp-levels__list {
    max-width: 40.5rem;
    margin-bottom: 0;
  }
}
.alp-levels__item {
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin-top: 1rem;
  color: #626469;
}
@media screen and (min-width: 768px) {
  .alp-levels__item {
    margin-left: 0.9375rem;
  }
}
@media screen and (min-width: 1000px) {
  .alp-levels__item {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
@media screen and (min-width: 768px) {
  .alp-levels__first {
    max-width: 28rem;
  }
}
@media screen and (min-width: 1350px) {
  .alp-levels__first {
    max-width: 32.75rem;
  }
}
.alp-levels__first__heading {
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5625rem;
  letter-spacing: -0.0313rem;
  color: #00494F;
}
@media screen and (min-width: 1000px) {
  .alp-levels__first__heading {
    font-size: 1.875rem;
    line-height: 2.375rem;
    max-width: 32.75rem;
  }
}
.alp-levels__first__text {
  font-style: normal;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.125rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 1000px) {
  .alp-levels__first__text {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.alp-levels__second {
  text-align: right;
  display: flex;
  justify-content: right;
  max-width: 31.25rem;
}
@media screen and (min-width: 500px) {
  .alp-levels__second {
    max-width: 36.25rem;
  }
}
@media screen and (min-width: 768px) {
  .alp-levels__second .shapes {
    position: absolute;
    right: -9.875rem;
    top: 11.3125rem;
  }
}
@media screen and (min-width: 1000px) {
  .alp-levels__second .shapes {
    top: 20.3125rem;
  }
}
@media screen and (min-width: 1350px) {
  .alp-levels__second .shapes {
    top: 19rem;
  }
}
.alp-levels__second__text {
  font-style: normal;
  font-weight: 900;
  font-size: 0.6875rem;
  line-height: 0.875rem;
  text-align: center;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
  color: white;
  margin-top: 0.25rem;
  max-width: 17.75rem;
}
@media screen and (min-width: 1000px) {
  .alp-levels__second__text {
    font-size: 18px;
    letter-spacing: 0.05em;
    max-width: 25.875rem;
    line-height: 1.5rem;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 1350px) {
  .alp-levels__second__text {
    font-size: 1.25rem;
    line-height: 1.875rem;
    max-width: 43.375rem;
    margin-left: 2.1875rem;
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 1400px) {
  .alp-levels__second__text {
    max-width: 46.375rem;
    margin-top: 0.625rem;
  }
}
.alp-levels__second__shape {
  position: absolute;
  height: 3.125rem;
  bottom: -0.25rem;
  right: -3.375rem;
  background: #006F97;
  border-radius: 36.3544rem 0rem 0rem 36.3544rem;
  z-index: -1;
  width: 21rem;
}
@media screen and (min-width: 500px) {
  .alp-levels__second__shape {
    width: 64vw;
  }
}
@media screen and (min-width: 1000px) {
  .alp-levels__second__shape {
    height: 5.125rem;
  }
}
@media screen and (min-width: 1350px) {
  .alp-levels__second__shape {
    height: 5rem;
    right: 0;
  }
}
@media screen and (min-width: 1400px) {
  .alp-levels__second__shape {
    right: -2.1875rem;
  }
}
@media screen and (min-width: 1600px) {
  .alp-levels__second__shape {
    width: 100vw;
    left: -937px;
  }
}
.alp-levels__second__shape--secondary {
  position: absolute;
  height: 3.125rem;
  bottom: -0.9375rem;
  right: -4.875rem;
  background: #B41E8C;
  border-radius: 36.3544rem 0rem 0rem 36.3544rem;
  z-index: -2;
  width: 21rem;
}
@media screen and (min-width: 500px) {
  .alp-levels__second__shape--secondary {
    width: 64vw;
  }
}
@media screen and (min-width: 1600px) {
  .alp-levels__second__shape--secondary {
    width: 100vw;
    left: -877px;
  }
}
@media (max-width: 1450px) {
  .hypophosphatasia__testimonial-container.wrapper {
    max-width: 100%;
  }
}
.infants-young-children__hpp-related-rickets {
  padding-top: 1.625rem;
  padding-bottom: 1.8125rem;
  background: #FFFFFF;
}
.infants-young-children__hpp-related-rickets .radiographic-images-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__hpp-related-rickets {
    padding-top: 4.375rem;
    padding-bottom: 0;
  }
  .infants-young-children__hpp-related-rickets .hpp-related-rickets__content {
    display: flex;
    justify-content: space-between;
  }
  .infants-young-children__hpp-related-rickets .radiographic-images-mobile {
    display: none;
  }
  .infants-young-children__hpp-related-rickets .radiographic-images-desktop {
    display: block;
  }
  .infants-young-children__hpp-related-rickets [data-radiographic-title] {
    height: 4.375rem;
  }
}
@media screen and (min-width: 1100px) {
  .infants-young-children__hpp-related-rickets [data-radiographic-title] {
    height: 3.125rem;
  }
}
@media screen and (min-width: 1440px) {
  .infants-young-children__hpp-related-rickets .hpp-related-rickets__content {
    grid-template-columns: 29.9375rem 1fr;
  }
  .infants-young-children__hpp-related-rickets .radiographic-images-desktop {
    max-width: 50.625rem;
    margin-left: auto;
  }
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__title {
  color: #00494F;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__hpp-related-rickets .hpp-related-rickets__title {
    max-width: 36ch;
  }
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__description {
  font-size: 0.875rem;
  line-height: 17.5px;
  font-weight: 300;
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__hpp-related-rickets .hpp-related-rickets__description {
    max-width: 49ch;
  }
}
@media screen and (min-width: 1440px) {
  .infants-young-children__hpp-related-rickets .hpp-related-rickets__description {
    font-size: 1.125rem;
  }
}
.infants-young-children__hpp-related-rickets .clinical-studies {
  margin-bottom: 1.1875rem;
}
.infants-young-children__hpp-related-rickets .clinical-studies__footer-note {
  font-size: 0.75rem;
  font-weight: 14.4px;
  font-weight: 300;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__hpp-related-rickets .clinical-study__description {
    max-width: 35ch;
  }
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right .custom-title {
  margin-bottom: 1.875rem;
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right [role=tablist] {
  width: calc(100% - 4.125rem);
  justify-content: center;
  overflow-y: unset;
  margin-right: 0;
  margin-left: auto;
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right [role=tablist] a {
  padding-left: 4.75rem;
  padding-right: 4.75rem;
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right [role=tabpanel] {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  max-width: fit-content;
  margin-left: auto;
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right .radiographic-comparator [data-radiographic-footer] {
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 1400px) {
  .infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right .radiographic-comparator [data-radiographic-footer] {
    margin-bottom: 0;
    height: 5.5rem;
  }
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right .radiographic-images-mobile__title {
  font-weight: 600;
  color: #626469;
  margin-bottom: 0.8125rem;
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right .radiographic-comparator__left {
  position: relative;
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right .radiographic__footnote--mobile {
  font-size: 0.625rem;
  line-height: 0.6875rem;
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right .radiographic__footnote--desktop {
  font-size: 0.75rem;
  line-height: 0.9rem;
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right .radiographic__footnote--container {
  margin-top: auto;
}
.infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right .radiographic__footnote--right {
  max-width: 85%;
}
@media screen and (min-width: 799px) {
  .infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right .radiographic__footnote--right {
    max-width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .infants-young-children__hpp-related-rickets .hpp-related-rickets__content-right {
    width: 56%;
  }
  .infants-young-children__hpp-related-rickets .hpp-related-rickets__content-left {
    width: 44%;
  }
}
.infants-young-children__hpp-related-rickets .custom-title__text {
  max-width: 32ch;
}
@media screen and (min-width: 768px) {
  .infants-young-children__hpp-related-rickets .custom-title {
    width: 100vw;
  }
  .infants-young-children__hpp-related-rickets .custom-title__text {
    max-width: 45ch;
  }
}
@media screen and (min-width: 1350px) {
  .infants-young-children__hpp-related-rickets .custom-title__text {
    max-width: 61ch;
  }
}
@media screen and (max-width: 1023px) {
  .infants-young-children__hpp-related-rickets .wrapper--desktop {
    margin: 0;
    max-width: 100%;
  }
}
@media screen and (min-width: 1023px) {
  .infants-young-children__hpp-related-rickets .wrapper--mobile {
    margin: 0;
    max-width: 100%;
  }
}
.infants-young-children__survival {
  background: #F4F5F7;
  padding-top: 1.6875rem;
  padding-bottom: 1.6269rem;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival {
    padding-top: 4.375rem;
  }
}
@media (max-width: 1024px) {
  .infants-young-children__survival .wrapper--desktop {
    margin: 0;
    max-width: 100%;
  }
}
@media (min-width: 1025px) {
  .infants-young-children__survival .wrapper--mobile {
    margin: 0;
    max-width: 100%;
  }
}
.infants-young-children__survival .tip__wrapper {
  overflow-x: unset;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival .custom-title {
    width: 110%;
  }
}
@media screen and (min-width: 1600px) {
  .infants-young-children__survival .custom-title {
    width: 75vw;
  }
}
.infants-young-children__survival .custom-title__text {
  max-width: 35ch;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival .custom-title__text {
    max-width: 41ch;
  }
}
@media screen and (min-width: 1400px) {
  .infants-young-children__survival .custom-title__text {
    max-width: 56ch;
  }
}
.infants-young-children__survival .infants-young-children__survival-content {
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival .infants-young-children__survival-content {
    display: grid;
    grid-template-columns: 44% 56%;
  }
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival .infants-young-children__survival-left {
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1300px) {
  .infants-young-children__survival .infants-young-children__survival-left {
    padding-right: 4.25rem;
  }
}
.infants-young-children__survival .infants-young-children__survival-title {
  color: #00494F;
}
@media screen and (min-width: 1400px) {
  .infants-young-children__survival .infants-young-children__survival-title {
    margin-bottom: 8.5156rem;
    max-width: 31ch;
  }
}
.infants-young-children__survival .infants-young-children__survival-chart {
  margin-top: 1.4375rem;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival .infants-young-children__survival-chart {
    background-color: #FFFFFF;
  }
}
.infants-young-children__survival .infants-young-children__survival-chart-wrapper {
  background: #FFFFFF;
  margin-bottom: 1rem;
  max-width: 46.125rem;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival .infants-young-children__survival-chart-wrapper {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1400px) {
  .infants-young-children__survival .infants-young-children__survival-chart-wrapper {
    margin-left: initial;
  }
}
.infants-young-children__survival .infants-young-children__survival-chart-foot-wrapper .wrapper {
  max-width: 100%;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival .infants-young-children__survival-chart-foot-wrapper .wrapper {
    max-width: calc(100% - var(--margin));
  }
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival .infants-young-children__survival-chart-foot-wrapper {
    background: #FFFFFF;
    padding-bottom: 1.375rem;
    padding-left: 10%;
  }
  .infants-young-children__survival .infants-young-children__survival-chart-foot-wrapper .wrapper--only-right {
    max-width: fit-content;
    margin-left: 4.2813rem;
    margin-right: 1.2813rem;
  }
}
@media screen and (min-width: 1400px) {
  .infants-young-children__survival .infants-young-children__survival-chart-foot-wrapper {
    max-width: 46.125rem;
  }
}
.infants-young-children__survival .infants-young-children__survival-chart-foot {
  font-size: 0.75rem;
  line-height: 14.4px;
  font-weight: 300;
}
.infants-young-children__survival .infants-young-children__survival-tip .tip__box_content {
  max-width: 36ch;
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival .infants-young-children__survival-tip {
    min-height: 5rem;
    border-radius: 0px 95.5px 95.5px 0px;
  }
  .infants-young-children__survival .infants-young-children__survival-tip .tip__box_content {
    text-align: center;
  }
  .infants-young-children__survival .infants-young-children__survival-tip::before {
    left: -3.75rem;
    right: auto;
    border-radius: 0px 581.67px 581.67px 0px;
  }
}
@media screen and (min-width: 1024px) {
  .infants-young-children__survival .infants-young-children__survival-tip {
    margin-right: auto;
    width: 100%;
    max-width: initial;
  }
}
@media screen and (min-width: 1025px) {
  .infants-young-children__survival .infants-young-children__survival-tip {
    margin-left: -2.1875rem;
  }
}
@media screen and (min-width: 1366px) {
  .infants-young-children__survival .infants-young-children__survival-tip {
    background-color: transparent;
  }
  .infants-young-children__survival .infants-young-children__survival-tip .tip__box_content {
    position: relative;
    z-index: 1;
  }
  .infants-young-children__survival .infants-young-children__survival-tip::after {
    background-color: #006F97;
    border-radius: 95.5px;
    content: "";
    height: 100px;
    position: absolute;
    right: 5%;
    top: 0;
    width: 100vw;
    z-index: 0;
  }
  .infants-young-children__survival .infants-young-children__survival-tip::before {
    left: unset;
    width: 75vw;
    right: 13%;
  }
}
@media screen and (min-width: 1400px) {
  .infants-young-children__survival .infants-young-children__survival-tip .tip__box_content {
    max-width: 26.6875rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.infants-young-children__cta .cta__heading {
  max-width: 100%;
}
.clinical-data-adolescents__page-hero .shape--primary {
  width: 392px;
  max-width: unset;
  border-radius: 0rem 1.9375rem 8.9375rem 0rem;
}
.adolescents__hpp-related-rickets,
.adolescents__mobility {
  padding-top: 1.625rem;
  padding-bottom: 1.8125rem;
  background: #FFFFFF;
}
@media screen and (min-width: 1024px) {
  .adolescents__hpp-related-rickets,
  .adolescents__mobility {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}
.adolescents__hpp-related-rickets .hpp-related-rickets__title,
.adolescents__mobility .hpp-related-rickets__title {
  color: #00494F;
  margin-bottom: 1.5rem;
}
.adolescents__hpp-related-rickets .clinical-studies__clarification,
.adolescents__mobility .clinical-studies__clarification {
  font-size: 0.875rem;
  line-height: 1.0938rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .adolescents__hpp-related-rickets .clinical-studies__clarification,
  .adolescents__mobility .clinical-studies__clarification {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
.adolescents__hpp-related-rickets .hpp-related-rickets__chart-footnote,
.adolescents__hpp-related-rickets .mobility__chart-footnote,
.adolescents__mobility .hpp-related-rickets__chart-footnote,
.adolescents__mobility .mobility__chart-footnote {
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.adolescents__hpp-related-rickets .hpp-related-rickets__chart-footnote p,
.adolescents__hpp-related-rickets .mobility__chart-footnote p,
.adolescents__mobility .hpp-related-rickets__chart-footnote p,
.adolescents__mobility .mobility__chart-footnote p {
  font-size: 0.75rem;
  line-height: 1.15;
}
@media screen and (min-width: 1024px) {
  .adolescents__hpp-related-rickets .hpp-related-rickets__chart-footnote,
  .adolescents__hpp-related-rickets .mobility__chart-footnote,
  .adolescents__mobility .hpp-related-rickets__chart-footnote,
  .adolescents__mobility .mobility__chart-footnote {
    margin-top: unset;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.adolescents__hpp-related-rickets .hpp-related-rickets__radiographics-title,
.adolescents__mobility .hpp-related-rickets__radiographics-title {
  font-weight: 600;
  color: #626469;
  margin-bottom: 0.8125rem;
}
@media screen and (min-width: 1024px) {
  .adolescents__hpp-related-rickets .hpp-related-rickets__content,
  .adolescents__mobility .hpp-related-rickets__content {
    display: grid;
    grid-template-columns: 28rem 1fr;
  }
}
@media screen and (min-width: 1440px) {
  .adolescents__hpp-related-rickets .hpp-related-rickets__content,
  .adolescents__mobility .hpp-related-rickets__content {
    grid-template-columns: 35rem 1fr;
  }
}
@media screen and (min-width: 1750px) {
  .adolescents__hpp-related-rickets .hpp-related-rickets__content,
  .adolescents__mobility .hpp-related-rickets__content {
    grid-template-columns: 1fr 1fr;
  }
}
.adolescents__hpp-related-rickets .clinical-studies__footer-note,
.adolescents__mobility .clinical-studies__footer-note {
  font-size: 0.75rem;
  font-weight: 14.4px;
  font-weight: 300;
}
.adolescents__hpp-related-rickets .hpp-related-rickets__content-right .radiographic-images-desktop,
.adolescents__mobility .hpp-related-rickets__content-right .radiographic-images-desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .adolescents__hpp-related-rickets .hpp-related-rickets__content-right,
  .adolescents__mobility .hpp-related-rickets__content-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .adolescents__hpp-related-rickets .hpp-related-rickets__content-right .hpp-related-rickets__radiographics-wrapper,
  .adolescents__mobility .hpp-related-rickets__content-right .hpp-related-rickets__radiographics-wrapper {
    margin-bottom: 2rem;
  }
  .adolescents__hpp-related-rickets .hpp-related-rickets__content-right .hpp-related-rickets__chart-wrapper,
  .adolescents__mobility .hpp-related-rickets__content-right .hpp-related-rickets__chart-wrapper {
    order: 2;
  }
  .adolescents__hpp-related-rickets .hpp-related-rickets__content-right .hpp-related-rickets__chart-wrapper picture,
  .adolescents__mobility .hpp-related-rickets__content-right .hpp-related-rickets__chart-wrapper picture {
    max-width: 46.125rem;
    margin-bottom: 1rem;
  }
  .adolescents__hpp-related-rickets .hpp-related-rickets__content-right .radiographic-images-mobile,
  .adolescents__mobility .hpp-related-rickets__content-right .radiographic-images-mobile {
    display: none;
  }
  .adolescents__hpp-related-rickets .hpp-related-rickets__content-right .radiographic-images-desktop,
  .adolescents__mobility .hpp-related-rickets__content-right .radiographic-images-desktop {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .hpp-related-rickets__chart-wrapper {
    max-width: fit-content;
  }
  .hpp-related-rickets__chart-wrapper > div:not(.wrapper) {
    max-width: fit-content;
  }
  .hpp-related-rickets__chart-wrapper .pinch-to-zoom {
    width: fit-content !important;
    margin-right: 0 !important;
    margin-left: auto !important;
    padding-bottom: 0;
  }
  .hpp-related-rickets__chart-wrapper .pinch-to-zoom__container {
    margin-top: 0;
  }
  .hpp-related-rickets__chart-wrapper .f-panzoom__viewport {
    margin-bottom: 0;
  }
  .hpp-related-rickets__chart-wrapper .hpp-related-rickets__chart-footnote {
    padding-left: 10%;
  }
}
@media screen and (min-width: 1024px) {
  .adolescents__hpp-related-rickets .pinch-to-zoom {
    padding-right: 0;
  }
  .adolescents__hpp-related-rickets .pinch-to-zoom .pinch-to-zoom__container {
    margin-left: auto;
    margin-right: 0;
  }
}
.adolescents__hpp-related-rickets .pinch-to-zoom__button-container {
  top: 48%;
  right: 8%;
}
@media screen and (min-width: 340px) {
  .adolescents__hpp-related-rickets .pinch-to-zoom__button-container {
    top: 49%;
  }
}
@media screen and (min-width: 375px) {
  .adolescents__hpp-related-rickets .pinch-to-zoom__button-container {
    top: 50%;
  }
}
@media screen and (min-width: 425px) {
  .adolescents__hpp-related-rickets .pinch-to-zoom__button-container {
    top: 51%;
    right: 7%;
  }
}
@media screen and (min-width: 500px) {
  .adolescents__hpp-related-rickets .pinch-to-zoom__button-container {
    top: 52%;
  }
}
@media screen and (min-width: 650px) {
  .adolescents__hpp-related-rickets .pinch-to-zoom__button-container {
    top: 53%;
  }
}
@media screen and (min-width: 768px) {
  .adolescents__hpp-related-rickets .pinch-to-zoom__button-container {
    top: 51%;
    right: 8%;
  }
}
@media screen and (min-width: 840px) {
  .adolescents__hpp-related-rickets .pinch-to-zoom__button-container {
    right: calc((100% - 640px) / 2);
  }
}
@media screen and (min-width: 1440px) {
  .adolescents__hpp-related-rickets .radiographic-comparator {
    max-width: fit-content;
  }
}
.adolescents__hpp-related-rickets .radiographic-comparator [data-radiographic-title] {
  margin: 0 auto 0rem;
  max-width: 14ch;
}
.adolescents__hpp-related-rickets .radiographic-comparator__left {
  position: relative;
}
.adolescents__hpp-related-rickets .radiographic-comparator__right [data-radiographic-footer] {
  max-width: 21ch;
}
@media screen and (min-width: 1200px) {
  .adolescents__hpp-related-rickets .radiographic-comparator__right [data-radiographic-footer] {
    max-width: 27ch;
  }
}
@media screen and (min-width: 1024px) {
  .adolescents__hpp-related-rickets .radiographic-comparator__right {
    padding-bottom: 2.5rem;
  }
}
.adolescents__hpp-related-rickets .radiographic-comparator [data-radiographic-footer] {
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 1024px) {
  .adolescents__hpp-related-rickets .radiographic-comparator [data-radiographic-footer] {
    margin-bottom: 0.5rem;
  }
}
.adolescents__hpp-related-rickets .radiographic-comparator .radiographic__footnote {
  max-width: 80%;
}
.adolescents__hpp-related-rickets .radiographic-comparator .radiographic__footnote--bottom {
  position: absolute;
  bottom: 0.9375rem;
}
@media (min-width: 768px) {
  .adolescents__hpp-related-rickets .radiographic-comparator .radiographic__footnote--bottom {
    bottom: 1.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .adolescents__hpp-related-rickets .radiographic-comparator .radiographic__footnote--bottom {
    bottom: 2.5rem;
  }
}
.adolescents__hpp-related-rickets .radiographic-comparator .radiographic__footnote--mobile {
  font-size: 0.625rem;
  line-height: 0.75rem;
}
.adolescents__hpp-related-rickets .radiographic-comparator .radiographic__footnote--desktop {
  font-size: 0.75rem;
  line-height: 0.9rem;
}
.adolescents__hpp-related-rickets .radiographic-comparator .radiographic__footnote--right {
  color: #00494F;
  max-width: 85%;
}
@media screen and (min-width: 799px) {
  .adolescents__hpp-related-rickets .radiographic-comparator .radiographic__footnote--right {
    max-width: 80%;
  }
}
.adolescents__hpp-related-rickets .clinical-study {
  max-width: 375px;
}
.adolescents__hpp-related-rickets .clinical-study:nth-of-type(1) .clinical-study__description {
  max-width: 38ch;
}
@media screen and (min-width: 1024px) {
  .adolescents__hpp-related-rickets .clinical-studies__clarification {
    max-width: 40ch;
  }
}
@media screen and (min-width: 1400px) {
  .adolescents__hpp-related-rickets .clinical-studies__clarification {
    max-width: 52ch;
  }
}
.adolescents__mobility {
  background: rgba(226, 231, 234, 0.5);
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 1024px) {
  .adolescents__mobility {
    padding-bottom: 4.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .adolescents__mobility .clinical-studies__clarification {
    margin-bottom: 0;
    max-width: 54ch;
  }
}
.adolescents__mobility .adolescents__title {
  margin-bottom: 1rem;
  color: #00494F;
  max-width: 23ch;
}
@media screen and (min-width: 1024px) {
  .adolescents__mobility .adolescents__title {
    max-width: 30ch;
    margin-bottom: 2.5rem;
  }
}
.adolescents__mobility .mobility__chart-wrapper {
  background: #FFFFFF;
  padding-bottom: 1.1219rem;
}
@media screen and (min-width: 1024px) {
  .adolescents__mobility .mobility__chart-wrapper {
    max-width: 46.125rem;
    margin-left: auto;
  }
}
@media screen and (min-width: 1024px) {
  .adolescents__mobility .adolescents__content {
    display: grid;
    grid-template-columns: 28rem 1fr;
  }
}
@media screen and (min-width: 1300px) {
  .adolescents__mobility .adolescents__content {
    grid-template-columns: 34rem 1fr;
  }
}
@media screen and (min-width: 1440px) {
  .adolescents__mobility .adolescents__content {
    grid-template-columns: 35rem 1fr;
  }
}
@media screen and (min-width: 1750px) {
  .adolescents__mobility .adolescents__content {
    grid-template-columns: 1fr 1fr;
  }
}
.adolescents__mobility .adolescents__content .clinical-study__result .clinical-study__nopercentage {
  font-weight: 400;
}
@media screen and (min-width: 1440px) {
  .adolescents__mobility .adolescents__content-right .tip__wrapper {
    max-width: calc(100% - var(--margin) / 2);
    margin-left: 0;
    margin-right: auto;
    overflow: initial;
  }
  .adolescents__mobility .adolescents__content-right .tip__wrapper .adolescents__mobility-tip {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    max-width: 46.125rem;
    border-radius: 95.5px;
    text-align: center;
    width: 100%;
  }
  .adolescents__mobility .adolescents__content-right .tip__wrapper .adolescents__mobility-tip::before {
    left: 3rem;
    width: calc(100vw - 46.125rem);
  }
}
@media screen and (min-width: 1600px) {
  .adolescents__mobility .adolescents__content-right .tip__wrapper {
    max-width: calc(100% - (100vw - 90rem) / 2);
  }
}
@media screen and (min-width: 1750px) {
  .adolescents__mobility .adolescents__content-right .tip__wrapper {
    max-width: calc(100% - var(--margin) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .adolescents__mobility .adolescents__content-right {
    max-width: fit-content;
    margin-left: 50px;
  }
}
.adolescents__mobility .clinical-study {
  max-width: 375px;
}
.adolescents__mobility .clinical-study__description {
  color: #626469;
  max-width: 39ch;
}
.adolescents__mobility .clinical-study__description strong {
  color: #00494F;
}
@media screen and (min-width: 1024px) {
  .adolescents__mobility .clinical-study__description {
    max-width: 37ch;
  }
}
#clinical-data-page-hero.clinical-data-adolescents__page-hero .page-hero__title {
  max-width: 17ch;
}
@media screen and (min-width: 768px) {
  #clinical-data-page-hero.clinical-data-adolescents__page-hero .page-hero__title {
    margin-bottom: 1.5rem;
    max-width: 30ch;
  }
}
#clinical-data-page-hero.clinical-data-adolescents__page-hero .shape--primary {
  max-width: 100%;
  top: -9.375rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #clinical-data-page-hero.clinical-data-adolescents__page-hero .shape--primary {
    top: unset;
  }
}
@media screen and (min-width: 1200px) {
  #clinical-data-page-hero.clinical-data-adolescents__page-hero .shape--primary {
    width: 75%;
    max-width: 75%;
  }
}
.adolescents__cta .cta__heading {
  margin-bottom: 0.3125rem;
  max-width: 16ch;
  line-height: 2.0313rem;
}
@media screen and (min-width: 1024px) {
  .adolescents__cta .cta__heading {
    max-width: 29ch;
  }
}
.adolescents__cta .cta__text {
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 0.9rem;
  text-align: left;
  margin: 0 auto 0.9375rem;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .adolescents__cta .cta__text {
    width: 59ch;
    padding-left: 0.8rem;
  }
}
.cdchildren-cta .cta__heading {
  max-width: 15ch;
}
@media screen and (min-width: 1024px) {
  .cdchildren-cta .cta__heading {
    max-width: 100%;
  }
}
#clinical-data-page-hero.clinical-data-children__page-hero .page-hero__title,
#clinical-data-page-hero.clinical-data-infants-young-children__page-hero .page-hero__title {
  max-width: 19ch;
}
@media screen and (min-width: 768px) {
  #clinical-data-page-hero.clinical-data-children__page-hero .page-hero__title,
  #clinical-data-page-hero.clinical-data-infants-young-children__page-hero .page-hero__title {
    margin-bottom: 1.5rem;
    max-width: 31ch;
  }
}
#clinical-data-page-hero.clinical-data-children__page-hero .shape--primary,
#clinical-data-page-hero.clinical-data-infants-young-children__page-hero .shape--primary {
  max-width: 100%;
  top: -9.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #clinical-data-page-hero.clinical-data-children__page-hero .shape--primary,
  #clinical-data-page-hero.clinical-data-infants-young-children__page-hero .shape--primary {
    max-width: 80%;
    width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  #clinical-data-page-hero.clinical-data-children__page-hero .shape--primary,
  #clinical-data-page-hero.clinical-data-infants-young-children__page-hero .shape--primary {
    top: unset;
  }
}
@media screen and (min-width: 1200px) {
  #clinical-data-page-hero.clinical-data-children__page-hero .shape--primary,
  #clinical-data-page-hero.clinical-data-infants-young-children__page-hero .shape--primary {
    width: 75%;
    max-width: 75%;
  }
}
@media screen and (min-width: 768px) {
  #clinical-data-page-hero.clinical-data-infants-young-children__page-hero .page-hero__title {
    max-width: 24ch;
  }
}
.cdchildren-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .cdchildren-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container {
    padding-top: 3.125rem;
    padding-bottom: 3rem;
  }
}
.cdchildren-container__content {
  padding: 1.75rem 0 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .cdchildren-container__content {
    padding-top: 0;
  }
}
.cdchildren-container__content .button--disability-index {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cdchildren-container__content .button--disability-index {
    max-width: 20.5rem;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container__content--left {
    width: 45%;
  }
  .cdchildren-container__content--right {
    width: 55%;
  }
}
.cdchildren-container__content--full-width {
  width: 100%;
}
@media (min-width: 1200px) {
  .cdchildren-container__content--full-width .cdchildren-container__title {
    max-width: 40ch;
  }
}
.cdchildren-container__image-container {
  width: fit-content;
}
.cdchildren-container__footnote {
  font-size: 12px;
  line-height: 0.9rem;
}
.cdchildren-container__footnote:last-child {
  margin-bottom: 1.3125rem;
}
@media (min-width: 1200px) {
  .cdchildren-container__footnote:last-child {
    margin-bottom: 0;
  }
}
.cdchildren-container__footnote i {
  font-style: italic;
}
.cdchildren-container__list {
  padding-left: 2.05rem;
}
.cdchildren-container__list-item {
  margin-bottom: 0.75rem;
}
.cdchildren-container__list-item p {
  font-size: 14px;
  line-height: 1.0938rem;
}
@media (min-width: 1200px) {
  .cdchildren-container__list-item p {
    font-size: 18px;
    line-height: 1.6875rem;
  }
}
.cdchildren-container__paragraph {
  font-size: 14px;
  line-height: 1.0938rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .cdchildren-container__paragraph {
    height: 4.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .cdchildren-container__paragraph:first-of-type {
    max-width: 49ch;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container__paragraph {
    font-size: 18px;
    line-height: 1.6875rem;
    max-width: 53ch;
    height: auto;
  }
}
.cdchildren-container__subtitle {
  color: #626469;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.05rem;
  max-width: 42ch;
  text-transform: uppercase;
}
@media screen and (min-width: 1024px) {
  .cdchildren-container__subtitle {
    font-size: 1.25rem;
    line-height: 1.465rem;
    max-width: 30ch;
  }
}
.cdchildren-container__title {
  font-weight: 700;
  margin-bottom: 1.3125rem;
  letter-spacing: -0.6px;
}
@media (min-width: 1200px) {
  .cdchildren-container__title {
    font-size: 30px;
    line-height: 2.3438rem;
    max-width: 31ch;
  }
}
.cdchildren-container__video {
  max-width: 43.75rem;
  position: relative;
}
.cdchildren-container__video-container {
  position: relative;
  padding: 0.625rem 0 0.4375rem;
}
.cdchildren-container__video-container:before {
  background-color: #006F97;
  content: "";
  height: 100%;
  left: -10%;
  position: absolute;
  top: 0;
  width: 150%;
  z-index: -1;
}
@media (min-width: 1024px) {
  .cdchildren-container__video-container:before {
    border-radius: 22.625rem 0 0 22.75rem;
    bottom: 120px;
    height: 45.5175rem;
    left: -50px;
    top: unset;
    transform: rotate(-21deg);
    width: 69.295rem;
  }
}
@media (min-width: 1900px) {
  .cdchildren-container__video-container:before {
    bottom: 10.9375rem;
    left: -7.8125rem;
    width: 90rem;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container__video-container {
    margin-bottom: 2.5rem;
  }
}
.cdchildren-container__video-footnote {
  color: #FFFFFF;
  font-size: 0.75rem;
  line-height: 0.9rem;
  margin-top: 0.3125rem;
}
@media (min-width: 1024px) {
  .cdchildren-container__video-footnote {
    color: #626469;
  }
}
.cdchildren-container__video-title {
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 0.625rem;
  text-align: center;
}
@media (min-width: 1200px) {
  .cdchildren-container__video-title {
    font-size: 1.875rem;
    line-height: 2.3438rem;
  }
}
@media (min-width: 768px) {
  .cdchildren-container__video {
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .cdchildren-container__video {
    max-width: 100%;
  }
}
.cdchildren-container .accordion-mobile .button {
  font-size: 16px;
}
.cdchildren-container .animated--bg {
  color: #00494F;
  font-weight: 900;
}
.cdchildren-container .animated--bg--inline-block {
  display: inline-block;
}
.cdchildren-container .cdchildren-container__merged-highlight {
  border-bottom: 12px solid hsla(154, 49%, 57%, 0.4);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 1.875rem;
  max-width: 25rem;
}
.cdchildren-container .cdchildren-container__merged-highlight__content {
  display: flex;
  gap: 1.25rem;
  position: relative;
  width: 100%;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .cdchildren-container .cdchildren-container__merged-highlight__content > * {
    margin: calc(1.25rem / 2);
  }
}
.cdchildren-container .cdchildren-container__merged-highlight .highlight-information {
  border: none;
  margin-bottom: 0;
  width: 140px;
}
.cdchildren-container .cdchildren-container__merged-highlight .highlight-information__title {
  width: 100%;
}
.cdchildren-container .cdchildren-container__merged-highlight .highlight-information__separator {
  left: 100px;
  position: absolute;
  top: 0.9375rem;
  width: 2.5rem;
}
.cdchildren-container .cdchildren-container__merged-highlight .highlight-information__separator--second {
  left: 5.625rem;
}
@media (min-width: 768px) {
  .cdchildren-container .cdchildren-container__merged-highlight .highlight-information__separator {
    width: 3.125rem;
  }
}
.cdchildren-container .cdchildren-container__merged-highlight .highlight-information__sub-content {
  color: #00494F;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.0938rem;
  margin: 0 auto;
  right: 0;
}
@media (min-width: 1200px) {
  .cdchildren-container .cdchildren-container__merged-highlight .highlight-information__sub-content {
    font-size: 24px;
    line-height: 1.875rem;
    bottom: -15px;
  }
}
.cdchildren-container .cdchildren-container__merged-highlight .highlight-information__footnote {
  margin-top: 1rem;
}
@media (min-width: 1200px) {
  .cdchildren-container .cdchildren-container__merged-highlight .highlight-information__footnote {
    margin-top: 1.25rem;
  }
}
.cdchildren-container .cdchildren-container__merged-highlight .highlight-information.content--align-center .highlight-information__content {
  text-align: center;
}
.cdchildren-container .cdchildren-container__merged-highlight .highlight-information.subcontent--content-center .highlight-information__sub-content {
  padding-left: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .cdchildren-container .cdchildren-container__merged-highlight {
    max-width: 26rem;
  }
}
.cdchildren-container .chart-wrapper .pinch-to-zoom {
  padding-top: 3.125rem;
}
@media (min-width: 768px) {
  .cdchildren-container .chart-wrapper .pinch-to-zoom {
    padding-top: 0;
  }
  .cdchildren-container .chart-wrapper .pinch-to-zoom .pinch-to-zoom__container {
    margin-left: 0;
  }
}
.cdchildren-container .chart-wrapper .button--pich-to-zoom {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (min-width: 1200px) {
  .cdchildren-container .chart-wrapper .button--pich-to-zoom {
    display: none;
  }
}
.cdchildren-container .chart-wrapper--height-z .pinch-to-zoom {
  padding-top: 4.6875rem;
}
@media (min-width: 768px) {
  .cdchildren-container .chart-wrapper--height-z .pinch-to-zoom {
    padding: 0;
  }
}
.cdchildren-container .highlight-information {
  margin-bottom: 1.875rem;
  max-width: 21.25rem;
  padding-bottom: 0.3125rem;
}
.cdchildren-container .highlight-information__footnote {
  font-size: 14px;
  line-height: 1.0938rem;
  margin-bottom: 0.625rem;
  max-width: 39ch;
}
.cdchildren-container .highlight-information i {
  font-style: italic;
}
.cdchildren-container .only--desktop {
  display: none;
}
@media screen and (min-width: 1024px) {
  .cdchildren-container .only--desktop {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .cdchildren-container .only--mobile {
    display: none;
  }
}
.cdchildren-container .radiographic-comparator__left {
  position: relative;
}
@media (min-width: 768px) {
  .cdchildren-container .radiographic-comparator__right {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container .radiographic-comparator__right {
    padding-bottom: 4.375rem;
  }
}
.cdchildren-container .radiographic-comparator [data-radiographic-footer] {
  line-height: 1.0938rem;
  margin-bottom: 0.3125rem;
}
.cdchildren-container .radiographic__footnote {
  max-width: 90%;
}
.cdchildren-container .radiographic__footnote--bottom {
  position: absolute;
  bottom: 0.9375rem;
}
@media (min-width: 768px) {
  .cdchildren-container .radiographic__footnote--bottom {
    bottom: 1.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .cdchildren-container .radiographic__footnote--bottom {
    bottom: 4.6875rem;
  }
}
.cdchildren-container .radiographic__footnote--mobile {
  font-size: 0.625rem;
  line-height: 0.6875rem;
}
.cdchildren-container .radiographic__footnote--desktop {
  font-size: 0.75rem;
  line-height: 0.9rem;
}
.cdchildren-container .radiographic__footnote--right {
  max-width: 85%;
}
@media screen and (min-width: 799px) {
  .cdchildren-container .radiographic__footnote--right {
    max-width: 80%;
  }
}
.cdchildren-container .radiographic-images-desktop {
  display: none;
}
@media (min-width: 1200px) {
  .cdchildren-container .radiographic-images-desktop {
    display: block;
  }
  .cdchildren-container .radiographic-images-desktop .radiographic-comparator [data-radiographic-footer] {
    text-align: center;
  }
}
.cdchildren-container .radiographic-images-mobile__title {
  font-weight: 600;
  line-height: 1.5rem;
  margin-bottom: 0.8125rem;
}
@media (min-width: 1200px) {
  .cdchildren-container .radiographic-images-mobile {
    display: none;
  }
}
.cdchildren-container .rgi-scale {
  padding-bottom: 1.25rem;
  position: relative;
}
.cdchildren-container .rgi-scale__image {
  margin: 0 auto;
  max-width: 11.3125rem;
  width: 50%;
}
.cdchildren-container .rgi-scale__title {
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media (min-width: 1200px) {
  .cdchildren-container .rgi-scale__title {
    text-align: center;
  }
}
.cdchildren-container .rgi-scale::before {
  background-color: rgba(226, 231, 234, 0.5);
  border-radius: 11.1875rem;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  right: -70px;
  width: 200%;
  z-index: -1;
}
@media (min-width: 1200px) {
  .cdchildren-container .rgi-scale::before {
    border-radius: 36.36rem;
    right: 0;
    width: 200%;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container .rgi-scale {
    padding-top: 1rem;
    padding-bottom: 3.125rem;
    padding-right: 6.25rem;
  }
}
.cdchildren-container .wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cdchildren-container .wrapper {
    justify-content: center;
  }
}
.cdchildren-container--bg-soft-gray {
  background-color: rgba(226, 231, 234, 0.5);
  z-index: -1;
}
.cdchildren-container--bg-soft-gray .highlight-information-footnote {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 18px;
}
.cdchildren-container--rickets .cdchildren-container__content:last-child {
  padding-top: 0;
}
@media (min-width: 768px) {
  .cdchildren-container--rickets .cdchildren-container__content--left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .cdchildren-container--rickets .cdchildren-container__content .radiographic-images-mobile {
    margin: 0 auto;
    max-width: 500px;
  }
}
@media (min-width: 1024px) {
  .cdchildren-container--rickets .cdchildren-container__content--left {
    display: block;
    width: 50%;
  }
  .cdchildren-container--rickets .cdchildren-container__content--right {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container--rickets .cdchildren-container__content--left {
    display: block;
    width: 35%;
  }
  .cdchildren-container--rickets .cdchildren-container__content--right {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container--rickets .cdchildren-container__title {
    max-width: 23ch;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container--rickets [role=tablist] {
    justify-content: center;
    overflow: unset;
  }
  .cdchildren-container--rickets [role=tablist] a {
    font-size: 1rem;
    width: 10rem;
  }
}
@media (min-width: 1400px) {
  .cdchildren-container--rickets [role=tablist] {
    justify-content: flex-start;
  }
  .cdchildren-container--rickets [role=tablist] a {
    font-size: 1.25rem;
    width: 11.5625rem;
  }
}
@media (min-width: 1024px) {
  .cdchildren-container--rgi .cdchildren-container__content--left {
    padding-top: 1.5625rem;
    width: 55%;
  }
  .cdchildren-container--rgi .cdchildren-container__content--right {
    width: 45%;
  }
  .cdchildren-container--rgi .rgi-scale::before {
    right: 15px;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container--rgi {
    padding-top: 0;
  }
  .cdchildren-container--rgi .cdchildren-container__content:last-child .cdchildren-container__footnote:last-child {
    width: 70%;
    margin: 0 auto;
  }
}
.cdchildren-container--mobility .cdchildren-container__content:last-child {
  padding-top: 0;
}
.cdchildren-container--mobility .cdchildren-container__content--right .cdchildren-container__image-container + .cdchildren-container__footnote {
  margin-bottom: 0.3125rem;
}
@media (min-width: 768px) {
  .cdchildren-container--mobility .cdchildren-container__content--left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container--mobility .cdchildren-container__content--left {
    display: block;
  }
}
@media (min-width: 1024px) {
  .cdchildren-container--mobility .cdchildren-container__content--right {
    display: flex;
    flex-direction: row-reverse;
    gap: 2.5rem;
    justify-content: space-between;
    overflow-y: clip;
    padding-bottom: 3.75rem;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .cdchildren-container--mobility .cdchildren-container__content--right > * {
      margin: calc(2.5rem / 2);
    }
  }
  .cdchildren-container--mobility .cdchildren-container__content--right > section {
    width: 45%;
  }
  .cdchildren-container--mobility .cdchildren-container__content--right .cdchildren-container__video-container {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container--mobility .cdchildren-container__content--right {
    display: block;
    padding-bottom: inherit;
    overflow: unset;
  }
  .cdchildren-container--mobility .cdchildren-container__content--right > section,
  .cdchildren-container--mobility .cdchildren-container__content--right .cdchildren-container__video-container {
    width: 100%;
  }
  .cdchildren-container--mobility .cdchildren-container__footnote {
    padding-left: 75px;
  }
}
.cdchildren-container--disability .cdchildren-container__content:first-child .cdchildren-container__title {
  margin-top: 0.625rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .cdchildren-container--disability .cdchildren-container__content:first-child .cdchildren-container__title {
    margin-top: 0;
    margin-bottom: 2.25rem;
    padding-bottom: 0;
  }
}
.cdchildren-container--disability .cdchildren-container__content:nth-child(2),
.cdchildren-container--disability .cdchildren-container__content:nth-child(3) {
  padding-top: 0.625rem;
}
@media (min-width: 1200px) {
  .cdchildren-container--disability .cdchildren-container__content:nth-child(2),
  .cdchildren-container--disability .cdchildren-container__content:nth-child(3) {
    padding-top: 0;
  }
}
.cdchildren-container--disability .cdchildren-container__content--left .cdchildren-container__merged-highlight {
  margin-bottom: 0.75rem;
}
.cdchildren-container--disability .cdchildren-container__paragraph:last-child {
  margin-top: 1.875rem;
  max-width: 100%;
}
.cdchildren-container--disability .cdchildren-container__separator {
  display: none;
}
.cdchildren-container--disability .cdchildren-container__title {
  color: #626469;
}
.cdchildren-container--disability .animated--bg {
  color: #626469;
}
@media (min-width: 768px) {
  .cdchildren-container--disability .cdchildren-container__content--right,
  .cdchildren-container--disability .cdchildren-container__content--left {
    width: 45%;
    padding-top: 0;
  }
  .cdchildren-container--disability .cdchildren-container__separator {
    display: block;
    border: 1.5px solid #FFFFFF;
    margin: 0 1rem;
  }
  .cdchildren-container--disability .cdchildren-container__content:nth-child(2) {
    padding-top: 0;
  }
}
@media screen and (min-width: 1300px) {
  .cdchildren-container--disability .cdchildren-container__separator {
    margin: 0 4rem;
  }
}
@media (min-width: 1200px) {
  .cdchildren-container--disability .cdchildren-container__content--right,
  .cdchildren-container--disability .cdchildren-container__content--left {
    width: 45%;
    width: fit-content;
  }
  .cdchildren-container--disability .cdchildren-container__content--right .cdchildren-container__paragraph {
    max-width: 51ch;
  }
  .cdchildren-container--disability .cdchildren-container__content--right .highlight-information:nth-of-type(1) .highlight-information__sub-content {
    padding-left: 0;
  }
  .cdchildren-container--disability .cdchildren-container__content--right .highlight-information:nth-of-type(1) .highlight-information__content {
    padding-left: 1.25rem;
  }
  .cdchildren-container--disability .cdchildren-container__content--right .highlight-information:nth-of-type(2) .highlight-information__sub-content {
    text-align: left;
    padding-left: 1.5625rem;
  }
  .cdchildren-container--disability .cdchildren-container__content--left .highlight-information:nth-of-type(1) .highlight-information__sub-content {
    padding-left: 0;
  }
  .cdchildren-container--disability .cdchildren-container__content--left .highlight-information:nth-of-type(2) .highlight-information__content {
    text-align: left;
    padding-left: 0.625rem;
  }
  .cdchildren-container--disability .cdchildren-container__content--left .highlight-information__separator {
    left: 6.25rem;
  }
  .cdchildren-container--disability .cdchildren-container__title {
    max-width: 45ch;
    padding-bottom: 2.5rem;
  }
}
.cdchildren-container--agility .cdchildren-container__content:nth-child(2) {
  padding-top: 0.625rem;
}
@media (min-width: 1200px) {
  .cdchildren-container--agility .cdchildren-container__content:nth-child(2) {
    padding-top: 0;
  }
}
.cdchildren-container--agility .cdchildren-container__content:nth-child(3) {
  padding-top: 0;
}
@media (min-width: 1200px) {
  .cdchildren-container--agility .cdchildren-container__content:nth-child(3) {
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .cdchildren-container--agility .cdchildren-container__title {
    max-width: 31ch;
  }
  .cdchildren-container--agility .cdchildren-container__content--left {
    width: 46%;
  }
  .cdchildren-container--agility .cdchildren-container__content--right {
    width: 54%;
  }
  .cdchildren-container--agility .only--desktop {
    margin-top: 1.5625rem;
  }
  .cdchildren-container--agility .cdchildren-container__list-item {
    max-width: 55ch;
  }
}
@media screen and (min-width: 1200px) {
  .cdchildren-container--agility .only--desktop {
    font-size: 18px;
    line-height: 1.6875rem;
    max-width: 49ch;
  }
}
.cdchildren-container--height-z .cdchildren-container__content:last-child {
  padding-top: 0;
}
.cdchildren-container--height-z .cdchildren-container__footnote {
  background-color: #FFFFFF;
  padding: 0 0.9375rem;
}
.cdchildren-container--height-z .cdchildren-container__footnote:first-child {
  padding-top: 1.25rem;
}
@media (min-width: 1200px) {
  .cdchildren-container--height-z .cdchildren-container__footnote:first-child {
    padding-top: 0;
  }
}
.cdchildren-container--height-z .cdchildren-container__footnote:last-child {
  padding-bottom: 1.25rem;
}
@media (min-width: 1024px) {
  .cdchildren-container--height-z {
    padding-top: 3rem;
  }
  .cdchildren-container--height-z .cdchildren-container__content--left {
    width: 45%;
  }
  .cdchildren-container--height-z .cdchildren-container__content--right {
    width: 50%;
  }
  .cdchildren-container--height-z .cdchildren-container__content--right .cdchildren-container__footnote:first-of-type {
    padding-top: 1.5625rem;
  }
  .cdchildren-container--height-z .cdchildren-container__title {
    max-width: 34ch;
  }
  .cdchildren-container--height-z .cdchildren-container__footnote {
    padding-left: 4.375rem;
  }
  .cdchildren-container--height-z .cdchildren-container__list-item {
    max-width: 50ch;
  }
}
.cdchildren-container sup {
  font-size: 70%;
  top: -0.5em;
}
@media screen and (min-width: 1200px) {
  .cdchildren-container#strength-agility .cdchildren-container__paragraph {
    height: initial;
    max-width: 47ch;
  }
}
.testimonial--home .testimonial__quote p {
  max-width: 26ch;
}
@media (min-width: 768px) {
  .testimonial--home .testimonial__quote p {
    max-width: 33ch;
  }
}
.home + .references {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0 0 1.375rem;
}
@media screen and (min-width: 1465px) {
  .home .testimonial {
    padding-bottom: 19rem;
  }
  .home .testimonial::before {
    --width-shape: 218.75rem;
    --height-shape: 122.5rem;
    bottom: 75%;
  }
}
.home .testimonial-and-video .testimonial {
  gap: 28px;
  padding-bottom: 90px;
}
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .home .testimonial-and-video .testimonial > * {
    margin: calc(28px / 2);
  }
}
.home .testimonial-and-video .testimonial__quote {
  padding-top: 0;
}
.home .testimonial-and-video .testimonial__quote::before {
  top: -55px;
}
@media screen and (min-width: 350px) {
  .home .testimonial-and-video .testimonial__quote::before {
    left: -36px;
    top: -45px;
  }
}
@media screen and (min-width: 1024px) {
  .home .testimonial-and-video .testimonial__quote::before {
    left: -45px;
    top: -60px;
  }
}
.home .testimonial-and-video .testimonial__quote::after {
  bottom: 15px;
}
@media screen and (min-width: 350px) {
  .home .testimonial-and-video .testimonial__quote::after {
    right: -30px;
  }
}
@media screen and (min-width: 1024px) {
  .home .testimonial-and-video .testimonial__quote::after {
    right: 0px;
    bottom: 40px;
  }
}
.home .testimonial-and-video .testimonial__quote p {
  max-width: 26ch;
}
.home .testimonial-and-video .testimonial__quote p .br--mobile {
  display: none;
}
@media screen and (min-width: 350px) {
  .home .testimonial-and-video .testimonial__quote p .br--mobile {
    display: inline;
  }
}
@media screen and (min-width: 768px) {
  .home .testimonial-and-video .testimonial__quote p .br--mobile {
    display: none;
  }
}
.home .testimonial-and-video .testimonial__quote p .br--desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .home .testimonial-and-video .testimonial__quote p .br--desktop {
    display: inline;
  }
}
@media screen and (min-width: 350px) {
  .home .testimonial-and-video .testimonial__quote p {
    max-width: 27ch;
  }
}
@media screen and (min-width: 768px) {
  .home .testimonial-and-video .testimonial__quote p {
    max-width: 33ch;
  }
}
@media screen and (min-width: 1024px) {
  .home .testimonial-and-video .testimonial__image-container {
    width: 60%;
    max-width: 60%;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .home .testimonial-and-video .testimonial__image {
    display: inline-block;
    max-width: 171px;
  }
}
@media screen and (min-width: 1024px) {
  .home .testimonial-and-video .testimonial--shape-top::before {
    --width-shape: calc(1665px + var(--margin));
    --height-shape: 704px;
    --rotation-shape: 0deg;
    bottom: 0;
    right: 0;
    border-radius: 352px;
  }
}
@media screen and (min-width: 1750px) {
  .home .testimonial-and-video .testimonial--shape-top::before {
    right: var(--margin);
  }
}
@media screen and (min-width: 350px) {
  .home .testimonial-and-video .testimonial {
    padding-bottom: 110px;
    padding-top: 55px;
  }
}
@media screen and (min-width: 1024px) {
  .home .testimonial-and-video .testimonial {
    gap: 39.68px;
    padding-top: 75px;
    padding-bottom: 85.53px;
    flex-direction: column;
  }
  @supports (-webkit-touch-callout: none) and (not (translate: none)) {
    .home .testimonial-and-video .testimonial > * {
      margin: calc(39.68px / 2);
    }
  }
}
@media screen and (min-width: 1475px) {
  .home .testimonial-and-video .testimonial {
    align-items: flex-start;
    padding-left: var(--margin);
  }
}
@media screen and (min-width: 1600px) {
  .home .testimonial-and-video .testimonial {
    padding-left: calc((100vw - 90rem) / 2);
    align-items: flex-start;
  }
}
.home .testimonial-and-video .home-video {
  padding: 12px 30px 106px;
}
.home .testimonial-and-video .home-video__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 125%;
  color: #00494F;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .home .testimonial-and-video .home-video__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.home .testimonial-and-video .home-video__thumbnail {
  background-image: url(/assets/images/home/role-of-low-ALP-thumbnail.png);
  background-size: 100%;
  background-repeat: repeat;
  border-radius: 2px;
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 59px 57px;
  max-width: 582px;
  cursor: pointer;
}
.home .testimonial-and-video .home-video__thumbnail .thumbnail__content.button {
  padding: 15px 20px;
}
.home .testimonial-and-video .home-video__thumbnail .thumbnail__content.button::after {
  background: unset;
  mask-image: url(/assets/images/home/play.svg);
  width: 12.54px;
  height: 16px;
  background-color: #FFFFFF;
}
.home .testimonial-and-video .home-video__thumbnail .thumbnail__content.button:hover::after {
  background-color: #B41E8C;
}
@media screen and (min-width: 768px) {
  .home .testimonial-and-video .home-video__thumbnail {
    padding-block: 131px;
    height: 310px;
    border-radius: 4px;
  }
}
.home .testimonial-and-video .home-video__description {
  line-height: 150%;
  margin-top: 20px;
  max-width: 59ch;
}
@media screen and (min-width: 768px) {
  .home .testimonial-and-video .home-video__description {
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) {
  .home .testimonial-and-video .home-video__description {
    margin-top: 40px;
    font-size: 18px;
    max-width: 59ch;
  }
}
@media screen and (min-width: 768px) {
  .home .testimonial-and-video .home-video {
    padding-inline: var(--margin);
  }
}
@media screen and (min-width: 1024px) {
  .home .testimonial-and-video .home-video {
    padding: 0;
    padding-top: 75px;
  }
}
@media screen and (min-width: 1024px) {
  .home .testimonial-and-video {
    display: grid;
    grid-template-columns: 1fr 35%;
    gap: 30px;
    margin-right: var(--margin);
  }
}
@media screen and (min-width: 1300px) {
  .home .testimonial-and-video {
    grid-template-columns: 1fr minmax(0, 582px);
  }
}
@media screen and (min-width: 1600px) {
  .home .testimonial-and-video {
    margin-right: calc((100vw - 90rem) / 2);
  }
}
.page__resources .page-hero .wrapper {
  padding-top: 4rem;
}
@media screen and (min-width: 1024px) {
  .page__resources .page-hero .wrapper {
    padding-top: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .page__resources .page-hero .page-hero__title {
    margin-bottom: 40px;
  }
}
.page__resources .videos__section {
  background-color: #FFFFFF;
  padding-top: 60px;
}
.page__resources .videos__section .swiper-wrap {
  margin: auto;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1300px) {
  .page__resources .videos__section .swiper-wrap {
    max-width: 1200px;
    padding-left: calc(40px - (100vw - 1300px));
  }
}
@media screen and (min-width: 1366px) {
  .page__resources .videos__section .swiper-wrap {
    padding-left: calc(40px - (100vw - 1366px));
  }
}
@media screen and (min-width: 1440px) {
  .page__resources .videos__section .swiper-wrap {
    padding-left: 53px;
    max-width: calc(100% - var(--margin));
  }
}
@media screen and (min-width: 1600px) {
  .page__resources .videos__section .swiper-wrap {
    max-width: 90rem;
  }
}
.page__resources .videos__section .swiper-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background-color: #b41e8c;
  border-radius: 50%;
  box-shadow: 0px 2px 7px 0 rgba(0, 0, 0, 0.25);
}
.page__resources .videos__section .swiper-button::after {
  content: url(/assets/images/resources/arrow-icon.png);
}
.page__resources .videos__section .swiper-button.swiper-button-next::after {
  padding-top: 2px;
  padding-left: 2px;
}
.page__resources .videos__section .swiper-button.swiper-button-prev::after {
  transform: rotate(180deg);
  padding-top: 4px;
  padding-left: 2px;
}
.page__resources .videos__section .swiper-button.swiper-button-disabled {
  display: none;
}
@media screen and (min-width: 768px) {
  .page__resources .videos__section .swiper-button {
    width: 60px;
    height: 60px;
  }
}
.page__resources .videos__section swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.page__resources .videos__section swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) .thumb {
  opacity: 0.5;
}
@media screen and (max-width: 500px) {
  .page__resources .videos__section swiper-slide {
    width: 85%;
    max-width: 312px;
  }
}
@media screen and (min-width: 1200px) {
  .page__resources .videos__section swiper-slide {
    width: 45%;
    max-width: 582px;
  }
}
.page__resources .videos__section swiper-slide:first-child {
  margin-left: 18px;
}
@media screen and (min-width: 768px) {
  .page__resources .videos__section swiper-slide:first-child {
    margin-left: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .page__resources .videos__section swiper-slide:first-child {
    margin-left: calc(var(--margin) + 22px);
  }
}
@media screen and (min-width: 1300px) {
  .page__resources .videos__section swiper-slide:first-child {
    margin-left: 0;
  }
}
.page__resources .videos__section swiper-slide:last-child {
  margin-right: 18px;
}
@media screen and (min-width: 768px) {
  .page__resources .videos__section swiper-slide:last-child {
    margin-right: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .page__resources .videos__section swiper-slide:last-child {
    margin-right: calc(var(--margin) + 22px);
  }
}
@media screen and (min-width: 1300px) {
  .page__resources .videos__section swiper-slide:last-child {
    margin-right: 0 !important;
  }
}
.page__resources .videos__section swiper-container {
  width: 100%;
  height: auto;
  position: relative;
  --swiper-pagination-color: #b41e8c;
}
@media screen and (max-width: 768px) {
  .page__resources .videos__section swiper-container {
    height: auto;
  }
}
.page__resources .videos__section swiper-container::part(container) {
  padding-bottom: 10px;
}
.page__resources .videos__section swiper-container::part(wrapper) {
  padding-bottom: 60px;
}
.page__resources .videos__section swiper-container::part(pagination) {
  height: 2rem;
  bottom: -1rem;
}
@media screen and (min-width: 1024px) {
  .page__resources .videos__section swiper-container::part(pagination) {
    display: none;
  }
}
.page__resources .videos__section .videos__title {
  color: #00494f;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
}
@media screen and (min-width: 1024px) {
  .page__resources .videos__section .videos__title {
    font-size: 30px;
    margin-bottom: 60px;
    line-height: 37.5px;
    padding-left: 53px;
  }
}
.page__resources .videos__section .swiper-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-120%);
}
@media screen and (min-width: 768px) {
  .page__resources .videos__section .swiper-button {
    transform: translateY(-120%);
  }
}
@media screen and (min-width: 1024px) {
  .page__resources .videos__section .swiper-button {
    transform: translateY(-70%);
  }
}
.page__resources .videos__section .swiper-button-next {
  right: 10px;
}
@media screen and (min-width: 768px) {
  .page__resources .videos__section .swiper-button-next {
    right: var(--margin);
  }
}
@media screen and (min-width: 1024px) {
  .page__resources .videos__section .swiper-button-next {
    right: calc(var(--margin) - 22px);
  }
}
@media screen and (min-width: 1300px) {
  .page__resources .videos__section .swiper-button-next {
    display: none;
  }
}
@media screen and (min-width: 1460px) {
  .page__resources .videos__section .swiper-button-next {
    right: calc(var(--margin) + 53px);
  }
}
.page__resources .videos__section .swiper-button-prev {
  left: 10px;
}
@media screen and (min-width: 768px) {
  .page__resources .videos__section .swiper-button-prev {
    left: var(--margin);
  }
}
@media screen and (min-width: 1024px) {
  .page__resources .videos__section .swiper-button-prev {
    left: calc(var(--margin) - 22px);
  }
}
@media screen and (min-width: 1300px) {
  .page__resources .videos__section .swiper-button-prev {
    display: none;
  }
}
@media screen and (min-width: 1460px) {
  .page__resources .videos__section .swiper-button-prev {
    left: calc(var(--margin) + 53px);
  }
}
@media screen and (min-width: 1024px) {
  .page__resources .videos__section {
    padding-top: 80px;
  }
}
.page__resources .cards__section {
  background-color: #FFFFFF;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .page__resources .cards__section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1336px) {
  .page__resources .cards__section .wrapper {
    padding-left: 53px;
  }
}
.page__resources .cards__section.helpful_tools {
  background-color: #f0f3f4;
}
.page__resources .cards__section .cards__title {
  color: #00494F;
  font-size: 20px;
  line-height: 125%;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .page__resources .cards__section .cards__title {
    font-size: 30px;
    margin-bottom: 60px;
  }
}
.page__resources .cards__section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 335px));
  justify-content: center;
  gap: 36px;
}
@media screen and (min-width: 1024px) {
  .page__resources .cards__section .grid {
    grid-template-columns: repeat(3, 1fr);
    justify-content: start;
  }
}
@media screen and (min-width: 1270px) {
  .page__resources .cards__section .grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 376px));
  }
}
@media screen and (min-width: 1500px) {
  .page__resources .cards__section .grid {
    grid-template-columns: repeat(auto-fill, minmax(376px, 1fr));
  }
}
.page__resources .cards__section .grid .card {
  border-radius: 10px 10px 0px 0px;
  background-color: #d2efe2;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
.page__resources .cards__section .grid .card:hover {
  background-color: #e2e7ea;
}
.page__resources .cards__section .grid .card .card__image {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  height: 179px;
}
.page__resources .cards__section .grid .card .card__image img {
  width: 160px;
  max-width: max-content;
}
.page__resources .cards__section .grid .card .card__content {
  position: relative;
  background-color: #FFFFFF;
  padding: 20px;
  min-height: 246px;
}
@media screen and (min-width: 1024px) {
  .page__resources .cards__section .grid .card .card__content {
    min-height: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .page__resources .cards__section .grid .card .card__content {
    min-height: 289px;
  }
}
.page__resources .cards__section .grid .card .card__title {
  color: #00494F;
  font-size: 18px;
  font-weight: bold;
  line-height: 125%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .page__resources .cards__section .grid .card .card__title {
    font-size: 24px;
    max-width: 25ch;
  }
}
.page__resources .cards__section .grid .card .card__description {
  color: #626469;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
  max-width: 33ch;
}
@media screen and (min-width: 1024px) {
  .page__resources .cards__section .grid .card .card__description {
    font-size: 18px;
  }
}
.page__resources .cards__section .grid .card .card__description sup {
  top: 0;
  font-size: inherit;
}
.page__resources .cards__section .grid .card .card__link {
  color: #00494F;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page__resources .cards__section .grid .card .card__link:hover {
  color: #00494F;
}
.page__resources .cards__section .grid .card .card__button_link {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.page__resources .cards__section .grid .card .card__button_link:hover::after,
.page__resources .cards__section .grid .card .card__button_link:focus::after {
  background-image: url(/assets/icons/icon-arrow-blue.svg);
}
.page__resources .cards__section .grid .card .card__button_link::after {
  width: 17px;
  height: 15.881px;
  transform: rotate(90deg);
  background-image: url(/assets/icons/icon-arrow-white.svg);
}
.page__resources .cards__section .grid .card:hover .card__button_link:hover::after,
.page__resources .cards__section .grid .card:hover .card__button_link:focus::after {
  background-image: url(/assets/icons/icon-arrow-blue.svg);
}
.page__resources .cta {
  padding-left: 1rem;
  padding-right: 1rem;
}
.page__resources .cta-resources .cta__heading {
  color: #00494F;
  text-align: center;
  font-size: 30px;
  line-height: 102%;
  letter-spacing: -0.9px;
  margin-bottom: 20px;
  max-width: max-content;
}
@media screen and (min-width: 1024px) {
  .page__resources .cta-resources .cta__heading {
    font-size: 36px;
  }
}
.page__resources .cta-resources .cta__text {
  color: #00494F;
  font-size: 18px;
  font-weight: 300;
  line-height: 115%;
  letter-spacing: -0.54px;
  max-width: 600px;
  margin-bottom: 23px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .page__resources .cta-resources .cta__text {
    font-size: 20px;
  }
}
.clinical-data-overview__new-cta {
  margin-bottom: 20px;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .clinical-data-overview__new-cta {
    margin-bottom: 0;
    padding-top: 62px;
    padding-bottom: 62px;
  }
}
.clinical-data-overview__new-cta .grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .clinical-data-overview__new-cta .grid {
    grid-template-columns: 330px 1fr;
    column-gap: 40px;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .clinical-data-overview__new-cta .grid {
    grid-template-columns: 410px 1fr;
    column-gap: 60px;
  }
}
.clinical-data-overview__new-cta .picture__cta {
  margin-right: auto;
  margin-left: auto;
  max-width: 225px;
}
@media screen and (min-width: 768px) {
  .clinical-data-overview__new-cta .picture__cta {
    margin: 0;
    max-width: max-content;
  }
}
.clinical-data-overview__new-cta .cta__heading {
  color: #00494F;
  font-size: 30px;
  line-height: 115%;
  letter-spacing: -0.9px;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .clinical-data-overview__new-cta .cta__heading {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .clinical-data-overview__new-cta .cta__heading {
    font-size: 36px;
  }
}
.clinical-data-overview__new-cta .cta__heading + .cta__text {
  color: #00494F;
  font-size: 18px;
  line-height: 150%;
  margin-top: -5px;
}
@media screen and (min-width: 768px) {
  .clinical-data-overview__new-cta .cta__heading + .cta__text {
    margin-bottom: 20px;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .clinical-data-overview__new-cta .cta__link {
    margin: 0;
  }
}
.patient-stories__page-hero {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #00494F;
}
.patient-stories__page-hero .page-hero__title {
  margin-bottom: 65px;
  color: #00494F;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .patient-stories__page-hero .page-hero__title {
    margin-bottom: -49px;
  }
}
.patient-stories__page-hero .shape--tertiary {
  background-color: white;
}
@media screen and (min-width: 2500px) {
  .patient-stories__page-hero .shape--tertiary {
    max-width: 60rem;
  }
}
.patient-stories__page-hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 366px;
  bottom: -60px;
  background-image: url(/assets/images/patient-profiles/hero-bg-mobile.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1024px) {
  .patient-stories__page-hero::after {
    width: 1018px;
    height: 324px;
    bottom: unset;
    background-image: url(/assets/images/patient-profiles/hero-bg-desktop.svg);
  }
}
@media screen and (min-width: 2500px) {
  .patient-stories__page-hero::after {
    width: 1518px;
  }
}
.patient-stories__tabs-list {
  --nav-top-position: 48px;
  position: sticky;
  top: 48px;
  border-radius: 0;
  gap: 33px;
}
.patient-stories__tabs-list.is--fixed {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 3;
  top: var(--nav-top-position);
}
.patient-stories__tabs-list.is--fixed + section {
  padding-top: 50px;
}
@media screen and (min-width: 420px) {
  .patient-stories__tabs-list {
    justify-content: center;
  }
}
.patient-stories__tabs-button {
  width: 110px;
  cursor: pointer;
}
.patient-stories__tabs-button a {
  border: none;
  white-space: nowrap;
  font-size: 16px;
  line-height: 18.4px;
}
.patient-stories__tabs-button a[aria-selected=true] {
  background-color: red;
  border: 0;
  color: white;
  background-color: #00494F;
  font-weight: 900;
}
.patient-stories__tab {
  padding: 40px 6px;
}
.patient-stories__tab--img {
  max-width: 327px;
  max-height: 240px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--img {
    max-width: 412px;
    max-height: 360px;
    margin-inline: unset;
  }
}
.patient-stories__tab--content {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .patient-stories__tab--content {
    margin-top: 0;
  }
}
.patient-stories__tab--content-heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: #00494F;
  margin-bottom: 41px;
  position: relative;
}
.patient-stories__tab--content-heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  background: #DFDF00;
  width: 123px;
  height: 5px;
  border-radius: 100vw;
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--content-heading {
    font-size: 30px;
    line-height: 37.5px;
  }
}
.patient-stories__tab--content-history {
  font-size: 14px;
  line-height: 17.5px;
  margin-bottom: 33px;
  letter-spacing: 0.03em;
  color: #424242;
}
.patient-stories__tab--content-history br {
  display: none;
}
@media screen and (max-width: 380px) {
  .patient-stories__tab--content-history br {
    display: block;
  }
}
.patient-stories__tab--content-history--disclaimer {
  margin-top: 6px;
  display: block;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
  color: #626469;
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--content-history--disclaimer {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--content-history {
    font-size: 18px;
    line-height: 27px;
    max-width: 68ch;
    margin-bottom: 33px;
  }
  .patient-stories__tab--content-history.history--longer {
    max-width: 72ch;
  }
}
.patient-stories__tab--content-quote {
  margin-bottom: 60px;
}
.patient-stories__tab--content-quote p {
  margin-left: 21px;
  margin-bottom: 40px;
  position: relative;
  color: #00494F;
  font-weight: 600;
  font-size: 18px;
  line-height: 22.5px;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 400px) {
  .patient-stories__tab--content-quote p {
    max-width: 30ch;
  }
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--content-quote p {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 28px;
    margin-left: 0;
    max-width: 49ch;
  }
  .patient-stories__tab--content-quote p.quote--longer {
    max-width: 50ch;
  }
  .patient-stories__tab--content-quote p.quote--longest {
    max-width: 53ch;
  }
}
.patient-stories__tab--content-quote p::before {
  content: "";
  position: absolute;
  width: 16.59px;
  height: 14px;
  top: -3px;
  left: -21px;
  background-image: url(/assets/icons/startquote-icon.svg);
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--content-quote p::before {
    width: 25px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    top: -8px;
    left: -24px;
  }
}
.patient-stories__tab--content-quote p::after {
  content: "";
  display: inline-block;
  width: 16.59px;
  height: 14px;
  background-image: url(/assets/icons/endquote-icon.svg);
  margin-left: 3px;
  margin-bottom: -3px;
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--content-quote p::after {
    width: 25px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: -10px;
  }
}
.patient-stories__tab--content-quote footer {
  font-size: 14px;
  font-weight: 300;
  line-height: 17.5px;
  letter-spacing: 0.03em;
  position: relative;
  color: #424242;
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--content-quote footer {
    font-size: 18px;
    line-height: 27px;
  }
}
.patient-stories__tab--content-quote footer::before {
  content: "";
  position: absolute;
  top: -20px;
  width: 100px;
  height: 3px;
  border-radius: 100vw;
  background-color: #B41E8C;
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--content-quote footer::before {
    top: -14px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--content-quote {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .patient-stories__tab--wrapper {
    display: flex;
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab--wrapper {
    gap: 69px;
    margin-bottom: 120px;
  }
}
.patient-stories__tab#larry .patient-stories__tab--content-quote {
  margin-bottom: 78px;
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab#larry .patient-stories__tab--content-quote {
    margin-bottom: 0;
  }
}
.patient-stories__tab#carol .patient-stories__tab--content-quote {
  margin-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .patient-stories__tab#carol .patient-stories__tab--content-quote {
    margin-bottom: 0;
  }
}
.patient-stories__bullet-points {
  border-color: #48D597;
  border-style: solid;
  border-width: 5px 0 5px 0;
}
@media screen and (min-width: 768px) {
  .patient-stories__bullet-points {
    padding-block: 0;
  }
}
.patient-stories__bullet-points--container {
  padding-block: 30px;
}
@media screen and (min-width: 768px) {
  .patient-stories__bullet-points--container {
    padding: 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: start;
  }
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container {
    grid-template-columns: 395px 1fr;
  }
}
.patient-stories__bullet-points--container-heading {
  margin-bottom: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .patient-stories__bullet-points--container-heading {
    margin: 0;
    height: fit-content;
    padding-top: 30px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container-heading {
    padding-left: 40px;
  }
}
.patient-stories__bullet-points--container-heading--icon {
  height: 24px;
  width: 24px;
  object-fit: contain;
}
.patient-stories__bullet-points--container-heading--icon.history-icon {
  width: 17.14px;
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container-heading--icon.history-icon {
    width: 32.609px;
  }
}
.patient-stories__bullet-points--container-heading--icon.diagnostic-icon {
  width: 20.81px;
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container-heading--icon.diagnostic-icon {
    width: 27.76px;
  }
}
.patient-stories__bullet-points--container-heading--icon.tree-icon {
  width: 20.98px;
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container-heading--icon.tree-icon {
    width: 27.97px;
  }
}
.patient-stories__bullet-points--container-heading--icon.experience-icon {
  width: 24.46px;
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container-heading--icon.experience-icon {
    width: 32.61px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container-heading--icon {
    width: 32px;
    height: 32px;
  }
}
.patient-stories__bullet-points--container-heading--text {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  line-height: 22.5px;
  text-align: left;
  color: #00494F;
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container-heading--text {
    font-size: 20px;
    line-height: 25px;
  }
}
.patient-stories__bullet-points--container-content-list li {
  font-size: 14px;
  font-weight: 300;
  line-height: 17.5px;
  letter-spacing: 0.03em;
  text-align: left;
  margin-left: 20px;
  list-style-type: none;
  position: relative;
  color: #424242;
}
@media screen and (max-width: 380px) {
  .patient-stories__bullet-points--container-content-list li {
    max-width: 39ch;
  }
  .patient-stories__bullet-points--container-content-list li.list-item--longer {
    max-width: 40ch;
  }
}
@media screen and (min-width: 380px) {
  .patient-stories__bullet-points--container-content-list li br {
    display: none;
  }
}
.patient-stories__bullet-points--container-content-list li br.desktop--only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container-content-list li {
    letter-spacing: 0.05em;
    font-size: 18px;
    line-height: 27px;
    max-width: 61ch;
  }
  .patient-stories__bullet-points--container-content-list li.list--shorter--desktop {
    max-width: 55ch;
  }
  .patient-stories__bullet-points--container-content-list li.list--mid--desktop {
    max-width: 65ch;
  }
  .patient-stories__bullet-points--container-content-list li.list--longer--desktop {
    max-width: 70ch;
  }
  .patient-stories__bullet-points--container-content-list li.carol--mid {
    max-width: 69ch;
  }
  .patient-stories__bullet-points--container-content-list li br.desktop--only {
    display: block;
  }
}
.patient-stories__bullet-points--container-content-list li strong {
  font-weight: 700;
}
.patient-stories__bullet-points--container-content-list li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: #424242;
  border-radius: 100%;
  top: 5px;
  left: -15px;
  position: absolute;
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container-content-list li::before {
    width: 4px;
    height: 4px;
    top: 10px;
  }
}
@media screen and (min-width: 768px) {
  .patient-stories__bullet-points--container-content {
    border-left: 1px solid #e9ecee;
    padding-block: 30px;
    padding-inline: 23px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-stories__bullet-points--container-content {
    padding-inline: 43px;
  }
}
.patient-stories__bullet-points--container:not(:last-child) {
  border-bottom: 1px solid #e9ecee;
}
.patient-stories__get-started {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .patient-stories__get-started {
    margin-bottom: 60px;
    margin-top: 20px;
  }
}
.patient-stories__get-started--title {
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  color: #00494F;
  margin-bottom: 20px;
  max-width: 27ch;
  margin-inline: auto;
}
@media screen and (min-width: 500px) {
  .patient-stories__get-started--title {
    max-width: 65ch;
  }
}
@media screen and (min-width: 768px) {
  .patient-stories__get-started--title {
    letter-spacing: 0.03em;
    font-size: 18px;
    line-height: 22.5px;
  }
}
.patient-stories__get-started--text {
  font-size: 14px;
  font-weight: 300;
  line-height: 17.5px;
  letter-spacing: 0.03em;
  text-align: center;
  color: #424242;
}
.patient-stories__get-started--text a {
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .patient-stories__get-started--text {
    font-size: 18px;
    line-height: 27px;
    margin-inline: auto;
    max-width: 66ch;
  }
  .patient-stories__get-started--text br {
    display: none;
  }
}
.patient-stories__cta {
  padding-inline: 23px;
  padding-block: 75px 31px;
}
.patient-stories__cta .cta__heading {
  margin: 0;
  max-width: unset;
  font-weight: 900;
  line-height: 30.6px;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 1024px) {
  .patient-stories__cta .cta__heading {
    margin-bottom: 21px;
    font-size: 36px;
    line-height: 41.4px;
  }
}
@media screen and (min-width: 1024px) {
  .patient-stories__cta {
    padding-block: 68px 50px;
  }
}
.patient-stories .xrays-br {
  display: none;
}
@media screen and (min-width: 536px) {
  .patient-stories .xrays-br {
    display: inline;
  }
}
@media screen and (min-width: 564px) {
  .patient-stories .xrays-br {
    display: none;
  }
}
@media screen and (min-width: 908px) {
  .patient-stories .xrays-br {
    display: inline;
  }
}
@media screen and (min-width: 935px) {
  .patient-stories .xrays-br {
    display: none;
  }
}
@media screen and (min-width: 1205px) {
  .patient-stories .xrays-br {
    display: inline;
  }
}
