@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee&display=swap");
:root {
  --max-width: 996px;
  --font-family-primary:
    "Barlow Semi Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  --font-family-secondary: "Bungee", Impact, "Arial Black", sans-serif;
  --font-family-quaternary: "Kaleko 105 Round", cursive;
  --color-primary: #6b2c91;
  --color-primary-dark: #47007a;
  --color-white: #fff;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #cccccc;
  --color-gray-600: #666;
  --color-gray-800: #333;
  --color-utility-bg: #f2f2f2;
  --color-text-dark: #2c2b35;
  --color-green: #008567;
  --color-green-dark: #006d54;
  --color-accent: #c8da2b;
  --color-link-underline: #47007a;
}

.btn {
  display: inline-block;
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  min-width: 170px;
  transition: background 0.2s;
  cursor: pointer;
}
.btn:hover {
  background: var(--color-primary);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary--with-plus::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background-image: url("/assets/images/icons/plus-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-family-primary);
  color: var(--color-gray-800);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  position: relative;
  scroll-behavior: smooth;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

h1 {
  color: var(--color-primary-dark);
  font-family: var(--font-family-primary);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-top: 50px;
  margin-bottom: 24px;
}

h2 {
  color: var(--color-green);
  font-family: var(--font-family-primary);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 27.8px;
  margin-bottom: 24px;
}

section {
  padding-top: 48px;
}

.disclaimer-wrapper {
  background: #000;
  padding-top: 24px;
  padding-bottom: 46px;
  box-shadow: 0 -20px 25px -15px rgba(0, 0, 0, 0.3);
  position: relative;
}
@media (max-width: 420px) {
  .disclaimer-wrapper {
    padding-top: 0;
  }
}
.disclaimer-wrapper:before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to bottom, transparent, #000);
}
.disclaimer-wrapper .disclaimer {
  font-weight: 700;
  color: #fff;
}

.fine-print {
  color: var(--color-gray-800);
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.24px;
}

.nowrap {
  white-space: nowrap;
}

.underlined-link {
  color: var(--color-link-underline);
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.jump-to-mobile {
  display: none;
  align-items: center;
  flex-direction: row;
  gap: 12px;
  background: var(--color-primary-dark);
  color: #fff;
  padding: 12px 20px;
}
.jump-to-mobile .jump-to-icon {
  flex-shrink: 0;
}
.jump-to-mobile .jump-to-links {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: wrap;
}
.jump-to-mobile .jump-to-links .jump-to-link {
  color: #fff;
  text-decoration: underline;
  font-size: 18px;
  line-height: 22.24px;
  font-weight: 500;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.jump-to-mobile .jump-to-links .jump-to-link:visited {
  color: #fff;
}
.jump-to-mobile .jump-to-links .jump-to-separator {
  display: inline-block;
  border-right: 2px solid #fff;
  height: 16px;
  margin: 0 6px;
  content: "";
}
.jump-to-mobile .jump-to-links .jump-to-link:last-child + .jump-to-separator {
  display: none;
}

@media (max-width: 960px) {
  .jump-to-mobile {
    display: flex;
  }
}
main {
  flex: 1 0 auto;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 18px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pb-36 {
  padding-bottom: 36px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-48 {
  padding-bottom: 48px;
}

.pb-56 {
  padding-bottom: 56px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-4 {
  padding-top: 4px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-12 {
  padding-top: 12px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-32 {
  padding-top: 32px;
}

.pt-36 {
  padding-top: 36px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-48 {
  padding-top: 48px;
}

.pt-56 {
  padding-top: 56px;
}

.pt-64 {
  padding-top: 64px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.utility-nav {
  background-color: var(--color-utility-bg);
  height: 50px;
  display: flex;
  align-items: center;
}
.utility-nav .utility-nav-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.utility-nav nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  line-height: 13.2px;
}
.utility-nav nav a {
  text-decoration: none;
  color: var(--color-text-dark);
  font-size: 14px;
  font-weight: 500;
}
.utility-nav nav a:hover {
  color: var(--color-gray-800);
  text-decoration: underline;
}
.utility-nav .request-rep-btn {
  background-color: var(--color-green);
  color: var(--color-white);
  text-decoration: none;
  padding: 15px 24px;
  margin-left: 85px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 183px;
  position: relative;
  white-space: nowrap;
  justify-content: center;
  transition: all 0.3s ease;
}
.utility-nav .request-rep-btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.utility-nav .request-rep-btn:hover {
  background-color: var(--color-green-dark);
}
@media (max-width: 768px) {
  .utility-nav nav ul {
    gap: 16px;
  }
  .utility-nav nav a {
    font-size: 12px;
  }
  .utility-nav .request-rep-btn {
    padding: 12px 16px;
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .utility-nav {
    height: auto;
  }
  .utility-nav .utility-nav-content {
    display: none;
    flex-direction: column;
    padding: 16px;
    height: auto;
  }
  .utility-nav nav ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .utility-nav .request-rep-btn {
    margin-top: 16px;
  }
}

.main-header-wrapper {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid var(--color-primary-dark);
}

.site-header {
  background-color: var(--color-white);
  margin-top: 16px;
  position: relative;
  z-index: 100;
}
.site-header .header-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
.main-nav a {
  text-decoration: none;
  color: var(--color-primary-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.main-nav > ul > li > a {
  text-align: center;
  padding: 8px 13px;
  display: block;
  position: relative;
}
.main-nav > ul > li.active > a {
  color: var(--color-white);
  background-color: var(--color-primary-dark);
}
.main-nav:hover > ul > li.active:not(:hover):not(:focus-within) > a {
  color: var(--color-primary-dark);
  background-color: transparent;
}
.main-nav > ul > li:hover > a {
  color: var(--color-white);
  background-color: var(--color-primary-dark);
}
.main-nav > ul > li .submenu {
  display: none;
}
.main-nav > ul > li:hover .submenu,
.main-nav > ul > li.active .submenu {
  display: block;
  border-bottom: 5px solid #c8d92b;
}
.main-nav:hover > ul > li.active:not(:hover) .submenu {
  display: none;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--color-primary-dark);
  padding: 16px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 200;
}
.submenu > ul {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 80px;
  justify-content: flex-start;
  position: relative;
}
.submenu a {
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  padding: 8px 0;
  opacity: 1;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.submenu a:hover {
  color: var(--color-gray-100);
  opacity: 0.9;
}

.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: start;
  justify-content: center;
  align-self: center;
  text-decoration: none;
  color: inherit;
}
.search-toggle img {
  width: 18px;
  height: 18px;
}
.search-toggle:hover {
  color: var(--color-primary);
}

@media (max-width: 960px) {
  .main-nav,
  .utility-nav,
  .search-toggle {
    display: none;
  }
}
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 23px;
  position: absolute;
  top: 15px;
  right: 18px;
}
.mobile-nav-toggle .hamburger-icon,
.mobile-nav-toggle .close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.mobile-nav-toggle .close-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.mobile-nav-toggle.is-active .hamburger-icon {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.mobile-nav-toggle.is-active .close-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0);
}

.mobile-nav {
  position: fixed;
  top: 80px;
  right: 0;
  width: 100%;
  height: calc(100% - 80px);
  background-color: #fff;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav .mobile-nav-content {
  padding: 16px 0 0;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.mobile-nav .mobile-main-nav ul,
.mobile-nav .mobile-utility-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav .mobile-main-nav li a,
.mobile-nav .mobile-utility-nav li a {
  display: block;
  padding: 21px 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary-dark);
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
}
.mobile-nav .mobile-main-nav li.active a,
.mobile-nav .mobile-utility-nav li.active a {
  background-color: var(--color-primary-dark);
  color: white;
}
.mobile-nav .mobile-utility-nav {
  margin-top: 4px;
}
.mobile-nav .mobile-utility-nav li a {
  padding: 15px 18px;
  font-weight: 500;
  font-size: 18px;
  color: #2c2b35;
  border: none;
}
.mobile-nav .mobile-search-container {
  display: flex;
  margin-top: 12px;
  margin-inline: 18px;
  background: #d9d9d9;
  position: relative;
}
.mobile-nav .mobile-search-container .mobile-search-input {
  flex: 1;
  width: 100%;
  border: none;
  padding: 12.5px 50px 12.5px 12px;
  background: #d9d9d9;
  margin: 1px;
}
.mobile-nav .mobile-search-container .mobile-search-btn {
  height: 38px;
  position: absolute;
  right: 2px;
  top: 2px;
  border: none;
  padding: 0 10px 2px 10px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d9d9d9;
  z-index: 1;
}
.mobile-nav .mobile-request-rep {
  margin-top: auto;
  padding-top: 40px;
}
.mobile-nav .mobile-request-rep .request-rep-btn {
  background-color: var(--color-green);
  color: var(--color-white);
  text-decoration: none;
  padding: 15px 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-left: 0;
  position: relative;
  white-space: nowrap;
  justify-content: center;
  transition: all 0.3s ease;
  gap: 4px;
}
.mobile-nav .mobile-request-rep .request-rep-btn img {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.mobile-nav .mobile-request-rep .request-rep-btn:hover {
  background-color: var(--color-green-dark);
}

@media (max-width: 960px) {
  .site-header .header-content {
    justify-content: space-between;
  }
  .site-header .main-nav,
  .site-header .search-toggle {
    display: none;
  }
  .site-header .mobile-nav-toggle {
    display: block;
  }
  .utility-nav {
    display: none;
  }
}
.site-footer {
  background-color: var(--color-utility-bg);
  padding: 45px 0 30px 0;
  flex-shrink: 0;
  margin-top: 64px;
}
.site-footer .footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer .footer-links {
  display: flex;
  justify-content: start;
  gap: 40px;
  list-style: none;
}
.site-footer .footer-links a {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 18px;
  line-height: 18.85px;
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 1px;
}
.site-footer .footer-links a:hover {
  text-decoration: none;
}
.site-footer .footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.site-footer .footer-text {
  font-family: var(--font-family-primary);
  font-weight: 500;
  font-size: 12px;
  line-height: 15.36px;
  color: var(--color-gray-800);
  max-width: 410px;
  text-align: left;
}
.site-footer .footer-logo {
  display: block;
}
.site-footer .footer-logo img {
  width: 231px;
  height: 66px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .site-footer .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .site-footer .footer-info {
    flex-direction: column-reverse;
    text-align: center;
  }
  .site-footer .footer-text {
    text-align: center;
    max-width: none;
  }
}
@media (max-width: 960px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-banner {
  position: relative;
  height: 415px;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  /*
  .hero-text-primary {
    font-family: var(--font-family-secondary);
    font-weight: 400;
    color: var(--color-white);
    text-shadow: 4px 3px 2px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 3.2px;
    align-items: center;
    flex: 1;

    @media (max-width: 600px) {
      font-size: 28px;
      max-width: unset;
    }
  }
  */
  /* ===========================
     Homepage hero banner
     =========================== */
  /* ===========================
     About page hero banner
     =========================== */
  /* ===========================
     Dosing & Administration hero
     =========================== */
  /* ===========================
     Access & Savings hero
     =========================== */
  /* ===========================
     Education & Resources hero
     =========================== */
}
@media (min-width: 1920px) {
  .hero-banner {
    background-size: contain;
  }
}
@media (max-width: 600px) {
  .hero-banner {
    height: 420px;
    background-size: contain;
    background-position: top;
  }
}
.hero-banner .hero-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  max-width: var(--max-width);
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  gap: 32px;
}
@media (max-width: 600px) {
  .hero-banner .hero-content {
    flex-direction: column;
    gap: 56px;
    align-items: center;
    text-align: center;
  }
  .hero-banner .hero-content .hero-cta {
    font-size: 16px;
  }
}
.hero-banner .hero-text-secondary-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  line-height: 1;
}
@media (max-width: 600px) {
  .hero-banner .hero-text-secondary-wrapper {
    align-items: center;
  }
}
.hero-banner .hero-text-secondary {
  font-family: var(--font-family-secondary);
  font-weight: 400;
  color: var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 600px) {
  .hero-banner .hero-text-secondary {
    font-size: 28px;
    max-width: unset;
  }
}
.hero-banner .hero-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  text-decoration: none;
  padding: 10px 15px;
  font-size: 18px;
  line-height: 15px;
  font-weight: 700;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  width: 357px;
  height: 46px;
  gap: 10px;
  justify-content: center;
}
.hero-banner .hero-cta:hover {
  background-color: var(--color-primary);
}
@media (max-width: 1200px) {
  .hero-banner .hero-cta {
    position: static;
    width: auto;
    height: 46px;
  }
}
@media (max-width: 600px) {
  .hero-banner .hero-cta {
    width: 100%;
  }
}
.hero-banner.home-hero-banner {
  height: 415px;
  /* Baseline text sizing for homepage hero */
  /* === Variant-specific overrides tied to background image === */
  /* /assets/images/home-hero-banner-desktop.png */
  /* /assets/images/about-hero-banner-desktop.png */
}
@media (max-width: 600px) {
  .hero-banner.home-hero-banner {
    height: 480px;
  }
}
.hero-banner.home-hero-banner .hero-content {
  gap: 32px;
}
@media (max-width: 600px) {
  .hero-banner.home-hero-banner .hero-content {
    align-items: center;
  }
}
.hero-banner.home-hero-banner .hero-text-primary {
  max-width: 380px;
}
.hero-banner.home-hero-banner .hero-text-primary > div {
  line-height: 1;
}
.hero-banner.home-hero-banner .hero-text-primary > div:nth-child(1) {
  font-size: 28.8px;
}
.hero-banner.home-hero-banner .hero-text-primary > div:nth-child(2) {
  font-size: 21.92px;
}
.hero-banner.home-hero-banner .hero-text-primary > div:nth-child(3) {
  font-size: 29.44px;
}
.hero-banner.home-hero-banner .hero-text-primary > div:nth-child(4) {
  font-size: 23.04px;
}
@media (max-width: 600px) {
  .hero-banner.home-hero-banner .hero-text-primary > div:nth-child(1) {
    font-size: 24px;
  }
  .hero-banner.home-hero-banner .hero-text-primary > div:nth-child(2) {
    font-size: 18.5px;
  }
  .hero-banner.home-hero-banner .hero-text-primary > div:nth-child(3) {
    font-size: 25px;
  }
  .hero-banner.home-hero-banner .hero-text-primary > div:nth-child(4) {
    font-size: 20px;
  }
}
.hero-banner.home-hero-banner .hero-text-secondary > div {
  line-height: 1;
}
.hero-banner.home-hero-banner .hero-text-secondary > div:nth-child(1) {
  font-size: 18px;
}
.hero-banner.home-hero-banner .hero-text-secondary > div:nth-child(2) {
  font-size: 31px;
  line-height: 0.8;
  margin-top: 12px;
}
.hero-banner.home-hero-banner .hero-text-secondary > div:nth-child(3) {
  font-size: 16.5px;
}
@media (max-width: 600px) {
  .hero-banner.home-hero-banner .hero-text-secondary > div:nth-child(1) {
    font-size: 16px;
  }
  .hero-banner.home-hero-banner .hero-text-secondary > div:nth-child(2) {
    font-size: 27.8px;
    margin-top: 8px;
  }
  .hero-banner.home-hero-banner .hero-text-secondary > div:nth-child(3) {
    font-size: 14.7px;
  }
}
.hero-banner.home-hero-banner.hero--home .hero-content .hero-text-primary {
  font-family: var(--font-family-secondary);
  font-weight: 400;
  color: var(--color-white);
  text-shadow: 4px 3px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 3.2px;
  align-items: center;
  flex: 1;
}
@media (max-width: 600px) {
  .hero-banner.home-hero-banner.hero--home .hero-content .hero-text-primary {
    font-size: 28px;
    max-width: unset;
  }
}
.hero-banner.home-hero-banner.hero--about .hero-content .hero-text-primary {
  /* shared styles (all breakpoints) */
  font-family: var(--font-family-secondary);
  font-weight: 400;
  color: var(--color-white);
  text-shadow: 4px 3px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 3.2px;
  align-items: center;
  flex: 1;
  /* desktop-only offset */
  /* ensure no offset on mobile */
}
@media (min-width: 601px) {
  .hero-banner.home-hero-banner.hero--about .hero-content .hero-text-primary {
    position: relative;
    top: 30px;
    left: 10px;
  }
}
@media (max-width: 600px) {
  .hero-banner.home-hero-banner.hero--about .hero-content .hero-text-primary {
    position: static;
    top: auto;
    left: auto;
  }
}
.hero-banner.about-hero-banner {
  line-height: 1;
}
.hero-banner.about-hero-banner .hero-text-primary > div:nth-child(1) {
  font-size: 33px;
}
.hero-banner.about-hero-banner .hero-text-primary > div:nth-child(2) {
  font-size: 30.2px;
}
.hero-banner.about-hero-banner .hero-text-primary > div:nth-child(3) {
  font-size: 32.5px;
}
.hero-banner.about-hero-banner .hero-text-secondary > div:nth-child(1) {
  font-size: 17.6px;
}
.hero-banner.about-hero-banner .hero-text-secondary > div:nth-child(2) {
  font-size: 30.5px;
}
@media (max-width: 600px) {
  .hero-banner.about-hero-banner .hero-text-secondary > div:nth-child(1) {
    font-size: 15px;
  }
  .hero-banner.about-hero-banner .hero-text-secondary > div:nth-child(2) {
    font-size: 26px;
  }
}
.hero-banner.dosing-hero-banner {
  height: 380px;
}
.hero-banner.dosing-hero-banner .hero-content {
  gap: 32px;
}
.hero-banner.dosing-hero-banner .hero-text-primary > div {
  line-height: 1;
  margin-left: 72px;
}
.hero-banner.dosing-hero-banner .hero-text-primary > div:nth-child(1) {
  font-size: 30px;
}
.hero-banner.dosing-hero-banner .hero-text-primary > div:nth-child(2) {
  font-size: 34px;
}
.hero-banner.dosing-hero-banner .hero-text-primary > div:nth-child(3) {
  font-size: 27.5px;
}
@media (max-width: 600px) {
  .hero-banner.dosing-hero-banner .hero-text-primary > div {
    margin-left: 0;
  }
}
.hero-banner.dosing-hero-banner .hero-text-secondary > div:nth-child(1) {
  font-size: 20.5px;
}
.hero-banner.dosing-hero-banner .hero-text-secondary > div:nth-child(2) {
  font-size: 35px;
}
@media (max-width: 600px) {
  .hero-banner.dosing-hero-banner .hero-text-secondary > div:nth-child(1) {
    font-size: 15px;
  }
  .hero-banner.dosing-hero-banner .hero-text-secondary > div:nth-child(2) {
    font-size: 26px;
  }
}
.hero-banner.access-hero-banner {
  height: 360px;
}
.hero-banner.access-hero-banner .hero-text-secondary-wrapper {
  align-items: flex-end;
}
.hero-banner.access-hero-banner .hero-text-secondary > div:nth-child(1) {
  font-size: 25px;
}
.hero-banner.access-hero-banner .hero-text-secondary > div:nth-child(2) {
  font-size: 20.5px;
}
@media (max-width: 600px) {
  .hero-banner.access-hero-banner .hero-text-secondary > div:nth-child(1) {
    font-size: 19px;
  }
  .hero-banner.access-hero-banner .hero-text-secondary > div:nth-child(2) {
    font-size: 16.4px;
  }
}
.hero-banner.education-hero-banner {
  height: 380px;
}
.hero-banner.education-hero-banner .hero-content {
  bottom: 64px;
}
@media (max-width: 600px) {
  .hero-banner.education-hero-banner .hero-content {
    bottom: 24px;
  }
}
.hero-banner.education-hero-banner .hero-text-secondary-wrapper {
  align-items: flex-end;
  margin-right: 64px;
}
@media (max-width: 600px) {
  .hero-banner.education-hero-banner .hero-text-secondary-wrapper {
    margin-right: 0;
  }
}
.hero-banner.education-hero-banner .hero-text-secondary > div {
  line-height: 1;
}
.hero-banner.education-hero-banner .hero-text-secondary > div:nth-child(1) {
  font-size: 28px;
}
.hero-banner.education-hero-banner .hero-text-secondary > div:nth-child(2) {
  font-size: 28px;
}
.hero-banner.education-hero-banner .hero-text-secondary > div:nth-child(3) {
  font-size: 28px;
}
.hero-banner.education-hero-banner .hero-text-secondary > div:nth-child(4) {
  font-size: 28px;
}
@media (max-width: 600px) {
  .hero-banner.education-hero-banner .hero-text-secondary > div:nth-child(1) {
    font-size: 23px;
  }
  .hero-banner.education-hero-banner .hero-text-secondary > div:nth-child(2) {
    font-size: 21px;
  }
  .hero-banner.education-hero-banner .hero-text-secondary > div:nth-child(3) {
    font-size: 16px;
  }
  .hero-banner.education-hero-banner .hero-text-secondary > div:nth-child(4) {
    font-size: 22px;
  }
}

.features-section {
  max-width: var(--max-width);
}
@media (max-width: 420px) {
  .features-section > h1 {
    font-size: 30px;
    line-height: 30px;
  }
}
.features-section > h1 > sup {
  position: relative;
  top: 6px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
}
.features-section > h1 > sup:last-of-type {
  top: 0;
  font-size: 20px;
}
.features-section .features-grid {
  display: flex;
  gap: 30px;
}
@media (max-width: 420px) {
  .features-section .features-grid {
    gap: 10px;
  }
}
.features-section .features-grid .feature-card {
  flex: 1;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px 0 rgba(71, 49, 146, 0.12);
  background: linear-gradient(180deg, #4a2b75 -4.1%, #4a2b75 9.19%, #2d3f77 23.6%, #055d7c 44.64%, #08657c 52.4%, #158980 87.85%, #1b9882 106.68%);
}
.features-section .features-grid .feature-card:nth-child(3) .feature-image img {
  transform: translateY(30px);
  height: 130%;
}
.features-section .features-grid .feature-card .feature-image {
  height: 150px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.features-section .features-grid .feature-card .feature-image img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.features-section .features-grid .feature-card .feature-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
  justify-content: space-between;
  background-color: var(--color-white);
  margin: 1px;
}
.features-section .features-grid .feature-card .feature-content .feature-title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 26px;
  color: var(--color-text-dark);
}
.features-section .features-grid .feature-card .feature-content .feature-title sup {
  position: relative;
  top: 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.features-section .features-grid .feature-card .feature-content .feature-text {
  font-family: var(--font-family-primary);
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  color: var(--color-text-dark);
}
.features-section .features-grid .feature-card .feature-content .feature-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  text-decoration: none;
  padding: 12px 16px;
  font-size: 18px;
  line-height: 15px;
  font-weight: 700;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  height: 46px;
  gap: 12px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .features-section .features-grid {
    flex-wrap: wrap;
  }
  .features-section .features-grid .feature-card {
    flex: 0 0 calc(50% - 15px);
  }
}
@media (max-width: 640px) {
  .features-section .features-grid .feature-card {
    flex: 0 0 100%;
  }
  .features-section .features-grid .feature-title {
    min-height: 0;
  }
}

.safety-information-wrapper {
  padding-top: 48px;
}
.safety-information-wrapper .safety-information-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 0 45px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.safety-information-wrapper .safety-information-content .indications-and-usage a {
  color: var(--color-primary-dark);
}
.safety-information-wrapper .safety-information-content .indications-and-usage h2 {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}
.safety-information-wrapper .safety-information-content .indications-and-usage h3 {
  font-size: 17px;
  line-height: 22px;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  text-decoration: underline;
}
.safety-information-wrapper .safety-information-content .indications-and-usage p,
.safety-information-wrapper .safety-information-content .indications-and-usage li {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}
.safety-information-wrapper .safety-information-content .indications-and-usage p.fw-700,
.safety-information-wrapper .safety-information-content .indications-and-usage li.fw-700 {
  font-weight: 700;
}
.safety-information-wrapper .safety-information-content .indications-and-usage ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 4px;
}
.safety-information-wrapper .safety-information-content .indications-and-usage li {
  position: relative;
  padding-left: 1rem;
}
.safety-information-wrapper .safety-information-content .indications-and-usage li::before {
  content: "•";
  position: absolute;
  left: 0;
}
.safety-information-wrapper .safety-information-content .indications-and-usage.full-width {
  grid-column: 1/-1;
}
.safety-information-wrapper .safety-information-content .safety-information-warning {
  background-color: var(--color-white);
}
.safety-information-wrapper .safety-information-content .safety-information-warning h2 {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}
.safety-information-wrapper .safety-information-content .safety-information-warning .warning-box {
  margin-top: 8px;
  border: 2px solid #000;
  padding: 20px 30px 24px 30px;
  align-self: flex-start;
}
.safety-information-wrapper .safety-information-content .safety-information-warning .warning-box h2 {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 17px;
  color: #000;
  margin-bottom: 4px;
  text-decoration: underline;
}
.safety-information-wrapper .safety-information-content .safety-information-warning .warning-box h2:first-of-type {
  text-align: center;
  margin-bottom: 20px;
  text-decoration: none;
}
.safety-information-wrapper .safety-information-content .safety-information-warning .warning-box p {
  font-family: var(--font-family-primary);
  font-size: 17px;
  line-height: 21px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .safety-information-wrapper {
    padding-top: 24px;
  }
  .safety-information-wrapper .safety-information-content {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .safety-information-wrapper .safety-information-content .safety-information-warning {
    order: -1;
    margin-bottom: 2rem;
  }
  .safety-information-wrapper .safety-information-content .safety-information-warning .warning-box {
    padding: 20px 15px 24px 15px;
  }
  .safety-information-wrapper .safety-information-content .indications-and-usage {
    padding-right: 0;
  }
}

.contact-title {
  font-family: var(--font-family-primary);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-top: 70px;
  line-height: 1.1;
}
.contact-title + .contact-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.contact-title + .contact-section .contact-subhead {
  font-family: var(--font-family-primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 27.8px;
  font-style: normal;
}
.contact-title + .contact-section .contact-subhead.teal {
  color: var(--color-green);
}
.contact-title + .contact-section .contact-bold {
  color: #000;
  font-family: var(--font-family-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 23.41px;
  font-style: normal;
}
.contact-title + .contact-section .contact-label {
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.contact-title + .contact-section .contact-link {
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  font-style: normal;
}
.contact-title + .contact-section .contact-link.purple {
  color: var(--color-primary-dark);
}
.contact-title + .contact-section .contact-link.purple[href^="mailto:"] {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.contact-title + .contact-section .contact-link.purple[href^="tel:"] {
  text-decoration: none;
}
.contact-title + .contact-section .contact-note {
  color: #000;
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin-top: 4px;
}
.contact-title + .contact-section .contact-fda {
  font-family: var(--font-family-primary);
  font-size: 28px;
  font-weight: 700;
  line-height: 27.8px;
  color: var(--color-primary-dark);
}
@media (max-width: 600px) {
  .contact-title {
    font-size: 28px;
    margin-top: 40px;
  }
  .contact-title + .contact-section .contact-subhead {
    font-size: 22px;
    line-height: 22px;
  }
  .contact-title + .contact-section .contact-bold {
    font-size: 18px;
    line-height: 18px;
  }
  .contact-title + .contact-section .contact-fda {
    font-size: 20px;
    line-height: 20px;
  }
  .contact-title + .contact-section .contact-link,
  .contact-title + .contact-section .contact-label,
  .contact-title + .contact-section .contact-note {
    font-size: 16px;
    line-height: 18px;
  }
}

.rems-lead {
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: #000;
  margin-bottom: 48px;
  max-width: 900px;
}

.rems-link.purple {
  color: var(--color-primary-dark);
  text-decoration: underline;
  font-weight: 500;
}

.rems-cards-section {
  background: #eef9f6;
  padding-block: 40px;
  padding-inline: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  justify-content: center;
  align-items: center;
  margin: 48px 0 32px 0;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.rems-card {
  background: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  max-width: var(--max-width);
  min-width: 0;
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 20px;
}

.rems-card-icon {
  width: 200px;
  height: 154px;
  object-fit: contain;
  margin-top: 4px;
}

.rems-card-title {
  font-weight: 700;
  color: #000;
  font-size: 18px;
  font-family: var(--font-family-primary);
}

.rems-footer {
  color: var(--color-primary-dark);
  font-family: var(--font-family-primary);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 27.8px;
  margin-top: 40px;
  margin-bottom: 32px;
  text-align: left;
}

@media (max-width: 600px) {
  h1 {
    font-size: 28px;
    line-height: 32px;
    margin-top: 24px;
  }
  h2 {
    font-size: 25px;
    line-height: 25px;
  }
  .rems-lead {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 24px;
  }
  .rems-cards-section {
    gap: 10px;
    padding-block: 24px;
    padding-inline: 24px;
    max-width: calc(100vw - 8px);
  }
  .rems-card {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    gap: 0px;
    font-size: 16px;
    line-height: 18px;
  }
  .rems-card-icon {
    width: 181px;
    height: 140px;
    margin-top: 0;
  }
  .rems-footer {
    font-size: 18px;
    line-height: 20px;
    margin-top: 24px;
    margin-bottom: 16px;
  }
}
.sitemap-list {
  font-family: var(--font-family-primary);
  font-size: 16px;
  padding-top: 12px;
  padding-bottom: 24px;
  margin-left: 32px;
}
.sitemap-list > li {
  margin-bottom: 20px;
}
.sitemap-list > li > a {
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 16px;
}
.sitemap-list > li > a:hover {
  text-decoration: none;
}
.sitemap-list > li ul {
  list-style: none;
  padding-left: 16px;
  margin-top: 6px;
}
.sitemap-list > li ul li {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}
.sitemap-list > li ul li a {
  font-size: 16px;
  color: var(--color-primary-dark);
}
.sitemap-list > li ul li a:hover {
  text-decoration: none;
}
@media (max-width: 700px) {
  .sitemap-list {
    font-size: 18px;
  }
  .sitemap-list > li > a {
    font-size: 18px;
  }
  .sitemap-list > li ul li {
    font-size: 16px;
  }
  .sitemap-list > li ul li a {
    font-size: 16px;
  }
}

.sitemap-disclaimer {
  color: var(--color-gray-800, #333);
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
}

#references-wrapper.container {
  margin-top: 20px;
}
#references-wrapper .references-title {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #000;
  margin-bottom: 32px;
  padding-left: 16px;
}
#references-wrapper .references-list {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #000;
  margin-bottom: 32px;
  padding-left: 32px;
}
#references-wrapper .references-list li {
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #000;
  margin-bottom: 32px;
  font-style: normal;
  word-wrap: break-word;
}
#references-wrapper .references-list li em,
#references-wrapper .references-list li i {
  font-style: italic;
}
#references-wrapper .references-list em,
#references-wrapper .references-list i {
  font-style: italic;
}

#isi-preview-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -160px;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -5px 20px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-height: 160px;
  opacity: 0;
  pointer-events: none;
  transition: bottom 0.35s ease, opacity 0.35s ease;
  padding: 0;
}

#isi-preview-container.isi-preview-visible {
  opacity: 1;
  bottom: 0;
  pointer-events: auto;
  animation: isi-slide-up 0.35s ease;
}

@keyframes isi-slide-up {
  from {
    opacity: 0;
    bottom: -160px;
  }
  to {
    opacity: 1;
    bottom: 0;
  }
}
#isi-preview-content {
  flex: 1 1 auto;
  overflow: hidden;
  max-height: 160px;
  padding: 38px 0 18px 0;
  font-size: 15px;
  color: #000;
  max-width: var(--max-width);
  width: 100%;
  position: relative;
  pointer-events: auto;
}

#isi-preview-content > .safety-information-wrapper {
  padding-top: 0;
}

#isi-scroll-arrow {
  position: absolute;
  top: -16px;
  right: calc((100vw - var(--max-width)) / 2 + 24px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s;
  text-decoration: none;
}

#isi-scroll-arrow:hover {
  opacity: 0.8;
  transform: scale(120%);
}

@media (max-width: 960px) {
  #isi-preview-content {
    padding: 8px 0 8px 0;
    font-size: 13px;
  }
  #isi-scroll-arrow {
    right: 16px;
  }
}
.education-section {
  max-width: var(--max-width);
}
.education-section .education-heading {
  margin: 16px auto 48px auto;
}
.education-section .education-title {
  color: #08745c;
  margin: 0 auto 24px auto;
}
.education-section .education-videos {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 85px;
  flex-wrap: wrap;
}
.education-section .education-videos .education-video-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex: 1;
}
.education-section .education-videos .education-video-card .education-video-img {
  width: 100%;
  max-width: 220px;
  margin-bottom: 12px;
}
.education-section .education-videos .education-video-card .education-video-desc {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: var(--color-gray-800);
  text-align: left;
  margin-block: 18px;
  min-height: 48px;
  max-width: 320px;
}
.education-section .education-videos .education-video-card .education-video-btn {
  display: inline-block;
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-family: var(--font-family-primary);
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  min-width: 170px;
  transition: background 0.2s;
}
.education-section .education-videos .education-video-card .education-video-btn:hover {
  background: var(--color-primary);
}

.education-section--alt {
  background: #eaf6f4;
  padding-block: 64px;
  margin-bottom: 0;
}
.education-section--alt .education-title {
  margin-bottom: 24px;
  color: #08745c;
}
.education-section--alt .education-cards {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.education-section--alt .education-cards .education-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  gap: 12px;
  flex: 1;
}
.education-section--alt .education-cards .education-card .education-card-img {
  width: 174px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
  transform: translateX(-24px);
}
.education-section--alt .education-cards .education-card .education-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
}
.education-section--alt .education-cards .education-card .education-card-content .education-card-title {
  font-family: var(--font-family-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: 8px;
}
.education-section--alt .education-cards .education-card .education-card-content .education-card-desc {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: var(--color-gray-800);
  margin-bottom: 18px;
  max-width: 320px;
}
.education-section--alt .education-cards .education-card .education-card-content .education-card-btn {
  display: inline-block;
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
  min-width: 170px;
  transition: background 0.2s;
}
.education-section--alt .education-cards .education-card .education-card-content .education-card-btn:hover {
  background: var(--color-primary);
}

.education-section--cta {
  background: none;
  text-align: center;
}
.education-section--cta.container {
  padding-block: 64px 52x;
}
.education-section--cta .education-cta-title {
  font-family: var(--font-family-primary);
  font-size: 28px;
  color: var(--color-primary-dark);
  margin-bottom: 24px;
}
.education-section--cta .education-cta-btn {
  display: inline-block;
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-family: var(--font-family-primary);
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 16px 64px;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
  width: 100%;
  max-width: 400px;
  transition: background 0.2s;
}
.education-section--cta .education-cta-btn:hover {
  background: var(--color-primary);
}

@media (max-width: 600px) {
  .education-title {
    padding-bottom: 4px;
  }
  .education-videos,
  .education-cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .education-card {
    width: 100%;
    max-width: 420px;
  }
  .education-card .education-card-img {
    margin: 0 auto;
  }
  .education-card-title {
    width: 100%;
    font-size: 24px;
    line-height: 23.4px;
    text-align: center;
  }
  .education-cta-title {
    font-size: 25px;
    text-align: center;
  }
  .education-section .education-videos {
    gap: 60px;
    margin-bottom: 32px;
  }
  .education-section .education-videos .education-video-card {
    align-items: center;
  }
  .education-section .education-videos .education-video-card .education-video-desc {
    text-align: center;
    max-width: 100%;
  }
  .education-video-btn,
  .education-card-btn {
    width: 100%;
  }
  .education-card {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }
  .education-card-img {
    width: 100px;
    transform: none;
  }
  .education-card-content {
    align-items: center;
    width: 100%;
  }
  .education-card-desc {
    text-align: center;
    width: 100%;
    max-width: 100% !important;
  }
  .education-section--alt {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .education-cta-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}
.access-savings-section {
  padding-top: 48px;
}
.access-savings-section .access-savings-title {
  margin-bottom: 32px;
}
.access-savings-section .access-savings-title sup {
  font-size: 1rem;
  top: -0.2em;
  position: relative;
}
.access-savings-section .access-savings-top {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
}
@media (max-width: 900px) {
  .access-savings-section .access-savings-top {
    flex-direction: column;
    gap: 32px;
  }
}
.access-savings-section .access-savings-checklist {
  flex: 1 1 0;
}
.access-savings-section .access-savings-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.access-savings-section .access-savings-checklist ul li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.access-savings-section .access-savings-checklist ul li:last-child {
  margin-bottom: 0;
}
.access-savings-section .access-savings-checklist ul li img {
  width: 50px;
  height: 42px;
  flex-shrink: 0;
}
.access-savings-section .access-savings-checklist ul li span {
  display: block;
}
.access-savings-section .access-savings-checklist ul li span sup {
  font-size: 24px;
  top: 10px;
  position: relative;
}
.access-savings-section .access-savings-divider {
  width: 3px;
  background: #b8d7ce;
  align-self: stretch;
}
@media (max-width: 900px) {
  .access-savings-section .access-savings-divider {
    display: none;
  }
}
.access-savings-section .access-savings-info {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
.access-savings-section .access-savings-info .access-savings-info-icon {
  width: 100px;
  height: 120px;
  margin-bottom: 8px;
}
.access-savings-section .access-savings-info .access-savings-info-link-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 900px) {
  .access-savings-section .access-savings-info .access-savings-info-link-block {
    gap: 8px;
  }
}
.access-savings-section .access-savings-info .access-savings-info-link-block .access-savings-info-link {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.access-savings-section .access-savings-info .access-savings-info-link-block .access-savings-info-link span {
  color: var(--color-primary-dark);
}
.access-savings-section .access-savings-card {
  display: flex;
  background: #e3eeeb;
  box-shadow: 0 4px 24px 0 rgba(71, 49, 146, 0.08);
  border: 1px solid #e3eeeb;
  margin-top: 48px;
  align-items: center;
  gap: 32px;
  padding: 0;
  margin-block: 24px;
  max-width: 940px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .access-savings-section .access-savings-card {
    padding: 28px 0px;
    flex-direction: column-reverse;
    align-items: start;
    border: none;
  }
}
.access-savings-section .access-savings-card .access-savings-card-image {
  flex: 1;
  display: flex;
  align-items: center;
  padding-right: 32px;
}
.access-savings-section .access-savings-card .access-savings-card-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: none;
  transform: translateX(-7px);
}
@media (max-width: 900px) {
  .access-savings-section .access-savings-card .access-savings-card-image {
    padding-right: 0;
  }
}
.access-savings-section .access-savings-card .access-savings-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-white);
  padding: 32px;
}
@media (max-width: 900px) {
  .access-savings-section .access-savings-card .access-savings-card-content {
    padding: 0 18px;
    background: inherit;
  }
}
.access-savings-section .access-savings-card .access-savings-card-content .access-savings-card-price {
  color: var(--color-primary-dark);
  margin-bottom: 5px;
}
.access-savings-section .access-savings-card .access-savings-card-content .access-savings-card-price .price-amount {
  color: var(--color-primary-dark);
  font-size: 16px;
  font-weight: 700;
}
.access-savings-section .access-savings-card .access-savings-card-content .access-savings-card-fine-print {
  color: var(--color-gray-800);
  font-size: 16px;
  font-family: var(--font-family-primary);
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 18px;
}
.access-savings-section .access-savings-card .access-savings-card-content .access-savings-card-fine-print span {
  color: var(--color-primary-dark);
  display: block;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .access-savings-section .access-savings-card .access-savings-card-content .access-savings-card-fine-print span {
    margin-bottom: 22px;
  }
}
.access-savings-section .access-savings-card .access-savings-card-content .access-savings-card-fine-print a {
  color: var(--color-primary-dark);
  text-decoration: underline;
}
.access-savings-section .access-savings-card .access-savings-card-content .btn {
  padding-block: 14px;
}
@media (max-width: 600px) {
  .access-savings-section .access-savings-title {
    font-size: 1.5rem;
  }
  .access-savings-section .access-savings-card {
    padding: 16px 4px;
  }
  .access-savings-section .access-savings-card-content {
    padding-left: 0;
    margin-top: 16px;
  }
  .access-savings-section .access-savings-card-content .btn {
    width: 100%;
  }
}

.abuse-deterrence-section {
  padding-top: 0;
}
.abuse-deterrence-section.container {
  margin-top: 0;
  margin-bottom: 0;
}
.abuse-deterrence-section .abuse-deterrence-title {
  margin-top: 64px;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}
.abuse-deterrence-section .abuse-deterrence-subtitle {
  margin-block: 0;
}
.abuse-deterrence-section .abuse-deterrence-subtitle sup {
  font-size: 16px;
  font-weight: 500;
}
.abuse-deterrence-section #section-risk-of-misuse.abuse-deterrence-subtitle {
  text-align: center;
}
.abuse-deterrence-section .abuse-deterrence-italic {
  font-style: italic;
  color: var(--color-primary-dark);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  padding-top: 48px;
  text-align: center;
}
.abuse-deterrence-section .abuse-deterrence-italic sup {
  position: relative;
  top: -2px;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  margin-left: 2px;
}
.abuse-deterrence-section .abuse-deterrence-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 8px 0 40px 0;
  max-width: 890px;
  margin-inline: auto;
}
.abuse-deterrence-section .abuse-deterrence-stats-row .abuse-deterrence-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
  font-size: 114px;
  font-weight: 700;
  color: #473192;
  line-height: 1;
  min-width: 120px;
}
.abuse-deterrence-section .abuse-deterrence-stats-row .abuse-deterrence-stat .stat-label {
  font-size: 58px;
}
.abuse-deterrence-section .abuse-deterrence-stats-row .abuse-deterrence-stat .stat-desc {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  line-height: 1;
}
.abuse-deterrence-section .abuse-deterrence-stats-row .abuse-deterrence-stat .stat-percent {
  font-size: 68px;
}
.abuse-deterrence-section .abuse-deterrence-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-top: 20px;
  max-width: 880px;
  margin-inline: auto;
}
.abuse-deterrence-section .abuse-deterrence-icons-row .abuse-deterrence-icon-col {
  flex: 1;
  text-align: center;
  min-width: 120px;
}
.abuse-deterrence-section .abuse-deterrence-icons-row .abuse-deterrence-icon-col:first-child img {
  transform: translateX(-26px);
}
.abuse-deterrence-section .abuse-deterrence-icons-row .abuse-deterrence-icon-col .icon-label {
  font-weight: 700;
  font-size: 24px;
  margin-top: 8px;
  line-height: 1;
  white-space: pre-line;
  text-align: center;
  word-spacing: 999px;
}
.abuse-deterrence-section .abuse-deterrence-desc {
  font-size: 20px;
  color: #222;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 700px) {
  .abuse-deterrence-section .abuse-deterrence-title {
    font-size: 32px;
    margin-top: 32px;
  }
  .abuse-deterrence-section .abuse-deterrence-italic {
    padding-top: 32px;
    font-size: 20px;
    text-align: left;
    font-weight: 600;
  }
  .abuse-deterrence-section .abuse-deterrence-stats-row {
    gap: 20px;
    flex-direction: column;
  }
  .abuse-deterrence-section .abuse-deterrence-stats-row .abuse-deterrence-stat {
    font-size: 80px;
  }
  .abuse-deterrence-section .abuse-deterrence-stats-row .abuse-deterrence-stat > div:first-child {
    min-width: 130px;
    text-align: right;
  }
  .abuse-deterrence-section .abuse-deterrence-stats-row .abuse-deterrence-stat .stat-label {
    font-size: 40px;
  }
  .abuse-deterrence-section .abuse-deterrence-stats-row .abuse-deterrence-stat .stat-percent {
    font-size: 40px;
  }
  .abuse-deterrence-section .abuse-deterrence-icons-row {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .abuse-deterrence-section .abuse-deterrence-icons-row .abuse-deterrence-icon-col .icon-label {
    word-spacing: normal;
  }
}

.abuse-deterrence-reformulated-bg {
  background: #EFF8F6;
  padding: 56px 0 48px 0;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-reformulated-title {
  color: var(--color-primary-dark);
  font-size: 40px;
  margin-bottom: 24px;
  line-height: 1;
  max-width: 960px;
  text-align: center;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-reformulated-title sup {
  font-size: 20px;
  font-weight: 500;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-reformulated-subtitle {
  font-family: var(--font-family-primary);
  font-size: 28px;
  color: var(--color-green);
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: relative;
  z-index: 2;
  min-width: 1000px;
  transform: translateX(-38px);
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: linear-gradient(180deg, #4a2b75 -4.1%, #4a2b75 9.19%, #2d3f77 23.59%, #055d7c 44.64%, #08657c 52.4%, #158980 87.84%, #1b9882 106.68%);
  box-shadow: 0 4px 32px rgba(71, 49, 146, 0.08);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  z-index: 2;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  bottom: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-title {
  display: flex;
  gap: 8px;
  flex-direction: column;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-title span {
  font-size: 24px;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-title span sup {
  font-size: 16px;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-list li::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("/assets/images/icons/check.svg") no-repeat center center;
  background-size: contain;
  flex-shrink: 0;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-list li img {
  display: none;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-check {
  margin-block: 12px;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-desc {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circles-plus {
  z-index: 3;
  background: #eaf6f4;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-size: 48px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circles-plus img {
  width: 90px;
  height: 90px;
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-title {
  text-align: center;
}
@media (max-width: 420px) {
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-title {
    margin-bottom: 16px;
  }
}
.abuse-deterrence-reformulated-bg .abuse-deterrence-circles-note {
  color: var(--color-primary-dark);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 64px;
  margin-top: 32px;
  text-align: left;
}

@media (max-width: 1024px) {
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row {
    flex-direction: column;
    min-width: unset;
    transform: unset;
  }
}
@media (max-width: 700px) {
  .abuse-deterrence-reformulated-bg {
    padding: 32px 0 24px 0;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-reformulated-title {
    font-size: 30px;
    margin-bottom: 16px;
    text-align: left;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-reformulated-subtitle {
    font-size: 25px;
    line-height: 1;
    text-align: left;
    margin-bottom: 32px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row {
    gap: 24px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle {
    width: 305px;
    height: 305px;
    padding: 12px 4px 10px 4px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle::before {
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-title {
    font-size: 21px;
    gap: 4px;
    margin-bottom: 10px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-title span {
    font-size: 16px;
    font-weight: 600;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-title span sup {
    font-size: 11px;
    font-weight: 500;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-list li {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-list li::before {
    width: 20px;
    height: 20px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-check {
    margin-block: 8px;
    width: 46px;
    height: 46px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-check img {
    width: 46px;
    height: 46px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circle .abuse-deterrence-circle-desc {
    font-size: 21px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circles-plus {
    width: 100px;
    height: 100px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-row .abuse-deterrence-circles-plus img {
    width: 58px;
    height: 58px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-note {
    font-size: 20px;
    line-height: 22px;
    margin-top: 0;
    margin-bottom: 48px;
  }
  .abuse-deterrence-reformulated-bg .abuse-deterrence-circles-note sup {
    position: relative;
    top: 0;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
  }
}
.protect-choice-section {
  background: #fff;
}
.protect-choice-section .protect-choice-title {
  color: var(--color-primary-dark);
  font-size: 40px;
  margin-bottom: 28px;
  line-height: 1;
}
.protect-choice-section .protect-choice-subtitle {
  color: var(--color-green);
  font-family: var(--font-family-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: left;
  line-height: 1.2;
}
.protect-choice-section .protect-choice-graphic {
  margin-block: 32px;
}
.protect-choice-section .protect-choice-graphic img {
  max-width: 100%;
  height: auto;
}
.protect-choice-section .protect-choice-footnote {
  font-size: 16px;
  color: var(--color-gray-800);
  margin-bottom: 100px;
  margin-top: 0;
  line-height: 1.3;
}
.protect-choice-section .protect-choice-footnote sup {
  font-size: 10px;
  font-weight: 500;
}
.protect-choice-section .protect-choice-warning {
  color: var(--color-primary-dark);
  font-size: 24px;
  font-weight: 700;
  padding-top: 32px;
  margin: 0 auto 64px;
  max-width: 650px;
  line-height: 1;
  text-align: center;
}

@media (max-width: 700px) {
  .protect-choice-section .protect-choice-title {
    font-size: 30px;
  }
  .protect-choice-section .protect-choice-subtitle {
    font-size: 25px;
    line-height: 1;
  }
  .protect-choice-section .protect-choice-footnote {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 54px;
  }
  .protect-choice-section .protect-choice-warning {
    text-align: left;
    font-size: 20px;
    line-height: 22px;
    padding-top: 0;
    margin-bottom: 32px;
  }
}
.info-box {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  padding: 27px 40px;
  margin: 32px auto;
  box-shadow: 0px 8px 16px 0px rgba(71, 49, 146, 0.08);
  gap: 40px;
  max-width: 765px;
}
.info-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px 1px 1px 6px;
  background: linear-gradient(180deg, #473192 0%, #008567 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.info-box .info-box-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
}
.info-box .info-box-icon svg,
.info-box .info-box-icon img {
  width: 65px;
  height: 65px;
  display: block;
}
.info-box .info-box-content {
  flex: 1;
  min-width: 0;
}
.info-box .info-box-title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
  color: #222;
}
.info-box .info-box-list {
  margin: 0 0 0 18px;
  padding: 0;
  list-style: disc;
  color: #222;
  font-size: 20px;
  text-wrap: pretty;
}
.info-box .info-box-list li {
  margin-bottom: 4px;
  font-family: var(--font-family-primary);
  line-height: 1;
}
.info-box .info-box-message {
  font-family: var(--font-family-primary);
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 1;
}
.info-box .info-box-message sup {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 600px) {
  .info-box {
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    gap: 20px;
  }
  .info-box .info-box-icon {
    margin-top: 10px;
    width: 48px;
    height: 48px;
  }
  .info-box .info-box-icon svg,
  .info-box .info-box-icon img {
    width: 48px;
    height: 48px;
  }
  .info-box .info-box-message {
    text-align: center;
    margin-bottom: 10px;
  }
  .info-box .info-box-list {
    font-size: 16px;
  }
  .info-box .info-box-list li {
    font-size: 20px;
    margin-left: 8px;
    line-height: normal;
  }
}

.accordion-block {
  background: var(--color-green);
  overflow: hidden;
}
.accordion-block.is-open .accordion-arrow {
  transform: rotate(-90deg);
}
.accordion-block .accordion-header {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  padding: 20px 32px;
  display: flex;
  cursor: pointer;
}
.accordion-block .accordion-header .accordion-title {
  font-family: var(--font-family-primary);
  flex: 1;
}
.accordion-block .accordion-header .accordion-title sup {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.accordion-block .accordion-header .accordion-arrow {
  margin-left: 16px;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
}
.accordion-block .accordion-content {
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #eef9f6;
}
.accordion-block .accordion-content .accordion-content-inner {
  padding: 28px 40px 24px 40px;
  color: #000;
}
@media (max-width: 700px) {
  .accordion-block .accordion-header {
    font-size: 20px;
    line-height: 22px;
    padding: 16px 28px;
    text-align: left;
  }
  .accordion-block .accordion-content-inner {
    font-size: 16px;
  }
}

.dosing-hero-section {
  padding-top: 48px;
  padding-bottom: 32px;
}
.dosing-hero-section .dosing-hero-title {
  margin-bottom: 0;
}
.dosing-hero-section .brand {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.dosing-hero-section .brand sup {
  font-size: 36px;
  font-weight: 400;
  line-height: 0.3;
  position: relative;
  top: 11px;
}
.dosing-hero-section .dosing-available-strengths {
  padding-block: 24px;
}
.dosing-hero-section .dosing-available-strengths .dosing-available-label {
  margin-bottom: 0;
}
.dosing-hero-section .dosing-available-strengths .dosing-available-label sup {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.dosing-hero-section .dosing-capsules-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 107px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.dosing-hero-section .dosing-capsules-row .dosing-capsule-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dosing-hero-section .dosing-capsules-row .dosing-capsule-col .dosing-capsule-img {
  width: auto;
  height: 90px;
  object-fit: contain;
  margin-bottom: 8px;
}
.dosing-hero-section .dosing-capsules-row .dosing-capsule-col .dosing-capsule-label {
  font-family: var(--font-family-primary);
  font-size: 14px;
  color: var(--color-gray-800);
  font-weight: 500;
  margin-top: 2px;
}
.dosing-hero-section .dosing-capsule-footnote {
  margin-bottom: 55px;
}
@media (max-width: 900px) {
  .dosing-hero-section .dosing-capsules-row {
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .dosing-hero-section {
    padding-top: 24px;
    padding-bottom: 16px;
  }
  .dosing-hero-section .dosing-capsules-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 64px;
    justify-items: center;
  }
  .dosing-hero-section .dosing-capsule-footnote {
    text-align: center;
    margin-bottom: 32px;
  }
}

.transition-section .transition-title {
  font-size: 38px;
  font-weight: 700;
}
.transition-section .transition-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 32px;
}
.transition-section .transition-subtitle sup {
  font-size: 18px;
}
.transition-section .transition-label {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 24px;
}
.transition-section .transition-label.transition-ir-label {
  color: #000;
}
.transition-section .transition-label.transition-er-label {
  color: var(--color-primary-dark);
  font-weight: 700;
}
.transition-section .transition-label.transition-er-label .transition-er-sub {
  font-weight: 500;
}
.transition-section .transition-label.transition-er-label .transition-er-bold {
  font-weight: 700;
  font-size: 28px;
}
.transition-section .transition-label-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
}
.transition-section .transition-label-row .transition-label-col {
  flex: 1 1 0;
}
.transition-section .transition-label-row .transition-label-col.transition-label-col-left {
  text-align: center;
}
.transition-section .transition-label-row .transition-label-col.transition-label-col-left .transition-ir-label {
  color: #111;
  font-size: 24px;
  font-weight: 400;
}
.transition-section .transition-label-row .transition-label-col.transition-label-col-right {
  text-align: center;
}
.transition-section .transition-label-row .transition-label-col.transition-label-col-right .transition-er-label {
  color: var(--color-primary-dark);
  font-size: 24px;
  font-weight: 700;
}
.transition-section .transition-label-row .transition-label-col.transition-label-col-right .transition-er-label .transition-er-sub {
  font-weight: 500;
}
.transition-section .transition-label-row .transition-label-col.transition-label-col-right .transition-er-label .transition-er-bold {
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 28px;
}
.transition-section .transition-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.transition-section .transition-table .transition-table-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.transition-section .transition-table .transition-table-row .transition-table-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.transition-section .transition-table .transition-table-row .transition-table-col.transition-table-col-left .transition-dose-row {
  background: #f2f2f2;
}
.transition-section .transition-table .transition-table-row .transition-table-col.transition-table-col-right .transition-dose-row {
  background: #f0ecf5;
}
.transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #000;
  min-height: 136px;
  padding: 16px 0;
  border-bottom: 2px solid #fff;
}
.transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row:last-child {
  border-bottom: none;
}
.transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-info {
  text-align: center;
}
.transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-info .transition-dose-amount {
  font-size: 24px;
  line-height: 1;
}
.transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-info .transition-dose-amount.bold {
  font-weight: 700;
}
.transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-info .transition-dose-desc {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-tablets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  align-items: center;
}
.transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-tablets .transition-tablet-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-pills .transition-pill-icon {
  width: auto;
  height: 92px;
}
.transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-pills .transition-pill-icon:first-child {
  transform: translateX(24px);
}
@media (max-width: 700px) {
  .transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-pills .transition-pill-icon:first-child {
    transform: translateX(8px);
  }
}
@media (max-width: 700px) {
  .transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-pills .transition-pill-icon:last-child {
    transform: translateX(-12px);
  }
}
@media (max-width: 700px) {
  .transition-section .transition-table .transition-table-row {
    gap: 2px;
  }
}
.transition-section .transition-footnote {
  margin-top: 26px;
}
@media (max-width: 900px) {
  .transition-section .transition-label-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .transition-section .transition-label-row .transition-label-col {
    width: 100%;
  }
  .transition-section .transition-label-row .transition-label-col .transition-ir-label,
  .transition-section .transition-label-row .transition-label-col .transition-er-label {
    text-align: center;
  }
  .transition-section .transition-table .transition-table-row {
    flex-direction: column-reverse;
    gap: 2px;
  }
  .transition-section .transition-table .transition-table-row .transition-table-col {
    width: 100%;
  }
  .transition-section .transition-table .transition-table-row .transition-table-col > * {
    flex: 1;
  }
  .transition-section .transition-table .transition-table-row .transition-table-col .transition-label {
    margin-top: 28px;
    line-height: 1;
  }
  .transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row {
    gap: 24px;
    padding: 18px 0;
  }
  .transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-info {
    text-align: center;
    min-width: 170px;
  }
  .transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-info .transition-dose-amount,
  .transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-info .transition-dose-desc {
    font-size: 22px;
  }
  .transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-tablets .transition-tablet-icon {
    width: 36px;
    height: 36px;
  }
  .transition-section .transition-table .transition-table-row .transition-table-col .transition-dose-row .transition-dose-pills .transition-pill-icon {
    height: 66px;
  }
}
@media (max-width: 600px) {
  .transition-section {
    padding-top: 24px;
  }
  .transition-section .transition-title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 16px;
    text-align: center;
  }
  .transition-section .transition-subtitle {
    font-size: 24px;
    margin-bottom: 0;
    text-align: center;
  }
  .transition-section .transition-table-row .transition-table-col {
    width: 100%;
  }
  .transition-section .transition-table-row .transition-table-col .transition-dose-row {
    gap: 8px;
    padding: 12px 0;
  }
  .transition-section .transition-footnote {
    text-align: center;
    margin-top: 22px;
  }
}

.dose-comparison-section {
  background: #fff;
  overflow: hidden;
}
.dose-comparison-section .transition-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 32px;
}
.dose-comparison-section .transition-subtitle sup {
  font-size: 18px;
}
.dose-comparison-section .dose-comparison-title-row {
  background: var(--color-green);
  text-align: center;
  padding-inline: 16px;
  text-wrap: balance;
}
.dose-comparison-section .dose-comparison-title-row .dose-comparison-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 23px 0;
}
.dose-comparison-section .dose-comparison-table-row {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1 1 0;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-left {
  background: #f2f2f2;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-left .dose-comparison-label {
  background: #6d6e71;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 0;
  text-align: center;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-left .dose-comparison-label .dose-comparison-label-sub {
  color: #fff;
  font-weight: 400;
  margin-left: 2px;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-left .dose-comparison-dose-row {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  padding: 0px 24px;
  height: 58px;
  border-bottom: 2px solid #fff;
  font-size: 22px;
  font-weight: 500;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-left .dose-comparison-dose-row .dose-comparison-pill-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-left .dose-comparison-dose-row .dose-comparison-dose {
  color: #000;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 500;
  min-width: 50%;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-middle {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  max-width: 204px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-middle .dose-comparison-middle-box {
  background: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: #000;
  padding: 36px 24px;
  text-align: center;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right {
  background: #f0ecf5;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right .dose-comparison-label {
  background: #47007a;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 10px 0;
  text-align: center;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right .dose-comparison-label .dose-comparison-label-sub {
  margin-left: 2px;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right .dose-comparison-dose-row {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 4px;
  padding: 0px 24px;
  height: 58px;
  border-bottom: 2px solid #fff;
  font-size: 22px;
  font-weight: 500;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right .dose-comparison-dose-row .dose-comparison-capsule-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right .dose-comparison-dose-row .dose-comparison-dose {
  color: #000;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  text-align: right;
  min-width: 50%;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right .dose-comparison-dose-row .dose-comparison-capsule-wrapper {
  display: flex;
  gap: 4px;
}
.dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right .dose-comparison-dose-row .dose-comparison-capsule-wrapper .dose-comparison-capsule-icon:not(:first-child) {
  margin-left: -20px;
}
.dose-comparison-section .dose-comparison-footnote {
  margin-top: 24px;
}
.dose-comparison-section .dose-comparison-footnote.equivalence {
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .dose-comparison-section {
    padding-top: 26px;
    margin-top: 0;
  }
  .dose-comparison-section .transition-subtitle {
    font-size: 24px;
    margin-bottom: 37px;
    text-align: center;
  }
  .dose-comparison-section .dose-comparison-title-row .dose-comparison-title {
    font-size: 20px;
    padding: 12px 0 10px 0;
  }
  .dose-comparison-section .dose-comparison-table-row {
    flex-direction: column-reverse;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col {
    width: 100%;
    min-width: 0;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-middle {
    order: 3;
    position: static;
    transform: none;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-middle .dose-comparison-middle-box {
    background: #eff8f6;
    text-wrap: balance;
    padding: 32px 8px;
    margin: 0;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right {
    order: 3;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right .dose-comparison-label {
    font-size: 18px;
    padding: 10px 0 8px 0;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right .dose-comparison-dose-row {
    font-size: 16px;
    padding: 10px 12px;
    border-bottom: none;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-right .dose-comparison-dose-row .dose-comparison-capsule-icon {
    width: 40px;
    height: 40px;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-left {
    order: 3;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-left .dose-comparison-label {
    font-size: 18px;
    padding: 10px 0 8px 0;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-left .dose-comparison-dose-row {
    font-size: 16px;
    padding: 10px 12px;
    border-bottom: none;
  }
  .dose-comparison-section .dose-comparison-table-row .dose-comparison-col.dose-comparison-col-left .dose-comparison-dose-row .dose-comparison-pill-icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 900px) {
  .dose-comparison-section .dose-comparison-footnote:not(.equivalence) {
    text-align: center;
    margin-top: 16px;
  }
  .dose-comparison-section .dose-comparison-footnote.equivalence {
    margin-top: 12px;
    margin-bottom: 45px;
  }
}

.flexible-admin-section {
  background-color: #eef9f6;
  padding: 60px 0 78px;
  margin-top: 64px;
}
.flexible-admin-section .flexible-admin-title {
  color: var(--color-primary-dark);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 50px;
}
.flexible-admin-section .flexible-admin-options {
  display: flex;
  justify-content: space-evenly;
  gap: 60px;
  margin-bottom: 40px;
}
.flexible-admin-section .flexible-admin-option {
  text-align: center;
}
.flexible-admin-section .flexible-admin-option .option-icon {
  width: 120px;
  height: 140px;
  margin: 0 auto 8px;
}
.flexible-admin-section .flexible-admin-option .option-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.flexible-admin-section .flexible-admin-option .option-label {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}
.flexible-admin-section .flexible-admin-footnote {
  margin-bottom: 30px;
}
.flexible-admin-section .flexible-admin-notice {
  color: var(--color-green-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}
.flexible-admin-section .flexible-admin-notice sup {
  font-size: 14px;
}
.flexible-admin-section .flexible-admin-warnings {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.flexible-admin-section .flexible-admin-warnings li {
  margin-bottom: 4px;
  padding-left: 24px;
  position: relative;
}
.flexible-admin-section .flexible-admin-warnings li:before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--color-text);
}
.flexible-admin-section .flexible-admin-warnings li:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .flexible-admin-section {
    padding: 26px 0;
  }
  .flexible-admin-section .flexible-admin-title {
    font-size: 30px;
  }
  .flexible-admin-section .flexible-admin-options {
    gap: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .flexible-admin-section .flexible-admin-notice {
    font-size: 20px;
  }
}

.about-page .about-title sup {
  font-size: 36px;
  position: relative;
  top: 11px;
}
.about-page .about-subtitle {
  line-height: 1.1;
  max-width: 820px;
}
.about-page .about-subtitle sup {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  top: 3px;
}
.about-page .about-page-main {
  padding: 40px 0;
}
.about-page .about-feature {
  display: flex;
  align-items: start;
  gap: 48px;
  margin-bottom: 40px;
}
.about-page .about-feature:last-of-type {
  align-items: center;
}
.about-page .about-feature-icon {
  flex-shrink: 0;
  width: 120px;
}
.about-page .about-feature-icon img {
  width: 100%;
  height: auto;
}
.about-page .about-feature-content h3 {
  color: var(--color-primary-dark);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-page .about-feature-content p {
  line-height: 1.3;
  margin-bottom: 8px;
}
.about-page .about-feature-content p sup {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  top: 3px;
}
.about-page .about-feature-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}
.about-page .about-feature-content ul li {
  margin-bottom: 8px;
}
.about-page .about-feature-content a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: unset;
  padding: 15px 18px;
}
.about-page .about-feature-content .footnote {
  margin-top: 32px;
}

.about-comparison-section {
  background: #eff8f6;
  padding: 40px 0 60px 0;
}
.about-comparison-section.white {
  background: #fff;
}
.about-comparison-section .about-comparison-headline {
  color: var(--color-primary-dark);
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1;
}
.about-comparison-section .about-comparison-headline sup {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  top: 3px;
}
.about-comparison-section .about-comparison-subhead {
  margin-bottom: 8px;
}
.about-comparison-section .about-comparison-subhead sup {
  color: var(--color-green-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  top: 3px;
}
.about-comparison-section .about-comparison-subhead.black {
  color: #000;
}
.about-comparison-section .about-comparison-footnote {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.27px;
}

.deterx-technology-section {
  background-color: #e3eeeb;
  padding: 70px 0 90px;
}
.deterx-technology-section .deterx-technology-title {
  color: var(--color-primary-dark);
  font-size: 40px;
  line-height: 1;
}
.deterx-technology-section .deterx-technology-title sup {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  top: 5px;
}
.deterx-technology-section .deterx-technology-text {
  margin-bottom: 25px;
}
.deterx-technology-section .deterx-technology-text sup {
  font-size: 13px;
  font-weight: 400;
  position: relative;
  top: 2px;
  line-height: 0.3;
}
.deterx-technology-section .deterx-technology-video {
  cursor: pointer;
}
.deterx-technology-section .deterx-technology-video img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.deterx-technology-section .deterx-technology-video img:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .about-page .about-title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 14px;
  }
  .about-page .about-title sup {
    font-size: 30px;
    top: 11px;
  }
  .about-page .about-page-main {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .about-page .about-feature {
    gap: 8px;
    margin-bottom: 42px;
  }
  .about-page .about-feature:last-of-type {
    align-items: start;
  }
  .about-page .about-feature-icon {
    width: 100px;
  }
  .about-page .about-feature-content h3 {
    font-size: 20px;
    line-height: 1.1;
  }
  .about-page .about-feature-content .footnote {
    margin-top: 24px;
  }
  .about-comparison-section .about-comparison-headline {
    font-size: 30px;
    line-height: 1;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .about-comparison-section .comparison-table-section {
    padding-top: 32px;
  }
  .about-comparison-section .about-comparison-subhead {
    padding-top: 28px;
  }
  .about-comparison-section .about-comparison-footnote {
    margin-top: 16px;
  }
  .deterx-technology-section {
    padding-bottom: 36px;
    padding-top: 41px;
  }
  .deterx-technology-section .deterx-technology-title {
    font-size: 30px;
    line-height: 1;
  }
  .deterx-technology-section .deterx-technology-text {
    margin-bottom: 48px;
  }
  .deterx-technology-section .deterx-technology-video img {
    border-radius: 4px;
  }
}
.comparison-table-section {
  padding-top: 20px;
  padding-bottom: 28px;
}
.comparison-table-section .comparison-table-title {
  background: var(--color-green);
  color: #fff;
  margin: 0;
  padding: 16px 24px;
  line-height: 1;
  border-radius: 0;
}
.comparison-table-section .comparison-table-wrapper {
  background: #faf7f7;
}
.comparison-table-section .comparison-table-wrapper .comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: none;
  font-size: 22px;
  margin-bottom: 0;
}
.comparison-table-section .comparison-table-wrapper .comparison-table thead tr td {
  background: #fff9f9;
}
.comparison-table-section .comparison-table-wrapper .comparison-table thead th {
  background: #fff9f9;
  color: var(--color-primary-dark);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  padding: 13.5px 24px;
  border: none;
}
.comparison-table-section .comparison-table-wrapper .comparison-table thead th:first-of-type {
  position: relative;
  z-index: 1;
  overflow: visible;
  color: #fff;
  background: #6f41af;
}
.comparison-table-section .comparison-table-wrapper .comparison-table thead th:first-of-type::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100%;
  height: 100%;
  background: transparent;
  border-top: 12px solid var(--color-primary-dark);
  border-left: 12px solid var(--color-primary-dark);
  border-radius: 0;
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06), 0 4px 12px 0 rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.18);
}
.comparison-table-section .comparison-table-wrapper .comparison-table thead th:first-of-type > * {
  position: relative;
  z-index: 1;
}
.comparison-table-section .comparison-table-wrapper .comparison-table thead th:last-child {
  color: #000;
  font-weight: 600;
}
.comparison-table-section .comparison-table-wrapper .comparison-table thead th:last-child sup {
  font-size: 24px;
  font-weight: 400;
  line-height: 0;
  position: relative;
  top: 11px;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row {
  background: #d0d0d0;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label {
  background: #d0d0d0;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  padding: 6px 12px 6px 24px;
  position: relative;
  border-color: #ccc;
  z-index: 1;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-label-text {
  margin-right: 8px;
  position: relative;
  top: -4px;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  outline: none;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-plus-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/assets/images/icons/plus-circle.svg") center/contain no-repeat;
  transition: background-image 0.2s ease;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-plus-icon:hover {
  background: url("/assets/images/icons/plus-circle-hover.svg") center/contain no-repeat;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-tooltip {
  font-family: var(--font-family-primary);
  display: block;
  position: absolute;
  left: 0;
  transform: translateY(10px);
  min-width: 280px;
  max-width: 400px;
  background: #fff;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  border: 1px solid var(--color-green);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-tooltip.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-tooltip::before, .comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-tooltip::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  left: var(--tooltip-arrow-left, 50%);
  transform: translateX(-50%);
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-tooltip--bottom {
  top: 45px;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-tooltip--bottom::before {
  top: -11px;
  border-width: 0 11px 11px 11px;
  border-color: transparent transparent var(--color-green) transparent;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-tooltip--bottom::after {
  top: -10px;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-tooltip--top {
  bottom: 45px;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-tooltip--top::before {
  bottom: -11px;
  border-width: 11px 11px 0 11px;
  border-color: var(--color-green) transparent transparent transparent;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-section-row .comparison-section-label .section-tooltip-btn .section-tooltip--top::after {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-color: #fff transparent transparent transparent;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody td {
  background: #fff9f9;
  border-bottom: 1px solid #ccc;
  padding: 13px 0;
  font-size: 22px;
  vertical-align: middle;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-label {
  padding-left: 24px;
  padding-right: 12px;
  font-weight: 600;
  line-height: 1.2;
  width: 65%;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-label sup {
  font-size: 16px;
  font-weight: 500;
  line-height: 0;
  position: relative;
  top: 3px;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check {
  text-align: center;
  width: 162px;
  background: #e6ddec;
  border-color: #ccc;
  position: relative;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check:nth-child(2) {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 12px;
  height: calc(100% + 1px);
  background: var(--color-primary-dark);
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06), 0 4px 12px 0 rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.18);
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check:nth-child(2) > * {
  position: relative;
  z-index: 1;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check:last-child {
  background: #ebe6e6;
  border-left: 1px solid #ccc;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark {
  display: inline-block;
  width: 58px;
  height: 42px;
  vertical-align: middle;
  background: none;
  position: relative;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark--active::before, .comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark--inactive::before, .comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark--dash::before {
  content: "";
  display: block;
  width: 58px;
  height: 42px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark--active::before {
  background-image: url("/assets/images/icons/checkmark-purple.svg");
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark--inactive::before {
  background-image: url("/assets/images/icons/checkmark-gray.svg");
}
.comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark--dash::before {
  background-image: url("/assets/images/icons/dash-gray.svg");
}
.comparison-table-section .about-comparison-footnote {
  margin-top: 40px;
}

@media (max-width: 600px) {
  .comparison-table-section .comparison-table-title {
    font-size: 25px;
    line-height: 1;
    text-align: center;
    padding: 16px 24px 24px 24px;
    text-wrap: balance;
  }
  .comparison-table-section .comparison-table-wrapper .comparison-table {
    font-size: 18px;
  }
  .comparison-table-section .comparison-table-wrapper .comparison-table thead th {
    font-size: 16px;
    padding: 16px 10px;
  }
  .comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-label {
    padding: 24px 16px;
    width: unset;
  }
  .comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-label sup {
    top: 2px;
    font-size: 12px;
  }
  .comparison-table-section .comparison-table-wrapper .comparison-table tbody td {
    padding: 10px 0;
    font-size: 18px;
    line-height: 1;
  }
  .comparison-table-section .comparison-table-wrapper .comparison-table tbody td .section-label-text {
    font-size: 20px;
  }
  .comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check {
    width: 90px;
  }
  .comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark {
    width: 32px;
    height: 32px;
  }
  .comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark--active::before, .comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark--inactive::before, .comparison-table-section .comparison-table-wrapper .comparison-table tbody .comparison-check .checkmark--dash::before {
    width: 32px;
    height: 32px;
  }
}
.comparison-table tbody tr:last-child .comparison-check:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: calc(100% + 12px);
  height: 12px;
  background: var(--color-primary-dark);
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06), 0 4px 12px 0 rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.18);
}

/* Portal-style global tooltip */
#global-section-tooltip.section-tooltip {
  position: fixed;
  z-index: 10000;
  min-width: 280px;
  max-width: 400px;
  background: #fff;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  border: 1px solid var(--color-green);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 10px 16px;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

#global-section-tooltip.section-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 600px) {
  #global-section-tooltip.section-tooltip {
    max-width: calc(100% - 36px);
    min-width: 280px;
  }
}
#global-section-tooltip .section-tooltip-arrow {
  position: absolute;
  width: 24px;
  height: 12px;
  left: var(--tooltip-arrow-left, 50%);
  transform: translateX(-50%);
  top: -12px;
  z-index: 1;
  pointer-events: none;
  background: url("/assets/images/icons/tooltip-arrow.svg") center/contain no-repeat;
}

#global-section-tooltip.section-tooltip--top .section-tooltip-arrow {
  top: auto;
  bottom: -12px;
  background: url("/assets/images/icons/tooltip-arrow-top.svg") center/contain no-repeat;
}

#alert-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.alert-notification {
  background-color: var(--color-primary-dark);
  color: #fff;
  padding: 15px 40px 15px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-width: 250px;
  max-width: 350px;
}
.alert-notification.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.alert-message {
  margin: 0;
  font-size: 14px;
  white-space: pre-line;
}

.alert-close-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 5px;
}

@media (max-width: 600px) {
  .alert-notification {
    top: auto;
    bottom: 24px;
    right: 50%;
    transform: translateX(50%) translateY(20px);
    width: calc(100% - 48px);
    max-width: 400px;
  }
  .alert-notification.is-visible {
    transform: translateX(50%) translateY(0);
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  max-width: 1130px;
  max-height: 90dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
  padding: 20px;
  margin-inline: 18px;
}
.modal-overlay.is-visible .modal {
  transform: translateY(0);
}
.modal .modal-header {
  padding: 36px 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-header .modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
}
.modal .modal-header .modal-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #473192;
  margin: 0;
  padding-bottom: 12px;
}
.modal .modal-header .modal-title sup {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  top: -3px;
}
.modal .modal-body {
  padding: 0 48px 24px 48px;
  overflow-y: auto;
}
.modal .modal-body ul {
  list-style-position: outside;
  padding-left: 20px;
}
.modal .modal-body ul li {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1;
  color: #000;
}
.modal .modal-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: opacity 0.2s;
  line-height: 0;
}
.modal .modal-close-btn:hover {
  opacity: 0.7;
}

body.modal-is-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .modal .modal-header .modal-title {
    font-size: 30px;
  }
  .modal .modal-header .modal-close-btn {
    top: 12px;
    right: 12px;
  }
  .modal .modal-body {
    padding-inline: 24px;
  }
  .modal .modal-body ul li {
    margin-bottom: 4px;
  }
}
.modal.clinical-modal {
  margin: 0;
  padding: 0;
  box-shadow: none;
  overflow: auto;
}
.modal.clinical-modal .modal-header {
  justify-content: start;
  padding: 0 40px;
  min-height: 125px;
}
.modal.clinical-modal .modal-header .modal-title,
.modal.clinical-modal .modal-header .modal-subtitle,
.modal.clinical-modal .modal-header .modal-disclaimer {
  text-wrap: balance;
  text-align: center;
}
.modal.clinical-modal .modal-header .modal-title {
  padding-bottom: 6px;
}
.modal.clinical-modal .modal-header .modal-subtitle {
  padding-bottom: 7px;
  font-size: 20px;
  line-height: 1.1;
  color: #000;
}
.modal.clinical-modal .modal-header .modal-disclaimer {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}
.modal.clinical-modal .modal-header .modal-close-btn {
  top: 0;
  right: 0;
}
.modal.clinical-modal .modal-body {
  padding: 0 20px;
}

.clinical-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.clinical-modal-grid {
  display: grid;
  grid-template-columns: 20px 1fr 240px 20px;
  grid-template-rows: 1fr;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 520px;
  column-gap: 32px;
}

.clinical-modal-arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 36px;
}

.clinical-modal-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.clinical-modal-arrow--prev {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  top: 0;
  left: -20px;
}

.clinical-modal-graph-section {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.clinical-modal-graph-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  display: block;
}

.clinical-modal-indicators {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.clinical-modal-arrow--next {
  grid-column: 4;
  grid-row: 1;
  position: relative;
  top: 0;
  right: -20px;
}

.clinical-modal-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.2;
  transition: opacity 0.2s;
  position: relative;
}

.clinical-modal-indicator.active {
  opacity: 1;
}

.clinical-modal-indicator-icon {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f5f5;
  display: block;
}

.clinical-modal-indicator-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 5px 9px 7px 9px;
  align-items: flex-start;
  background: rgba(229, 229, 229, 0.7);
}

.clinical-modal-indicator-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  white-space: normal;
  max-width: 110px;
  word-break: break-word;
  line-height: 1;
  display: block;
  text-align: left;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.clinical-modal-indicator-underline {
  height: 6px;
  width: 90px;
  border-radius: 3px;
}

.clinical-modal-indicator.active .clinical-modal-indicator-underline {
  background: #6b2c91; /* Default, JS will override per state */
}

.clinical-modal-toggles {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.clinical-modal-toggle {
  flex: 1;
  min-width: 140px;
  padding: 6px 10px;
  border: none;
  background: rgba(229, 229, 229, 0.7);
  color: #000;
  font-size: 16px;
  line-height: 15px;
  font-weight: 700;
  letter-spacing: -0.24px;
  text-wrap: balance;
  cursor: pointer;
  transition: all 0.2s;
}

.clinical-modal-toggle.active {
  background: #6b2c91;
  color: #fff;
}

.clinical-modal-toggle.active[data-toggle-color=gray] {
  background: #9184be;
  color: #fff;
}

.clinical-modal-toggle.active[data-toggle-color=yellow] {
  background: #f7c948;
  color: #000;
}

.clinical-modal-toggle.active[data-toggle-color=black] {
  background: #000;
  color: #fff;
}

.clinical-modal-footer {
  padding-top: 16px;
  text-align: center;
  padding-bottom: 9px;
}

.clinical-modal-footnote {
  color: #482875;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  margin: 0 auto;
  max-width: 990px;
  letter-spacing: -0.275px;
}

.clinical-modal-next-mobile {
  display: none;
  width: 100%;
  margin-top: 17px;
  margin-bottom: 8px;
  background: #43007a;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 10px 15px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

@media (max-width: 900px) {
  .modal {
    max-width: 100vw;
    padding: 10px;
  }
  .modal .clinical-modal .modal-header {
    min-height: unset;
    margin-bottom: 16px;
  }
  .modal .modal-title {
    padding-bottom: 8px;
  }
  .clinical-modal-grid {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    min-height: unset;
    gap: 0;
  }
  .clinical-modal-indicators {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    width: 100%;
    order: 1;
  }
  .clinical-modal-indicator-icon {
    display: none;
  }
  .clinical-modal-indicator-underline {
    bottom: -8px;
    left: 0px;
  }
  .clinical-modal-toggle {
    min-width: 120px;
    font-size: 16px;
    padding: 8px;
  }
  .clinical-modal-arrow {
    display: none;
  }
}
@media (max-width: 600px) {
  .modal.clinical-modal .modal-header {
    padding: 34px 0 0 0;
  }
  .modal.clinical-modal .modal-body {
    overflow-y: initial;
    padding: 0;
  }
  .clinical-modal-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: unset;
    gap: 0;
  }
  .clinical-modal-indicators {
    align-items: flex-end;
    justify-content: flex-start;
    gap: 2px;
    margin-bottom: 0;
  }
  .clinical-modal-indicators .clinical-modal-indicator {
    flex: 1;
    display: none;
    max-width: 69px;
  }
  .clinical-modal-indicators .clinical-modal-indicator.active {
    display: flex;
  }
  .clinical-modal-indicator-title-wrap {
    padding: 3px 7px 5px 7px;
    border-radius: 5px;
    width: 100%;
  }
  .clinical-modal-indicator-icon {
    display: none;
  }
  .clinical-modal-indicator-title {
    font-size: 10px;
    color: #888;
  }
  .clinical-modal-indicator.active .clinical-modal-indicator-title {
    color: #222;
    font-weight: 700;
  }
  .clinical-modal-indicator-underline {
    width: 100%;
  }
  .clinical-modal-graph-section {
    order: 2;
    width: 100%;
    margin-bottom: 8px;
  }
  .clinical-modal-arrow {
    font-size: 32px;
    height: 32px;
    margin: 0 8px;
  }
  .clinical-modal-toggles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 10px auto 8px auto;
    align-items: stretch;
  }
  .clinical-modal-toggle {
    width: 100%;
    min-width: unset;
    font-size: 14px;
    padding: 5px;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .clinical-modal-footnote {
    line-height: 1;
  }
  .clinical-modal-next-mobile {
    display: flex;
  }
}
.js-modal-header-anim {
  transition: opacity 0.15s;
  opacity: 1;
}

.js-modal-header-anim.fade-out {
  opacity: 0;
}

.js-modal-header-anim.fade-in {
  opacity: 1;
}

.request-rep-form {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.request-rep-form .form-section {
  margin-bottom: 40px;
}
.request-rep-form .form-section .form-section-title {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 30px;
}
.request-rep-form .form-row {
  display: flex;
  gap: 73px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .request-rep-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.request-rep-form .form-field {
  flex: 1;
  position: relative;
  width: 100%;
}
.request-rep-form .form-field .form-label {
  display: flex;
  width: 194.693px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-block: 8px;
  line-height: 20px;
}
.request-rep-form .form-field .form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #008567;
  font-size: 16px;
  font-family: var(--font-family-primary);
  background: rgba(239, 248, 246, 0.5);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  height: 48px;
  box-sizing: border-box;
}
.request-rep-form .form-field .form-input:focus {
  outline: none;
  border-color: #473192;
  box-shadow: 0 0 0 3px rgba(71, 49, 146, 0.1);
}
.request-rep-form .form-field .form-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
.request-rep-form .form-field .form-input::placeholder {
  color: #008567;
  font-family: "Barlow Semi Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.request-rep-form .form-field .form-error {
  font-size: 14px;
  color: #dc3545;
  margin-top: 6px;
  min-height: 20px;
  line-height: 1.2;
}
.request-rep-form .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.request-rep-form .checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.request-rep-form .checkbox-item .form-checkbox {
  width: 26px;
  height: 26px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: -3px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #008567;
  background: #f1f7f5;
  position: relative;
}
.request-rep-form .checkbox-item .form-checkbox:checked {
  background: #f1f7f5;
  border: 1px solid #008567;
}
.request-rep-form .checkbox-item .form-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 10px;
  border: 2px solid #008567;
  border-left: 0;
  border-top: 0;
  transform: translate(-50%, -60%) rotate(45deg);
}
.request-rep-form .checkbox-item .checkbox-label {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  flex: 1;
}
.request-rep-form .checkbox-item .checkbox-label .form-link {
  color: #473192;
  text-decoration: underline;
  font-weight: 500;
  word-break: break-all;
}
.request-rep-form .checkbox-item .checkbox-label .form-link:hover {
  color: #6b2c91;
}
.request-rep-form .form-disclaimer {
  margin: 32px 0;
}
.request-rep-form .form-disclaimer p {
  margin-bottom: 20px;
}
.request-rep-form .form-disclaimer p:last-child {
  margin-bottom: 0;
}
.request-rep-form .form-disclaimer p .form-link {
  color: #473192;
  text-decoration: underline;
  word-break: break-all;
}
.request-rep-form .form-disclaimer p .form-link:hover {
  color: #6b2c91;
}
.request-rep-form .form-actions {
  text-align: center;
  margin-top: 32px;
}
.request-rep-form .form-actions .btn-submit {
  width: 100%;
  max-width: 353px;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  background-color: #473192;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.request-rep-form .form-actions .btn-submit:hover:not(:disabled) {
  background-color: var(--color-primary-dark, #47007a);
}
.request-rep-form .form-actions .btn-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.clinical-studies-section {
  padding-bottom: 54px;
}
.clinical-studies-section .clinical-studies-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}
.clinical-studies-section .clinical-studies-title sup {
  font-size: 36px;
  font-weight: 500;
  position: relative;
  top: 11px;
  line-height: 1;
}
.clinical-studies-section .clinical-studies-title sup:last-child {
  top: 2px;
  font-size: 26px;
  line-height: 1;
}
.clinical-studies-section .clinical-studies-subtitle {
  padding-top: 20px;
}
.clinical-studies-section .clinical-studies-subtitle sup {
  font-size: 32px;
  font-weight: 400;
  position: relative;
  top: 13px;
  line-height: 0.3;
}
.clinical-studies-section .clinical-studies-subtitle sup:last-child {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  top: -2px;
}
.clinical-studies-section .pharmacokinetic-studies-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary-dark);
  margin-top: 35px;
  margin-bottom: 44px;
  text-align: center;
}
.clinical-studies-section .pharmacokinetic-studies-title sup {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.clinical-studies-section .comparison-charts {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.clinical-studies-section .comparison-charts .chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 367px;
  width: 100%;
}
.clinical-studies-section .comparison-charts .chart-container .chart-header {
  margin-bottom: 16px;
  text-align: center;
  font-weight: 600;
}
.clinical-studies-section .comparison-charts .chart-container .chart-header .chart-title {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.clinical-studies-section .comparison-charts .chart-container .chart-header .chart-title.xtampza-title {
  color: var(--color-primary-dark);
  font-weight: 700;
}
.clinical-studies-section .comparison-charts .chart-container .chart-header .chart-subtitle {
  font-size: 14px;
  font-weight: 400;
}
.clinical-studies-section .comparison-charts .chart-container .chart-image {
  max-width: 100%;
  height: auto;
}
.clinical-studies-section .comparison-charts .chart-container .legend-container {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-left: 20px;
}
.clinical-studies-section .comparison-charts .vs-separator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-green);
  color: white;
  font-size: 24px;
  font-weight: bold;
  align-self: center;
  z-index: 1;
}
.clinical-studies-section .comparison-charts .vs-separator::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  top: -150px;
  bottom: -150px;
  background: linear-gradient(180deg, rgba(0, 133, 103, 0) 0%, #008567 50%, rgba(0, 133, 103, 0) 100%);
  z-index: -1;
}
.clinical-studies-section .clinical-studies-footnote {
  margin-top: 48px;
}
.clinical-studies-section .clinical-studies-footnote .fine-print {
  line-height: 1.3;
}
.clinical-studies-section .clinical-studies-footnote .warning-title,
.clinical-studies-section .clinical-studies-footnote .implications-title {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary-dark);
  text-align: left;
}
.clinical-studies-section .clinical-studies-footnote .implications-title {
  color: var(--color-green);
}
.clinical-studies-section .info-box {
  margin-top: 32px;
}

.physical-manipulation-section {
  background-color: #fff;
  padding: 0;
}
.physical-manipulation-section .visual-comparison {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3px;
  margin-inline: 18px;
  position: relative;
}
.physical-manipulation-section .visual-comparison .comparison-column {
  flex: 1;
  text-align: center;
  background-color: #f0ecf5;
  padding: 32px;
}
.physical-manipulation-section .visual-comparison .comparison-column:last-child {
  background-color: #f2f2f2;
}
.physical-manipulation-section .visual-comparison .comparison-column .comparison-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
.physical-manipulation-section .visual-comparison .comparison-column .comparison-title sup {
  font-size: 16px;
  font-weight: 500;
}
.physical-manipulation-section .visual-comparison .comparison-column .comparison-title.xtampza-title {
  color: var(--color-primary-dark);
}
.physical-manipulation-section .visual-comparison .comparison-column .comparison-title.oxycontin-title {
  color: var(--color-text-dark);
}
.physical-manipulation-section .visual-comparison .comparison-column .image-group {
  display: flex;
  justify-content: space-evenly;
  gap: 32px;
  margin-bottom: 16px;
}
.physical-manipulation-section .visual-comparison .comparison-column .image-group .image-container {
  text-align: center;
}
.physical-manipulation-section .visual-comparison .comparison-column .image-group .image-container img {
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}
.physical-manipulation-section .visual-comparison .comparison-column .image-group .image-container .image-label {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-primary-dark);
  text-transform: uppercase;
}
.physical-manipulation-section .visual-comparison .comparison-column .image-group .image-container .image-label.reformulated {
  color: #000;
}
.physical-manipulation-section .visual-comparison .comparison-column .comparison-description {
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  color: var(--color-text-dark);
}
.physical-manipulation-section .visual-comparison .vs-separator-alt {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background-color: white;
  color: var(--color-primary-dark);
  font-size: 24px;
  font-weight: 700;
}

.last-info-box-container {
  padding: 24px 18px;
}

.abuse-potential-section {
  padding: 72px 0 60px;
  background-color: #eef9f6;
}
.abuse-potential-section .abuse-potential-title {
  color: var(--color-primary-dark);
  line-height: 1;
  font-size: 40px;
}
.abuse-potential-section .abuse-potential-subtitle {
  color: #08745C;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
.abuse-potential-section .abuse-potential-subtitle sup {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  top: 0px;
  left: 2px;
}
.abuse-potential-section .abuse-potential-description {
  margin: 20px auto 0;
}
.abuse-potential-section .chart-summary-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-green);
  color: white;
  padding: 24px 80px 24px 160px;
  max-width: 100%;
}
.abuse-potential-section .chart-summary-banner .summary-percentage {
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  margin-right: 8px;
  margin-left: 60px;
}
.abuse-potential-section .chart-summary-banner .summary-percentage span {
  font-size: 68px;
}
.abuse-potential-section .chart-summary-banner .summary-text {
  font-size: 20px;
  line-height: 23px;
}
.abuse-potential-section .chart-summary-banner .summary-text sup {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  top: 4px;
  left: 2px;
  line-height: 0.4;
}

.comparison-button-container {
  margin-top: 50px;
  text-align: center;
}
.comparison-button-container .btn-primary {
  line-height: 1;
  padding: 15px 20px;
  width: 100%;
  max-width: 353px;
}

.bullet-points {
  list-style: disc;
  padding-top: 30px;
  padding-left: 20px;
  margin: 0 auto 64px;
}
.bullet-points li {
  margin-bottom: 16px;
  margin-left: 10px;
}

.abuse-warning-text {
  color: var(--color-primary-dark);
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 460px) {
  .abuse-warning-text {
    font-size: 20px;
    line-height: 22px;
  }
}

.nasal-abuse-section {
  padding: 60px 0;
  background-color: #f0ecf5;
}
@media (max-width: 460px) {
  .nasal-abuse-section {
    padding: 36px 0;
  }
}
.nasal-abuse-section .nasal-abuse-title {
  margin-bottom: 14px;
}
.nasal-abuse-section .nasal-abuse-title sup {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  top: 0px;
  left: 2px;
}
.nasal-abuse-section .nasal-abuse-description {
  line-height: 1.2;
}
.nasal-abuse-section .nasal-charts-container {
  margin-bottom: 44px;
}
.nasal-abuse-section .intranasal-admin-summary {
  margin: 0 auto 24px;
}
.nasal-abuse-section .comparison-button-container {
  margin-top: 44px;
}

@media (max-width: 1024px) {
  .clinical-studies-section .comparison-charts {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .clinical-studies-section .comparison-charts .vs-separator {
    margin: 16px 0;
  }
  .clinical-studies-section .comparison-charts .vs-separator::before {
    top: 50%;
    bottom: auto;
    left: -150px;
    right: -150px;
    width: auto;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(0, 133, 103, 0) 0%, #008567 50%, rgba(0, 133, 103, 0) 100%);
  }
  .clinical-studies-section .comparison-button-container {
    margin-top: 23px;
  }
  .clinical-studies-section .clinical-studies-footnote {
    margin-top: 16px;
  }
  .clinical-studies-section .clinical-studies-footnote .warning-title {
    font-size: 20px;
    line-height: 22px;
    margin-top: 16px;
  }
  .clinical-studies-section .clinical-studies-footnote .warning-title,
  .clinical-studies-section .clinical-studies-footnote .implications-title {
    line-height: 1.1;
  }
  .physical-manipulation-section .visual-comparison {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .physical-manipulation-section .visual-comparison .vs-separator-alt {
    top: 50%;
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 33px;
    line-height: 28px;
  }
}
@media (max-width: 760px) {
  .abuse-potential-section {
    align-items: center;
  }
  .abuse-potential-section .chart-summary-banner {
    padding: 12px 24px;
    gap: 8px;
  }
  .abuse-potential-section .chart-summary-banner .summary-percentage {
    font-size: 72px;
    margin-inline: 0;
  }
  .abuse-potential-section .chart-summary-banner .summary-text {
    font-size: 18px;
    line-height: 1;
  }
  .abuse-potential-section .chart-summary-banner .summary-text sup {
    font-size: 14px;
  }
}
@media (max-width: 460px) {
  .clinical-studies-section {
    padding-top: 32px;
  }
  .clinical-studies-section .clinical-studies-title {
    font-size: 30px;
    margin: 0;
  }
  .clinical-studies-section .clinical-studies-title sup {
    font-size: 30px;
  }
  .clinical-studies-section .clinical-studies-title sup:last-child {
    top: -2px;
    font-size: 18px;
    font-weight: 600;
  }
  .abuse-potential-section {
    padding-top: 53px;
  }
  .abuse-potential-section .abuse-potential-title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .abuse-potential-section .abuse-potential-subtitle {
    font-size: 25px;
    line-height: 25px;
  }
  .abuse-potential-section .drug-liking-chart .chart-labels {
    padding-top: 40px;
  }
  .abuse-potential-section .drug-liking-chart .chart-labels .row-label {
    width: 100px;
    min-width: 100px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    padding-right: 8px;
  }
  .abuse-potential-section .drug-liking-chart .x-axis-values .x-axis-value:nth-child(2n) {
    display: none;
  }
  .abuse-potential-section .drug-liking-chart .x-axis-titles .x-axis-title--center {
    display: none;
  }
  .abuse-potential-section .drug-liking-chart .chart-footer {
    padding-left: 100px;
  }
}
.drug-liking-chart {
  border: 1px solid var(--color-green-dark);
  margin: 32px auto 0;
  padding: 24px 36px;
}
.drug-liking-chart .chart-title {
  color: var(--color-primary-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  margin-bottom: 44px;
}
.drug-liking-chart .chart-title sub,
.drug-liking-chart .chart-title sup {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  top: 0px;
}
.drug-liking-chart .chart-body {
  display: flex;
  align-items: stretch;
}
.drug-liking-chart .chart-body .y-axis-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  font-size: 20px;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
}
.drug-liking-chart .chart-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-top: 20px;
  padding-bottom: 24px;
  margin-top: 40px;
  margin-left: 12px;
}
.drug-liking-chart .chart-labels .row-label {
  width: 150px;
  min-width: 150px;
  text-align: right;
  padding-right: 16px;
  font-weight: 700;
  line-height: 1.2;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.drug-liking-chart .chart-labels .row-label--placebo {
  color: #000;
  font-weight: 500;
}
.drug-liking-chart .chart-labels .row-label--xtampza-intact {
  color: var(--color-primary-dark);
}
.drug-liking-chart .chart-labels .row-label--xtampza-chewed {
  color: #9166af;
}
.drug-liking-chart .chart-labels .row-label--oxycodone-ir {
  color: var(--color-green);
  font-weight: 500;
}
.drug-liking-chart .chart-main-area {
  flex: 1;
  position: relative;
}
.drug-liking-chart .chart-content {
  flex: 1;
  position: relative;
  background-color: #fff;
}
.drug-liking-chart .x-axis {
  position: relative;
}
.drug-liking-chart .x-axis-titles {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}
.drug-liking-chart .x-axis-titles .x-axis-title {
  flex: 1;
  font-size: 16px;
  line-height: 1;
  color: #000;
}
.drug-liking-chart .x-axis-titles .x-axis-title--center {
  text-align: center;
}
.drug-liking-chart .x-axis-titles .x-axis-title--right {
  text-align: right;
}
.drug-liking-chart .x-axis-values {
  position: relative;
  height: 20px;
}
.drug-liking-chart .x-axis-values .x-axis-value {
  position: absolute;
  font-size: 14px;
  color: #000;
  transform: translateX(-50%);
}
.drug-liking-chart .x-axis-values .x-axis-value--0 {
  left: 0%;
  transform: translateX(0);
}
.drug-liking-chart .x-axis-values .x-axis-value--25 {
  left: 25%;
}
.drug-liking-chart .x-axis-values .x-axis-value--50 {
  left: 50%;
}
.drug-liking-chart .x-axis-values .x-axis-value--75 {
  left: 75%;
}
.drug-liking-chart .x-axis-values .x-axis-value--100 {
  right: 0;
  transform: translateX(0);
}
.drug-liking-chart .chart-grid .grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #eee;
  z-index: 0;
}
.drug-liking-chart .chart-grid .grid-line--25 {
  left: 25%;
}
.drug-liking-chart .chart-grid .grid-line--50 {
  left: 50%;
}
.drug-liking-chart .chart-grid .grid-line--75 {
  left: 75%;
}
.drug-liking-chart .chart-rows {
  position: relative;
  z-index: 1;
  padding-top: 24px;
  padding-bottom: 24px;
}
.drug-liking-chart .chart-row {
  display: flex;
  align-items: center;
  height: 44px;
  margin-bottom: 8px;
}
.drug-liking-chart .chart-row:last-child {
  margin-bottom: 0;
}
.drug-liking-chart .chart-row .row-bar {
  flex: 1;
  height: 2px;
  position: relative;
}
.drug-liking-chart .chart-row .row-bar .bar-start-circle {
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.drug-liking-chart .chart-row .row-bar--placebo, .drug-liking-chart .chart-row .row-bar--placebo .bar-start-circle, .drug-liking-chart .chart-row .row-bar--placebo .bar-point {
  background-color: #808285;
}
.drug-liking-chart .chart-row .row-bar--xtampza-intact, .drug-liking-chart .chart-row .row-bar--xtampza-intact .bar-start-circle, .drug-liking-chart .chart-row .row-bar--xtampza-intact .bar-point {
  background-color: var(--color-primary-dark);
}
.drug-liking-chart .chart-row .row-bar--xtampza-chewed, .drug-liking-chart .chart-row .row-bar--xtampza-chewed .bar-start-circle, .drug-liking-chart .chart-row .row-bar--xtampza-chewed .bar-point {
  background-color: #9166af;
}
.drug-liking-chart .chart-row .row-bar--oxycodone-ir, .drug-liking-chart .chart-row .row-bar--oxycodone-ir .bar-start-circle, .drug-liking-chart .chart-row .row-bar--oxycodone-ir .bar-point {
  background-color: var(--color-green);
}
.drug-liking-chart .chart-row .bar-point {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 500;
}
.drug-liking-chart .chart-footer {
  color: #000;
  font-size: 16px;
  line-height: 1;
  margin-top: 10px;
  padding-left: 180px;
}

@media (max-width: 760px) {
  .drug-liking-chart {
    padding: 20px;
  }
  .drug-liking-chart .chart-title {
    margin-bottom: 24px;
  }
  .drug-liking-chart .chart-body .y-axis-label {
    display: none;
  }
  .drug-liking-chart .chart-labels {
    padding-top: 40px;
    padding-bottom: 20px;
    margin-left: 0;
  }
  .drug-liking-chart .chart-row .row-label {
    width: 100px;
    min-width: 100px;
    font-size: 12px;
  }
  .drug-liking-chart .chart-footer {
    padding-left: 150px;
  }
}
@media (max-width: 460px) {
  .drug-liking-chart {
    padding: 20px 10px;
  }
  .drug-liking-chart .x-axis-titles .x-axis-title {
    font-size: 10px;
  }
  .drug-liking-chart .chart-labels {
    padding-top: 40px;
  }
  .drug-liking-chart .chart-labels .row-label {
    width: 100px;
    min-width: 100px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    padding-right: 8px;
  }
  .drug-liking-chart .x-axis-values .x-axis-value:nth-child(2n) {
    display: none;
  }
  .drug-liking-chart .x-axis-titles .x-axis-title--center {
    display: none;
  }
  .drug-liking-chart .chart-footer {
    padding-left: 100px;
  }
}
.modal-user-type-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(60, 60, 60, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-user-type-box {
  background: #fff;
  border-radius: 14px;
  padding: 63px 32px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
}

.modal-user-type-question {
  color: #1b9882;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 72px;
  line-height: 44px;
}

.modal-user-type-btns {
  display: flex;
  gap: 158px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

.modal-user-type-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 211px;
  padding: 12px 18px;
}

@media (max-width: 900px) {
  .modal-user-type-box {
    max-width: calc(100vw - 32px);
  }
  .modal-user-type-btns {
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .modal-user-type-box {
    padding: 32px 16px 32px 16px;
    min-width: 0;
  }
  .modal-user-type-question {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 32px;
  }
  .modal-user-type-btns {
    flex-direction: column;
    gap: 16px;
  }
  .modal-user-type-btn {
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
  }
}
.external-link-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.external-link-popup-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}
.external-link-popup-overlay .external-link-popup {
  background: #fff;
  width: 768px;
  max-width: 95vw;
  padding: 51px 48px;
  box-shadow: 7px 7px 7px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 0;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.3s, transform 0.3s;
}
.external-link-popup-overlay .external-link-popup--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.external-link-popup-overlay .external-link-popup__title {
  color: var(--color-green, #1b9882);
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 18.85px;
  margin: 0;
  width: 100%;
  margin-bottom: 59px;
}
.external-link-popup-overlay .external-link-popup__text {
  color: #000;
  font-size: 18px;
  line-height: 1.1;
  text-align: left;
  width: 100%;
  margin-bottom: 82px;
}
.external-link-popup-overlay .external-link-popup__actions {
  display: flex;
  width: 100%;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.external-link-popup-overlay .external-link-popup__actions .external-link-popup__button {
  font-family: var(--font-family-primary);
  font-weight: 700;
  width: 211px;
  height: 50px;
  padding: 0;
  font-size: 18px;
  border-radius: 6px;
  border: 1px solid #47007a;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.external-link-popup-overlay .external-link-popup__actions .external-link-popup__button--cancel {
  background: #808285;
  color: #fff;
  border-color: #808285;
}
.external-link-popup-overlay .external-link-popup__actions .external-link-popup__button--continue {
  background: #47007a;
  color: #fff;
}
@media (max-width: 600px) {
  .external-link-popup-overlay .external-link-popup {
    padding: 51px 32px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    margin: 32px;
  }
  .external-link-popup-overlay .external-link-popup__actions {
    flex-direction: column;
    gap: 16px;
  }
  .external-link-popup-overlay .external-link-popup__title {
    font-size: 40px;
  }
  .external-link-popup-overlay .external-link-popup__text {
    margin-bottom: 33px;
    font-size: 25px;
  }
}

.not-found {
  padding: 40px 20px;
}
.not-found h1 {
  font-size: 48px;
  margin-bottom: 24px;
}
.not-found p {
  font-size: 20px;
  margin-top: 12px;
}
.not-found ul {
  margin-top: 40px;
  list-style: disc;
  margin-left: 1em;
}
.not-found ul li {
  margin-bottom: 10px;
}
.not-found ul li a {
  font-size: 18px;
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}
.not-found ul li a:hover {
  color: var(--color-primary-dark);
}

.search-container {
  padding: 20px 0;
}
.search-container h1 {
  margin-bottom: 30px;
  text-align: center;
}
.search-container #search {
  margin-bottom: 30px;
}

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