/*!*************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./assets/css/main.css ***!
  \*************************************************************************************************************************************************************************/
:root {
  --blue-light: #60daea;
  --blue: #18364d;
  --blue-dark: #0f2538;
  --text-gray: #c5cdd2;
  --orange: #f05f3b;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  scrollbar-gutter: stable;
}
body {
  background: #4e8ca1;
  color: white;
}
.site {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}
.current_page_item > a,
.main-navigation ul li.current-menu-item > a,
.main-navigation ul li.dropdown-open > a {
  color: white;
}
#page {
  background: #18364d;
  background: linear-gradient(270deg, rgb(73 109 137) 0%, rgb(9, 29, 41) 100%);
}
/* elements */
.external-link-trigger {
  cursor: pointer;
}
main {
  margin-bottom: 3rem;
}
h1 {
  font-size: 2rem;
  line-height: 120%;
  font-weight: 500;
  margin: 0;
  margin-bottom: 1rem;
}
@media screen and (min-width: 50rem) {
  h1 {
    font-size: 3rem;
  }
}
h2 {
  font-size: 1.2rem;
  line-height: 120%;
  font-weight: normal;
  margin: 0;
  margin-bottom: 1rem;
  color: var(--text-gray);
}
@media screen and (min-width: 50rem) {
  h2 {
    font-size: 1.25rem;
  }
}
h3 {
  font-size: 1rem;
}
small {
  font-size: 0.625rem;
  line-height: 0.5rem;
}
p {
  color: var(--text-gray);
  font-size: 0.8rem;
  margin: 0;
  font-weight: 300;
}
@media screen and (min-width: 50rem) {
  p {
    font-size: 1rem;
  }
}
b,
strong {
  font-weight: bold;
}
a,
a:hover,
a:focus,
a:active {
  color: black;
}
.terms-content a,
.terms-content a:hover,
.terms-content a:focus,
.terms-content a:active {
  color: white !important;
}
@media screen and (min-width: 50rem) {
  p {
    font-size: 1rem;
  }
}
/* header */
.header-container {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 100;
}
.banner-header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 1.5rem;
  width: 100%;
  z-index: 200;
  background-color: #60daea;
  padding: 0.25rem 0 0.25rem 0;
  & > small {
    font-weight: bold;
    letter-spacing: 24%;
    color: black;
    font-size: 0.7rem;
    text-align: center;
    line-height: 100%;
  }
}
.site-header {
  background: transparent;
  display: flex;
  z-index: 100;
  flex-direction: column;
  left: 0;
  right: 0;
  pointer-events: none;
  padding: 0;
  gap: 0.5rem;
  & > div {
    width: 100%;
    margin: 0 auto;
  }

  & > div:first-of-type {
    background-color: rgba(24, 54, 77, 0.3);
    backdrop-filter: blur(1rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    z-index: 200;
    & > div:first-of-type {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 90rem;
      width: 100%;
      padding: 0.25rem 1rem;
      margin: 0 auto;

      & > nav {
        align-items: flex-start;
        justify-content: flex-end;
        pointer-events: auto;
        max-width: 90rem;
      }
    }
  }
  & > div:last-of-type {
    display: flex;
    justify-content: flex-end;
    max-width: 90rem;
    padding: 0 2rem;
    pointer-events: auto;
    z-index: 50;
  }
}
@media screen and (min-width: 50rem) {
  .site-header {
    & > div {
      display: flex;
      flex-direction: row;
      gap: 3rem;
    }
    & > div:first-of-type {
      & > div:first-of-type {
        padding: 0.5rem 2rem;
      }
    }
  }
}
.site-branding {
  margin: 0;
  pointer-events: auto;
  & > a {
    width: 100%;
    max-width: 14rem;
    & > img {
      width: 14rem;
      max-width: 14rem;
    }
  }
}
@media screen and (min-width: 70rem) {
  .site-branding {
    & > a {
      width: 100%;
      max-width: 19rem;
      & > img {
        width: 19rem;
        max-width: 19rem;
      }
    }
  }
}
/* Mobile menu styles */
.main-navigation > div:first-of-type {
  display: none;
}
/* Mobile menu toggle button - hide on desktop */
.menu-toggle {
  display: block;
}
@media screen and (min-width: 70rem) {
  /* Show menu normally on desktop - override any inline styles from mobile */
  .main-navigation > div:first-of-type {
    display: block !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background-color: transparent !important;
    opacity: 1 !important;
    transform: none !important;
    padding: 0 !important;
    overflow: visible !important;
    pointer-events: auto !important;
  }

  /* Hide mobile menu toggle on desktop */
  .menu-toggle {
    display: none;
  }
}
/* .main-navigation.toggled {
    height: 100dvh;
  } */
/* Mobile menu overlay when toggled */
@media screen and (max-width: 69.999rem) {
  .main-navigation > div:first-of-type {
    height: 100dvh;
    position: fixed;
    inset: 0;
    box-sizing: border-box;
    background-color: var(--blue-dark);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    display: none;
    padding: 2rem;
  }

  .main-navigation.toggled > div:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }

  .main-navigation.toggled ul {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .main-navigation.toggled ul li {
    border: none;
    height: auto;
    padding: 0;
    background: none;
  }

  .main-navigation.toggled ul li::after,
  .main-navigation.toggled ul li::before {
    display: none;
  }

  .main-navigation.toggled ul li a {
    font-size: 1.5rem;
    font-weight: 500;
  }

  .main-navigation.toggled .search-button {
    display: none !important;
  }
}
.main-navigation {
  margin: 0 auto !important;
  max-width: 90rem !important;
  width: 100% !important;
}
.main-navigation > div:last-of-type {
  height: 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  & > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 0.25rem;
    border: 1px solid #c5cdd2;
    padding: 0.7rem 1.5rem;
    gap: 1rem;
    backdrop-filter: blur(0.5rem);
    transform: translateY(0.2rem);
  }
}
.main-navigation ul {
  height: 3.75rem;
}
.main-navigation ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;

  position: relative;
  background-repeat: no-repeat;
  background-position: 0 5px;
  background-size: 8px 8px;
  padding-right: 1rem;
  padding-top: 0.25rem;
  height: 100%;
}
.main-navigation ul li::before {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: calc(50% - 0.5rem);
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTguMDAwMDMgMTFMMTMuMTc4MSA4LjAwMDAxTDEzLjE3ODEgMTFMMTAuNTg5MSAxMi41TDguMDAwMDMgMTFaTTIuODIyNTIgOC4wMDEyMkw4LjAwMDAzIDQuOTk5OTlMNS40MTAzOSAzLjUwMDU5TDIuODIxOTUgNC45OTk5OUwyLjgyMjUyIDguMDAxMjJaIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjAuNiIvPgo8cGF0aCBkPSJNMTMuMTc4MSA3Ljk5OTI2TDEwLjU4ODUgOS40OTkyM0wxMC41ODkxIDMuNDk5MkwxMy4xNzgxIDQuOTk5MjVMMTMuMTc4MSA3Ljk5OTI2Wk01LjQxMDM5IDEyLjQ5OEw1LjQxMDk2IDYuNDk5ODZMMi44MjI1MiA4LjAwMDQ3TDIuODIxOTUgMTAuOTk5Mkw1LjQxMDM5IDEyLjQ5OFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMC42Ii8+CjxwYXRoIGQ9Ik0xMC41ODg0IDYuNDk5NDNMNS40MTAzNSAzLjUwMDYxTDcuOTk5OTkgMkwxMC41ODkgMy41MDAwNUwxMC41ODg0IDYuNDk5NDNaTTUuNDEwOTEgMTIuNUw3Ljk5OTk5IDE0TDEwLjU4OSAxMi41TDUuNDEwMzUgOS41MDAwMUw1LjQxMDkxIDEyLjVaIiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjAuNiIvPgo8L3N2Zz4K);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main-navigation ul li:hover::before,
.main-navigation ul li.current-menu-item::before,
.main-navigation ul li.dropdown-open::before {
  opacity: 1;
}
.main-navigation ul li:last-child {
  border-right: 1px solid transparent;
}
.main-navigation ul li:last-child::after {
  display: none;
}
/* Medical Information Dropdown */
.main-navigation .medical-info-dropdown {
  position: absolute;
  top: 100%;
  left: 50% !important;
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  width: 320px;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
}
.main-navigation li.dropdown-open .medical-info-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.main-navigation .medical-info-dropdown li {
  display: block;
  height: auto;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
}
.main-navigation .medical-info-dropdown li::before {
  display: none;
}
.main-navigation .medical-info-dropdown li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-gray);
  text-align: left;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  font-size: 0.9rem;
  width: 100%;
  text-align: center;
}
.main-navigation .medical-info-dropdown li a:hover {
  background-color: rgba(96, 218, 234, 0.1);
  color: white;
}
.main-navigation .medical-info-trigger {
  cursor: pointer;
}
.site-main {
  padding: 0;
  z-index: 1;
  position: relative;
}
/* components */
section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0;
  position: relative;
  margin: 0 auto !important;
  max-width: 90rem !important;
  width: 100% !important;
  padding-top: 13rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (min-width: 72rem) {
  section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
article {
  & > ol {
    & > li {
      font-weight: 200;
    }
  }
}
.resources {
  a {
    color: white !important;
  }
}
.badge {
  height: -moz-fit-content;
  height: fit-content;
  background-color: transparent;
  border: 1px solid red;
  border-radius: 2rem;
  padding: 0.1rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  & > p {
    color: red;
    text-transform: uppercase;
    font-size: 0.75rem;
  }
}
@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0) translateX(0);
  }
  25% {
    transform: translate(-50%, -50%) translateY(-20px) translateX(10px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px) translateX(-15px);
  }
  75% {
    transform: translate(-50%, -50%) translateY(-25px) translateX(5px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0) translateX(0);
  }
}
.light {
  z-index: 1;
  position: fixed;
  top: 20rem;
  left: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgb(81, 159, 176) 0%,
    rgba(81, 159, 176, 0) 100%
  );
  width: 100%;
  aspect-ratio: 1;
  filter: blur(60px);
  border-radius: 100%;
  opacity: 0.6;
  animation: float 12s ease-in-out infinite;
}
.graphic {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 70rem;
  height: 70rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODkzIiBoZWlnaHQ9Ijg5NCIgdmlld0JveD0iMCAwIDg5MyA4OTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik03NzIuMTg2IDEyMC4wNjRMODkxLjU1OCA1NjYuMDY0TDU2NS40MjkgODkyLjU1OUwxMTkuOTI5IDc3My4wNTNMMC41NTc2MTcgMzI3LjA1M0wzMjYuNjg2IDAuNTU4NTk0TDc3Mi4xODYgMTIwLjA2NFpNNzM0LjM2MSAxMTMuNDY1TDg3OC4zNTMgNTI5Ljk3TDU5MC4wNSA4NjMuMDYzTDE1Ny43NTQgNzc5LjY1MkwxMy43NjI1IDM2My4xNDdMMzAyLjA2NiAzMC4wNTM2TDczNC4zNjEgMTEzLjQ2NVpNNjk3LjMyNyAxMTAuNTI1TDg2Mi4zNzkgNDk2LjM5Mkw2MTEuMTEgODMyLjQyNUwxOTQuNzg4IDc4Mi41OTJMMjkuNzM1NiAzOTYuNzI1TDI4MS4wMDUgNjAuNjkyNkw2OTcuMzI3IDExMC41MjVaTTY2MS40MDYgMTExLjA5Mkw4NDMuOTI4IDQ2NS41MzJMNjI4LjU3OSA4MDAuOTk4TDIzMC43MDggNzgyLjAyNEw0OC4xODYgNDI3LjU4M0wyNjMuNTM1IDkyLjExNzVMNjYxLjQwNiAxMTEuMDkyWk02MjYuOTA1IDExNC45ODdMODIzLjMwOCA0MzcuNTY4TDY0Mi40NTkgNzY5LjEzOUwyNjUuMjA4IDc3OC4xMjlMNjguODA1MiA0NTUuNTQ5TDI0OS42NTQgMTIzLjk3N0w2MjYuOTA1IDExNC45ODdaTTU5NC4xMDggMTIyLjAwN0w4MDAuODM3IDQxMi42NDJMNjUyLjc4NiA3MzcuMTkzTDI5OC4wMDYgNzcxLjEwOUw5MS4yNzcxIDQ4MC40NzNMMjM5LjMyOCAxNTUuOTIyTDU5NC4xMDggMTIyLjAwN1pNNTYzLjI3OCAxMzEuOTI1TDc3Ni44NDIgMzkwLjg3Mkw2NTkuNjIxIDcwNS41MDVMMzI4LjgzNiA3NjEuMTkxTDExNS4yNzIgNTAyLjI0NUwyMzIuNDkyIDE4Ny42MTJMNTYzLjI3OCAxMzEuOTI1Wk01MzQuNjUyIDE0NC40OTJMNzUxLjY1OCAzNzIuMzM3TDY2My4wNjMgNjc0LjQwM0wzNTcuNDYyIDc0OC42MjRMMTQwLjQ1NiA1MjAuNzc5TDIyOS4wNTEgMjE4LjcxNEw1MzQuNjUyIDE0NC40OTJaTTUwOC40NDUgMTU5LjQ0M0w3MjUuNjIyIDM1Ny4wOTFMNjYzLjIzMyA2NDQuMjA3TDM4My42NjkgNzMzLjY3NEwxNjYuNDkyIDUzNi4wMjdMMjI4Ljg4MSAyNDguOTExTDUwOC40NDUgMTU5LjQ0M1pNNDg0Ljg0MyAxNzYuNDk0TDY5OS4wNzEgMzQ1LjE1M0w2NjAuMjg1IDYxNS4yMTlMNDA3LjI3MSA3MTYuNjI0TDE5My4wNDMgNTQ3Ljk2NEwyMzEuODI5IDI3Ny44OThMNDg0Ljg0MyAxNzYuNDk0Wk00NjQuMDA1IDE5NS4zNDZMNjcyLjM0NCAzMzYuNTEzTDY1NC4zOTcgNTg3LjcyNkw0MjguMTExIDY5Ny43NzFMMjE5Ljc3MSA1NTYuNjA2TDIzNy43MTggMzA1LjM5M0w0NjQuMDA1IDE5NS4zNDZaTTQ0Ni4wNTggMjE1LjY5Mkw2NDUuNzcgMzMxLjEyNVY1NjEuOTkyTDQ0Ni4wNTggNjc3LjQyNUwyNDYuMzQ1IDU2MS45OTJWMzMxLjEyNUw0NDYuMDU4IDIxNS42OTJaIiBzdHJva2U9IiM2MERBRUEiIHN0cm9rZS1vcGFjaXR5PSIwLjIiLz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.graphic-form {
  z-index: 1;
  transform: translate(-40%, -50%);
  pointer-events: none;
}
.hero {
  display: none;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 85%;
  transform: translate(-50%, 20%);
  max-width: 86vw;
  width: 500rem;
  height: 90dvh;
  max-height: 200dvh;
  /* background-image set via inline style from WordPress media library */
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
.msl-frontend-app {
  background-color: yellow;
}
@media screen and (min-width: 50rem) {
  .hero {
    display: block;
  }
}
.button-tile {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: #12293a;
  background: linear-gradient(
    0deg,
    rgba(18, 41, 58, 0) 0%,
    rgba(18, 41, 58, 1) 100%
  );
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  text-decoration: none;
  max-width: 40rem;
  min-height: 4rem;
  transition: all 0.3s;
  backdrop-filter: blur(1rem);
  & > .chip {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.5);
    width: 16px;
    height: 3px;
  }
  & > figure {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    max-width: 4rem;
    height: 4rem;
    aspect-ratio: 1;
    position: relative;
    width: 100%;
    & > img {
      width: 100%;
    }
  }
  & > div > p {
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 125%;
  }
}
.button-tile:hover {
  background: #f05f3b;
  & > div > p {
    color: white;
  }
  & > .chip {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    width: 16px;
    height: 3px;
  }
}
.button:active,
.button-tile-active {
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    0deg,
    rgba(96, 218, 234, 1) 0%,
    rgba(48, 109, 117, 1) 100%
  );
  & > div > p {
    color: #18364d;
  }
}
.button-tile-small {
  /* max-width: 20rem; */
}
.button-tile-large {
  min-height: 5rem;
  max-height: 5rem;
}
.button-tile-full {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  min-height: 5.5rem;
  & > div > p {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 125%;
  }
}
.button-slide {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: #12293a;
  background: linear-gradient(
    0deg,
    rgba(18, 41, 58, 0) 0%,
    rgba(18, 41, 58, 1) 100%
  );
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem;
  text-decoration: none;
  max-width: 33rem;
  height: 5rem;
  transition: all 0.3s;
  backdrop-filter: blur(1rem);
  & > .chip {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 10;
    left: 10rem;
    width: 16px;
    height: 3px;
    transition: all 0.5s;
  }
  & > figure {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    max-width: 4rem;
    height: 4rem;
    aspect-ratio: 1;
    position: relative;
    width: 100%;
    & > img {
      width: 100%;
    }
  }
  & > div > div > div > p {
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 125%;
  }
  & > .slide-set-container {
    margin-left: 5rem;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    & > .slide-set {
      height: 100%;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(0, -50%);
      display: flex;
      transition: all 0.3s;
      & > div {
        width: 100%;
        min-width: 40rem;
        max-width: 50rem;
      }
      & > div:first-of-type {
        display: flex;
        align-items: center;
        & > p {
          font-weight: 300;
        }
      }
      & > div:last-of-type {
        display: flex;
        align-items: center;

        & > p {
          font-weight: 300;
          font-size: 0.75rem;
          max-width: 23.5rem;
        }
      }
    }
  }
}
.button-slide:hover {
  & > div > div > div:last-of-type > p {
    color: white;
  }
  & > .chip {
    transform: translateX(-10rem);
    background-color: rgba(255, 255, 255, 0.8);
  }
  & > .slide-set-container:hover > .slide-set {
    transform: translate(-40rem, -50%);
  }
}
.button:active,
.button-slide-active {
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    0deg,
    rgba(96, 218, 234, 1) 0%,
    rgba(48, 109, 117, 1) 100%
  );
  & > div > p {
    color: #18364d;
  }
}
.button-slide-variant {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: #12293a;
  background: linear-gradient(
    0deg,
    rgba(18, 41, 58, 0) 0%,
    rgba(18, 41, 58, 1) 100%
  );
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  max-width: 42rem;
  height: 5rem;
  transition: all 0.3s;
  backdrop-filter: blur(1rem);
  & > .chip {
    /* transform: translateX(29rem); */
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 10;
    left: 10rem;
    width: 16px;
    height: 3px;
    transition: all 0.5s;
  }
  & > figure {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    max-width: 4rem;
    height: 4rem;
    aspect-ratio: 1;
    position: relative;
    width: 100%;
    margin-left: 1rem;
    & > img {
      width: 100%;
    }
  }
  .label {
    position: relative;
    z-index: 20;
    pointer-events: none;
  }
  .label > p {
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 125%;
  }
  & > .slide-set-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    & > .slide-set {
      height: 100%;
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(100%, -50%);
      display: flex;
      transition: all 0.3s;
      & > div {
        width: 100%;
        min-width: 42rem;
      }
      & > div:first-of-type {
        display: flex;
        align-items: center;
        & > p {
          font-weight: 300;
        }
      }
      & > div:last-of-type {
        display: flex;
        align-items: center;

        & > p {
          font-weight: 300;
          font-size: 0.75rem;
          max-width: 23.5rem;
        }
      }
    }
  }
}
.button-slide-variant:hover {
  & > div > div > div:last-of-type > p {
    color: white;
  }
  & > .chip {
    transform: translateX(-10rem);
    background-color: rgba(255, 255, 255, 0.8);
  }
  & > .slide-set-container:hover {
    & > .slide-set {
      transform: translate(0%, -50%);
    }
  }
}
.button-slide-variant-active {
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.8);
  background: linear-gradient(
    0deg,
    rgba(96, 218, 234, 1) 0%,
    rgba(48, 109, 117, 1) 100%
  );
  & > div > p {
    color: #18364d;
  }
}
.button-designed {
  display: inline-flex;
  height: 2.7rem;
  max-height: 2.7rem;
  flex-direction: row;
  text-decoration: none;
  gap: 0;
  align-items: stretch;

  & > div {
    display: flex;
    align-items: center;
    max-height: 2.7rem;
    height: 100%;
  }

  & > div > svg {
    display: block;
    height: 100%;
    width: auto;

    & > .ascent {
      transition: opacity 0.3s ease;
    }
  }

  & > :nth-child(1) {
    transform: translateX(0.1rem);
    position: relative;
    z-index: 2;
  }

  & > :nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.25rem;
    position: relative;
    box-sizing: border-box;

    & > p {
      position: relative;
      z-index: 5;
      font-size: 0.6rem;
      color: white;
      font-weight: bold;
      text-align: center;
      line-height: 1.2;
      margin: 0;
      padding: 0;
      -webkit-appearance: none;
    }

    & > .grad {
      opacity: 1;
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      width: 100%;
      height: 40%;
      transition: opacity 0.3s ease;
      background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 100%
      );
    }
  }

  & > :nth-child(3) {
    transform: translateX(-0.1rem);
    position: relative;
    z-index: 2;
  }
}
.button-designed:hover {
  & > :nth-child(1) {
    & > svg > .ascent {
      opacity: 0;
    }
  }
  & > :nth-child(2) {
    & > .grad {
      opacity: 0;
    }
  }
  & > :nth-child(3) {
    & > svg > .ascent {
      opacity: 0;
    }
  }
}
.button-designed.disabled {
  cursor: not-allowed;
}
@media screen and (min-width: 40rem) {
  .button-designed {
    zoom: 1;
    & > :nth-child(2) {
      & > p {
        font-size: 0.8rem;
      }
    }
  }
}
@media screen and (min-width: 50rem) {
  .button-designed {
    zoom: 1;
    & > :nth-child(2) {
      & > p {
        font-size: 1rem;
      }
    }
  }
}
.button-slide-lg {
  display: flex;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: #12293a;
  background: linear-gradient(
    0deg,
    rgba(18, 41, 58, 0) 0%,
    rgba(18, 41, 58, 1) 100%
  );

  padding: 0 1rem;
  text-decoration: none;
  width: 100%;
  min-height: 4rem;
  transition: all 0.3s;
  backdrop-filter: blur(1rem);

  & > .content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transform: translateX(7%);
    z-index: 5;
    transition: all 0.5s ease;
    & > div > p {
      text-decoration: none;
      font-size: 1.25rem;
      font-weight: 500;
      line-height: 125%;
      transition: color 0.5s ease;
    }
    & > div:last-child {
      transition: opacity 0.5s ease;
      opacity: 0;
    }
  }
  & > .slider {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    transform: translateX(100%);
  }

  & > .chip {
    position: absolute;
    top: 0;
    left: calc(100% - 16px);
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 10;
    width: 16px;
    height: 3px;
    transition: all 0.5s ease;
  }
  & > figure {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    max-width: 4rem;
    height: 4rem;
    aspect-ratio: 1;
    position: relative;
    width: 100%;
    & > img {
      width: 100%;
    }
  }
}
.button-slide-lg:hover {
  & > .content {
    transform: translateX(0);
    & > div:last-child {
      opacity: 1;
    }
    & > div > p {
      color: white;
    }
  }

  & > .chip {
    left: 0%;
    background-color: rgba(255, 255, 255, 0.8);
  }
  & > .slider {
    transform: translateX(0);
  }
}
.congress-no-results {
  padding: 3rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid currentColor;
  border-radius: 0.75rem;
  opacity: 0.8;
}
.congress-no-results__heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.congress-no-results__body {
  opacity: 0.7;
  max-width: 30rem;
  margin: 0;
  line-height: 1.6;
}
.congress-no-results__reset {
  margin-top: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid currentColor;
  border-radius: 0.25rem;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.congress-no-results__reset:hover {
  opacity: 1;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem 0;
  color: white;
}
.pagination__numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination__link {
  min-width: 2.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  background: transparent;
  color: white;
  font-family: inherit;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.8;
  transition:
    opacity 0.2s,
    border-color 0.2s;
}
.pagination__link:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}
.pagination__current {
  border-color: white;
  opacity: 1;
  font-weight: 500;
  cursor: default;
}
.pagination__current:hover {
  border-color: white;
  opacity: 1;
}
.pagination__prev,
.pagination__next {
  min-width: auto;
}
.pagination__ellipsis {
  padding: 0 0.25rem;
  opacity: 0.5;
}
.congress-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 3rem 0;
}
.congress-spinner div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: currentColor;
  animation: congress-bounce 1.2s ease-in-out infinite;
}
.congress-spinner div:nth-child(1) {
  animation-delay: 0s;
}
.congress-spinner div:nth-child(2) {
  animation-delay: 0.2s;
}
.congress-spinner div:nth-child(3) {
  animation-delay: 0.4s;
}
.congress-spinner div:nth-child(4) {
  animation-delay: 0.6s;
}
@keyframes congress-bounce {
  0%,
  80%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.congress-material {
  border-top: 1px solid #52687a;
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  & a {
    text-decoration: none;
  }
  & a:hover h2 {
    text-decoration: underline;
    text-decoration-color: white;
  }
  & > div > {
    & > p {
      margin-bottom: 5rem !important;
    }
  }
  & > div:first-of-type {
    border: 1px solid #1f414f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    aspect-ratio: 1;
    & > div {
      width: 2.4rem;
      height: 2.4rem;
      transform: translateX(0.25px);
      aspect-ratio: 1;
      background: #1f414f;
      border-radius: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      & > img {
        width: 50%;
      }
    }
  }
  & > div:last-of-type {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    & > div {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      & > h2 {
        color: white;
        margin: 0;
      }
    }
  }
}
@media screen and (min-width: 50rem) {
  .congress-material {
    padding: 3rem 0;
    & > div:last-of-type {
      gap: 1rem;
    }
    & > div:first-of-type {
      width: 5rem;
      height: 5rem;
      & > div {
        width: 4.4rem;
        height: 4.4rem;
      }
    }
  }
}
.resource-material {
  border-top: 1px solid #52687a;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  justify-content: space-between;
  & > div > h2 {
    margin: 0;
    margin-bottom: 0 !important;
  }
}
.resource-content a {
  color: white;
  text-decoration: underline;
}
.resource-content a:hover {
  opacity: 0.8;
}
.publication-tile {
  border-top: 1px solid #52687a;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  & > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0rem;
    & > div {
      display: flex;
      gap: 0.25rem;
    }
  }
  & > div > p {
    color: #60daea;
    text-transform: capitalize;
    font-size: 0.85rem;
  }
  & > h2 {
    color: white;
    margin: 0;
    font-weight: 500;
    margin-bottom: 0rem;
    margin-top: 0.25rem;
    font-size: 1.25rem;
  }
  & > h2:hover {
    text-decoration: underline;
    text-decoration-color: white;
  }
}
@media screen and (min-width: 50rem) {
  .publication-tile {
    padding: 3rem 0;
  }
}
.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 10px;
}
.custom-checkbox input {
  display: none;
}
.custom-checkbox-container {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 1rem 0.25rem 1rem;
  background: #173349;
  background: linear-gradient(
    145deg,
    rgba(23, 51, 73, 1) 0%,
    rgba(18, 41, 58, 1) 100%
  );
  border-top: 1px solid #52687a;
}
.checkmark {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease-in-out;
}
.custom-checkbox input:checked + .checkmark {
  background-color: #333;
  border-color: white;
}
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox input:checked + .checkmark::after {
  display: block;
}
.select-filter-container {
  display: flex;
  flex-direction: column;
}
.filter-select {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
}
.filter-select__label {
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.05em;
  color: white !important;
}
.filter-select__trigger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
  background: linear-gradient(to right, #172a3739, #86b6df17);
  backdrop-filter: blur(1rem);
  text-align: center;
  min-height: 3rem;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10rem;
  transition: border-color 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  position: relative;
  width: 100%;
  padding: 0 2.5rem 0 1rem;
  color: white;
  font-size: 0.9rem;

  &:hover,
  &:focus {
    border-color: white;
    outline: none;
  }

  &[aria-expanded="true"] {
    border-color: white;
  }
}
.filter-select__text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filter-select__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  z-index: 100;
  max-height: 350px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.filter-select[data-open="true"] .filter-select__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.filter-select__options {
  display: flex;
  flex-direction: column;
}
.filter-select__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
  font-size: 0.9rem;
  color: var(--text-gray);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;

  &:hover {
    background-color: rgba(96, 218, 234, 0.1);
  }

  & input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #60daea;
    margin: 0;
  }

  & span {
    flex: 1;
  }

  & input[type="checkbox"]:checked + span {
    color: white;
    font-weight: 500;
  }
}
.nav-card-grid {
  display: grid;
  height: -moz-fit-content;
  height: fit-content;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
.welcome-nav-card {
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  grid-template-columns: 1fr;

  & > a {
    height: 100%;
    margin: 0 auto;
    text-align: center;
  }
}
.nav-card {
  display: flex;
  flex-direction: column;
  min-height: 3rem;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
  border-radius: 10rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
  border: 1px solid rgba(200, 200, 200, 0.1);
  text-decoration: none;
  position: relative;
  background: linear-gradient(to right, #172a3739, #86b6df17);
  backdrop-filter: blur(1rem);
  width: 100%;
  padding: 0.5rem 0.5rem;
}
.nav-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--nav-card-bg);
  opacity: 0;
  transform: translateX(100%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 0;
}
.nav-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.nav-card.button-tile-active {
  border-color: rgba(255, 255, 255, 0.3);

  &::after {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-card__title {
    color: #c5cdd2 !important;
  }
}
.nav-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  .nav-card__title {
    color: white !important;
  }
}
.nav-card__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8rem;
  padding: 0.2rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.nav-card--no-icon {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0 1.4rem;
}
.nav-card__body--centered {
  justify-content: center;
  text-align: center;
  padding-left: 4rem;
  padding-right: 4rem;
}
.nav-card__icon {
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: 3rem;
  max-height: 3rem;
  flex-shrink: 0;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 100%;
  border: 1px solid #1f414f;
  padding: 0.1rem;
  & > div {
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: 3rem;
    max-height: 3rem;
    flex-shrink: 0;
    align-self: flex-start;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #1f414f;
    padding: 0.1rem;
    aspect-ratio: 1;
  }
  & > div > img {
    width: 50%;
    height: 50%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.nav-card__accent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
}
.nav-card__title {
  font-weight: 300;
  color: #c5cdd2;
  margin: 0 !important;
  line-height: 1;
  min-width: 0;
  transition: color 0.3s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
}
.nav-card__title--centered {
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 50rem) {
  .nav-card-grid {
    max-width: 50rem;
  }
  .nav-card__icon {
    width: 4rem;
    height: 4rem;
  }
  .nav-card__title {
    font-size: 1.25rem;
  }
}
/* pages */
.home-intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  & > h3 {
    margin: 0;
  }
  & > h1 {
    margin-top: 0;
    max-width: 55rem;
  }
  & > h2 {
    font-weight: 300;
    margin-top: 0;
    max-width: 35rem;
  }
  & > p {
    font-weight: 300;
    margin-top: 0;
    max-width: 40rem;
  }
}
.home-section {
  min-height: 89dvh;
  isolation: isolate;
}
@media screen and (min-width: 50rem) {
  .home-section {
    padding-top: 16rem;
  }
}
.welcome-section,
.landing-section {
  & > div {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 43rem;
  }
  & > div > h2 {
    color: white;
    font-weight: 500;
    margin: 0;
  }
  & > div > p {
    color: black;
    margin: 0;
  }
}
.medical-section {
  padding-top: 13rem;

  & > div {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    & > div:first-of-type {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
  }
}
@media screen and (min-width: 50rem) {
  .medical-section {
    padding-top: 13rem;
    & > div:first-of-type {
      display: grid;
      gap: 4rem;
      grid-template-columns: 1fr;
      gap: 4rem;
      grid-template-columns: 1fr 20.5rem;
    }
  }
}
.congress-section {
  padding-top: 13rem;
  position: relative;
  & > div:first-of-type {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
    & > div:first-of-type {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }
  }
}
.congress-filters {
  display: flex;
  gap: 0.65rem;
  flex-direction: column;
}
@media screen and (min-width: 50rem) {
  .congress-section {
    padding-top: 15rem;
    & > div:first-of-type {
      gap: 4rem;
      grid-template-columns: 1fr 20rem;
    }
  }
}
.publication-section {
  padding-top: 13rem;
  & > div:first-of-type {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
  }
  & > div:last-of-type {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (min-width: 50rem) {
  .publication-section {
    padding-top: 15rem;
    & > div:first-of-type {
      gap: 4rem;
      grid-template-columns: 1fr 20rem;
    }
  }
}
.additional-resources-section {
  padding-top: 13rem;
  & > div:first-of-type {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
    & > div:first-of-type {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
  }
}
@media screen and (min-width: 50rem) {
  .additional-resources-section {
    padding-top: 14rem;
    & > div:first-of-type {
      gap: 4rem;
      grid-template-columns: 1fr 20rem;
    }
  }
}
.resource-category-group {
  margin-bottom: 5rem;
  & > h2 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 300;
  }
}
.floating-panels {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
  a {
    color: white !important;
  }
  & > div:first-child {
    width: 100%;
    position: static;
    & > div {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      & > h2 {
        margin: 0;
        font-weight: 400;
        color: white;
      }
    }
  }
  & > div:last-child {
    min-width: 20rem;
  }
  .panel {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 47rem;
  }
}
@media screen and (min-width: 76rem) {
  .floating-panels {
    flex-direction: row;
    & > div:first-child {
      position: relative;
    }
  }
}
/* footer */
.site-footer {
  position: relative;
  z-index: 50;
  margin-top: auto;
  width: 100%;
  padding: 4rem 2rem;
  & > .site-info {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 auto;
    width: 100%;
    max-width: 90rem;
    & > div:first-child {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
  }
  & > .divider {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(calc(-50% - 0.5rem));
    width: 50vw;
    margin: 0;
    padding: 0;
    background-color: white;
    height: 1px;
  }
}
@media screen and (min-width: 70rem) {
  .site-footer {
    padding: 0.5rem 4rem;
    & > .site-info {
      display: flex;
      flex-direction: row;
    }
    & > .divider {
      display: block;
    }
  }
}
#footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer-menu a {
  color: white;
  text-decoration: none;
}
@media screen and (min-width: 50rem) {
  #footer-menu {
    flex-direction: row;
    gap: 2rem;
  }
}
/* MSL Search Styles */
.msl-search-input-wrapper {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
#msl-zip {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.2rem;
  font-size: 1rem;
}
#msl-area {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.2rem;
  font-size: 1rem;
}
#msl-zip::-moz-placeholder {
  color: #18364d;
}
#msl-zip::placeholder {
  color: #18364d;
}
#msl-search-btn {
  cursor: pointer;
}
#msl-search-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* Results Styles */
.msl-search-results h3 {
  margin: 0 0 1.5rem 0;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
}
.msl-results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.msl-result-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.msl-result-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}
.msl-result-item h4 {
  margin: 0 0 0.75rem 0;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
}
.msl-result-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
.msl-result-zip,
.msl-result-count {
  font-weight: 500;
}
/* Message Styles */
.msl-no-results,
.msl-error {
  text-align: center;
  padding: 3rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
}
.msl-no-results p,
.msl-error p {
  font-size: 1rem;
  margin: 0;
}
.msl-error {
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.3);
  color: rgba(255, 150, 150, 0.9);
}
.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 0.6rem;
}
@media screen and (min-width: 50rem) {
  .welcome-modal {
    padding: 2rem;
  }
}
.welcome-modal__inner {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 1.25rem;
  max-width: 56rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: auto;
  color: black;

  h1,
  h2,
  h3 {
    color: black !important;
  }
  h2 {
    font-weight: 500;
  }

  p {
    color: black !important;
  }
}
@media screen and (min-width: 50rem) {
  .welcome-modal__inner {
    padding: 3rem;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}
.modal-content {
  position: relative;
  z-index: 10000;
  background: white;
  border-radius: 0.5rem;
  max-width: 35rem;
  width: 90%;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);

  h1,
  h2 {
    color: black !important;
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;
  }
  p {
    color: black !important;
    margin: 0 0 2rem 0;
  }
  #modal-text {
    white-space: pre-line;
  }
  .modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    .modal-continue-wrap {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      cursor: pointer;
      color: black !important;
      & > svg {
        flex-shrink: 0;
        color: black;
      }
    }
    .modal-continue {
      color: black !important;
      font-weight: 600;
      text-decoration: underline;
      cursor: pointer;
      margin: 0;
    }
  }
  .modal-cancel {
    cursor: pointer;
    background-color: var(--orange);
    color: white !important;
    border: none;
    border-radius: 0.25rem;
    padding: 0.5rem 1.25rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
    &:hover {
      opacity: 0.85;
    }
  }
}
.adverse-event-modal-close {
  cursor: pointer;
  background-color: var(--orange);
  color: white !important;
  border: none;
  border-radius: 0.25rem;
  padding: 0.5rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
  &:hover {
    opacity: 0.85;
  }
}
#external-link-modal .modal-content a,
#external-link-modal .modal-content a:hover,
#external-link-modal .modal-content a:focus,
#external-link-modal .modal-content a:active {
  color: black !important;
  text-decoration: underline !important;
}
/* Search Modal */
.search-button {
  display: none !important;
}
@media screen and (min-width: 80rem) {
  .search-button {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .search-button .nav-card {
    align-self: stretch;
  }
}
.search-trigger {
  cursor: pointer;
  transform: translateY(10%);
  & > div {
    transform: translateY(40%);
  }
  & > p {
    transition: all 0.2s ease;
  }
}
.search-trigger:hover {
  border-color: white;
  & > p {
    color: white;
  }
}
/* Menu Toggle */
.menu-toggle {
  cursor: pointer;
  background: none;
  border: none;
  padding: 1.5rem 0 1rem 0;

  & > img {
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.2s ease;
    display: block;
  }
}
.menu-toggle:hover {
  & > img {
    opacity: 0.8;
  }
}
/* Mobile Menu Close Button */
.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;

  & > span {
    color: white;
    font-size: 2rem;
    line-height: 1;
    font-weight: 300;
  }
}
.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: rotate(90deg);

  & > span {
    color: white;
  }
}
@media screen and (min-width: 70rem) {
  .mobile-menu-close {
    display: none !important;
  }
}
.search-modal-content {
  max-width: 52rem;
  width: 95%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.search-modal-content .modal-body {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}
.search-input-wrapper {
  position: relative;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.search-field {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.2);
  background: white;
  color: black;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
}
.search-field::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.search-field::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.search-field:focus {
  border-color: rgba(0, 0, 0, 0.5);
  background: white;
}
.btn-reset {
  -webkit-appearance: none;
  border-radius: 0;
  text-align: inherit;
  background: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  border: none;
  color: inherit;
  font: inherit;
}
.search-submit {
  border-radius: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  & > a > div {
    transform: translateY(0) !important;
  }
}
.modal-cancel.search-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  background: transparent !important;
  color: black !important;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
  padding: 0 !important;
}
.modal-cancel.search-modal-close:hover {
  background: rgba(0, 0, 0, 0.1) !important;
  color: black !important;
}
.search-results {
  flex: 1;
  overflow-y: auto;
  margin: 0;
  min-height: 0;
}
.search-loading,
.search-no-results,
.search-error {
  padding: 2rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
}
.search-loading p,
.search-no-results p,
.search-error p {
  margin: 0.5rem 0;
}
.search-no-results small,
.search-error small {
  font-size: 0.875rem;
  opacity: 0.7;
}
.search-results-list h3 {
  color: black;
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.search-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  text-decoration: none;
  border-radius: 10rem;
}
.search-result-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.search-result-content {
  flex: 1;
}
.search-result-item h4 {
  color: black !important;
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
}
.search-result-item h4 a {
  color: black !important;
  text-decoration: none;
  transition: -webkit-text-decoration 0.2s ease;
  transition: text-decoration 0.2s ease;
  transition: text-decoration 0.2s ease, -webkit-text-decoration 0.2s ease;
}
.search-result-item h4 a:hover {
  text-decoration: underline;
}
.search-result-type {
  color: rgba(0, 0, 0, 0.5) !important;
  font-size: 0.875rem;
  margin: 0 !important;
  text-transform: capitalize;
}
.search-section {
  margin-bottom: 2rem;
}
.search-section:last-child {
  margin-bottom: 0;
}
.search-section h3 {
  color: black;
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #60daea;
}
.header-popup-modal-close {
  cursor: pointer;
}
#onetrust-group-container {
  display: flex !important;
}
#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo {
  height: auto !important;
  width: 8rem !important;
}
#onetrust-policy {
  margin-left: 8rem !important;
}
@media only screen and (min-width: 426px) and (max-width: 896px) {
  #onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo {
    width: 5rem !important;
  }
  #onetrust-policy {
    margin-left: 5rem !important;
  }
}


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