h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.display-1 {
  font-size: 140px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.display-2 {
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.display-3 {
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.display-4 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.display-5 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.display-6 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.heading-1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

.heading-2 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}

.heading-3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.heading-4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.heading-5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.body-large {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
}

.body-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.container-fluid {
  width: 100%;
  max-width: 1116px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1200px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 500px) {
  .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.yellow {
  color: #F7EC6E;
}

.blue {
  color: #0084B9;
}

.purple {
  color: #743DBC;
}

.ltblue {
  color: #A5E5FF;
}

.bg-blue {
  background-color: #0084B9;
  color: #fff;
}

.purple-box {
  background: linear-gradient(90deg, #743DBC 0%, #401A6B 100%);
  color: #fff;
  padding: 20px;
  border-radius: 20px;
}
@media (max-width: 500px) {
  .purple-box {
    padding: 20px 15px;
  }
}

.lt-pill-shape {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  display: inline-block;
  font-family: "Gabarito", sans-serif;
}

.caps {
  text-transform: uppercase;
}

.cols {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .cols {
    flex-direction: column;
    gap: 15px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  font-family: "Gabarito", sans-serif;
  letter-spacing: -0.09px;
}
.btn.arrow::after {
  content: "";
  display: block;
  width: 23px;
  min-width: 23px;
  height: 18px;
  background: url("../../img/right-arrow-white.svg") no-repeat center center;
  background-size: contain;
  margin-left: 10px;
}
.btn.btn-primary {
  background-color: #743DBC;
  color: #fff;
}
.btn.btn-secondary {
  background-color: #fff;
  color: #743DBC;
  text-transform: unset;
}
.btn.btn-secondary.arrow::after {
  background: url("../../img/right-arrow-purple.svg") no-repeat center center;
}
.btn.btn-secondary.btn-blue {
  color: #0084B9;
}
.btn.btn-secondary.btn-blue.arrow::after {
  background: url("../../img/right-arrow-blue.svg") no-repeat center center;
}
.btn.btn-secondary.btn-back::after {
  transform: scaleX(-1);
  margin-left: 0;
  margin-right: 10px;
  order: -1;
}
.btn.btn-download::after {
  content: "";
  display: block;
  width: 17px;
  min-width: 17px;
  height: 17px;
  background: url("../../img/icon-download.svg") no-repeat center center;
  background-size: contain;
  margin-left: 10px;
}
@media (max-width: 500px) {
  .btn {
    padding: 10px 20px;
  }
}

.img-drop-shadow {
  filter: drop-shadow(-4px 4px 10px rgba(0, 0, 0, 0.41));
}

.hero-section.sub-page-hero-section {
  min-height: 295px;
  height: auto;
}
@media (max-width: 768px) {
  .hero-section.sub-page-hero-section .container-fluid {
    padding: 0;
  }
  .hero-section.sub-page-hero-section {
    height: auto;
  }
}
.hero-section.sub-page-hero-section .hero-section-txt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}
@media (max-width: 768px) {
  .hero-section.sub-page-hero-section .hero-section-txt {
    justify-content: center;
  }
}
.hero-section.sub-page-hero-section .hero-section-txt h1 {
  font-size: 48px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  .hero-section.sub-page-hero-section .hero-section-txt h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .hero-section.sub-page-hero-section .hero-section-txt {
    padding: 40px 20px;
    border-radius: 0 0 50px 50px;
    background-color: #743DBC;
    text-align: center;
    margin: 0;
  }
}
.hero-section.sub-page-hero-section .hero-section-img {
  height: 295px;
}
.hero-section.sub-page-hero-section .hero-section-img img {
  width: auto;
  max-width: none;
  height: 100%;
}
@media (max-width: 768px) {
  .hero-section.sub-page-hero-section .hero-section-img {
    display: none;
  }
}

.hero-section.sub-util-page-hero-section {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section.sub-util-page-hero-section .hero-section-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  font-weight: 700;
  text-align: center;
  font-size: 32px;
  line-height: 1;
}
.hero-section.sub-util-page-hero-section .hero-section-txt h1 {
  font-size: 48px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

ul.list-cols {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
ul.list-cols li {
  list-style-type: disc;
}
@media screen and (min-width: 768px) {
  ul.list-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
  }
}
ul.list-cols.purple-list li::marker {
  color: #743DBC;
}

ul.list-single {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
ul.list-single li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}
ul.list-single.purple-list li::marker {
  color: #743DBC;
}

.foot-note {
  position: relative;
}
.foot-note .ft {
  position: absolute;
  left: -6px;
}

.white-box {
  color: #0084B9;
  padding: 24px 64px;
  font-weight: 700;
  font-size: 28px;
  line-height: 33.6px;
  letter-spacing: -0.1px;
  background-color: #fff;
  border-radius: 20px;
  max-width: 928px;
  margin: auto;
}
@media (max-width: 768px) {
  .white-box {
    padding: 20px;
    text-align: center;
    line-height: 1.1;
  }
}
.white-box .copay-program-note {
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.1px;
  padding-top: 16px;
}

.blue-box {
  color: #ffffff;
  padding: 24px 48px;
  font-weight: 700;
  font-size: 28px;
  line-height: 33.6px;
  letter-spacing: -0.1px;
  background-color: #0084B9;
  border-radius: 20px;
  max-width: 975px;
  margin: auto;
}
@media (max-width: 768px) {
  .blue-box {
    padding: 20px;
    text-align: center;
    line-height: 1.1;
  }
}

@media (max-width: 768px) {
  .mobile-stretch-width {
    width: 100%;
  }
}

.page-404 {
  background-color: #0084B9;
}

.no-wrap {
  white-space: nowrap;
}

a[href^="tel:"] {
  color: inherit;
  text-decoration: inherit;
  font-weight: inherit;
}

.site-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-top {
  background-color: #0084B9;
  color: white;
  padding: 12px 0;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 999;
  position: relative;
  font-family: "Gabarito", sans-serif;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 580px) {
  .header-top-inner {
    flex-direction: column;
    gap: 8px;
  }
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-left p,
.header-top-right p {
  margin: 0;
}

.header-top-right-mobile {
  display: none;
}

.header-link {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
}
.header-link.header-link-hcp {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-link.header-link-hcp img {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.header-main {
  background-color: white;
  z-index: 999;
  position: relative;
}

.header-main-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.header-logo {
  flex-shrink: 0;
  padding: 10px 0;
}
.header-logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  gap: 2px;
}
.header-logo a img {
  height: auto;
  width: 173px;
}

.logo-tagline {
  font-size: 0.7rem;
  color: #0084B9;
  font-weight: 600;
  line-height: 1.2;
}

.header-nav {
  flex: 1;
  display: flex;
  align-self: stretch;
  align-items: center;
}
.header-nav #primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 100%;
}
.header-nav #primary-menu li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}
.header-nav #primary-menu li a {
  font-family: "Gabarito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0084B9;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 8px;
  border-bottom: 4px solid transparent;
  height: 100%;
  text-align: center;
  padding-top: 15px;
}
.header-nav #primary-menu li a:hover {
  border-bottom-color: #A5E5FF;
}
.header-nav #primary-menu li.current-menu-item a {
  color: #743DBC;
  border-bottom-color: #743DBC;
}
.header-nav #primary-menu li.current-menu-item a:hover {
  color: #743DBC;
  border-bottom-color: #743DBC;
}

.header-cta {
  flex-shrink: 0;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid #743DBC;
  background-color: white;
  color: #743DBC;
  font-family: "Gabarito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
@media (min-width: 769px) {
  .btn-cta {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #00A1E1 0%, #743DBC 100%) border-box;
  }
}
.btn-cta .btn-cta__icon {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: inherit;
}
.btn-cta .btn-cta__icon svg {
  width: 14px;
  height: auto;
  display: block;
}
.btn-cta:hover {
  background-color: #A5E5FF;
  border-color: #A5E5FF;
  color: #0084B9;
}
.btn-cta:hover .btn-cta__icon {
  color: #0084B9;
}
@media (min-width: 769px) {
  .btn-cta:hover {
    border: 2px solid #A5E5FF;
    background: #A5E5FF;
    color: #0084B9;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: 0;
  flex-shrink: 0;
}
.mobile-menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  height: 20px;
}
.mobile-menu-toggle .hamburger span {
  width: 100%;
  height: 2px;
  background-color: #0084B9;
  transition: all 0.3s ease;
  display: block;
}
.mobile-menu-toggle[aria-expanded=true] .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(1px, 6px);
}
.mobile-menu-toggle[aria-expanded=true] .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded=true] .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -10px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.is-open {
  display: block;
  opacity: 1;
}

.mobile-menu {
  display: none;
  width: 100%;
  background-color: white;
  z-index: 999;
  overflow: hidden;
  position: relative;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  gap: 30px;
  width: 100%;
}

.mobile-menu-nav {
  flex: 1;
}
.mobile-menu-nav #mobile-primary-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}
.mobile-menu-nav #mobile-primary-menu li {
  margin: 0;
  padding: 0;
  border-left: 12px solid transparent;
}
.mobile-menu-nav #mobile-primary-menu li a {
  font-family: "Gabarito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0084B9;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-menu-nav #mobile-primary-menu li.current-menu-item {
  border-left-color: #743DBC;
}

.mobile-menu-cta {
  margin-top: auto;
  margin: -20px -20px 0 -20px;
  padding: 20px;
  background-color: #0084B9;
}
.mobile-menu-cta .btn-cta {
  width: 100%;
  justify-content: center;
  border-color: white;
  color: white;
}

@media (max-width: 768px) {
  .header-main-inner {
    gap: 20px;
  }
  .header-top-inner {
    flex-direction: column;
    justify-content: center;
  }
  .header-nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    width: 100%;
  }
  .mobile-menu.is-open {
    display: flex;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
  body.mobile-menu-open header {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2147483646;
    overflow-y: scroll;
    background: transparent;
  }
  .header-top-right {
    display: none;
  }
  .header-top-right-mobile {
    display: flex;
    gap: 10px;
    background-color: #0084B9;
    color: #fff;
    padding: 12px 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .mobile-menu-nav #mobile-primary-menu li {
    text-align: center;
    padding: 30px 0;
  }
  .mobile-menu-cta .btn-cta {
    border: none;
    background-color: transparent;
    padding: 30px 0;
    font-size: 18px;
  }
}
.site-footer {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #743DBC 0%, #401A6B 100%);
  color: white;
  padding: 4rem 0;
  box-sizing: border-box;
}
.site-footer .footer-content {
  width: 100%;
  box-sizing: border-box;
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
.site-footer .footer-logo img {
  max-width: 200px;
  height: auto;
}
.site-footer .footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .site-footer .footer-links {
    gap: 0.2rem;
    flex-direction: column;
    margin-top: 20px;
  }
}
.site-footer .footer-link {
  color: white;
  text-decoration: underline;
  font-weight: bold;
  transition: opacity 0.2s;
}
.site-footer .footer-link:hover {
  opacity: 0.8;
}
.site-footer .footer-link--highlight {
  color: #ff1493;
  display: block;
  margin-top: 10px;
}
.site-footer .footer-bottom {
  padding-top: 2rem;
}
.site-footer .footer-disclaimer {
  margin: 0 0 1rem 0;
  font-size: 14px;
}
@media (max-width: 768px) {
  .site-footer .footer-disclaimer {
    font-size: 16px;
  }
}
.site-footer .footer-legal {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .site-footer .footer-legal {
    font-size: 16px;
  }
}

.pap-form-section {
  background: transparent;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .pap-form-section {
    padding: 4rem 15px;
  }
}
.pap-form-section h2 {
  font-family: "Gabarito", sans-serif;
  text-transform: unset;
}
.pap-form-section a {
  color: #fff;
  text-decoration: underline;
}
.pap-form-section .container {
  background: linear-gradient(135deg, #00A1E1 0%, #743DBC 100%);
  color: #fff;
  padding: 40px 20px;
}
@media screen and (min-width: 1024px) {
  .pap-form-section .container {
    padding: 80px 180px;
  }
}
.pap-form-section .container {
  border-radius: 24px;
  margin: auto;
}
.pap-form-section .pap-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pap-form-section .pap-form h2 {
  margin-bottom: 0.5rem;
}
.pap-form-section .pap-form p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
.pap-form-section .form-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.pap-form-section .form-label--radio, .pap-form-section .form-label--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-weight: 400;
  cursor: pointer;
}
.pap-form-section .form-label--radio input[type=radio],
.pap-form-section .form-label--radio input[type=checkbox], .pap-form-section .form-label--checkbox input[type=radio],
.pap-form-section .form-label--checkbox input[type=checkbox] {
  margin-top: 0.25rem;
  cursor: pointer;
}
.pap-form-section .form-label--radio input[type=radio], .pap-form-section .form-label--checkbox input[type=radio] {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.pap-form-section .form-label--radio input[type=radio]:checked, .pap-form-section .form-label--checkbox input[type=radio]:checked {
  background: radial-gradient(circle, #000 40%, #fff 40%);
  border-color: #ccc;
}
.pap-form-section .form-label--radio input[type=radio].omn-field-error, .pap-form-section .form-label--checkbox input[type=radio].omn-field-error {
  border: 2px solid #FF7070;
}
.pap-form-section .form-label--radio input[type=checkbox], .pap-form-section .form-label--checkbox input[type=checkbox] {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pap-form-section .form-label--radio input[type=checkbox].omn-field-error, .pap-form-section .form-label--checkbox input[type=checkbox].omn-field-error {
  border: 2px solid #FF7070;
  border-radius: 4px;
}
.pap-form-section .form-label--radio input[type=checkbox]:checked, .pap-form-section .form-label--checkbox input[type=checkbox]:checked {
  background-color: #ffffff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="rgb(128,128,128)"><path d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.pap-form-section .form-label--checkbox {
  gap: 1rem;
}
.pap-form-section input[type=email],
.pap-form-section input[type=text],
.pap-form-section input[type=tel],
.pap-form-section input[type=number],
.pap-form-section textarea {
  width: 100%;
  background-color: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  margin-bottom: 1rem;
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pap-form-section input[type=email]:focus,
.pap-form-section input[type=text]:focus,
.pap-form-section input[type=tel]:focus,
.pap-form-section input[type=number]:focus,
.pap-form-section textarea:focus {
  outline: none;
  border-color: #ccc;
  box-shadow: 0 0 0 3px rgba(200, 200, 200, 0.1);
}
.pap-form-section input[type=email].omn-field-error,
.pap-form-section input[type=text].omn-field-error,
.pap-form-section input[type=tel].omn-field-error,
.pap-form-section input[type=number].omn-field-error,
.pap-form-section textarea.omn-field-error {
  border-color: #FF7070;
  background-color: #fef2f2;
}
.pap-form-section input[type=email].omn-field-error:focus,
.pap-form-section input[type=text].omn-field-error:focus,
.pap-form-section input[type=tel].omn-field-error:focus,
.pap-form-section input[type=number].omn-field-error:focus,
.pap-form-section textarea.omn-field-error:focus {
  box-shadow: 0 0 0 3px rgba(255, 112, 112, 0.1);
}
.pap-form-section textarea {
  min-height: 100px;
  resize: vertical;
}
.pap-form-section .form-error-message {
  color: #ffC0C0;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 400;
  display: none;
  margin-left: 0.5rem;
}
.pap-form-section .form-error-message.show {
  display: inline;
}
@media (max-width: 768px) {
  .pap-form-section .form-error-message {
    font-weight: bold;
    font-style: normal;
  }
}
.pap-form-section .button {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.pap-form-section .button--secondary {
  background-color: #0084B9;
  color: #fff;
}
.pap-form-section .button--secondary:hover {
  background-color: #006699;
}
.pap-form-section .button--secondary:active {
  background-color: #004466;
}
.pap-form-section #omn-submit-btn {
  border-radius: 100px;
  background: #fff;
  color: #0084B9;
  text-align: center;
  font-family: "Gabarito", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.09px;
  text-transform: uppercase;
  min-width: 200px;
}
.pap-form-section #omn-submit-btn.is-incomplete {
  opacity: 0.6;
}
.pap-form-section .loader {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.pap-form-section .form-error-message[data-field=terms] {
  margin: 0;
  margin-top: 0.5rem;
  display: block !important;
}

.isi-content h2 {
  font-family: "Gabarito", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.1px;
  color: #000;
  margin-bottom: 8px;
  text-transform: unset;
}
.isi-content h2.blue-txt {
  font-size: 24px;
  font-weight: 600;
  color: #0084B9;
  padding-top: 12px;
}
.isi-content p {
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: #3a3a3a;
}
.isi-content p:not(:last-child),
.isi-content ul:not(:last-child),
.isi-content h2:not(:last-child) {
  margin-bottom: 8px;
}
.isi-content ul {
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: #3a3a3a;
  margin: 0;
  padding-left: 15px;
}
.isi-content ul li {
  margin-bottom: 0;
  list-style-type: disc;
}
.isi-content a.exit {
  color: #743DBC;
  text-decoration: underline;
  font-weight: 700;
}
@media (min-width: 769px) {
  .isi-content .list-cols {
    columns: 2;
    column-gap: 48px;
  }
}
.isi-content .list-cols-sides {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 10px;
  justify-content: space-around;
}
.isi-content .list-cols-sides ul {
  flex: 1;
}
.isi-content .list-cols-sides > ul + ul {
  margin-top: -6px;
}
@media (min-width: 769px) {
  .isi-content .list-cols-sides {
    flex-direction: row;
    gap: 48px;
  }
  .isi-content .list-cols-sides > ul + ul {
    margin-top: 0;
    padding-left: 120px;
  }
  .isi-content .list-cols-sides .list-cols-primary {
    width: max-content;
  }
}
.isi-content.isi-full-content {
  scroll-margin-top: 20px;
  padding: 0 0 44px;
}
.isi-content.isi-full-content .list-cols {
  gap: 0;
}
@media (max-width: 768px) {
  .isi-content.isi-full-content .isi-what-is-section .isi-expand-trigger {
    display: none;
  }
  .isi-content.isi-full-content .isi-what-is-section .isi-what-is-papzimeos {
    display: block !important;
  }
}
.isi-content.isi-preview-panel .isi-preview-header .isi-preview-content {
  display: flex;
  gap: 50px;
  padding: 0;
}
.isi-content.isi-preview-panel .isi-preview-header .isi-preview-content .isi-preview-content-col {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .isi-content.isi-preview-panel .isi-preview-header .isi-preview-content {
    flex-direction: column;
    gap: 15px;
  }
  .isi-content.isi-preview-panel .isi-preview-header .isi-preview-content .isi-preview-content-col:nth-child(2) p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.isi-preview-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 14px;
}
@media (max-width: 768px) {
  .isi-preview-panel {
    z-index: 10001;
  }
}
.isi-preview-panel .isi-expand-trigger {
  position: absolute;
  top: 80px;
  right: 14px;
  z-index: 3;
}
@media (min-width: 769px) {
  .isi-preview-panel .isi-expand-trigger {
    top: 20px;
    right: 20px;
  }
}
.isi-preview-panel .isi-expanded-content {
  display: none;
}
.isi-preview-panel.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.isi-preview-panel.is-expanded {
  padding-right: 0px;
  padding-left: 0px;
}
.isi-preview-panel.is-expanded .isi-preview-header {
  flex-shrink: 0;
  display: none;
}
.isi-preview-panel.is-expanded .isi-expanded-content {
  display: flex;
  flex: 1;
  max-height: calc(100vh - 330px);
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .isi-preview-panel.is-expanded .isi-expanded-content {
    max-height: calc(100vh - 110px);
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .isi-preview-panel.is-expanded .isi-expanded-content .isi-what-is-section {
    display: block;
    margin-bottom: 8px;
  }
  .isi-preview-panel.is-expanded .isi-expanded-content .isi-what-is-section h2 {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .isi-expand-trigger-mobile-close {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
  }
}

body.isi-overlay-active::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  pointer-events: none;
}
@media (max-width: 768px) {
  body.isi-overlay-active::before {
    z-index: 10000;
  }
}

body.isi-overlay-active {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .isi-mobile-text-header-secondary, .isi-mobile-text-header-primary {
    position: relative;
  }
  .isi-mobile-text-header-secondary h2:first-of-type, .isi-mobile-text-header-primary h2:first-of-type {
    padding-right: 30px;
  }
  .isi-mobile-text-header-secondary .isi-expand-trigger, .isi-mobile-text-header-primary .isi-expand-trigger {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.isi-mobile-text-header-primary {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .isi-what-is-papzimeos.is-text-hidden {
    display: none;
  }
  .isi-what-is-papzimeos {
    margin-bottom: 20px;
  }
}

/**
 * Back to Top Button
 * Mobile-only button that scrolls page to top
 */
.back-to-top-container {
  display: none;
  width: 100%;
}
@media (max-width: 768px) {
  .back-to-top-container {
    display: block;
  }
}

.back-to-top {
  width: 100%;
  background-color: #0084B9;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.back-to-top svg {
  width: 23px;
  height: 23px;
}

body.home .hero-section {
  background-color: #B8C8CC;
}
@media screen and (min-width: 768px) {
  body.home .hero-section {
    height: 580px;
    display: flex;
    background-image: url("../../img/home-hero.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
  }
}
@media screen and (max-width: 968px) {
  body.home .hero-section {
    background-size: cover;
  }
}
body.home .hero-section .container-fluid {
  display: flex;
  align-items: center;
  justify-content: end;
  max-width: 810px;
}
@media (max-width: 768px) {
  body.home .hero-section .hero-section-txt {
    margin: 10px auto;
  }
}
body.home .hero-section .hero-section-txt {
  width: 100%;
  max-width: 500px;
  color: #fff;
  font-family: "Gabarito", sans-serif;
  position: relative;
}
body.home .hero-section .hero-section-txt h1 {
  font-size: 61px;
}
body.home .hero-section .hero-section-txt h1 > span {
  display: block;
}
body.home .hero-section .hero-section-txt h1 > span:first-child {
  font-size: 30px;
  font-weight: 700;
}
body.home .hero-section .hero-section-txt h1 > span:nth-child(2) {
  font-weight: 900;
  color: #A5E5FF;
  line-height: 0.9;
}
body.home .hero-section .hero-section-txt h1 > span:nth-child(3) {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 30px;
  letter-spacing: -0.1px;
}
body.home .hero-section .hero-section-txt p {
  font-size: 21px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: -0.1px;
}
body.home .hero-section .hero-section-txt p.not-patient {
  font-size: 18px;
}
body.home .hero-section .hero-section-txt .not-patient {
  position: absolute;
  bottom: -84px;
  left: -82px;
}
@media screen and (max-width: 768px) {
  body.home .hero-section .hero-section-txt .not-patient {
    position: unset;
    padding-top: 12px;
  }
}
@media (min-width: 767px) and (max-width: 800px) {
  body.home .hero-section .hero-section-txt {
    padding: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 768px) {
  body.home .hero-section {
    background-color: #0084B9;
  }
  body.home .hero-section .container-fluid {
    padding: 0;
    flex-direction: column;
  }
  body.home .hero-section .hero-section-txt {
    padding: 20px 20px 0;
  }
}
body.home .home-content-section-cta {
  position: relative;
  min-height: 394px;
  font-family: "Gabarito", sans-serif;
}
body.home .home-content-section-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  height: 350px;
  width: 60px;
  background-image: url("../../img/home-content-section-cta-graph.png");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  body.home .home-content-section-cta::after {
    left: 10px;
    transform: none;
    bottom: auto;
    top: 30px;
    height: 650px;
    width: 58px;
    background-position: center top;
    background-image: url("../../img/home-content-section-cta-graph-mobile.svg");
  }
}
@media screen and (min-width: 768px) {
  body.home .home-content-section-cta .cols {
    gap: 120px;
  }
  body.home .home-content-section-cta .cols > div:first-child {
    width: 45%;
    position: relative;
    padding-bottom: 30px;
  }
  body.home .home-content-section-cta .cols > div:first-child .not-patient {
    position: absolute;
    right: 20px;
    bottom: 23px;
  }
}
@media screen and (max-width: 768px) {
  body.home .home-content-section-cta .cols > div:first-child img {
    position: relative;
    z-index: 3;
    margin-left: -27px;
    width: calc(100% + 54px);
    max-width: none;
  }
}
body.home .home-content-section-cta .cols > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 84px;
}
@media (max-width: 768px) {
  body.home .home-content-section-cta .cols {
    flex-direction: column-reverse;
  }
  body.home .home-content-section-cta .cols > div:last-child {
    padding-right: 0;
    padding-left: 70px;
  }
}
@media screen and (min-width: 768px) {
  body.home .home-content-section-cta h2 {
    padding-top: 60px;
  }
}
body.home .home-content-section-cta h2 .yellow {
  display: inline-block;
  font-size: 43px;
}
body.home .home-content-section-info {
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 768px) {
  body.home .home-content-section-info .home-rrp-recommendation {
    line-height: 24px;
    font-weight: 600;
    letter-spacing: -0.1px;
    margin-top: 8px;
    margin-bottom: 16px;
  }
}
body.home .home-content-section-info .cols > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.home .home-content-section-info .cols > div:nth-child(2) {
  max-width: 375px;
  position: relative;
}
body.home .home-content-section-info .cols > div:nth-child(2) .not-patient {
  position: absolute;
  left: -140px;
  bottom: 23px;
}
@media (max-width: 768px) {
  body.home .home-content-section-info .cols > div:nth-child(2) .not-patient {
    display: none;
  }
}
body.home .home-content-section-footer {
  font-family: "Gabarito", sans-serif;
}
body.home .home-content-section-footer .home-support-contact {
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.1px;
}
body.home .home-content-section-footer .btn.btn-secondary.btn-blue.arrow {
  padding: 17px 22px;
}

@media (min-width: 768px) {
  body.why-papzimeos .hero-section.sub-page-hero-section {
    min-height: 325px;
  }
  body.why-papzimeos .hero-section.sub-page-hero-section .hero-section-img {
    min-height: 325px;
  }
}
body.why-papzimeos .hero-section h1 {
  font-family: "Gabarito", sans-serif;
}
body.why-papzimeos .hero-section p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.1px;
  padding-top: 8px;
}
body.why-papzimeos .hero-section .hero-section-txt {
  position: relative;
}
@media screen and (max-width: 768px) {
  body.why-papzimeos .hero-section .hero-section-txt .not-patient {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  body.why-papzimeos .hero-section .hero-section-txt .not-patient {
    display: inline-block;
    z-index: 2;
    position: absolute;
    bottom: -32px;
    left: -376px;
  }
}
body.why-papzimeos .hero-section .not-patient {
  position: absolute;
  bottom: -50px;
  left: -126px;
}
@media screen and (max-width: 768px) {
  body.why-papzimeos .hero-section .not-patient {
    bottom: auto;
    top: 57%;
  }
}
body.why-papzimeos .why-top-callout .purple-box .mobile-callout-photo {
  width: calc(100% + 59px);
  max-width: none;
  margin-left: -28px;
  margin-top: -10px;
  position: relative;
}
body.why-papzimeos .why-top-callout .purple-box .mobile-callout-photo p {
  position: absolute;
  bottom: -3px;
  right: 30px;
  font-size: 14px;
}
@media (min-width: 769px) {
  body.why-papzimeos .why-top-callout .purple-box .image-col {
    margin-top: 120px;
  }
}
body.why-papzimeos .why-top-callout .purple-box .image-col {
  min-width: 390px;
}
body.why-papzimeos .why-top-callout .purple-box .image-col .not-patient {
  width: 100%;
  text-align: right;
  padding-right: 20px;
  position: relative;
  top: -10px;
}
body.why-papzimeos .why-top-callout .patients-finished-note {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.1px;
}
@media (max-width: 950px) {
  body.why-papzimeos .why-top-callout .cols {
    flex-direction: column;
  }
}
body.why-papzimeos .time-line {
  padding-left: 10px;
  position: relative;
  margin-top: 20px;
}
body.why-papzimeos .time-line > div {
  position: relative;
  padding-left: 20px;
  margin-left: 100px;
}
@media (max-width: 950px) {
  body.why-papzimeos .time-line > div {
    margin-left: 80px;
  }
}
body.why-papzimeos .time-line > div:not(:last-child) {
  border-left: 4px solid #0084B9;
  padding-bottom: 40px;
}
body.why-papzimeos .time-line > div::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: #0084B9;
  border-radius: 50%;
  z-index: 1;
}
body.why-papzimeos .time-line > div:last-child, body.why-papzimeos .time-line > div:first-child {
  border-left: 4px transparent;
  background: linear-gradient(to bottom, transparent 50%, #0084B9 50%) left/4px 32px repeat-y;
}
body.why-papzimeos .time-line > div:last-child::before, body.why-papzimeos .time-line > div:first-child::before {
  left: -8px;
}
body.why-papzimeos .time-line > div .timeline-label {
  display: block;
  position: absolute;
  left: -125px;
  top: -11px;
  width: 95px;
  font-size: 28px;
  font-weight: 700;
  text-align: right;
  color: #fff;
  font-family: "Gabarito", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 950px) {
  body.why-papzimeos .time-line > div .timeline-label {
    text-align: center;
    width: 60px;
    font-size: 20px;
    left: -85px;
  }
}
body.why-papzimeos .time-line > div h2, body.why-papzimeos .time-line > div h3 {
  font-family: "Gabarito", sans-serif;
  line-height: 1;
}
body.why-papzimeos .time-line > div h2 {
  position: relative;
  top: -11px;
}
@media (max-width: 950px) {
  body.why-papzimeos .time-line {
    padding-left: 0;
  }
  body.why-papzimeos .time-line > div {
    padding-left: 30px;
  }
  body.why-papzimeos .time-line > div::before {
    left: -11px;
  }
}
body.why-papzimeos .why-seventy-callout .container-fluid {
  padding-top: 30px;
  padding-bottom: 30px;
}
body.why-papzimeos .why-seventy-callout h3 {
  font-family: "Gabarito", sans-serif;
}
body.why-papzimeos .why-seventy-callout p {
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.1px;
  padding-top: 8px;
}
body.why-papzimeos .why-rrp-callout {
  padding: 48px 0;
}
body.why-papzimeos .why-rrp-callout h3 {
  font-family: "Gabarito", sans-serif;
}
body.why-papzimeos .why-rrp-callout .container-fluid .cols > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 990px) {
  body.why-papzimeos .why-rrp-callout .container-fluid .cols > div .not-patient {
    position: absolute;
    bottom: 10px;
    left: 15px;
  }
}
@media (max-width: 768px) {
  body.why-papzimeos .why-rrp-callout .container-fluid .cols > div .not-patient {
    display: none;
  }
}
body.why-papzimeos .why-side-effects-callout {
  padding-top: 48px;
  padding-bottom: 48px;
}
body.why-papzimeos .why-side-effects-callout .container-fluid .white-box {
  padding: 24px;
  max-width: 1116px;
}
@media (max-width: 768px) {
  body.why-papzimeos .why-side-effects-callout .container-fluid .white-box {
    text-align: left;
  }
}
body.why-papzimeos .why-side-effects-callout .container-fluid .white-box h2 {
  font-family: "Gabarito", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.1px;
  text-transform: unset;
}
@media screen and (min-width: 768px) {
  body.why-papzimeos .why-side-effects-callout .container-fluid .white-box ul.purple-list {
    grid-auto-flow: column;
    grid-template-rows: repeat(6, auto);
  }
}
body.why-papzimeos .why-side-effects-callout .container-fluid .white-box p, body.why-papzimeos .why-side-effects-callout .container-fluid .white-box ul {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.1px;
  color: #3A3A3A;
}
body.why-papzimeos .why-side-effects-callout .container-fluid .white-box ul li {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  body.why-papzimeos .why-side-effects-callout .container-fluid .white-box ul li {
    margin: 7px 0;
  }
}
body.why-papzimeos .why-side-effects-callout .container-fluid .white-box .purple {
  color: #743DBC;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.1px;
}
body.why-papzimeos .why-side-effects-callout .container-fluid .white-box a {
  color: #0084B9;
  font-weight: 700;
  text-decoration: underline;
}
body.why-papzimeos .why-side-effects-callout .container-fluid .white-box a[href^="tel:"] {
  color: inherit;
  text-decoration: inherit;
  font-weight: inherit;
}

body.starting-papzimeos .hero-section.sub-page-hero-section,
body.starting-papzimeos .starting-top-callout,
body.starting-papzimeos .footer-element {
  font-family: "Gabarito", sans-serif;
}
@media screen and (max-width: 768px) {
  body.starting-papzimeos .hero-section.sub-page-hero-section {
    min-height: auto;
    height: auto;
  }
}
body.starting-papzimeos .hero-section.sub-page-hero-section .hero-section-img {
  position: relative;
}
body.starting-papzimeos .hero-section.sub-page-hero-section .hero-section-img .not-patient {
  position: absolute;
  bottom: -6px;
  left: -105px;
}
body.starting-papzimeos .starting-body-copy {
  font-family: "Myriad Pro", sans-serif;
}
body.starting-papzimeos .starting-dose-footnote {
  margin: 0;
  font-family: "Myriad Pro", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: #fff;
  padding-bottom: 32px;
}
@media (min-width: 980px) {
  body.starting-papzimeos .starting-top-callout .white-box {
    padding: 24px 164px;
  }
}
body.starting-papzimeos .graph-details p, body.starting-papzimeos .graph-details ul {
  font-family: "Myriad Pro", sans-serif;
}

@media screen and (max-width: 768px) {
  body.access-and-affordability .hero-section.sub-page-hero-section {
    min-height: auto;
    height: auto;
  }
}
body.access-and-affordability .hero-section.sub-page-hero-section .hero-section-txt {
  font-family: "Gabarito", sans-serif;
}
body.access-and-affordability .hero-section.sub-page-hero-section .hero-section-txt p {
  line-height: 24px;
  letter-spacing: -0.01px;
}
@media screen and (min-width: 769px) {
  body.access-and-affordability .hero-section.sub-page-hero-section .hero-section-txt {
    display: flex;
    flex-direction: column;
    justify-content: end;
    flex: 1;
    align-items: flex-start;
    gap: 60px;
    margin: 0;
  }
}
body.access-and-affordability .hero-section.sub-page-hero-section .hero-section-img {
  position: relative;
}
body.access-and-affordability .hero-section.sub-page-hero-section .hero-section-img .not-patient {
  position: absolute;
  bottom: -6px;
  left: -105px;
}
@media screen and (max-width: 980px) {
  body.access-and-affordability .hero-section.sub-page-hero-section .hero-section-img .not-patient {
    bottom: -46px;
    left: 50px;
  }
}
body.access-and-affordability .access-and-affordability-callout {
  font-family: "Gabarito", sans-serif;
}
body.access-and-affordability .access-and-affordability-callout .copay-program-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px 64px;
  max-width: 928px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  color: #0084B9;
}
@media (max-width: 768px) {
  body.access-and-affordability .access-and-affordability-callout .copay-program-box {
    padding: 20px;
  }
}
body.access-and-affordability .access-and-affordability-callout .copay-program-title {
  margin: 0;
  font-family: "Gabarito", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.1px;
  color: #0084B9;
}
body.access-and-affordability .access-and-affordability-callout h3 {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  body.access-and-affordability .access-and-affordability-callout .access-callout-subhead {
    line-height: 33px;
  }
}
@media screen and (min-width: 768px) {
  body.access-and-affordability .access-and-affordability-callout .access-callout-body {
    line-height: 28px;
  }
}
body.access-and-affordability .access-and-affordability-callout .copay-program-note {
  margin: 0;
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: #0084B9;
}
body.access-and-affordability .access-and-affordability-callout .cols {
  gap: 30px;
}
body.access-and-affordability .access-and-affordability-callout .cols > div:first-child {
  max-width: 620px;
}
@media screen and (min-width: 768px) {
  body.access-and-affordability .access-and-affordability-callout .cols > div:last-child {
    align-self: center;
  }
}
body.access-and-affordability .access-and-affordability-callout .cols > div:last-child {
  position: relative;
}
body.access-and-affordability .access-and-affordability-callout .cols > div:last-child .not-patient {
  position: absolute;
  right: 0;
  bottom: 0px;
}
body.access-and-affordability .cols-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 728px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  body.access-and-affordability .cols-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
body.access-and-affordability .cols-3 .col img {
  max-width: 115px;
  margin-bottom: 10px;
}
body.access-and-affordability .cols-3 .col {
  padding: 16px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body.access-and-affordability .txtcallout {
  max-width: 928px;
  margin: 0 auto;
}
body.access-and-affordability .enrollm-callout {
  font-family: "Gabarito", sans-serif;
}
@media (max-width: 1132px) {
  body.access-and-affordability .enrollm-callout {
    padding: 0 10px;
  }
}
body.access-and-affordability .enrollm-callout {
  padding-bottom: 40px;
}
body.access-and-affordability .enrollm-callout:last-of-type {
  padding-bottom: 40px;
}
body.access-and-affordability .enrollm-callout .purple-box {
  padding: 30px;
}
@media (max-width: 500px) {
  body.access-and-affordability .enrollm-callout .purple-box {
    padding: 15px 10px;
  }
}
@media (min-width: 769px) {
  body.access-and-affordability .enrollm-callout .purple-box .cols > div:first-child {
    width: 52%;
  }
  body.access-and-affordability .enrollm-callout .purple-box .cols > div:last-child {
    width: 48%;
  }
}
body.access-and-affordability .enrollm-callout .purple-box .stacked-items {
  padding-left: 10px;
  position: relative;
}
body.access-and-affordability .enrollm-callout .purple-box .stacked-items > div {
  position: relative;
  padding-left: 20px;
}
body.access-and-affordability .enrollm-callout .purple-box .stacked-items > div:not(:last-child) {
  border-left: 4px solid #0084B9;
  padding-bottom: 20px;
}
body.access-and-affordability .enrollm-callout .purple-box .stacked-items > div:last-child {
  border-left: 4px solid transparent;
}
body.access-and-affordability .enrollm-callout .purple-box .stacked-items > div::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: #0084B9;
  border-radius: 50%;
  z-index: 1;
}
body.access-and-affordability .enrollm-callout .purple-box .stacked-items > div > p, body.access-and-affordability .enrollm-callout .purple-box .stacked-items > div > h3 {
  position: relative;
  top: -11px;
}
body.access-and-affordability .enrollm-callout .purple-box .sep {
  display: none;
}
@media (max-width: 768px) {
  body.access-and-affordability .enrollm-callout .purple-box .sep {
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: 30px 0;
    display: block;
  }
}
@media (max-width: 768px) {
  body.access-and-affordability .enrollm-callout .purple-box .items-center {
    justify-content: center;
  }
}

.hero-section-txt {
  margin: 80px 0;
}

html {
  height: 100%;
}

body {
  font-family: "Myriad Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

#page {
  display: flex;
  flex-direction: column;
  flex: 1;
}

#content {
  flex: 1;
}

#colophon {
  flex-shrink: 0;
}

.footer-element {
  background-color: #dbe1e6;
  text-align: center;
  padding: 70px 0;
  text-transform: uppercase;
  color: #743DBC;
}
.footer-element .btn.btn-primary {
  background-color: #743DBC;
  color: #fff;
  margin-top: 20px;
}
.footer-element .btn.btn-primary.arrow::after {
  background: url("../../img/right-arrow-white.svg") no-repeat center center;
}

/**
 * Gate Modal Mixins - DRY styling
 */
/**
 * Residents Gate Modal
 * Modal overlay shown on page load to verify resident access
 */
.residents-gate-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}
.residents-gate-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.residents-gate-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.residents-gate-modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.residents-gate-modal-content h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #0084B9;
  font-family: "Gabarito", sans-serif;
}
.residents-gate-modal-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
@media (max-width: 480px) {
  .residents-gate-modal-content {
    padding: 30px 20px;
    width: 95%;
  }
  .residents-gate-modal-content h2 {
    font-size: 20px;
  }
  .residents-gate-modal-content p {
    font-size: 14px;
  }
}

.residents-gate-modal-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.residents-gate-modal-buttons button {
  border: 2px solid #0084B9;
}
@media (max-width: 480px) {
  .residents-gate-modal-buttons {
    flex-direction: column;
  }
  .residents-gate-modal-buttons button {
    width: 100%;
  }
}
@media (max-width: 585px) {
  .residents-gate-modal-buttons {
    flex-direction: column;
  }
  .residents-gate-modal-buttons button {
    width: 100%;
  }
}

/**
 * HCP Gate Modal
 * Modal overlay shown on click to verify healthcare professional access
 */
.hcp-gate-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}
.hcp-gate-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.hcp-gate-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.hcp-gate-modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hcp-gate-modal-content h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #0084B9;
  font-family: "Gabarito", sans-serif;
}
.hcp-gate-modal-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
@media (max-width: 480px) {
  .hcp-gate-modal-content {
    padding: 30px 20px;
    width: 95%;
  }
  .hcp-gate-modal-content h2 {
    font-size: 20px;
  }
  .hcp-gate-modal-content p {
    font-size: 14px;
  }
}

.hcp-gate-modal-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hcp-gate-modal-buttons button {
  border: 2px solid #0084B9;
}
@media (max-width: 480px) {
  .hcp-gate-modal-buttons {
    flex-direction: column;
  }
  .hcp-gate-modal-buttons button {
    width: 100%;
  }
}
.hcp-gate-modal-buttons .btn {
  text-transform: uppercase;
  letter-spacing: -0.1px;
}

.hcp-gate-modal-content h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.1px;
  text-transform: uppercase;
}
.hcp-gate-modal-content p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: #3a3a3a;
}

/**
 * Exit Leaving Modal
 * Confirms navigation off-site for links marked with `.exit-modal`.
 */
.exit-leaving-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}
.exit-leaving-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.exit-leaving-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.exit-leaving-modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.exit-leaving-modal-content h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #0084B9;
  font-family: "Gabarito", sans-serif;
}
.exit-leaving-modal-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
@media (max-width: 480px) {
  .exit-leaving-modal-content {
    padding: 30px 20px;
    width: 95%;
  }
  .exit-leaving-modal-content h2 {
    font-size: 20px;
  }
  .exit-leaving-modal-content p {
    font-size: 14px;
  }
}
.exit-leaving-modal-content h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.09px;
  text-transform: uppercase;
}
.exit-leaving-modal-content p {
  font-family: "Myriad Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.1px;
  color: #3a3a3a;
}

.exit-leaving-modal-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.exit-leaving-modal-buttons button {
  border: 2px solid #0084B9;
}
@media (max-width: 480px) {
  .exit-leaving-modal-buttons {
    flex-direction: column;
  }
  .exit-leaving-modal-buttons button {
    width: 100%;
  }
}
@media (max-width: 585px) {
  .exit-leaving-modal-buttons {
    flex-direction: column;
  }
  .exit-leaving-modal-buttons button {
    width: 100%;
  }
}
.exit-leaving-modal-buttons .btn {
  text-transform: uppercase;
}

.not-patient {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.1px;
  font-family: "Myriad Pro", sans-serif;
}

.ot-sdk-show-settings {
  background-color: transparent !important;
  padding: 0 !important;
  font-family: "Myriad Pro", sans-serif !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  font-size: 16px !important;
  font-variation-settings: normal !important;
  font-weight: 700 !important;
  height: 24px !important;
  line-height: 24px !important;
}

.purple-link {
  color: #743DBC;
  text-decoration: underline;
  font-weight: 700;
}

.br-400 {
  display: none;
}
@media (max-width: 520px) {
  .br-400 {
    display: inline;
  }
}
/*# sourceMappingURL=main.css.map */
