@charset "UTF-8";
/* Fonts partial - Google Fonts imports */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
/* You can add additional @font-face rules here if you self-host fonts. */
/* Header and navigation styles extracted from style.scss */
.site-header {
  /* Make header background transparent (site chrome only) */
  background: transparent;
  color: white;
  padding: 0rem;
}

.site-header .primary-menu {
  background-color: #102850;
}

/* Primary menu - horizontal, white, uppercase, simple top navigation */
.site-header .primary-menu ul,
.site-header .primary-menu .menu {
  list-style: none;
  margin: 0;
  padding: 8px 20px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}

.site-header .primary-menu a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  text-align: center;
}

.site-header .primary-menu a:hover,
.site-header .primary-menu a:focus {
  opacity: 0.85;
}

@media (max-width: 820px) {
  .site-header .primary-menu ul,
  .site-header .primary-menu .menu {
    margin: 0;
    gap: 0rem;
    justify-content: center;
  }
  .site-header .primary-menu ul li,
  .site-header .primary-menu .menu li {
    flex: 1;
  }
  .site-header .primary-menu ul li a,
  .site-header .primary-menu .menu li a {
    width: 100%;
    text-align: center;
  }
  .site-header .primary-menu a {
    text-align: center;
  }
}
/* Menu partial for menu-specific styling (hcp_menu) */
.primary-menu {
  height: 40px;
}
.primary-menu a {
  padding: 10px !important;
}

.menu-hcp-menu, .menu-patient-menu {
  display: flex;
  align-items: center;
  gap: 10rem;
  padding: 1rem;
  justify-content: space-between;
}

.menu-hcp-logo img, .menu-patient-logo img {
  height: 100px;
  width: auto;
  margin-left: 100px;
}

.menu-hcp-links, .menu-patient-links {
  display: flex;
}

.menu-hcp-links ul, .menu-patient-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  max-width: 830px;
  align-items: center;
  height: 60px;
}
.menu-hcp-links ul li, .menu-patient-links ul li {
  flex: 1;
  height: 60px;
}

.menu-patient-links ul {
  max-width: 745px;
}

.menu-hcp-links a, .menu-patient-links a {
  color: #102850;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  display: block;
  text-align: center;
  height: 60px;
  position: relative;
}

#block-tlando-theme-hcptopnavigation ul, #block-tlando-theme-patienttopnavigation ul {
  height: 40px;
  padding: 0;
}

#block-tlando-theme-hcptopnavigation ul li, #block-tlando-theme-patienttopnavigation ul li {
  font-size: 11px;
}

.menu-hcp-links .is-active, .menu-patient-links .is-active {
  color: #e1251b; /* red */
}
.menu-hcp-links .is-active::after, .menu-patient-links .is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -42px; /* sit just inside/below the link */
  height: 10px;
  width: 100%;
  background: #e1251b;
  border-radius: 12px 12px 0 0;
  display: block;
}

#block-tlando-theme-hcptopnavigation .is_active, #block-tlando-theme-patienttopnavigation .is_active {
  background-color: #ffffff;
  padding: 0px 10px;
}
#block-tlando-theme-hcptopnavigation .is_active::before, #block-tlando-theme-hcptopnavigation .is_active::after, #block-tlando-theme-patienttopnavigation .is_active::before, #block-tlando-theme-patienttopnavigation .is_active::after {
  background-color: #fff;
  height: 5px;
  content: "";
  display: block;
  width: 100%;
  max-width: 110px;
  padding: -15px 0 0 0;
}
#block-tlando-theme-hcptopnavigation .is_active a, #block-tlando-theme-patienttopnavigation .is_active a {
  padding: 5px 0;
  color: #e1251b; /* red */
  display: block;
}

.menu-toggle {
  display: none;
  border: 0;
  cursor: pointer;
  width: 24px; /* bar width */
  height: 3px; /* bar thickness (middle bar) */
  padding: 6px;
  align-items: center;
  justify-content: center;
  position: relative; /* required for pseudo elements */
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 50;
  background-color: #ffffff;
}

/* use ::before to draw top and bottom bars via box-shadow, ::after used for X animation */
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 3px;
  background: #102850;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  will-change: transform, opacity, box-shadow;
}

/* create the top and bottom bars as shadows of ::before (middle bar is the element itself) */
.menu-toggle::before {
  box-shadow: 0 -8px 0 #102850, 0 8px 0 #102850;
}

/* ::after is hidden initially and will form the second line of the X when open */
.menu-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* transform to X when open */
.menu-open .menu-toggle {
  background: transparent; /* hide middle bar when open */
}

.menu-open .menu-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: none;
}

.menu-open .menu-toggle::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-toggle .bar {
  display: block;
  width: 24px;
  height: 3px;
  background: #102850;
  margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* transform to X when open */
.menu-open .menu-toggle .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle .bar:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 820px) {
  .menu-patient-menu, .menu-hcp-menu {
    gap: 1rem;
  }
  .menu-patient-menu ul li, .menu-hcp-menu ul li {
    border-bottom: 1px solid #102850;
    text-align: center;
  }
  .menu-hcp-logo img, .menu-patient-logo img {
    height: auto;
    width: 150px;
    max-width: 150px;
    margin-left: 0px;
  }
  /* ensure wrapper is positioned so absolute panel can drop under the toggle */
  .menu-hcp-menu, .menu-patient-menu {
    position: relative;
  }
  /* hide horizontal links and make them an absolute full-width panel on mobile */
  .menu-hcp-links, .menu-patient-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%; /* drop below the header/toggle */
    max-width: 100%;
    padding: 0.75rem 1rem;
    background: #fff;
    box-shadow: 0 6px 18px rgba(16, 40, 80, 0.08);
    z-index: 40;
    flex-direction: column;
    transform-origin: top;
    transform: translateY(-6px);
    opacity: 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
    height: 500px;
  }
  /* show when wrapper has menu-open */
  .menu-open .menu-hcp-links, .menu-open .menu-patient-links {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  /* show the toggle button */
  .menu-toggle {
    display: inline-flex;
  }
  /* make list items stack nicely on mobile */
  .menu-hcp-links ul, .menu-patient-links ul {
    flex-direction: column;
    gap: 0;
  }
  .menu-hcp-links a, .menu-patient-links a {
    padding: 0.5rem 0;
    display: block;
  }
  .menu-hcp-links .is-active, .menu-patient-links .is-active {
    color: #e1251b; /* red */
  }
  .menu-hcp-links .is-active::after, .menu-patient-links .is-active::after {
    display: none;
  }
  .menu-hcp-menu, .menu-patient-menu {
    padding: 8px;
    gap: 8px;
  }
}
@media (max-width: 1080px) {
  .menu-hcp-logo img, .menu-patient-logo img {
    margin-left: 10px !important;
    height: 70px;
    max-width: none !important;
  }
  .menu-hcp-links ul, .menu-patient-links ul {
    max-width: 800px;
  }
  .menu-hcp-links .is-active::after, .menu-patient-links .is-active::after {
    bottom: -28px; /* sit just inside/below the link */
  }
}
.paragraph--banner {
  position: relative;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  height: 404px;
}
.paragraph--banner .banner__field--field-top-heading {
  position: absolute;
  top: 50px;
  width: 100%;
}
.paragraph--banner .banner__field--field-top-heading div {
  margin: 0 auto;
  display: block;
  font-size: 20px;
  font-weight: 500;
  max-width: 560px;
  width: 100%;
}
.paragraph--banner .banner__field--field-body-heading-1 {
  position: absolute;
  top: 145px;
  width: 100%;
}
.paragraph--banner .banner__field--field-body-heading-1 div {
  margin: 0 auto;
  display: block;
  font-size: 35px;
  font-weight: 600;
  max-width: 825px;
  width: 100%;
  line-height: 1.25em;
}
.paragraph--banner .banner__field--field-body-heading-1 div .bigger {
  font-size: 55px;
  font-weight: 900;
}
.paragraph--banner .banner__field--field-body-heading-1 div .bigger sup {
  font-size: 24px;
}
.paragraph--banner .banner__field--field-bottom-heading {
  position: absolute;
  bottom: 80px;
  width: 100%;
}
.paragraph--banner .banner__field--field-bottom-heading div {
  margin: 0 auto;
  display: block;
  text-align: left;
  font-size: 42px;
  font-weight: 900;
  max-width: 73%;
  line-height: 1em;
  text-transform: uppercase;
}

.card-holder {
  position: relative;
  min-height: 360px;
  max-width: 1170px;
  width: 90%;
  margin: 0 auto;
}
.card-holder .section-content {
  position: absolute;
  top: -60px;
  width: 100%;
}

.paragraph--type--card {
  max-width: 360px;
  background-color: #002D5D;
  border-radius: 20px;
  color: white;
  padding: 40px;
  height: 300px;
}
.paragraph--type--card .field-name--field-icon {
  max-width: 60px;
}
.paragraph--type--card .field-name--field-title {
  font-size: 28px;
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 10px;
}
.paragraph--type--card .field-name--field-text {
  font-size: 16px;
  line-height: 1.5;
}
.paragraph--type--card .field-name--field-url a {
  margin-top: 20px;
  background: #F2CE5B;
  border-radius: 20px;
  padding: 10px 30px 10px 30px;
  color: #002D5D;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  display: block;
  text-align: center;
  font-size: 14px;
}
.paragraph--type--card .field-name--field-url a:hover {
  background: #fff;
  color: #002D5D;
}
@media (max-width: 1080px) {
  .paragraph--type--card .field-name--field-title {
    font-size: 23px;
  }
}

.paragraph--type--container-row .container-content .field-name--field-paragraphs {
  padding: 20px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
}

@media (max-width: 820px) {
  .paragraph--type--container-row .container-content .field-name--field-paragraphs {
    flex-direction: column;
    padding: 10px 0;
  }
  .reverse-mobile .field-name--field-paragraphs {
    flex-direction: column-reverse !important;
    gap: 70px !important;
  }
}
.site-footer {
  background: #102850;
  color: #fff;
  padding: 1rem;
  border-top: 10px solid #E1251B;
  font-size: 14px;
}
.site-footer img {
  max-width: 200px;
}
.site-footer ul {
  list-style-type: none;
}
.site-footer ul li {
  margin-bottom: 10px;
}
.site-footer ul a {
  color: #fff;
  text-decoration: none;
}
.site-footer .right {
  text-align: right;
}
.site-footer .row {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-footer .row div {
  flex: 1 1 200px;
  margin: 10px;
}
.site-footer .row #terms p a {
  display: block;
  margin: 10px 0;
  color: #fff;
  text-decoration: none;
}
.site-footer #sub_footer .container {
  border-bottom: 1px solid #57A6B2;
}
.site-footer #sub_footer .container .row {
  padding-bottom: 10px;
}
.site-footer #sub_footer .container .row .left {
  margin-top: 60px;
}
.site-footer #sub_footer .container .row ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 820px) {
  .site-footer .right {
    text-align: center;
    margin-top: 10px !important;
  }
  .site-footer .left {
    text-align: center;
    margin-top: 30px !important;
  }
}
@media (max-width: 576px) {
  .site-footer .left {
    text-align: center;
    margin-top: 0px !important;
  }
  .site-footer #terms p {
    text-align: left !important;
  }
}

.modal {
  max-width: 600px;
  margin: 0 auto;
}

/* Overlay: full-screen greyed background and centering */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-in-out;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 720px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
}

.modal__body {
  padding: 24px;
  overflow: auto;
  flex: 1 1 auto;
}

.modal__footer {
  padding: 12px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid #eee;
}

@media (max-width: 480px) {
  .modal {
    max-width: 100%;
    border-radius: 6px;
  }
  .modal__body {
    padding: 18px;
  }
  .modal__close {
    right: 8px;
    top: 8px;
  }
}
.paragraph--patient-callout {
  background-image: url("/themes/custom/tlando_theme/images/patient-callout-bg.png");
  background-size: cover;
  margin-bottom: 60px;
}
.paragraph--patient-callout .container {
  display: flex;
  flex-direction: row;
}
.paragraph--patient-callout .container .field-name--field-icon {
  margin-top: 40px;
  margin-right: -40px;
  z-index: 0;
}
.paragraph--patient-callout .container .field-name--field-icon img {
  width: 85px !important;
  height: 85px !important;
  max-width: 85px !important;
}
.paragraph--patient-callout .container .field-name--field-media-image {
  margin-top: 20px;
  margin-bottom: -40px;
}
.paragraph--patient-callout .container .field-name--field-media-image img {
  width: auto;
  max-height: 350px;
}
.paragraph--patient-callout .container .field-name--field-text {
  color: #fff;
  font-size: 36px;
  max-width: 48%;
  padding: 0px 0 0 80px;
  display: flex;
  align-items: center;
}

@media (max-width: 820px) {
  .paragraph--patient-callout .container {
    display: flex;
    flex-direction: column !important;
  }
  .paragraph--patient-callout .container .field-name--field-icon {
    display: none;
  }
  .paragraph--patient-callout .container .field-name--field-image {
    display: none;
  }
  .paragraph--patient-callout .container .field-name--field-text {
    max-width: 100% !important;
    margin-top: 0px;
    padding: 20px;
  }
}
.paragraph--type--accordion {
  background-color: #E2F0F2;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}
.paragraph--type--accordion .field-name--field-title {
  color: #D4111B;
  font-size: 28px;
  font-weight: 900;
  padding: 20px;
}
.paragraph--type--accordion .field-name--field-text {
  padding: 0 20px;
}
.paragraph--type--accordion .field-name--field-paragraphs {
  background-color: #ffffff;
}
.paragraph--type--accordion .paragraph--type--accordion-item {
  padding: 20px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}
.paragraph--type--accordion .paragraph--type--accordion-item .field-name--field-title {
  color: #072648;
  font-size: 18px;
  font-weight: normal;
  padding: 5px;
  /* Icon for accordion items */
  position: relative;
  padding-left: 54px; /* room for the icon */
}
.paragraph--type--accordion .paragraph--type--accordion-item .field-name--field-title::before {
  content: "+";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #072648; /* blue circle */
  color: #F3CF5B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.paragraph--type--accordion .paragraph--type--accordion-item {
  /* Hide item content by default; show when the item has .is-open */
}
.paragraph--type--accordion .paragraph--type--accordion-item .field-name--field-text p {
  display: none;
  transition: max-height 240ms ease, opacity 240ms ease;
  opacity: 0;
}
.paragraph--type--accordion .paragraph--type--accordion-item.is-open .field-name--field-text p {
  display: block;
  opacity: 1;
  font-size: 18px;
}
.paragraph--type--accordion .paragraph--type--accordion-item.is-open .field-name--field-title::before {
  content: "-";
  color: #072648; /* blue circle */
  background-color: #F3CF5B;
}

/* ISI block: starts fixed to the bottom, then becomes static when its
     normal document position scrolls into view. JS toggles .is-fixed / .is-static */
#block-tlando-theme-isi, #block-tlando-theme-isipatient {
  background: #fff;
  width: 100%;
  font-size: 15px;
  line-height: 1.25;
  color: #262626;
  z-index: 999;
}
#block-tlando-theme-isi .isi-fixed-header, #block-tlando-theme-isipatient .isi-fixed-header {
  padding: 20px;
  background: #002D5D;
  color: #fff;
}
#block-tlando-theme-isi .isi-fixed-header div, #block-tlando-theme-isi .isi-fixed-header a, #block-tlando-theme-isipatient .isi-fixed-header div, #block-tlando-theme-isipatient .isi-fixed-header a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
#block-tlando-theme-isi .isi-fixed-header .isi-header, #block-tlando-theme-isi .isi-fixed-header #isi-expand, #block-tlando-theme-isi .isi-fixed-header #isi-collapse, #block-tlando-theme-isipatient .isi-fixed-header .isi-header, #block-tlando-theme-isipatient .isi-fixed-header #isi-expand, #block-tlando-theme-isipatient .isi-fixed-header #isi-collapse {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
#block-tlando-theme-isi .isi-fixed-header .isi-header img, #block-tlando-theme-isi .isi-fixed-header #isi-expand img, #block-tlando-theme-isi .isi-fixed-header #isi-collapse img, #block-tlando-theme-isipatient .isi-fixed-header .isi-header img, #block-tlando-theme-isipatient .isi-fixed-header #isi-expand img, #block-tlando-theme-isipatient .isi-fixed-header #isi-collapse img {
  max-width: 16px;
  display: inline;
}
#block-tlando-theme-isi h4, #block-tlando-theme-isipatient h4 {
  color: #002D5D;
}
#block-tlando-theme-isi a, #block-tlando-theme-isipatient a {
  color: #262626;
  font-weight: bold;
}
#block-tlando-theme-isi.is-fixed, #block-tlando-theme-isipatient.is-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 20%;
}
#block-tlando-theme-isi.is-static, #block-tlando-theme-isipatient.is-static {
  position: static;
  height: auto;
  overflow: visible;
  margin-bottom: 40px;
}
#block-tlando-theme-isi.is-expanded, #block-tlando-theme-isipatient.is-expanded {
  height: 100% !important;
  overflow: scroll;
}

/* Placeholder that reserves space in the flow while the visible block is fixed */
.isi-placeholder {
  display: block;
  width: 100%;
  height: 0; /* JS will set an explicit height */
}

@media (max-width: 820px) {
  #block-tlando-theme-isi, #block-tlando-theme-isipatient {
    font-size: 13px;
  }
  #block-tlando-theme-isi .isi-fixed-header, #block-tlando-theme-isipatient .isi-fixed-header {
    padding: 10px 0px;
  }
  #block-tlando-theme-isi.is-fixed, #block-tlando-theme-isipatient.is-fixed {
    height: 165px;
  }
}
.node--hcp-homepage .paragraph--banner {
  height: 620px;
}
.node--hcp-homepage .banner__field--field-bottom-heading {
  position: absolute;
  bottom: 110px;
  width: 100%;
  max-width: 100%;
}
.node--hcp-homepage .banner__field--field-bottom-heading div {
  margin: 0 auto;
  display: block;
  font-size: 24px;
  font-weight: 600;
  max-width: 655px;
  width: 100%;
  line-height: 1.1em;
  text-align: center;
  text-transform: none;
}
.node--hcp-homepage .field-name--field-paragraphs div {
  flex: 1 1 0;
  min-width: 0;
}
.node--hcp-homepage .paragraph--type--card {
  box-sizing: border-box;
  padding: 20px;
  height: 380px;
  margin-bottom: 10px;
}
.node--hcp-homepage .paragraph--type--card .field-name--field-title {
  max-width: 80%;
  text-transform: uppercase;
}
.node--hcp-homepage .paragraph--type--card .field-name--field-text {
  height: 100px;
}
@media (max-width: 1080px) {
  .node--hcp-homepage .paragraph--type--card .field-name--field-title {
    max-width: 100%;
    text-transform: uppercase;
  }
}
@media (max-width: 820px) {
  .node--hcp-homepage .paragraph--type--card {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .node--hcp-homepage .paragraph--type--card .field-name--field-title {
    max-width: 100%;
    text-transform: uppercase;
  }
  .node--hcp-homepage .paragraph--type--card .field-name--field-text {
    height: auto;
  }
  .node--hcp-homepage .card-holder {
    min-height: 880px;
  }
}
@media (max-width: 576px) {
  .node--hcp-homepage .paragraph--banner .banner__field--field-top-heading {
    top: 0px;
  }
  .node--hcp-homepage .paragraph--banner .banner__field--field-top-heading div {
    max-width: 100%;
    font-size: 15px;
    padding: 10px;
  }
  .node--hcp-homepage .paragraph--banner {
    background-image: url("/themes/custom/tlando_theme/images/home-hero-m-new.png") !important;
  }
  .node--hcp-homepage .paragraph--banner .banner__field--field-body-heading-1 div {
    font-size: 18px;
    max-width: 100%;
  }
  .node--hcp-homepage .paragraph--banner .banner__field--field-body-heading-1 {
    top: 80px;
  }
  .node--hcp-homepage .bigger {
    margin-top: 1rem;
    font-size: 32px !important;
    line-height: 1.1em;
  }
  .node--hcp-homepage .paragraph--banner .banner__field--field-bottom-heading {
    bottom: 120px;
  }
  .node--hcp-homepage .paragraph--banner .banner__field--field-bottom-heading div {
    padding: 10px;
    max-width: 100%;
    font-size: 20px;
  }
  .node--hcp-homepage .paragraph--banner .banner__field--field-bottom-heading div .big {
    font-size: 36px;
    line-height: 34px;
    font-weight: 800;
  }
}

.node--about-tlando .tlando-bottle {
  width: 650px;
  max-width: 650px;
}
.node--about-tlando .text {
  margin-top: 40px;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 15.1px 0px rgba(0, 0, 0, 0.12);
  flex-basis: 549px;
  z-index: 2;
  margin-left: -75px;
}
.node--about-tlando .text .top {
  padding: 20px 44px 16px;
}
.node--about-tlando .text .bottom {
  background: #EEF6F7;
  border-radius: 0 0 10px 10px;
  padding: 29px 14px 42px 44px;
}
.node--about-tlando .text .bottom p {
  font-weight: 700;
}
.node--about-tlando .text p {
  color: #262626;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.057px;
}
.node--about-tlando h2 {
  color: #2F9EAF;
  font-size: 27px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.108px;
  text-transform: uppercase;
  max-width: 364px;
}
.node--about-tlando .icons > div {
  display: flex;
  justify-content: space-between;
}
.node--about-tlando .icons .group {
  display: flex;
  align-items: center;
  flex-basis: 50%;
  flex-direction: row;
  gap: 20px;
}
.node--about-tlando .icons .top, .node--about-tlando .icons .bottom {
  padding: 0;
}
.node--about-tlando .icons .group .no-g span {
  background: #E1251B;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3.427px;
  font-family: "Montserrat", "sans-serif";
  font-size: 13.708px;
  font-style: normal;
  font-weight: 800;
  line-height: 37.697px;
  letter-spacing: 0.097px;
  padding: 5.5px;
  margin-top: 0;
}
.node--about-tlando .icons .group .no-g p {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.057px;
  margin-bottom: 0;
}
.node--about-tlando #block-tlando-theme-isi.is-static {
  margin-top: 80px;
}
@media (max-width: 1280px) {
  .node--about-tlando .tlando-bottle {
    width: 475px !important;
    max-width: 475px !important;
  }
}
@media (max-width: 1080px) {
  .node--about-tlando .tlando-bottle {
    width: 375px !important;
    max-width: 375px !important;
  }
}
@media (max-width: 820px) {
  .node--about-tlando .text {
    margin-left: 0 !important;
  }
  .node--about-tlando .tlando-bottle {
    width: 100% !important;
    max-width: 100% !important;
  }
  .node--about-tlando .text .bottom, .node--about-tlando .text .top {
    padding: 9px 14px 12px 14px;
  }
  .node--about-tlando .icons .group {
    flex-direction: column;
  }
  .node--about-tlando .icons .group .no-g p {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .node--about-tlando .reverse-mobile .field-name--field-paragraphs {
    flex-direction: column-reverse !important;
    gap: 20px !important;
  }
}

.node--dosing--features .checklist strong {
  text-decoration: underline;
}
.node--dosing--features .text-left {
  z-index: 1;
  background: #002D5D;
  border-radius: 10px;
  box-shadow: 0px 0px 15.1px 0px rgba(0, 0, 0, 0.12);
  padding: 40px 55px;
}
.node--dosing--features h2 {
  color: #2F9EAF;
  font-size: 27px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.108px;
  text-transform: uppercase;
}
.node--dosing--features .checklist {
  margin-top: 20px;
}
.node--dosing--features .checklist div {
  display: flex;
  align-items: start;
}
.node--dosing--features .checklist div:not(:last-of-type) {
  border-bottom: 1px solid #186686;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.node--dosing--features .checklist p {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  max-width: 449px;
}
.node--dosing--features .checklist img {
  max-width: 30px;
  margin-right: 15px;
}
.node--dosing--features .text.yellow-bg {
  border-radius: 10px;
  background: #F2CF5B;
  box-shadow: 0px 0px 15.1px 0px rgba(0, 0, 0, 0.12);
  z-index: 0;
  min-height: 250px;
  padding: 70px 55px 105px 55px;
  margin-top: 40px;
  margin-left: -75px;
  max-width: 585px;
}
.node--dosing--features .text.yellow-bg img {
  max-width: 75px;
}
.node--dosing--features .text.yellow-bg p {
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.108px;
  font-family: "Montserrat", sans-serif;
  margin-top: 21px;
  margin-bottom: 0;
  color: #002D5D;
}
.node--dosing--features .dosing-capsules p {
  font-size: 19px;
}
@media (max-width: 820px) {
  .node--dosing--features .text.yellow-bg {
    margin-left: 0px;
    max-width: none;
  }
}
@media (max-width: 576px) {
  .node--dosing--features .text-left {
    width: 72% !important;
    max-width: 72% !important;
  }
}

.node--efficacy--safety .image img {
  border-radius: 10px;
}
.node--efficacy--safety .text {
  padding: 27px 40px 27px 44px;
  min-height: 342px;
  display: flex;
  flex-direction: column;
}
.node--efficacy--safety .text {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 15.1px 0px rgba(0, 0, 0, 0.12);
  flex-basis: 549px;
  z-index: 2;
  margin-left: -75px;
  margin-top: 40px;
  max-height: 590px;
}
.node--efficacy--safety .blue-bg {
  background: #002D5D !important;
}
.node--efficacy--safety .blue-bg-holder img {
  max-width: 250px;
}
.node--efficacy--safety .blue-bg-holder h2 {
  color: #2F9EAF;
  font-size: 27px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.108px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-right: 80px;
}
.node--efficacy--safety .blue-bg-holder p {
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.108px;
  color: #fff;
  margin-top: 0;
}
.node--efficacy--safety .light-blue-bg {
  background-color: #EEF6F7 !important;
}
.node--efficacy--safety .light-blue-bg img {
  width: 645px;
  max-width: 645px;
}
.node--efficacy--safety .light-blue-bg p:first-of-type {
  margin-top: 86px;
}
.node--efficacy--safety .light-blue-bg p {
  padding: 0px 60px;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.108px;
  color: #002D5D;
}
.node--efficacy--safety .light-blue-bg .red {
  color: #e1251b;
}
.node--efficacy--safety .light-blue-bg .ref-block {
  margin-top: 0px;
  padding-bottom: 40px;
}
.node--efficacy--safety .light-blue-bg .ref-block p:first-of-type {
  margin-top: 0px;
}
.node--efficacy--safety .blue-section-2 .row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin: 0 auto;
  justify-content: center;
  padding: 0 120px;
}
.node--efficacy--safety .blue-section-2 .icn {
  width: 40px;
  max-width: 40px;
}
.node--efficacy--safety .blue-section-2 p {
  color: #fff;
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.057px;
  margin-bottom: 0;
  margin-top: 0;
}
@media (max-width: 1080px) {
  .node--efficacy--safety .light-blue-bg img {
    width: 450px;
    max-width: 450px;
  }
  .node--efficacy--safety .light-blue-bg p {
    padding: 0px 40px !important;
  }
  .node--efficacy--safety .light-blue-bg p:first-of-type {
    margin-top: 0px;
  }
}
@media (max-width: 820px) {
  .node--efficacy--safety .light-blue-bg {
    padding-top: 20px;
  }
  .node--efficacy--safety .light-blue-bg img {
    width: 100%;
    max-width: 100%;
  }
  .node--efficacy--safety .light-blue-bg p {
    padding: 0px 20px !important;
  }
  .node--efficacy--safety .light-blue-bg p:first-of-type {
    margin-top: 20px;
  }
  .node--efficacy--safety .image {
    max-width: 100%;
    width: 100%;
  }
  .node--efficacy--safety .blue-section-2 .row {
    flex-direction: column;
    padding: 20px 5px;
  }
  .node--efficacy--safety .text {
    margin-left: 0px;
    max-height: none;
  }
}
@media (max-width: 576px) {
  .node--efficacy--safety .reverse-mobile .field-name--field-paragraphs {
    gap: 20px !important;
  }
  .node--efficacy--safety .gap-0 .field-name--field-paragraphs {
    gap: 0 !important;
  }
  .node--efficacy--safety .text.blue-bg {
    max-width: 78% !important;
    width: 78% !important;
  }
  .node--efficacy--safety h2 {
    padding-right: 0px !important;
  }
}

.node--savings--support .img {
  max-width: 545px;
  width: 545px;
}
.node--savings--support .img img {
  border-radius: 10px;
}
.node--savings--support .text.blue-bg {
  max-width: 549px;
  min-width: 300px;
  width: 100%;
}
.node--savings--support .text {
  padding: 27px 40px 27px 44px;
  min-height: 342px;
  display: flex;
  flex-direction: column;
}
.node--savings--support .text {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 15.1px 0px rgba(0, 0, 0, 0.12);
  flex-basis: 549px;
  z-index: 2;
  margin-left: -75px;
  margin-top: 40px;
  max-height: 590px;
}
.node--savings--support .blue-bg {
  background: #002D5D !important;
}
.node--savings--support .top-blue img {
  max-width: 80px;
}
.node--savings--support .top-blue p {
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.108px;
  color: #fff;
}
.node--savings--support .savings-program {
  min-height: 477px;
}
.node--savings--support .savings-program .img {
  max-width: 304px;
}
.node--savings--support .savings-program .flex-iso {
  display: flex;
  margin-top: 30px;
  margin-left: 40px;
  gap: 40px;
}
.node--savings--support .savings-program .flex-iso div > p {
  color: #F2CE5B;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.108px;
  margin: 20px;
}
.node--savings--support .savings-program .flex-iso h2 {
  margin: 10px;
}
.node--savings--support .savings-program .flex-iso img {
  width: 76px;
  max-width: 76px;
}
.node--savings--support .savings-program .flex-iso .network-box {
  padding: 16px 24px;
  border-radius: 10px;
}
.node--savings--support .savings-program .flex-iso .network-box p, .node--savings--support .savings-program .flex-iso .network-box ul li {
  color: #002D5D;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0.057px;
  margin-bottom: 6px;
  padding-bottom: 0px;
}
.node--savings--support .savings-program .flex-iso .yellow-bg {
  background: #F2CE5B;
}
.node--savings--support .terms-block {
  padding-top: 80px;
  padding-bottom: 40px;
}
.node--savings--support .terms-block p {
  font-size: 17px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.057px;
}
.node--savings--support .light-blue-bg {
  background: #EEF6F7 !important;
}
.node--savings--support .scripts-section {
  padding: 40px 0px;
}
.node--savings--support .scripts-section .card-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto 20px;
}
.node--savings--support .scripts-section .card-wrapper .card {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 15.1px 0 rgba(0, 0, 0, 0.12);
  width: 359px;
  height: 326px;
  padding: 40px 41px;
}
.node--savings--support .scripts-section .card-wrapper .card img {
  max-width: 76px;
}
.node--savings--support .scripts-section .card-wrapper .text {
  flex-basis: 22%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  box-shadow: unset;
  margin-left: 0;
  display: flex;
  flex-direction: row;
}
.node--savings--support .scripts-section .card-wrapper .text span {
  display: flex;
  align-items: center;
  max-width: 50px;
}
.node--savings--support .scripts-section .card-wrapper .text span.or {
  margin: 0 10px;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.108px;
  color: #2F9EAF;
}
.node--savings--support .scripts-section .pharmacy-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.node--savings--support .scripts-section .pharmacy-title h3 {
  color: #2F9EAF;
  font-size: 27px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.108px;
  text-transform: uppercase;
  margin: 0 12px;
  padding-top: 10px;
}
.node--savings--support .scripts-section .pharmacy-list {
  display: flex;
  justify-content: center;
}
.node--savings--support .scripts-section .pharmacy-list div {
  width: 33%;
  flex-basis: 33%;
  text-align: center;
}
.node--savings--support .scripts-section .pharmacy-list.long {
  flex-wrap: wrap;
  justify-content: center;
}
.node--savings--support .scripts-section .pharmacy-list.long div p {
  padding: 0 0 0 0px;
}
.node--savings--support .img.bottle img {
  margin-bottom: -130px !important;
}
@media (max-width: 1080px) {
  .node--savings--support .top-blue p {
    font-size: 22px !important;
  }
  .node--savings--support #bottle-holder .container-content .field-name--field-paragraphs {
    flex-direction: column-reverse !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .node--savings--support .card-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto 20px;
  }
  .node--savings--support .card-wrapper .card {
    width: 359px;
    height: 426px !important;
  }
}
@media (max-width: 820px) {
  .node--savings--support .img {
    max-width: 100% !important;
    width: 100% !important;
    margin: auto !important;
  }
  .node--savings--support .img.bottle {
    max-width: 277px !important;
    width: 100% !important;
    margin: auto !important;
    margin-bottom: 0px !important;
  }
  .node--savings--support .text.blue-bg {
    max-width: none !important;
    width: unset !important;
    min-width: unset !important;
  }
  .node--savings--support .text {
    margin-left: 0px;
    max-height: none;
  }
  .node--savings--support .top-blue p {
    font-size: 22px !important;
  }
  .node--savings--support .card-wrapper {
    display: block !important;
    align-items: center;
    width: 100%;
    margin: 0 auto 20px;
  }
  .node--savings--support .card-wrapper .card {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 0 15.1px 0 rgba(0, 0, 0, 0.12);
    width: 89% !important;
    height: auto !important;
    padding: 40px 41px;
  }
  .node--savings--support .card-wrapper .card img {
    max-width: 76px;
  }
  .node--savings--support .card-wrapper .text {
    min-height: 40px !important;
    margin-top: 0px;
  }
  .node--savings--support #bottle-holder .container-content .field-name--field-paragraphs {
    padding-bottom: 0 !important;
  }
  .node--savings--support .terms-block {
    padding-top: 40px;
  }
  .node--savings--support .savings-program {
    max-height: none !important;
  }
}
@media (max-width: 576px) {
  .node--savings--support .img {
    max-width: 100% !important;
    width: 100% !important;
  }
  .node--savings--support .card-wrapper {
    margin: 0 !important;
  }
  .node--savings--support .card-wrapper {
    width: 100% !important;
  }
  .node--savings--support .card-wrapper .card {
    width: 78% !important;
    height: auto !important;
  }
  .node--savings--support .card-wrapper .text {
    min-height: 80px !important;
  }
  .node--savings--support .pharmacy-list {
    flex-direction: column;
  }
  .node--savings--support .pharmacy-list p {
    padding-left: 0 !important;
  }
  .node--savings--support .pharmacy-list.long {
    margin: 0px !important;
  }
  .node--savings--support .pharmacy-list div {
    flex-basis: 100% !important;
    width: 100% !important;
  }
  .node--savings--support .pharmacy-list div p {
    padding: 0 0 0 20px;
  }
  .node--savings--support .savings-program .flex-iso {
    flex-direction: column;
    margin-top: 0px !important;
    margin-left: 0px !important;
    gap: 0px !important;
  }
  .node--savings--support .savings-program .flex-iso div img {
    margin-bottom: 0px !important;
  }
  .node--savings--support #bottle-holder .container-content .field-name--field-paragraphs img {
    padding-top: 30px;
  }
  .node--savings--support .text {
    margin-top: 0px !important;
  }
  .node--savings--support .reverse-mobile .field-name--field-paragraphs {
    flex-direction: column-reverse !important;
    gap: 20px !important;
  }
}

.node--patient-homepage .paragraph--banner {
  height: 620px;
  max-height: 620px;
}
.node--patient-homepage .paragraph--banner .banner__field--field-top-heading div {
  max-width: 1200px;
  width: 75%;
}
.node--patient-homepage .paragraph--banner .banner__field--field-body-heading-1 div {
  margin: 240px auto 0 auto;
  display: block;
  font-size: 58px;
  font-weight: 800;
  max-width: 70%;
  line-height: 1.1em;
}
.node--patient-homepage .paragraph--banner .banner__field--field-bottom-heading div {
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 34px;
  font-weight: 500;
  max-width: 70%;
  line-height: 1em;
  text-transform: none;
}
.node--patient-homepage .big {
  font-size: 52px;
  line-height: 56px;
  font-weight: 800;
}
.node--patient-homepage .paragraph--type--container-row .container-content .field-name--field-paragraphs {
  gap: 10px;
}
.node--patient-homepage .field-name--field-paragraphs div {
  flex: 1 1 0;
  min-width: 0;
}
.node--patient-homepage .paragraph--type--card {
  box-sizing: border-box;
  padding: 20px;
  height: 380px;
}
.node--patient-homepage .paragraph--type--card .field-name--field-title {
  max-width: 80%;
  text-transform: uppercase;
}
.node--patient-homepage .paragraph--type--card .field-name--field-text {
  height: 100px;
}
@media (max-width: 1080px) {
  .node--patient-homepage .paragraph--type--card .field-name--field-title {
    max-width: 100%;
    text-transform: uppercase;
  }
}
@media (max-width: 820px) {
  .node--patient-homepage .paragraph--type--card {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .node--patient-homepage .paragraph--type--card .field-name--field-title {
    max-width: 100%;
    text-transform: uppercase;
  }
  .node--patient-homepage .paragraph--type--card .field-name--field-text {
    height: auto;
  }
  .node--patient-homepage .card-holder {
    min-height: 1040px;
  }
}
@media (max-width: 576px) {
  .node--patient-homepage .paragraph--banner .banner__field--field-top-heading {
    top: 0px;
  }
  .node--patient-homepage .paragraph--banner .banner__field--field-top-heading div {
    max-width: 100%;
    font-size: 15px;
    padding: 10px;
  }
  .node--patient-homepage .paragraph--banner .banner__field--field-bottom-heading {
    bottom: 110px;
  }
  .node--patient-homepage .paragraph--banner .banner__field--field-bottom-heading div {
    padding: 10px;
    max-width: 100%;
    font-size: 20px;
  }
  .node--patient-homepage .paragraph--banner .banner__field--field-bottom-heading div .big {
    font-size: 36px;
    line-height: 34px;
    font-weight: 800;
  }
  .node--patient-homepage .card-holder {
    min-height: 1080px;
  }
}

.node--what-is-trt .paragraph--banner {
  height: 420px;
}
@media (max-width: 1080px) {
  .node--what-is-trt .paragraph--patient-callout .container .field-name--field-text {
    margin-top: 0px;
  }
}
@media (max-width: 820px) {
  .node--what-is-trt .paragraph--banner {
    height: 275px;
  }
}
.node--what-is-trt h2 {
  color: #D4111B;
  font-size: 28px;
  font-weight: 900;
}

.node--patient---about-tlando .paragraph--banner {
  height: 404px;
}
.node--patient---about-tlando .paragraph--banner img {
  height: 404px;
  width: 100%;
}
.node--patient---about-tlando .paragraph--patient-callout .container {
  flex-direction: row-reverse;
}
.node--patient---about-tlando .paragraph--patient-callout .container .field-name--field-icon {
  margin-right: -40px;
}
.node--patient---about-tlando .paragraph--patient-callout .container .field-name--field-media-image {
  margin-top: 20px;
  margin-bottom: -40px;
}
.node--patient---about-tlando .paragraph--patient-callout .container .field-name--field-media-image img {
  max-width: 700px;
  max-height: 350px;
}
.node--patient---about-tlando .paragraph--patient-callout .container .field-name--field-text {
  margin-top: 20px;
}
.node--patient---about-tlando h2 {
  color: #D4111B;
  font-size: 28px;
  font-weight: 900;
}
.node--patient---about-tlando small {
  font-size: 14px;
  line-height: 1.4em;
  display: block;
  margin-top: 40px;
}
@media (max-width: 1080px) {
  .node--patient---about-tlando .field-name--field-text {
    font-size: 28px !important;
    padding: 0px 0 0 30px !important;
  }
}

.node--patient---co-pay-card .paragraph--banner {
  height: 404px;
}
.node--patient---co-pay-card .paragraph--banner img {
  height: 404px;
  width: 100%;
}
.node--patient---co-pay-card .yellowbg {
  padding: 60px 0 0 60px;
}
.node--patient---co-pay-card .paragraph--patient-callout {
  margin-bottom: 0px !important;
}
.node--patient---co-pay-card .gy-section {
  /* Adjust the degree (170deg) to match the specific slant of your image */
  background: linear-gradient(80deg, #4e808a 5%, #6aa4b0 50%, #f7d96d 50.1%, #f7d96d 100%);
  /* Additional styling for layout */
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.node--patient---co-pay-card .gy-section .section-content {
  max-width: 1140px;
  margin: 0 auto;
}
.node--patient---co-pay-card .gy-section .greenbg {
  padding-top: 60px;
}
.node--patient---co-pay-card .gy-section .greenbg p {
  font-size: 24px;
  color: white;
  text-align: center;
}
.node--patient---co-pay-card .gy-section .greenbg h3 {
  color: #F3CF5B;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1em;
  text-align: center;
}
.node--patient---co-pay-card .redh2 h2 {
  color: #D4111B;
  font-size: 28px;
  font-weight: 900;
}

@media (max-width: 820px) {
  .gy-section {
    background: linear-gradient(180deg, #4e808a 5%, #6aa4b0 47%, #f7d96d 47%, #f7d96d 100%) !important;
  }
  .ybg {
    background-color: #FCF6E0;
  }
  .gbg {
    background: linear-gradient(80deg, #4e808a 50.1%, #6aa4b0 100%);
    padding: 40px !important;
  }
  .paragraph--type--container-row .container-content .field-name--field-paragraphs {
    gap: 0;
  }
  .yellowbg {
    padding: 10px !important;
  }
  .greenbg {
    padding-top: 10px !important;
  }
}
@media (max-width: 576px) {
  .gy-section {
    background: linear-gradient(180deg, #4e808a 5%, #6aa4b0 62%, #f7d96d 62%, #f7d96d 100%) !important;
  }
}
.node--patient---get-tlando .redh2 h2 {
  color: #D4111B;
  font-size: 28px;
  font-weight: 900;
}
.node--patient---get-tlando .field-bundle--container-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.node--patient---get-tlando .field-bundle--container-row div {
  flex: 1;
}
.node--patient---get-tlando .yg-section {
  /* Adjust the degree (170deg) to match the specific slant of your image */
  background: linear-gradient(80deg, #fcf6e0 50%, #002D5D 50.1%, #002D5D 100%); /* SNAP to yellow at the same point (plus a tiny buffer) */
  /* Additional styling for layout */
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.node--patient---get-tlando .yg-section .section-content {
  max-width: 1140px;
  margin: 0 auto;
  max-height: 475px;
}
.node--patient---get-tlando .ybg {
  padding: 10px;
}
.node--patient---get-tlando .gbg {
  color: white;
  padding: 20px 0 25px 20px;
}
.node--patient---get-tlando .gbg ul li {
  padding-bottom: 10px;
}
.node--patient---get-tlando .big {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
}
.node--patient---get-tlando .ltbg {
  background-color: #F7FBFB;
  padding-top: 50px;
}
.node--patient---get-tlando .ltbg .section-content {
  max-width: 1140px;
  margin: 0 auto;
}
.node--patient---get-tlando .greentable {
  width: 100%;
  margin-bottom: 15px;
}
.node--patient---get-tlando .greentable .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.node--patient---get-tlando .greentable .cell {
  flex: 1;
  padding: 20px;
  text-align: center;
}
.node--patient---get-tlando .greentable .cell:last-child {
  border-right: none;
}
.node--patient---get-tlando .greentable .header {
  color: #6aa4b0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* space between heading and lines */
}
.node--patient---get-tlando .greentable .header::before, .node--patient---get-tlando .greentable .header::after {
  content: "";
  flex: 1;
  height: 1px; /* thickness of the line — adjust as needed */
  background: #6aa4b0; /* line color */
  border-radius: 3px;
}
.node--patient---get-tlando .greentable .text-center {
  text-align: center;
}

@media (max-width: 1080px) {
  .section-content {
    max-height: none !important;
  }
  .greentable .row {
    display: block !important;
  }
}
@media (max-width: 820px) {
  .yg-section {
    background: none !important;
  }
  .ybg {
    background-color: #FCF6E0;
  }
  .gbg {
    background: #002D5D;
    padding: 40px !important;
  }
  .paragraph--patient-callout .container .field-name--field-text {
    margin-top: 10px !important;
  }
  .paragraph--type--container-row .container-content .field-name--field-paragraphs {
    gap: 0;
  }
  .node--patient---support--savings .redh2 h2 {
    padding-left: 20px;
  }
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: #4a4a4a;
  font-size: 20px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased; /* may make fonts look thinner */
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}

/* Screen-reader only / visually hidden utility used by core when label_display is off. */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.d-none {
  display: none !important;
}

.ref-block {
  margin-top: 40px;
  margin-bottom: 40px;
}

h2 {
  color: #2F9EAF;
  font-size: 27px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.108px;
  text-transform: uppercase;
}

h3 {
  color: #002D5D;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.057px;
  text-transform: uppercase;
}

.ref-block p:not(:last-of-type) {
  margin-bottom: 4px;
}

.ref-block p {
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  letter-spacing: 0.057px !important;
  font-family: "Montserrat", "sans-serif";
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  font-size: 18px;
}

table {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  color: #102850;
  border-collapse: collapse;
}

table.table-tlando {
  border: none !important;
  max-width: 780px;
}

table.table-tlando thead th {
  background: #F2CE5B;
  color: #002D5D;
  padding: 12px 19px;
}

table.table-tlando tbody tr:first-child, table.table-tlando tbody tr td {
  background: #fff;
  color: #262626;
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid #2F9EAF;
  border-collapse: collapse;
  border-top: 0;
  border-right: 0 !important;
  border-left: 0 !important;
}

table td {
  padding: 13px;
  padding-left: 25px;
}

main ul li {
  line-height: 1.2em;
  padding-bottom: 14px;
}

.policies {
  font-size: 16px;
}

.btn.modal__redirect, .btn.modal__close {
  padding: 6px 12px;
  color: white;
  background-color: #002D5D;
  font-family: "Montserrat", sans-serif;
}

sup {
  vertical-align: top; /* or text-top */
  display: inline-block; /* lets you use top/transform reliably */
  position: relative;
  top: -0.15em; /* adjust to taste */
  font-size: 0.7em; /* keep visual scale for superscript */
  line-height: 1;
}

@media (max-width: 820px) {
  .hide_mobile {
    display: none !important;
  }
}

@media (min-width: 821px) {
  .hide_desktop {
    display: none !important;
  }
}

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