@charset "UTF-8";

/*
    Global variables
 */

/*
		GLOBAL BASE STYLES
		1. svg global transform-origin
		2. body tag
		3. data-role=content main section of every page
		4. classes to show/hide content based on whether or not screen is mobile or desktop (can be used on any tag)
		5. media queries
 */

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* > svg {
  transform-origin: 50% 50% 0;
}

body {
  margin: 0 auto;
  line-height: 1.4;
  font-family: 'Open Sans', sans-serif;
  color: #4E4E4E;
  position: relative;
  display: block;
  background: #ffffff;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  cursor: default;
  padding: 0 0 240px;
}

@media (max-width: 800px) {
  body {
    padding: 0 0 100px;
  }
}

body .isi-toggle {
  cursor: pointer;
}

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

body .mobile {
  display: none;
}

body .tablet {
  display: block;
}

body .desktop {
  display: inline-block;
}

body .desktop.block {
  display: block;
}

body.block-scroll {
  overflow: hidden;
}

body #preload {
  display: none;
}

body .section-wrapper {
  display: flex;
  flex-direction: column;
  width: 70%;
}

body .section-links {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  padding: 30px 0;
  background-color: #F8F8F8;
  align-items: center;
  justify-content: center;
}

body .section-links .links-wrapper {
  width: 70%;
  display: flex;
  flex-direction: row;
}

body .section-links .links-wrapper div {
  text-decoration: underline;
}

body .section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0 104px;
}

@media (max-width: 800px) {
  body .section {
    padding: 25px 0;
  }
}

span.no-break {
  white-space: nowrap;
}

.max-width-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 955px) {
  body .tablet {
    display: none;
  }

  .max-width-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 955px) {
  body .mobile {
    display: inline-block;
  }

  body .desktop {
    display: none;
  }

  .section-wrapper {
    width: 90% !important;
  }

  .section-links {
    justify-content: flex-start !important;
  }

  .section-links .links-wrapper {
    margin-left: 20px;
    width: auto !important;
    flex-direction: column !important;
    height: auto !important;
  }

  .section-links .links-wrapper div {
    margin: 5px 0;
  }

  .section-links .links-wrapper .mobile-hide {
    display: none;
  }

  a.mobile-only {
    text-decoration: underline !important;
    cursor: pointer !important;
  }
}

.spacer-50 {
  height: 50px;
}

.spacer-100 {
  height: 100px;
}

.kill-body-padding {
  padding: 0 0 0 0;
}

/*
    Typography specific styling:
    1. fonts, sizes, colors, styles, padding and margins for P, H1, H2, H3, SUP, SUB, SPAN (including eyebrows and "no-break" spans used to prevent groups of words from breaking)
    2. specific classes within each tag to make font smaller, larger, bolder, have extra padding, have no padding, center-align text, etc.
    3. styling for links within body-content and footer (excludes link styling for all aspects of navigation including header nav and footer nav)
    4. classes to change color of font
    5. media queries for all styles listed above
 */

/*
		FONT SPECIFIC STYLING
 */

p {
  font-size: 0.9375rem;
  padding: 5px 0;
}

sup {
  vertical-align: text-top;
  font-size: 0.6875em;
  line-height: initial;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.6875em;
  line-height: 1em;
}

ul {
  padding: 0;
  list-style: none;
}

ul li {
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  padding-bottom: 10px;
  font-size: 15px;
}

.bold {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.semi-bold {
  font-family: "Open Sans", sans-serif;
}

.bold-italic {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.italic {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.center-align {
  text-align: center;
}

.orange {
  color: #F15D22 !important;
}

.green {
  color: #54B948 !important;
}

.blue {
  color: #003F73 !important;
}

.cyan {
  color: #0092CC !important;
}

.white {
  color: #ffffff !important;
}

.grey {
  color: #8C8C8C !important;
}

.small-font {
  font-size: 0.6875rem !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.padding-bottom {
  padding-bottom: 20px !important;
}

.source-sans {
  font-family: "Open Sans", sans-serif !important;
}

.source-sans b {
  font-family: "Open Sans", sans-serif !important;
}

.p-0 {
  padding: 0 !important;
}

/*
		LINK STYLING
 */

a {
  text-decoration: underline;
  transition: 0.25s all ease-in-out;
  cursor: pointer;
}

a:hover {
  color: #0092CC;
}

a:visited {
  color: #0092CC;
}

a:focus {
  outline: solid 1px #8C8C8C;
  outline-offset: 0;
}

.exon-tool-div-clicked {
  background-color: #54B948;
}

@media (max-width: 800px) {
  .exon-tool-div-clicked {
    background-color: #EEEDEE;
  }

  .exon-tool-div-clicked p {
    color: #54B948;
  }
}

.hide {
  display: none;
}

.ref {
  display: flex;
}

.ref p {
  font-size: 14px;
  margin: 0 0 5px;
  padding: 0;
}

.video-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.break {
  display: inline-block;
}

@media screen and (max-width: 800px) {
  .break {
    display: inline;
  }
}

.desktop-break {
  display: block;
}

@media (max-width: 955px) {
  .desktop-break {
    display: none;
  }
}

.flex-break {
  flex-basis: 100%;
  height: 0;
}

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

body.home .section-wrapper {
  margin-left: auto;
  margin-right: auto;
}

body.home #support {
  margin-top: 30px;
  padding: 50px 0;
  border-top: 0.5px solid #8C8C8C;
}

@media (max-width: 800px) {
  body.home #support {
    padding: 30px 0 25px;
  }
}

body.home #support .home-support-wrapper {
  flex-direction: row;
}

body.home #support .home-support-wrapper .support-logo {
  width: 300px;
  max-width: 100%;
}

body.home #support .home-support-wrapper .support-logo hr {
  border-bottom: 1px solid #003F73;
  margin: 10px 0;
}

@media (max-width: 800px) {
  body.home #support .home-support-wrapper .support-logo hr {
    border-bottom: 2px solid #003F73;
  }
}

body.home #support .home-support-wrapper .support-logo p {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  color: #536D94;
  font-weight: 500;
  padding: 0;
}

body.home #support .home-support-wrapper .support-logo p b {
  font-family: "Open Sans", sans-serif;
}

body.home #support .home-support-wrapper .support-logo p small {
  font-size: 1rem;
  font-weight: 400;
}

body.home #support .home-support-wrapper .support-logo p small span {
  font-size: 0.875rem;
}

body.home #support .home-support-wrapper .comprehensive {
  padding-left: 50px;
  width: inherit;
}

body.home #support .home-support-wrapper .comprehensive h2 {
  font-size: 1.5rem;
  line-height: 1.6875rem;
  margin-bottom: 5px;
}

@media (max-width: 800px) {
  body.home #support .home-support-wrapper .comprehensive h2 {
    margin-bottom: 20px;
  }
}

body.home #support .home-support-wrapper .comprehensive p {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  padding: 0 0 10px;
}

body.home #support .home-support-wrapper .comprehensive ul {
  margin-left: 20px;
}

body.home #support .home-support-wrapper .comprehensive ul li::marker {
  content: ' \2022   ';
  color: #0092CC;
}

body.home #support .home-support-wrapper .comprehensive a {
  width: 290px;
  margin: 0;
}

@media (max-width: 800px) {
  body.home #support .home-support-wrapper {
    flex-direction: column;
  }

  body.home #support .home-support-wrapper .support-logo {
    text-align: left;
    width: 80%;
    margin: 0 auto;
  }

  body.home #support .home-support-wrapper .support-logo .logo-image {
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
  }

  body.home #support .home-support-wrapper .support-logo .logo-image img {
    margin: 0;
  }

  body.home #support .home-support-wrapper .comprehensive {
    padding-left: 0;
    width: 80%;
    margin: 30px auto 0;
  }

  body.home #support .home-support-wrapper .comprehensive a {
    margin: 25px auto;
    max-width: 100%;
    width: auto;
    padding: 12px 30px;
  }
}

body.home .row-3cols {
  align-items: inherit !important;
  display: flex;
  flex-direction: row;
}

body.home .row-3cols div.rowCol {
  flex-basis: 32%;
  padding: 0 25px;
  text-align: center;
  border-left: 0.5px solid #8C8C8C;
}

body.home .row-3cols div.rowCol p {
  font-size: 0.9375rem;
  line-height: 1.3rem;
  color: #003F73;
  width: 300px;
  margin: 5px auto 10px;
}

body.home .row-3cols div.rowCol p span {
  display: block;
  font-size: 18px;
}

body.home .row-3cols div.rowCol > div {
  height: 75px;
  vertical-align: top;
}

body.home .row-3cols div.rowCol .btn-blue {
  min-width: 190px;
}

@media (max-width: 800px) {
  body.home .row-3cols div.rowCol .btn-blue {
    margin-top: 15px;
  }
}

body.home .row-3cols > div:first-of-type {
  padding: 0 25px 0 0;
  border-left: none;
}

body.home .row-3cols > div:last-of-type {
  padding: 0 0 0 25px;
}

@media (max-width: 800px) {
  body.home .row-3cols {
    flex-direction: column;
  }

  body.home .row-3cols div.rowCol {
    border: none;
    padding: 0 25px 60px;
  }

  body.home .row-3cols div.rowCol > div {
    min-height: auto;
    margin-bottom: 10px;
  }
}

body.home #register {
  padding: 0;
}

.error-page {
  height: 10;
  min-height: 10;
}

.error-page .error-section {
  max-width: 955px;
  margin: 0 auto;
}

@media (max-width: 955px) {
  .error-page .error-section {
    padding: 0 20px;
  }
}

.error-page .error-section .ns-logo {
  max-width: 477.5px;
}

.error-page #isi {
  position: relative;
  margin-top: 20px;
}

.error-page .hidden {
  display: none;
  height: 0;
}

.support .dropdown-container .dropdown-nav .nav-link-wrapper,
.hcp .dropdown-container .dropdown-nav .nav-link-wrapper {
  padding-top: 20%;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  position: fixed;
  z-index: 100;
  height: 95px;
  background-color: white;
  border-bottom: 10px solid #003F73;
}

nav .nav-container {
  display: flex;
  flex-direction: row;
  width: 70%;
  justify-content: space-between;
}

@media screen and (max-width: 1135px) {
  nav .nav-container {
    width: 80%;
  }
}

nav .nav-container .nav-logo {
  display: block;
  max-width: 300px;
  flex-basis: 30%;
  align-self: flex-end;
}

nav .nav-container .nav-logo img {
  min-width: 290px;
  max-width: 290px;
}

nav .nav-container .right-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-basis: 70%;
  justify-content: space-around;
}

nav .nav-container .right-content .nav-pi {
  font-size: 0.6875rem;
  text-align: right;
  color: #003F73;
}

nav .nav-container .right-content .nav-pi a {
  color: #003F73;
}

nav .nav-container .right-content .nav-pi a:hover {
  color: #8C8C8C;
}

nav .nav-container .right-content .nav-link-wrapper {
  width: 100%;
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

nav .nav-container .right-content .nav-link-wrapper .nav-link {
  flex-basis: 25%;
  text-align: center;
  padding: 0px;
  position: relative;
}

@media (max-width: 1220px) {
  nav .nav-container .right-content .nav-link-wrapper .nav-link {
    padding: 0 5px;
  }
}

nav .nav-container .right-content .nav-link-wrapper .nav-link a {
  color: #003F73;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 0.9375rem;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
}

nav .nav-container .right-content .nav-link-wrapper .nav-link a p {
  color: #003F73;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 0.9375rem;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
}

nav .nav-container .right-content .nav-link-wrapper .nav-link a:hover p {
  color: #4E4E4E;
}

nav .nav-container .right-content .nav-link-wrapper .nav-link a.active p {
  color: #003F73;
  font-weight: 800;
}

nav .nav-container .right-content .nav-link-wrapper .nav-link .dropdown {
  display: none;
}

nav .nav-container .right-content .nav-link-wrapper .nav-link:hover .dropdown {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  background-color: rgba(0, 63, 115, 0.84);
  z-index: 100;
  margin-top: 2px;
  margin-left: -200px;
  min-width: 700px;
  padding: 18% 0;
}

nav .nav-container .right-content .nav-link-wrapper .nav-link:hover .dropdown .inner-dropdown {
  flex: 0 0 33%;
  text-align: left;
}

nav .nav-container .right-content .nav-link-wrapper .nav-link:hover .dropdown a p {
  color: #ffffff !important;
  font-size: 13px;
  line-height: 18px;
  text-transform: none !important;
  font-weight: normal !important;
  font-family: "Open Sans", sans-serif;
}

nav .nav-container .right-content .nav-link-wrapper .nav-link:hover .dropdown .dropdown-link {
  color: #ffffff !important;
  font-size: 13px;
  line-height: 26px;
}

nav .nav-container.mobile {
  display: none;
}

@media screen and (max-width: 955px) {
  nav {
    height: 200px;
  }

  nav .nav-container.desktop {
    display: none;
  }

  nav .nav-container.mobile {
    display: flex;
    width: 95%;
    flex-direction: column;
  }

  nav .nav-container.mobile .nav-pi {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.75rem;
    text-align: right;
    padding-top: 10px;
  }

  nav .nav-container.mobile .nav-pi a {
    color: #003F73;
  }

  nav .nav-container.mobile .nav-pi p {
    flex-basis: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: #003F73;
  }

  nav .nav-container.mobile > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  nav .nav-container.mobile > div .nav-logo {
    flex-basis: 10%;
  }

  nav .nav-container.mobile > div .nav-logo img {
    min-width: 250px;
  }

  nav .nav-container.mobile > div .nav-toggle-container {
    flex-basis: 10%;
    display: flex;
    align-self: center;
    margin-left: auto;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 400px) {
  nav .nav-container .nav-logo {
    max-width: 200px;
  }

  nav .nav-container .nav-logo img {
    min-width: 150px;
  }
}

nav hr.activeNavBlock {
  display: none;
}

@media (max-width: 767px) {
  nav hr.activeNavBlock {
    display: none;
    width: 55%;
    height: 10px;
    margin: 0 auto -62px 20px;
  }

  nav hr.activeNavBlock.homeNavBlock {
    display: none;
  }

  nav hr.activeNavBlock.hcpNavBlock {
    background-color: #F15D22;
  }

  nav hr.activeNavBlock.patientNavBlock {
    background-color: #54B948;
  }

  nav hr.activeNavBlock.supportNavBlock {
    background-color: #0092CC;
  }

  nav hr.activeNavBlock.registerNavBlock {
    background-color: #6383B4;
  }
}

.dropdown-container {
  position: fixed;
  top: 200px;
  right: 0;
  height: calc(100% - 300px);
  display: flex;
  flex-direction: column;
  width: 100%;
  z-index: 91;
  margin-left: auto;
}

@media (max-width: 390px) {
  .dropdown-container {
    height: calc(100% - 200px);
  }
}

.dropdown-container.closed {
  height: 0;
}

.dropdown-container .dropdown-nav {
  transition: height .5s;
  background-color: white;
}

.dropdown-container .dropdown-nav .nav-link-wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 0 !important;
}

.dropdown-container .dropdown-nav .nav-link-wrapper .mobile-main-links {
  font-size: 0.875rem;
  font-weight: 800;
  color: #003F73;
  line-height: 1.875rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.dropdown-container .dropdown-nav .nav-link-wrapper .mobile-main-links button {
  font-size: 1.875rem !important;
}

.dropdown-container .dropdown-nav .nav-link {
  padding: 10px 0;
  text-align: left;
  justify-content: space-around;
  align-items: center;
}

.dropdown-container .dropdown-nav .nav-link a {
  text-decoration: none;
  font-size: 0.875rem !important;
  font-weight: 800;
  color: #003F73;
  line-height: 1.875rem !important;
  cursor: pointer;
  text-transform: uppercase;
  width: 85%;
}

.dropdown-container .dropdown-nav.hidden {
  max-height: 0;
  overflow: hidden;
}

.dropdown-container .dropdown-nav.openNav {
  animation: openNav .5s forwards ease-in-out;
}

.dropdown-container .dropdown-nav.closeNav {
  animation: closeNav .5s forwards ease-in-out;
}

.hcp-nav-link {
  border-top: 2px solid #F15D22;
  background-color: #FDE7DE;
}

.patient-nav-link {
  border-top: 2px solid #54B948;
  background-color: #E5F5E3;
}

.support-nav-link {
  border-top: 2px solid #0092CC;
  background-color: #D9F3FD;
}

.register-nav-link {
  border-top: 2px solid #4E4E4E;
  background-color: #D1D5DD;
}

#patient-nav .dropdown {
  justify-content: space-around;
}

#patient-nav .dropdown .inner-dropdown {
  flex: none;
}

.subNavBtn {
  color: #003F73;
  font-size: 1.875rem;
}

.sub-dropdown-container .sub-dropdown-nav {
  padding: 20px 0 0;
}

.sub-dropdown-container .sub-dropdown-nav:nth-of-type(2) {
  padding: 5px 0 20px !important;
}

.sub-dropdown-container .sub-dropdown-nav .sub-nav-link-wrapper .nav-link {
  font-size: 0.875rem;
  line-height: 2rem;
  font-weight: normal;
  padding: 0 0 0;
}

.sub-dropdown-container .sub-dropdown-nav .sub-nav-link-wrapper .nav-link a {
  text-decoration: none;
  padding: 0 15px;
  font-weight: 400;
  text-transform: none;
}

.sub-dropdown-container .sub-dropdown-nav .sub-nav-link-wrapper .nav-link a:active {
  text-decoration: underline;
}

.sub-dropdown-container .sub-dropdown-nav .sub-nav-link-wrapper .nav-link a:hover {
  font-weight: bold;
}

.sub-dropdown-container .sub-dropdown-nav .sub-nav-link-wrapper .nav-link .header-link {
  font-weight: bold;
  font-size: 14px;
}

.hiddenSubNav {
  display: none !important;
}

.nav-toggle {
  position: relative;
  height: 30px;
  width: 36px;
  align-self: center;
}

.nav-toggle .bar {
  position: absolute;
  height: 6px;
  width: 100%;
  background-color: #003F73;
  border-radius: 2px;
}

.nav-toggle #topBar {
  z-index: 1;
}

.nav-toggle #middleBar {
  top: 12px;
  z-index: 0;
}

.nav-toggle #bottomBar {
  top: 24px;
  z-index: 2;
}

.nav-toggle .topMoveForward {
  animation-name: topAnimate;
  animation-duration: .75s;
  animation-fill-mode: forwards;
}

.nav-toggle .middleMoveForward {
  animation-name: middleAnimate;
  animation-duration: .75s;
  animation-fill-mode: forwards;
}

.nav-toggle .bottomMoveForward {
  animation-name: bottomAnimate;
  animation-duration: .75s;
  animation-fill-mode: forwards;
}

.nav-toggle .topMoveBack {
  animation-name: topAnimateBack;
  animation-duration: .75s;
  animation-fill-mode: forwards;
}

.nav-toggle .middleMoveBack {
  animation-name: middleAnimateBack;
  animation-duration: .75s;
  animation-fill-mode: forwards;
}

.nav-toggle .bottomMoveBack {
  animation-name: bottomAnimateBack;
  animation-duration: .75s;
  animation-fill-mode: forwards;
}

@keyframes topAnimate {
  0% {
    top: 0px;
    transform: rotate(0deg);
  }

  50% {
    top: 12px;
    transform: rotate(0deg);
  }

  100% {
    top: 12px;
    transform: rotate(45deg);
  }
}

@keyframes middleAnimate {
  0% {
    transform: scale(1);
  }

  70%, 100% {
    transform: scale(0);
  }
}

@keyframes bottomAnimate {
  0% {
    top: 24px;
    transform: rotate(0deg);
  }

  50% {
    top: 12px;
    transform: rotate(0deg);
  }

  100% {
    top: 12px;
    transform: rotate(-225deg);
  }
}

@keyframes topAnimateBack {
  0% {
    top: 12px;
    transform: rotate(45deg);
  }

  50% {
    top: 12px;
    transform: rotate(0deg);
  }

  100% {
    top: 0px;
    transform: rotate(0deg);
  }
}

@keyframes middleAnimateBack {
  0%, 50% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes bottomAnimateBack {
  0% {
    top: 12px;
    transform: rotate(-225deg);
  }

  50% {
    top: 12px;
    transform: rotate(0deg);
  }

  100% {
    top: 24px;
    transform: rotate(0deg);
  }
}

@keyframes openNav {
  from {
    height: 0;
  }

  to {
    height: 100%;
    max-height: 100%;
  }
}

@keyframes closeNav {
  from {
    height: 100%;
    max-height: 100%;
  }

  to {
    height: 0;
  }
}

/* smaller device */

@media (max-width: 375px) {
  .support nav a,
  .hcp nav a {
    font-size: .75rem;
  }

  .support .hero-wrapper:not(.home),
  .hcp .hero-wrapper:not(.home) {
    padding-top: 230px;
  }

  .support .dropdown-container .dropdown-nav .nav-link-wrapper,
  .hcp .dropdown-container .dropdown-nav .nav-link-wrapper {
    height: 60%;
  }
}

body.hcpabout nav .nav-container.desktop .right-content .nav-link-wrapper .nav-link.active-navLink {
  border-bottom: 10px solid #00ADEE;
  margin-bottom: -16px;
}

body.hcpefficacy nav .nav-container.desktop .right-content .nav-link-wrapper .nav-link.active-navLink {
  border-bottom: 10px solid #00ADEE;
  margin-bottom: -16px;
}

body.patient nav .nav-container.desktop .right-content .nav-link-wrapper .nav-link.active-navLink,
body.about-viltepso nav .nav-container.desktop .right-content .nav-link-wrapper .nav-link.active-navLink,
body.efficacy-safety nav .nav-container.desktop .right-content .nav-link-wrapper .nav-link.active-navLink,
body.meet-jordan nav .nav-container.desktop .right-content .nav-link-wrapper .nav-link.active-navLink {
  border-bottom: 10px solid #00ADEE;
  margin-bottom: -16px;
}

body.support nav .nav-container.desktop .right-content .nav-link-wrapper .nav-link.active-navLink {
  border-bottom: 10px solid #00ADEE;
  margin-bottom: -16px;
}

body.register nav .nav-container.desktop .right-content .nav-link-wrapper .nav-link.active-navLink {
  border-bottom: 10px solid #00ADEE;
  margin-bottom: -16px;
}

.active-sub-nav {
  font-weight: 800 !important;
}

.active-dropdown-nav {
  text-decoration: underline !important;
}

@media (max-width: 800px) {
  .mobile-active-sub-nav {
    text-decoration: underline !important;
  }
}

footer {
  background-color: #ffffff;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  footer section {
    max-width: 100% !important;
  }
}

footer #signoff {
  flex-direction: column;
  margin: 30px 0 20px calc(29.5% + 45px) !important;
}

@media (max-width: 800px) {
  footer #signoff {
    margin: 0 auto !important;
    max-width: 300px;
  }
}

footer #signoff p {
  font-size: 0.875rem;
  color: #394151;
}

footer #signoff p:last-of-type {
  margin: 20px 0;
}

footer #signoff a img {
  max-width: 290px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer #signoff a {
    height: 100%;
  }
}

footer #signoff a + p {
  margin: 10px 0 10px;
}

footer .mobile-br {
  display: none;
}

footer .desktop-br {
  display: block;
}

@media (max-width: 800px) {
  footer {
    height: auto;
  }

  footer #signoff a {
    margin: 0;
  }

  footer #signoff a img {
    width: 260px;
  }

  footer .mobile-br {
    display: block;
  }

  footer .desktop-br {
    display: none;
  }
}

a.btn {
  font-size: 1.0625rem;
  color: white;
  text-decoration: none;
  background-color: #003F73;
  box-sizing: border-box;
  border: 2px solid #003F73;
  border-radius: 4px;
  letter-spacing: 1.4px;
  box-shadow: 0 4px 6px rgba(55, 55, 55, 0.4);
}

a.btn:hover {
  color: #003F73;
  background-color: white;
}

.btn-transparent {
  background-color: #00223D;
  color: #ffffff;
  border: 2px solid #54B948;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 15px;
  min-width: 175px;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
  border-radius: 50px;
  margin: 0 auto;
}

.btn-transparent:hover,
.btn-transparent:visited {
  color: #ffffff;
  opacity: 0.9;
}

.btn-blue {
  background: #003F73;
  color: #ffffff !important;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 15px;
  min-width: 175px;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
  border-radius: 50px;
  margin: 0 auto;
}

.btn-blue:hover {
  color: #ffffff;
  opacity: 0.9;
}

.btn-white {
  background: #ffffff;
  color: #003F73;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 15px;
  min-width: 175px;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid #54B948;
  margin: 0 auto;
}

.btn-white:hover {
  color: #003F73;
  opacity: 0.9;
}

.btn-white:visited {
  color: #003F73;
}

.mktoButton {
  background: #003F73 !important;
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 18px !important;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 15px !important;
  min-width: 175px;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
  border-radius: 50px;
  border: none !important;
  margin: 0 auto;
}

.mktoButton:hover {
  color: #ffffff;
  opacity: 0.9;
}

.patient .hero-wrapper {
  padding-top: 145px;
}

@media screen and (max-width: 955px) {
  .patient .hero-wrapper {
    padding-top: 185px;
  }
}

.hero-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0px;
  padding-top: 95px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media screen and (max-width: 955px) {
  .hero-wrapper {
    padding-top: 210px;
  }
}

.hero-wrapper:not(.home) {
  justify-content: flex-end;
}

@media screen and (max-width: 955px) {
  .hero-wrapper:not(.home) {
    padding-top: 175px;
  }
}

.hero-wrapper:not(.home) > div {
  width: 85%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 800px) {
  .hero-wrapper:not(.home) > div {
    width: 95%;
  }
}

.hero-wrapper:not(.home) > div p {
  font-size: 2.5rem;
  color: white;
}

.hero-wrapper:not(.home) .large-logo {
  margin-top: 0;
}

.hero-wrapper.hcp {
  justify-content: center !important;
}

.hero-wrapper.patient {
  justify-content: center !important;
}

.hero-wrapper.support {
  justify-content: center !important;
}

.hero-wrapper.register {
  justify-content: center !important;
}

.hero-wrapper > div {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  width: 70%;
}

.home .hero-wrapper {
  width: 100%;
  overflow: visible;
  padding-bottom: 120px;
}

@media (max-width: 800px) {
  .home .hero-wrapper {
    padding: 200px 0 150px;
  }
}

.home .hero-wrapper .hero-bg-img {
  display: block;
  position: relative;
  background-image: url("/img/homepage/home-hero.png");
  min-height: 590px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 955px) {
  .home .hero-wrapper .hero-bg-img {
    background-image: url("/img/homepage/home-hero.png");
    background-position: top center;
  }
}

@media (min-width: 1500px) {
  .home .hero-wrapper .hero-bg-img {
    min-height: 780px;
  }
}

.home .hero-wrapper .hero-bg-img .overlay {
  text-align: center;
  line-height: 45px;
  font-weight: bold;
}

.home .hero-wrapper .hero-bg-img .overlay .label {
  font-size: 30px;
}

@media (max-width: 800px) {
  .home .hero-wrapper .hero-bg-img .overlay .label {
    font-size: 22px;
    line-height: 32px;
  }
}

.home .hero-wrapper .hero-bg-img .overlay .hero-body {
  font-size: 45px;
  line-height: 52px;
  padding: 10px 0 40px;
}

@media (max-width: 800px) {
  .home .hero-wrapper .hero-bg-img .overlay .hero-body {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 955px) {
  .home .hero-wrapper .hero-bg-img .overlay .hero-body .hide-mobile {
    display: none;
  }
}

.home .hero-wrapper .hero-bg-img .overlay > p {
  position: absolute;
  bottom: 80px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 955px) {
  .home .hero-wrapper .hero-bg-img .overlay > p {
    max-width: 80%;
    left: 10%;
    bottom: 110px;
  }
}

.home .hero-wrapper .hero-bg-img .overlay > div {
  position: absolute;
  bottom: 0;
  width: 675px;
  max-width: 90%;
  border: 3px solid #54B948;
  padding: 20px 50px;
  border-radius: 100px;
  background: #ffffff;
  transform: translate(0%, 50%);
}

.home .hero-wrapper .hero-bg-img .overlay > div p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin: 0;
  padding: 0;
  color: #003F73;
}

@media (max-width: 955px) {
  .home .hero-wrapper .hero-bg-img .overlay > div {
    max-width: calc(100% - 126px);
    left: 20px;
    border: 3px solid #54B948;
    padding: 20px 40px;
  }

  .home .hero-wrapper .hero-bg-img .overlay > div p {
    font-size: 14px;
  }
}

.home .hero-wrapper .hero-bg-img .learn-more {
  margin: 0 auto;
  padding: 50px 0 0;
  cursor: pointer;
}

.footnote-wrapper {
  padding: 20px 0;
}

.footnote-wrapper p {
  font-size: 0.875rem;
}

#isi {
  width: 100%;
  position: fixed;
  top: calc(100% - 120px);
  z-index: 70;
  background: white;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  bottom: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #isi {
    /* IE10+ CSS styles go here */
    top: 85%;
  }
}

#isi.has-collapsed {
  top: calc(100% - 50px);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #isi.has-collapsed {
    /* IE10+ CSS styles go here */
    top: 95%;
  }
}

#isi section {
  max-width: 70%;
  margin: 0 auto;
}

@media (max-width: 915px) {
  #isi {
    max-width: 100%;
    margin: 0 auto;
    left: 0;
  }
}

@media (max-width: 800px) {
  #isi {
    top: calc(100% - 100px);
    z-index: 90;
  }
}

@media all and (max-width: 800px) and (-ms-high-contrast: none), (max-width: 800px) and (-ms-high-contrast: active) {
  #isi {
    /* IE10+ CSS styles go here */
    top: 85%;
  }
}

@media (max-width: 330px) {
  #isi {
    top: calc(100% - 95px);
  }
}

#isi h3 {
  color: #003F73;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
}

@media (max-width: 800px) {
  #isi h3 {
    font-size: 1rem;
  }
}

#isi p,
#isi ul {
  margin: 15px auto;
  color: #003F73;
}

#isi p b,
#isi ul b {
  font-family: "Open Sans", sans-serif;
  color: #003F73;
}

#isi #isi-header .isi-toggle {
  position: absolute;
  top: 15px;
  right: 0;
  padding: 5px 20px;
}

#isi #isi-header .isi-toggle:hover {
  color: #8C8C8C;
}

#isi #isi-header .isi-toggle .copy {
  vertical-align: top;
  padding-right: 8px;
}

@media (max-width: 800px) {
  #isi #isi-header .isi-toggle .copy {
    display: none;
  }
}

#isi #isi-header .isi-toggle img {
  position: relative;
  bottom: 0px;
  transition: transform 1s;
  float: right;
}

@media (max-width: 800px) {
  #isi #isi-header .isi-toggle img {
    bottom: -10px;
  }

  #isi #isi-header .isi-toggle .copy {
    top: 15px;
    position: absolute;
    left: -40px;
    font-size: .875rem;
  }
}

#isi.is-expanded {
  top: 30%;
  overflow-y: scroll;
}

#isi.is-expanded .isi-toggle img {
  transform: rotate(180deg);
  bottom: 10px !important;
}

@media (max-width: 800px) {
  #isi.is-expanded .isi-toggle img {
    bottom: 10px !important;
  }
}

@media (max-width: 800px) {
  #isi.is-expanded .isi-toggle {
    top: 12px !important;
  }

  #isi.is-expanded .isi-toggle .copy {
    left: -40px;
    display: none;
  }
}

#isi.isi-detatched {
  position: relative;
  margin-top: 40px;
}

#isi.isi-detatched #isi-header .isi-toggle {
  visibility: hidden;
}

#isi #isi-header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  right: 15%;
  width: 100%;
}

#isi #isi-header h3 {
  margin: 15px 0 10px;
  top: 0;
}

@media (max-width: 800px) {
  #isi #isi-header {
    font-size: 1rem;
    left: 0px;
    width: calc(100% - 60px);
  }

  #isi #isi-header h3 {
    flex-basis: 67%;
    font-size: 1rem;
    margin-top: 5px;
  }

  #isi #isi-header .isi-toggle {
    top: 3px;
    right: -25%;
  }
}

#isi #isi-content {
  background: white;
  margin-top: 15px;
}

#isi #isi-content h3 {
  font-size: 1.0625rem;
}

#isi #isi-content #indication {
  max-width: 29.5%;
  padding-right: 20px;
  flex: 1 1 auto;
  height: -moz-fit-content;
  height: fit-content;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #isi #isi-content #indication {
    /* IE10+ CSS styles go here */
    max-width: 70%;
    min-width: 30%;
  }
}

@media (max-width: 800px) {
  #isi #isi-content #indication {
    padding-right: 0;
  }
}

#isi #isi-content #indication p {
  color: #394151 !important;
}

@media (max-width: 800px) {
  #isi #isi-content #indication p.mobile.bold {
    margin: 0 auto;
  }
}

#isi #isi-content #isi-copy {
  padding-left: 25px;
  flex: 1 1 auto;
  border-left: 1px solid lightgrey;
}

#isi #isi-content #isi-copy ul {
  margin: 15px auto 0;
}

#isi #isi-content #isi-copy ul li {
  line-height: 21px;
  color: #394151;
}

@media (max-width: 800px) {
  #isi #isi-content #isi-copy ul li:last-of-type {
    padding-bottom: 20px;
  }
}

#isi #isi-content #isi-copy b {
  font-family: "Open Sans", sans-serif;
}

#isi #isi-content #isi-copy p.desktop.bold {
  margin: 0 0 50px;
  color: #394151;
}

#isi #isi-content a {
  color: inherit;
}

@media (max-width: 800px) {
  #isi #isi-content {
    flex-direction: column-reverse;
    max-width: 95%;
  }

  #isi #isi-content #indication {
    border: 0;
    max-width: 100%;
  }

  #isi #isi-content #isi-copy {
    padding-left: 0;
    border-left: 0;
  }

  #isi #isi-content #isi-copy h3 {
    font-size: 0.9375rem;
  }
}

#isi section {
  margin: 0 auto;
  display: flex;
  font-size: 0.9375rem;
}

@media (max-width: 915px) {
  #isi section {
    padding: 0 20px;
  }
}

#isi #footer-links {
  justify-content: space-evenly;
}

@media (max-width: 800px) {
  #isi #footer-links {
    margin-bottom: 10px;
    margin-top: 50px;
  }
}

@media (max-width: 800px) {
  #isi #footer-links ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  #isi #footer-links ul li {
    margin: 5px 0;
  }

  #isi #footer-links ul li.no-mobile {
    display: none;
  }
}

#isi #footer-links ul li {
  display: inline;
  padding: 0px 5px 0px 0px;
  color: #394151;
}

#isi #footer-links ul li a {
  font-size: 0.875rem;
  color: #394151;
  text-decoration: none;
}

#isi #footer-links ul li a:hover {
  color: #0092CC;
}

#isi #footer-links ul li #ot-sdk-btn {
  color: #394151 !important;
  text-decoration: none !important;
  font-family: "Open Sans", sans-serif !important;
}

#isi #footer-links ul li #ot-sdk-btn:hover {
  color: #0092CC !important;
}

@media (max-width: 375px) {
  #isi.is-expanded {
    top: 32%;
  }
}

@media (max-width: 415px) {
  #isi.is-expanded {
    top: 40%;
  }
}

@media (max-width: 800px) {
  #isi-content #isi-copy h3.isi-toggle {
    font-size: 1.0625rem !important;
  }
}

#utility-nav {
  max-width: 955px;
  margin: 0 auto;
  font-size: 0.75rem;
  padding: 20px 0 20px;
}

@media (max-width: 955px) {
  #utility-nav {
    padding: 0 20px;
  }
}

#utility-nav .mobile {
  display: none;
}

#utility-nav p {
  font-size: 0.75rem;
  margin-bottom: 0px;
}

#utility-nav ul {
  margin-top: 0px;
}

#utility-nav ul li {
  display: inline;
  padding: 0px 5px 0px 0px;
}

#utility-nav ul li a {
  font-size: 0.75rem;
  text-decoration: underline;
  color: #4E4E4E;
}

#utility-nav ul li a:hover {
  color: #0092CC;
}

@media (max-width: 800px) {
  #utility-nav {
    padding: 20px 0 20px;
    margin-top: 10px;
    text-align: center;
  }

  #utility-nav .mobile {
    display: inline;
  }

  #utility-nav .remove-mobile {
    display: none;
  }

  #utility-nav p,
  #utility-nav ul {
    display: inline;
    font-size: 0.625rem;
  }

  #utility-nav p li,
  #utility-nav ul li {
    padding: 0 3px;
  }

  #utility-nav p li a,
  #utility-nav ul li a {
    font-size: 0.625rem;
  }
}

#header {
  padding-top: 100px;
  max-width: 955px;
  margin: 0 auto;
}

@media (max-width: 955px) {
  #header {
    padding: 0 20px;
  }
}

@media (max-width: 955px) {
  #header {
    padding: 0 20px;
  }
}

.content-wrapper {
  margin: 0 auto;
}

body.support .support.section-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: sticky;
  z-index: 10;
  background: #ffffff;
  padding: 0 !important;
}

body.support .support.section-links .fixed {
  position: fixed;
  top: 100px;
}

body.support .support.section-links .links-wrapper {
  width: 100%;
  justify-content: center;
  border-bottom: 2px solid #003F72;
  background-color: #ffffff;
  padding: 15px 0;
}

@media (max-width: 955px) {
  body.support .support.section-links .links-wrapper {
    margin-left: 0;
    width: 100% !important;
    flex-direction: row !important;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  body.support .support.section-links .links-wrapper {
    display: none;
  }
}

body.support .support.section-links .links-wrapper div {
  color: #003F73 !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0 20px;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.support .support.section-links .links-wrapper div {
    padding: 5px 8px;
  }
}

body.support .support.section-links .links-wrapper div:hover {
  color: #4E4E4E !important;
}

body.support .support.section-links .links-wrapper div:active {
  font-weight: bold !important;
}

body.support .support.section-links .links-wrapper div:visited {
  font-weight: bold !important;
}

body.support .support.section-links .links-wrapper span.mobile-hide.blue {
  font-size: 0.875rem;
  font-weight: 700;
}

body.support .support.section-links .mobile-pageTitle {
  display: none;
}

@media (max-width: 767px) {
  body.support .support.section-links .mobile-pageTitle {
    display: block;
    background-color: #fde7de;
    width: 100%;
    padding: 5px 25px;
    border-top: 5px solid #F15D22;
  }

  body.support .support.section-links .mobile-pageTitle p {
    color: #003F73;
    font-weight: 800;
    font-size: 0.8125rem;
    line-height: .9375rem;
  }
}

body.support .pageSection-header {
  margin: 0;
}

body.support .pageSection-header .pageSection-title {
  width: 72%;
  margin: 0 auto;
}

body.support .pageSection-header .pageSection-title div {
  background-color: #0092CC;
  width: 40%;
  padding-left: 25px;
  padding-top: 2px;
}

body.support .pageSection-header .pageSection-title div p {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 0.9375rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  body.support .pageSection-header .pageSection-title {
    margin: 0 0 0 10px;
  }

  body.support .pageSection-header .pageSection-title div {
    width: 100%;
    text-align: left;
    padding-left: 10px;
  }
}

body.support h2 {
  font-weight: bold;
  color: #003F73;
  font-size: 1.875rem;
  line-height: 2.1875rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  body.support h2 {
    font-size: 1.625rem;
  }
}

body.support .hero-wrapper.support {
  width: 100%;
}

@media (max-width: 800px) {
  body.support .hero-wrapper.support {
    padding: 200px 0 0 !important;
  }
}

body.support .hero-wrapper.support .hero-bg-img {
  display: block;
  position: relative;
  background-image: url("/img/Hero-Support_1424x588.jpg");
  min-height: 590px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 955px) {
  body.support .hero-wrapper.support .hero-bg-img {
    background-image: url("/img/Hero-Support_1424x588.jpg");
    background-position: top center;
  }
}

@media (min-width: 1500px) {
  body.support .hero-wrapper.support .hero-bg-img {
    min-height: 780px;
  }
}

body.support .hero-wrapper.support .hero-bg-img .overlay {
  text-align: center;
  line-height: 45px;
  font-weight: bold;
}

body.support .hero-wrapper.support .hero-bg-img .overlay .label {
  font-size: 30px;
}

@media (max-width: 800px) {
  body.support .hero-wrapper.support .hero-bg-img .overlay .label {
    font-size: 22px;
    line-height: 32px;
  }
}

body.support .hero-wrapper.support .hero-bg-img .overlay .hero-body {
  font-size: 45px;
  line-height: 52px;
  padding: 10px 0 40px;
}

@media (max-width: 800px) {
  body.support .hero-wrapper.support .hero-bg-img .overlay .hero-body {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 955px) {
  body.support .hero-wrapper.support .hero-bg-img .overlay .hero-body .hide-mobile {
    display: none;
  }
}

body.support .hero-wrapper.support .hero-bg-img .overlay > p {
  position: absolute;
  bottom: 30px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 955px) {
  body.support .hero-wrapper.support .hero-bg-img .overlay > p {
    max-width: 80%;
    left: 10%;
  }
}

body.support .hero-wrapper.support .hero-bg-img .learn-more {
  margin: 0 auto;
  padding: 50px 0 0;
  cursor: pointer;
}

body.support .home-support-wrapper {
  flex-direction: row;
}

body.support .home-support-wrapper .support-logo {
  width: 300px;
  max-width: 100%;
}

body.support .home-support-wrapper .support-logo hr {
  border-bottom: 1px solid #003F73;
  margin: 10px 0;
}

@media (max-width: 800px) {
  body.support .home-support-wrapper .support-logo hr {
    border-bottom: 2px solid #003F73;
  }
}

body.support .home-support-wrapper .support-logo p {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  color: #536D94;
  font-weight: 500;
  padding: 0;
}

body.support .home-support-wrapper .support-logo p b {
  font-family: "Open Sans", sans-serif;
}

body.support .home-support-wrapper .support-logo p small {
  font-size: 1rem;
  font-weight: 400;
}

body.support .home-support-wrapper .support-logo p small span {
  font-size: 0.875rem;
}

body.support .home-support-wrapper .comprehensive {
  padding-left: 50px;
  width: inherit;
}

body.support .home-support-wrapper .comprehensive h2 {
  font-size: 1.5rem;
  line-height: 1.6875rem;
  margin-bottom: 5px;
}

body.support .home-support-wrapper .comprehensive p {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  padding: 0 0 10px;
}

body.support .home-support-wrapper .comprehensive ul {
  margin-left: 20px;
}

body.support .home-support-wrapper .comprehensive ul li::marker {
  content: ' \2022   ';
  color: #0092CC;
}

body.support .home-support-wrapper .comprehensive a {
  width: 290px;
  margin: 0;
}

@media (max-width: 800px) {
  body.support .home-support-wrapper {
    flex-direction: column;
    width: 80% !important;
    align-items: center;
  }

  body.support .home-support-wrapper .support-logo {
    text-align: left;
    width: 80%;
    margin: 0 auto;
  }

  body.support .home-support-wrapper .support-logo .logo-image {
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
  }

  body.support .home-support-wrapper .support-logo .logo-image img {
    margin: 0;
  }

  body.support .home-support-wrapper .comprehensive {
    padding-left: 0;
    margin-top: 25px;
  }

  body.support .home-support-wrapper .comprehensive a {
    margin: 25px auto;
    width: 96%;
  }
}

body.support #support-section-header-support {
  scroll-margin-top: 100px;
}

body.support #support {
  padding-bottom: 50px;
}

@media (max-width: 800px) {
  body.support #support {
    padding-bottom: 30px;
  }
}

body.support #support .section-wrapper .topSupportSection h2 {
  font-size: 1.875rem;
  line-height: 2rem;
}

body.support #support .section-wrapper .topSupportSection p {
  font-size: 1rem;
  line-height: 1.5rem;
}

body.support #support .section-wrapper .topSupportSection p:first-of-type {
  padding: 0 0 10px;
}

body.support #support .section-wrapper .topSupportSection ul {
  margin: 20px 0 0 !important;
  padding-left: 20px;
}

body.support #support .section-wrapper .topSupportSection ul li {
  color: #003F73;
}

body.support #support .section-wrapper .topSupportSection ul li ul {
  padding-top: 10px;
}

body.support #support .section-wrapper .hcp-section {
  margin: 60px 0 0;
}

@media (max-width: 800px) {
  body.support #support .section-wrapper .hcp-section {
    margin: 30px 0 0;
  }
}

body.support #support .section-wrapper .hcp-section .numbered-text {
  display: flex;
}

body.support #support .section-wrapper .hcp-section .numbered-text div:first-of-type {
  margin-right: 5px;
}

body.support #support .section-wrapper .hcp-section .numbered-text p {
  padding: 10px 0 0;
}

body.support #support .section-wrapper .hcp-section h3.ls-0 {
  letter-spacing: 0;
}

body.support #support .section-wrapper .hcp-section .med-gray {
  color: #707072;
}

body.support #support .section-wrapper .hcp-section .button-wrap a.support.btn {
  padding: 10px 12px;
  border: none;
  border-radius: 2px;
  background-color: #0092CC;
  width: 222px;
  display: block;
  text-align: center;
  box-shadow: none;
  margin-top: auto;
  font-weight: bold;
}

body.support #support .section-wrapper .hcp-section .button-wrap a.support.btn:hover {
  background-color: #4E4E4E !important;
  color: #ffffff !important;
}

body.support #support .section-wrapper .patient-section {
  margin: 80px 0 60px;
}

@media (max-width: 800px) {
  body.support #support .section-wrapper .patient-section {
    margin: 60px 0;
  }
}

body.support #support .section-wrapper .patient-section .link-wrap-area a {
  margin-right: 50px;
}

body.support #support .section-wrapper .patient-section .link-wrap-area .ml-35 {
  margin-left: -35px;
}

@media (max-width: 800px) {
  body.support #support .section-wrapper .patient-section .link-wrap-area .ml-35 {
    margin-left: -5px;
    margin-right: 0 !important;
  }
}

@media (max-width: 800px) {
  body.support #support .section-wrapper .patient-section .link-wrap-area #stay-informed-link {
    margin-right: 0;
  }
}

body.support #support .call-section {
  background: linear-gradient(180deg, #003f73 0%, #00203a 50%);
  padding: 40px 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

body.support #support .call-section h3 {
  color: #ffffff;
  font-size: 25px;
  line-height: 29px;
  margin: 0 0 20px;
}

body.support #support .call-section .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

body.support #support .call-section .buttons a {
  border: 2px solid #54B948;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 290px;
  text-align: center;
  text-transform: uppercase;
}

body.support #support .call-section .buttons a:hover {
  opacity: 0.9;
}

body.support #support .call-section .buttons a:first-of-type {
  color: #003F73;
  background: #ffffff;
  text-transform: none;
}

body.support #support .call-section .buttons a:first-of-type:before {
  content: '';
  background: url("/img/icon-phone.svg") no-repeat;
  width: 29px;
  height: 31px;
  margin-right: 10px;
}

body.support #support .call-section .buttons div {
  width: 23px;
  height: 2px;
  background-color: #54B948;
}

body.support #support .call-section p:last-of-type {
  font-size: 14px;
  line-height: 20px;
  margin: 20px 0 0;
  padding: 0;
}

@media (max-width: 800px) {
  body.support #support .call-section {
    max-width: calc(100% - 60px);
    padding: 40px 30px;
  }

  body.support #support .call-section h3 {
    margin-bottom: 30px;
  }

  body.support #support .call-section .buttons {
    flex-direction: column;
  }

  body.support #support .call-section .buttons a {
    margin-bottom: 0;
    width: 90%;
  }

  body.support #support .call-section .buttons a:first-of-type {
    padding: 10px 30px;
    width: calc(90% - 60px);
    text-align: left;
    line-height: 20px;
  }

  body.support #support .call-section .buttons a:first-of-type:before {
    width: 44px;
    height: 31px;
    margin-right: 30px;
  }

  body.support #support .call-section .buttons div {
    height: 23px;
    width: 2px;
  }
}

body.support #resources-section-header-support {
  scroll-margin-top: 100px;
}

body.support #resources h3 {
  font-size: 22px;
  line-height: 24px;
  color: #003F73;
}

body.support #resources .column-wrapper {
  display: flex;
  flex-direction: row;
}

@media (max-width: 800px) {
  body.support #resources .column-wrapper {
    flex-direction: column;
  }
}

body.support #resources .column-wrapper .column.hcp {
  border-right: 1px solid #8C8C8C;
}

@media (max-width: 800px) {
  body.support #resources .column-wrapper .column.hcp {
    border-right: 0;
  }
}

body.support .navyBottomBorder {
  border-bottom: 10px solid #003F73;
  margin-top: 25px;
}

body.support #support-closing {
  padding-top: 50px;
  padding-bottom: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #F4F4F4;
}

body.support #support-closing .registration-cta-box {
  display: flex;
  flex-direction: row;
  border: 2px solid #0092CC;
}

body.support #support-closing .registration-cta-box .ctaBoxCopy {
  background-color: #ffffff;
}

body.support #support-closing .registration-cta-box .ctaBoxCopy h3 {
  font-size: 1.125rem;
  line-height: 1.375rem;
  padding: 9px 15px;
}

body.support #support-closing .registration-cta-box .button-wrapper a {
  padding: 6px 12px;
  border: none;
  border-radius: 2px;
  background-color: #0092CC;
  width: 222px;
  display: block;
  text-align: center;
  box-shadow: none;
  margin-top: auto;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

body.support #support-closing .registration-cta-box .button-wrapper a .white-arrow {
  margin-left: 2px;
}

body.support #support-closing .registration-cta-box .button-wrapper a:hover {
  background-color: #4E4E4E !important;
}

@media (max-width: 800px) {
  body.support #support-closing {
    width: 100% !important;
  }

  body.support #support-closing .registration-cta-box {
    flex-direction: column;
    height: auto;
    width: 85%;
  }

  body.support #support-closing .registration-cta-box .ctaBoxCopy h3 {
    padding: 9px 5px;
    text-align: center;
  }

  body.support #support-closing .registration-cta-box .button-wrapper a {
    width: auto;
  }
}

body.support #support .cta.cyan {
  transition: 0s all !important;
}

body.support #support .cta.cyan:hover {
  color: #4E4E4E !important;
}

body.support #support .comprehensive {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.support #support .comprehensive .btn {
  padding: 15px;
  background-color: #0092CC;
  border: none;
  margin-top: 30px;
  max-width: 380px;
  align-self: center;
  text-transform: uppercase;
}

body.support #support .comprehensive .btn .white-arrow {
  margin-left: 2px;
}

body.support #support ul {
  padding-left: 20px;
  margin: 0 0 25px;
}

body.support #support ul li {
  color: #394151;
  line-height: 24px;
}

body.support #support ul li::before {
  content: "\2022";
  font-size: 1.0625rem;
  padding-right: 10px;
  display: inline-block;
  margin-left: -20px;
  color: #0092CC;
}

body.support #support ul.sub-list {
  margin: 10px 0;
  padding-left: 40px;
}

body.support #support section {
  margin: 20px 0;
}

body.support #support section > a.register:hover {
  color: #F15D22;
}

body.support #support section div.container {
  padding: 0;
  padding-left: 60px;
}

@media (max-width: 800px) {
  body.support #support h2 {
    font-size: 1.375rem;
    margin-bottom: 15px;
  }

  body.support #support h3 {
    font-size: 1.375rem;
  }

  body.support #support section div.container {
    padding: 0;
  }
}

body.support #support .hcp-icon {
  font-size: 22px;
  color: #003F73;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

body.support #support .hcp-icon:before {
  content: url("/img/icon-caregiver.svg");
  padding-right: 15px;
}

@media (max-width: 440px) {
  body.support #support .hcp-icon:before {
    margin-top: 0;
  }
}

body.support #support .blue-box {
  background-color: rgba(99, 131, 180, 0.05);
  border-radius: 20px;
  padding: 30px 40px;
  margin-bottom: 30px;
}

body.support #support .blue-box h3 {
  color: #536D94;
  font-size: 22px;
  line-height: 34px;
  font-weight: 500;
  margin: 0 0 10px;
}

body.support #support .blue-box p,
body.support #support .blue-box li {
  color: #394151;
  font-size: 16px;
}

body.support #support .blue-box .btn-blue {
  margin: 0 0 30px;
}

body.support #support .patient-icon {
  font-size: 22px;
  color: #003F73;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

body.support #support .patient-icon:before {
  content: url("/img/icon-boy.svg");
  padding-right: 15px;
}

@media (max-width: 440px) {
  body.support #support .patient-icon:before {
    margin-top: 0;
  }
}

body.support #support .link-wrap {
  display: flex;
  flex-wrap: wrap;
}

body.support #support .link-wrap a {
  margin-right: 50px;
  margin-bottom: 20px;
}

body.support #support .cta {
  font-size: 0.9375rem;
  font-family: "Open Sans", sans-serif;
  color: #003F73;
  display: flex;
  align-items: center;
}

body.support #support .cta:before {
  content: url("/img/icon-download.svg");
  vertical-align: middle;
  margin: -9px 20px 0 -9px;
  width: 30px;
  height: 30px;
}

body.support #support .cta:hover {
  opacity: 0.9;
}

body.support #support .cta.ext {
  margin-top: -7px;
}

body.support #support .cta.ext:before {
  content: url("/img/icon-ext.svg");
  margin: 4px 15px 0 -3px;
}

body.support #support .register {
  display: block;
  color: #003F73;
  text-decoration: none;
  margin-top: 20px;
  font-family: "Open Sans", sans-serif;
}

body.support .call-section {
  font-size: 1.25rem;
  margin: 0 !important;
}

@media (max-width: 955px) {
  body.support .call-section a img.desktop {
    max-width: 99%;
  }
}

@media (min-width: 560px) {
  body.support .call-section a img.desktop {
    display: inline-block;
  }
}

@media (max-width: 800px) {
  body.support .call-section a img.mobile {
    display: none;
  }
}

@media (max-width: 560px) {
  body.support .call-section a img.mobile {
    display: block;
    margin: 0 auto;
    width: 80vw;
  }
}

body.support .call-section a > span {
  white-space: nowrap;
}

body.support .call-section .call-icon {
  border: 4px solid #0092CC;
  border-radius: 25px;
  padding: 5px 20px 0px 5px;
  width: auto;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  color: #003F73;
}

body.support .call-section .call-icon img {
  max-width: 20px;
  vertical-align: text-bottom;
  padding: 2px 5px;
}

body.support .call-section hr {
  display: inline-block;
  width: 23px;
  border: 2px solid #0092CC;
}

body.support .call-section div.h-blue-grad {
  background: #00aeef;
  background: linear-gradient(90deg, #00aeef 0%, #003f73 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00aeef",endColorstr="#003f73",GradientType=1);
  border-radius: 25px;
  width: auto;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  color: white;
  min-height: 40px;
  vertical-align: top;
  position: relative;
  left: -5px;
}

body.support .call-section div.h-blue-grad a {
  color: white;
  text-decoration: none;
  padding: 20px 25px 2px;
  position: relative;
  top: 9px;
}

body.support .call-section div.h-blue-grad a span {
  white-space: nowrap;
}

body.support .call-section div.h-blue-grad small {
  position: absolute;
  color: #4E4E4E;
  display: block;
  margin-top: 18px;
  margin-left: 20px;
  font-weight: normal;
  font-size: 0.9375rem;
}

body.support .call-section div.h-blue-grad small > span {
  font-size: 0.75rem;
}

@media (max-width: 800px) {
  body.support .call-section .call-icon {
    display: block;
    text-align: center;
    font-size: 1.25rem;
  }

  body.support .call-section hr {
    display: block;
    transform: rotate(90deg);
  }

  body.support .call-section div.h-blue-grad {
    display: block;
    text-align: center;
    padding: 5px 20px;
    min-height: unset;
    left: 0;
  }

  body.support .call-section div.h-blue-grad a {
    font-size: 1.25rem;
    top: 2px;
    padding: unset;
  }

  body.support .call-section div.h-blue-grad a span {
    position: relative;
    bottom: 4px;
  }

  body.support .call-section div.h-blue-grad small {
    width: 100%;
    margin-left: -20px;
  }
}

body.support #resources {
  padding-bottom: 60px;
}

@media (max-width: 800px) {
  body.support #resources {
    padding-bottom: 30px;
  }
}

body.support #resources h2 {
  margin-bottom: 30px;
}

body.support #resources .column-wrapper {
  height: 100%;
}

body.support #resources .column-wrapper h3 {
  text-align: left;
  margin: 0 0 30px 0;
}

body.support #resources .column-wrapper .column {
  flex-basis: 47%;
  padding-right: 25px;
}

body.support #resources .column-wrapper .column.hcp a:before {
  content: url("/img/icon-download.svg");
}

body.support #resources .column-wrapper .column.hcp a#videoModalLink:before {
  content: url("/img/icon-video.png") !important;
}

body.support #resources .column-wrapper .column.dtc {
  padding-left: 30px;
}

body.support #resources .column-wrapper .column.dtc a:before {
  content: url("/img/icon-download.svg");
}

@media (max-width: 800px) {
  body.support #resources .column-wrapper .column.dtc {
    padding-left: 0;
  }
}

body.support #resources .column-wrapper .column .row {
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

@media (max-width: 800px) {
  body.support #resources .column-wrapper .column .row:last-of-type {
    margin-bottom: 0;
  }
}

body.support #resources .column-wrapper .column .row img {
  margin-right: 0;
}

body.support #resources .column-wrapper .column .row p {
  margin-left: 40px;
}

body.support #resources .column-wrapper .column .row a {
  display: flex;
  align-items: flex-start;
  transition: 0s all !important;
  flex-basis: 100%;
  text-decoration: underline;
  color: #003F73;
  margin-bottom: 0;
}

body.support #resources .column-wrapper .column .row a:before {
  margin: -9px 20px 0 -9px;
  width: 30px;
  height: 30px;
}

body.support #resources .column-wrapper hr {
  border-bottom: 2px solid #AAA9AB;
  width: 80%;
  margin: 25px auto;
}

@media (max-width: 955px) {
  body.support #resources .column-wrapper hr {
    display: none;
  }
}

@media (max-width: 800px) {
  body.support #resources .column-wrapper hr {
    border-bottom: 2px solid #E3E2E3;
    width: 222px;
    margin: 50px auto;
    display: inline-block;
  }
}

#support .home-support-wrapper .support-logo .cyan {
  padding: 5px 0 0;
}

#support .home-support-wrapper .comprehensive {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#support .home-support-wrapper .comprehensive a {
  margin-top: 0;
}

#resources-video.modal {
  position: fixed;
  top: 0;
  padding-top: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

#resources-video.modal iframe {
  width: 640px;
  height: 360px;
}

@media (max-width: 800px) {
  #resources-video.modal iframe {
    width: 360px;
    height: 202px;
  }
}

@media (max-width: 370px) {
  #resources-video.modal iframe {
    width: 320px;
    height: 180px;
  }
}

@media (max-width: 330px) {
  #resources-video.modal iframe {
    width: 300px;
    height: 169px;
  }
}

#resources-video.modal button {
  background-color: transparent;
  color: #fff;
  border: none;
  font-size: 1rem;
  margin-left: auto;
  font-weight: 400;
  display: flex;
  font-family: "Spartan", sans-serif;
  margin-bottom: 5px;
}

#resources-video.modal button:after {
  content: "X";
  height: 15px;
  width: 15px;
  margin-left: 3px;
}

#resources-video.hidden {
  display: none;
}

#resources-video.fade {
  animation: bg-fade-in .5s ease-in-out;
}

#resources-video.fade .modal-content {
  animation: fade-in .5s ease-in-out;
}

#resources-video.fade-out {
  animation: bg-fade-out .5s ease-in-out;
}

#resources-video.fade-out .modal-content {
  animation: fade-out .5s ease-in-out;
}

@keyframes bg-fade-out {
  from {
    background-color: rgba(0, 0, 0, 0.5);
  }

  to {
    background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes fade-in {
  from {
    margin-top: 100%;
  }

  to {
    margin-top: 0;
  }
}

@keyframes fade-out {
  from {
    margin-top: 0;
  }

  to {
    margin-top: 100%;
  }
}

body.register .hero-wrapper.register {
  width: 100%;
}

@media (max-width: 800px) {
  body.register .hero-wrapper.register {
    padding: 200px 0 0 !important;
  }
}

body.register .hero-wrapper.register .hero-bg-img {
  display: block;
  position: relative;
  background-image: url("/img/stay-informed-hero.png");
  min-height: 330px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 955px) {
  body.register .hero-wrapper.register .hero-bg-img {
    background-image: url("/img/stay-informed-hero.png");
    background-position: bottom left;
  }
}

@media (max-width: 800px) {
  body.register .hero-wrapper.register .hero-bg-img {
    background-image: url("/img/stay-informed-hero-mobile.png");
    min-height: 300px;
  }
}

@media (min-width: 1500px) {
  body.register .hero-wrapper.register .hero-bg-img {
    min-height: 450px;
  }
}

body.register .hero-wrapper.register .hero-bg-img .overlay {
  text-align: center;
  line-height: 45px;
  font-weight: bold;
}

@media (max-width: 800px) {
  body.register .hero-wrapper.register .hero-bg-img .overlay {
    padding: 0 25px;
  }
}

body.register .hero-wrapper.register .hero-bg-img .overlay h2 {
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  body.register .hero-wrapper.register .hero-bg-img .overlay h2 {
    font-size: 22px;
  }
}

body.register .hero-wrapper.register .hero-bg-img .overlay .label {
  font-size: 30px;
}

@media (max-width: 800px) {
  body.register .hero-wrapper.register .hero-bg-img .overlay .label {
    font-size: 22px;
    line-height: 32px;
  }
}

body.register .hero-wrapper.register .hero-bg-img .overlay .hero-body {
  font-size: 45px;
  line-height: 52px;
  padding: 10px 0;
}

@media (max-width: 800px) {
  body.register .hero-wrapper.register .hero-bg-img .overlay .hero-body {
    font-size: 32px;
    line-height: 40px;
  }
}

body.register .hero-wrapper.register .hero-bg-img .overlay > p {
  position: absolute;
  bottom: 25px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  left: 50%;
  transform: translate(-50%, 0);
}

@media (max-width: 955px) {
  body.register .hero-wrapper.register .hero-bg-img .overlay > p {
    width: 80%;
    left: 10%;
    text-align: center;
    transform: none;
    bottom: 20px;
  }
}

body.register .section-links {
  display: flex;
  flex-direction: row;
  padding: 105px 0 0px 0;
  position: fixed;
  z-index: 10;
}

@media (max-width: 767px) {
  body.register .section-links {
    padding: 210px 0 0 0;
  }
}

body.register .section-links .links-wrapper {
  background-color: #E8ECF4;
  width: 100%;
  justify-content: center;
  border-top: 5px solid #6383B4;
  padding: 5px;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.register .section-links .links-wrapper {
    margin-left: 0;
    width: 100% !important;
    flex-direction: row !important;
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  body.register .section-links .links-wrapper {
    display: none;
  }
}

body.register .section-links .links-wrapper div {
  color: #003F73 !important;
  cursor: pointer;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0 20px;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.register .section-links .links-wrapper div {
    padding: 5px 8px;
  }
}

body.register .section-links .links-wrapper div:hover {
  color: #4E4E4E !important;
}

body.register .section-links .links-wrapper div:active {
  font-weight: bold !important;
}

body.register .section-links .links-wrapper div:visited {
  font-weight: bold !important;
}

body.register .section-links .links-wrapper span.mobile-hide.blue {
  font-size: 0.875rem;
  font-weight: 700;
}

body.register .section-links .mobile-pageTitle {
  display: none;
}

@media (max-width: 767px) {
  body.register .section-links .mobile-pageTitle {
    display: block;
    background-color: #E8ECF4;
    width: 100%;
    padding: 5px 25px;
    border-top: 5px solid #6383B4;
  }

  body.register .section-links .mobile-pageTitle p {
    color: #003F73;
    font-weight: 800;
    font-size: 0.8125rem;
    line-height: 15px;
  }
}

body.register .pageSection-header {
  margin: 0;
  border-bottom: 5px solid #6383B4;
}

body.register .pageSection-header .pageSection-title {
  width: 72%;
  margin: 0 auto;
}

body.register .pageSection-header .pageSection-title div {
  background-color: #6383B4;
  width: 40%;
  padding-left: 25px;
  padding-top: 2px;
}

body.register .pageSection-header .pageSection-title div p {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 0.9375rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  body.register .pageSection-header .pageSection-title {
    margin: 0 0 0 10px;
  }

  body.register .pageSection-header .pageSection-title div {
    width: 100%;
    padding-left: 10px;
  }
}

body.register .navyBottomBorder {
  border-bottom: 10px solid #003F73;
  margin-top: 25px;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  body.register .navyBottomBorder {
    display: none;
  }
}

body.register #register-section {
  max-width: 955px;
  margin: 0 auto;
  background-color: rgba(99, 131, 180, 0.05);
  border-radius: 20px;
  padding: 50px 30px;
  margin-top: 40px;
}

@media (max-width: 955px) {
  body.register #register-section {
    padding: 0 20px;
  }
}

@media (max-width: 800px) {
  body.register #register-section {
    padding: 40px 20px;
    margin: 40px 20px 20px;
  }
}

body.register #register-section > a img:first-of-type {
  max-width: 477px;
}

body.register #register-section h2 {
  margin-top: 30px;
  font-family: "Open Sans", sans-serif;
  color: #003F73;
  font-size: 2.5rem;
}

@media (max-width: 800px) {
  body.register #register-section h2 {
    font-size: 1.5rem;
  }
}

body.register #register-section p {
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 800px) {
  body.register #register-section p#requiredFieldText {
    padding-left: 20px;
  }
}

body.register #register-section .mktoForm {
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 16px !important;
}

body.register #register-section .mktoForm > div:nth-of-type(4),
body.register #register-section .mktoForm > div:nth-of-type(5),
body.register #register-section .mktoForm > div:nth-of-type(6) {
  width: 33%;
}

@media (max-width: 800px) {
  body.register #register-section .mktoForm > div:nth-of-type(4),
  body.register #register-section .mktoForm > div:nth-of-type(5),
  body.register #register-section .mktoForm > div:nth-of-type(6) {
    width: 100%;
  }
}

body.register #register-section .mktoForm > div:nth-of-type(7) {
  width: 100%;
}

body.register #register-section .mktoForm > div:nth-of-type(8) {
  width: 47%;
}

@media (max-width: 800px) {
  body.register #register-section .mktoForm > div:nth-of-type(8) {
    width: 100%;
  }
}

body.register #register-section .mktoForm > div:nth-of-type(9),
body.register #register-section .mktoForm > div:nth-of-type(10) {
  width: 20%;
}

@media (max-width: 800px) {
  body.register #register-section .mktoForm > div:nth-of-type(9),
  body.register #register-section .mktoForm > div:nth-of-type(10) {
    width: 100%;
  }
}

body.register #register-section .mktoForm > div:nth-of-type(12) {
  width: 100%;
}

@media (max-width: 800px) {
  body.register #register-section .mktoForm > div:nth-of-type(12) {
    width: 100%;
    margin-top: 30px;
  }
}

body.register #register-section .mktoForm #nameCustomError,
body.register #register-section .mktoForm #emailCustomError,
body.register #register-section .mktoForm #specialtyCustomError,
body.register #register-section .mktoForm #zipCustomError,
body.register #register-section .mktoForm #personClassificationError,
body.register #register-section .mktoForm #leadStatusCustomError,
body.register #register-section .mktoForm #npiCustomError {
  color: red;
  display: block;
}

body.register #register-section .mktoForm #nameCustomError.hide,
body.register #register-section .mktoForm #emailCustomError.hide,
body.register #register-section .mktoForm #specialtyCustomError.hide,
body.register #register-section .mktoForm #zipCustomError.hide,
body.register #register-section .mktoForm #personClassificationError.hide,
body.register #register-section .mktoForm #leadStatusCustomError.hide,
body.register #register-section .mktoForm #npiCustomError.hide {
  display: none !important;
}

body.register #register-section .mktoForm #LastName {
  display: none;
}

body.register #register-section .mktoForm label.mktoLabel {
  display: block;
  float: none;
  padding: 20px 0 10px 0px;
  font-family: "Open Sans", sans-serif !important;
  width: 150px !important;
  text-transform: capitalize;
}

body.register #register-section .mktoForm label.mktoLabel#LblpersonClassification {
  text-transform: none;
}

body.register #register-section .mktoForm label.mktoLabel#LblLeadStatus {
  display: none;
}

body.register #register-section .mktoForm label.mktoLabel#LblFirstName,
body.register #register-section .mktoForm label.mktoLabel#LblEmail,
body.register #register-section .mktoForm label.mktoLabel#Lblspecialty,
body.register #register-section .mktoForm label.mktoLabel#Lblnpi,
body.register #register-section .mktoForm label.mktoLabel#LblpersonClassification {
  font-weight: normal !important;
}

body.register #register-section .mktoForm label.mktoLabel#LblFirstName:not(#LblpersonClassification):after,
body.register #register-section .mktoForm label.mktoLabel#LblEmail:not(#LblpersonClassification):after,
body.register #register-section .mktoForm label.mktoLabel#Lblspecialty:not(#LblpersonClassification):after,
body.register #register-section .mktoForm label.mktoLabel#Lblnpi:not(#LblpersonClassification):after,
body.register #register-section .mktoForm label.mktoLabel#LblpersonClassification:not(#LblpersonClassification):after {
  content: "*";
}

body.register #register-section .mktoForm input {
  border-radius: 0 !important;
}

body.register #register-section .mktoForm input:not(.checkbox),
body.register #register-section .mktoForm select {
  display: block !important;
  padding-left: 10px;
  width: 100% !important;
  min-height: 60px;
  border-radius: 0 !important;
  border: 2px solid #D2D2D2 !important;
  box-shadow: none !important;
}

@media (max-width: 800px) {
  body.register #register-section .mktoForm input:not(.checkbox),
  body.register #register-section .mktoForm select {
    width: 100% !important;
  }
}

body.register #register-section .mktoForm select {
  background-image: url("/img/arrow-down-gray.svg");
  background-position: 90% 52%;
}

body.register #register-section .mktoForm select.mktoInvalid {
  border-color: red !important;
}

body.register #register-section .mktoForm input[type="checkbox"] {
  opacity: 1;
  display: inline-block;
  vertical-align: top;
}

body.register #register-section .mktoForm input[type="checkbox"] + p {
  display: inline-block;
  max-width: 40%;
  padding: 0 5px 30px;
}

@media (max-width: 800px) {
  body.register #register-section .mktoForm input[type="checkbox"] + p {
    max-width: 90%;
  }
}

body.register #register-section .mktoForm button[type="submit"] {
  display: block;
  margin: 20px 0 0;
  min-width: 220px;
  padding: 20px 15px;
  border-radius: 50px;
  font-family: "Open Sans", sans-serif;
}

@media (max-width: 800px) {
  body.register #register-section .mktoForm button[type="submit"] {
    width: 100%;
  }
}

body.register #register-section .mktoForm .mktoLogicalField.mktoCheckboxList {
  width: auto !important;
  display: inline !important;
}

body.register #register-section .mktoForm .mktoLogicalField.mktoCheckboxList p {
  display: inline-block !important;
  width: calc(100% - 30px);
}

body.register #register-section .mktoForm .mktoLogicalField.mktoCheckboxList #LeadStatus {
  width: 20px !important;
  min-height: 1.5em !important;
  margin-right: 10px;
  display: inline-block !important;
}

body.register #register-section .mktoForm .mktoLogicalField.mktoCheckboxList #LblLeadStatus {
  display: none;
}

body.register #register-section .mktoForm .mktoLogicalField.mktoCheckboxList #LblLeadStatus:before {
  display: none;
}

body.register #register-section .mktoForm .mktoError {
  right: unset !important;
}

body.register #register-section .mktoForm .mktoGutter {
  display: none;
}

body.register #register-section .mktoForm .mktoFormCol {
  width: 100% !important;
}

body.register #register-section .mktoForm .mktoRequiredField .mktoAsterix {
  display: none;
}

body.register #register-section .mktoForm #required-field-id {
  margin: 25px 0;
  display: none;
}

body.register #register-section .mktoForm .mktoFormRow {
  width: 47%;
}

body.register #register-section .mktoForm .mktoFormRow:nth-of-type(2) {
  position: absolute;
  left: 500%;
  visibility: hidden;
  display: none;
}

body.register #register-section .mktoForm .mktoFormRow .mktoFieldWrap {
  float: none;
}

@media (max-width: 800px) {
  body.register #register-section .mktoForm .mktoFormRow {
    width: 100%;
  }
}

body.register #register-section .mktoForm #LblFirstName {
  width: 110px !important;
}

body.register #register-section .mktoForm .mktoButtonWrap {
  margin-left: 0px !important;
}

body.register #register-section .mktoButtonRow p {
  padding: 10px 0;
}

body.register #register-section .mktoButtonRow p:last-of-type {
  padding-bottom: 30px;
}

body.register #register-section #thankYouDiv h2 {
  font-size: 30px;
  line-height: 35px;
  margin: 0 0 25px;
}

body.register #register-section #thankYouDiv h3 {
  font-weight: normal !important;
  color: #394151;
}

.links-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 40px 0 10px;
}

.links-container .register {
  cursor: pointer;
}

.links-container .nav-wrapper {
  display: flex;
  margin: 0 auto;
  width: 52%;
  justify-content: space-between;
  align-items: stretch;
}

.links-container .nav-wrapper .button-wrapper {
  display: flex;
  flex-basis: 30%;
  text-align: center;
}

.links-container .nav-wrapper .button-wrapper a {
  padding: 0px 5px;
  flex: 1 1 0px;
  border-radius: 5px;
  line-height: 22px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
  color: #003F73;
  font-size: 1.125rem;
  text-decoration: none;
  white-space: nowrap;
}

.links-container .nav-wrapper .button-wrapper a .white-arrow {
  margin-left: 2px;
}

@media (max-width: 800px) {
  .links-container .nav-wrapper .button-wrapper a {
    font-size: 0.8125rem;
    padding: 0 20px;
  }
}

@media (max-width: 800px) {
  .links-container .nav-wrapper .button-wrapper:nth-of-type(1) {
    border-right: 2px solid #F15D22;
  }
}

.links-container .nav-wrapper .button-wrapper:nth-of-type(3) a {
  flex: 0;
}

@media (max-width: 800px) {
  .links-container .nav-wrapper .button-wrapper:nth-of-type(3) {
    border-left: 2px solid #F15D22;
  }
}

.links-container .nav-wrapper .link-spacer {
  border-right: 2px solid #F15D22;
  border-left: 2px solid #F15D22;
}

@media (max-width: 955px) {
  .links-container .nav-wrapper .link-spacer {
    border-left: none;
    border-right: none;
    margin: 0;
    padding: 12px 0;
  }
}

@media (max-width: 955px) {
  .links-container {
    padding: 25px 0;
  }

  .links-container .nav-wrapper {
    flex-direction: column;
  }

  .links-container .nav-wrapper .button-wrapper {
    width: 90%;
    align-self: center;
    margin: 12px 0;
  }
}

@media (max-width: 800px) {
  .links-container {
    padding: 0 0 25px;
  }

  .links-container .nav-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .links-container .nav-wrapper .button-wrapper {
    margin: 0;
  }
}

.main-nav-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .links-container .nav-wrapper {
    width: 90% !important;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .links-container {
    justify-content: flex-start;
  }
}

.link-top {
  display: none;
  padding: 30px 0;
  width: 80%;
  margin: 0 auto 30px;
  border-bottom: 5px solid #003F73;
  text-align: right;
}

.link-top img {
  margin-right: 20px;
}

@media (max-width: 800px) {
  .link-top {
    display: block;
  }
}

.discover-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  border-bottom: 10px solid #003F73;
}

@media (max-width: 1181px) {
  .discover-wrapper {
    flex-direction: column;
  }
}

.discover-wrapper #learn-more-cta,
.discover-wrapper #discover-viltepso-cta,
.discover-wrapper #resources-cta {
  flex-basis: 33.333%;
  display: flex;
  flex-direction: row;
  padding: 20px 0;
}

.discover-wrapper #learn-more-cta .button-wrapper,
.discover-wrapper #discover-viltepso-cta .button-wrapper,
.discover-wrapper #resources-cta .button-wrapper {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 1181px) and (min-width: 800px) {
  .discover-wrapper #learn-more-cta .button-wrapper,
  .discover-wrapper #discover-viltepso-cta .button-wrapper,
  .discover-wrapper #resources-cta .button-wrapper {
    width: 50%;
  }
}

.discover-wrapper #learn-more-cta .button-wrapper p,
.discover-wrapper #discover-viltepso-cta .button-wrapper p,
.discover-wrapper #resources-cta .button-wrapper p {
  width: 90%;
  color: #707072;
  font-weight: bold;
  font-size: 1rem;
  max-height: 95px;
  line-height: 1.6875rem;
}

.discover-wrapper #learn-more-cta .button-wrapper p .large-text,
.discover-wrapper #discover-viltepso-cta .button-wrapper p .large-text,
.discover-wrapper #resources-cta .button-wrapper p .large-text {
  font-size: 1.5rem;
  line-height: 1.8765rem;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .discover-wrapper #learn-more-cta .button-wrapper p,
  .discover-wrapper #discover-viltepso-cta .button-wrapper p,
  .discover-wrapper #resources-cta .button-wrapper p {
    width: 110%;
    line-height: 1rem !important;
  }
}

.discover-wrapper #learn-more-cta .button-wrapper a,
.discover-wrapper #discover-viltepso-cta .button-wrapper a,
.discover-wrapper #resources-cta .button-wrapper a {
  padding: 10px 12px;
  border: none;
  border-radius: 2px;
  background-color: #54B948;
  width: 294px;
  display: block;
  text-align: center;
  box-shadow: none;
  margin-top: 10px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.discover-wrapper #learn-more-cta .button-wrapper a:hover,
.discover-wrapper #discover-viltepso-cta .button-wrapper a:hover,
.discover-wrapper #resources-cta .button-wrapper a:hover {
  background-color: #4E4E4E;
}

@media (max-width: 800px) {
  .discover-wrapper #learn-more-cta .button-wrapper a,
  .discover-wrapper #discover-viltepso-cta .button-wrapper a,
  .discover-wrapper #resources-cta .button-wrapper a {
    padding: 10px 0;
    width: 300px;
    min-width: 300px;
    max-width: 300px;
  }
}

.discover-wrapper #learn-more-cta {
  justify-content: flex-end;
}

@media (max-width: 1181px) {
  .discover-wrapper #learn-more-cta {
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .discover-wrapper #learn-more-cta {
    padding: 30px 0 20px;
  }
}

.discover-wrapper #learn-more-cta a {
  background-color: #F15D22 !important;
}

.discover-wrapper #learn-more-cta a:hover {
  background-color: #4E4E4E !important;
}

.discover-wrapper #discover-viltepso-cta {
  justify-content: center;
}

.discover-wrapper #resources-cta {
  justify-content: flex-start;
}

@media (max-width: 1181px) {
  .discover-wrapper #resources-cta {
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .discover-wrapper #resources-cta {
    padding: 20px 0 40px;
  }
}

.discover-wrapper #resources-cta a {
  background-color: #003F73 !important;
}

.discover-wrapper #resources-cta a:hover {
  background-color: #4E4E4E !important;
}

@media (max-width: 800px) {
  .discover-wrapper {
    flex-direction: column;
  }

  .discover-wrapper #learn-more,
  .discover-wrapper #discovering-viltepso,
  .discover-wrapper #resources {
    flex-basis: 100%;
  }

  .discover-wrapper #learn-more .button-wrapper,
  .discover-wrapper #discovering-viltepso .button-wrapper,
  .discover-wrapper #resources .button-wrapper {
    width: 100%;
  }

  .discover-wrapper #learn-more .button-wrapper .btn,
  .discover-wrapper #discovering-viltepso .button-wrapper .btn,
  .discover-wrapper #resources .button-wrapper .btn {
    min-width: 75%;
    margin: 20px 0 10px;
  }
}

body.patient .patient.section-links {
  display: flex;
  flex-direction: row;
  padding: 105px 0 0px 0;
  position: fixed;
  z-index: 10;
}

@media (max-width: 767px) {
  body.patient .patient.section-links {
    padding: 210px 0 0 0;
  }
}

body.patient .patient.section-links .links-wrapper {
  background-color: #E5F5E3;
  width: 100%;
  justify-content: center;
  border-top: 5px solid #54B948;
  padding: 5px;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.patient .patient.section-links .links-wrapper {
    margin-left: 0;
    width: 100% !important;
    flex-direction: row !important;
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  body.patient .patient.section-links .links-wrapper {
    display: none;
  }
}

body.patient .patient.section-links .links-wrapper div {
  color: #003F73 !important;
  cursor: pointer;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0 20px;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.patient .patient.section-links .links-wrapper div {
    padding: 5px 8px;
  }
}

body.patient .patient.section-links .links-wrapper div:hover {
  color: #4E4E4E !important;
}

body.patient .patient.section-links .links-wrapper div:active {
  font-weight: bold !important;
}

body.patient .patient.section-links .links-wrapper div:visited {
  font-weight: bold !important;
}

body.patient .patient.section-links .links-wrapper span.mobile-hide.blue {
  font-size: 0.875rem;
  font-weight: 700;
}

body.patient .patient.section-links .mobile-pageTitle {
  display: none;
}

@media (max-width: 767px) {
  body.patient .patient.section-links .mobile-pageTitle {
    display: block;
    background-color: #E5F5E3;
    width: 100%;
    padding: 5px 25px;
    border-top: 5px solid #54B948;
  }

  body.patient .patient.section-links .mobile-pageTitle p {
    color: #003F73;
    font-weight: 800;
    font-size: 0.8125rem;
    line-height: 0.9375rem;
  }
}

body.patient .pageSection-header {
  margin: 0;
  border-bottom: 5px solid #54B948;
}

body.patient .pageSection-header .pageSection-title {
  width: 72%;
  margin: 0 auto;
}

body.patient .pageSection-header .pageSection-title div {
  background-color: #54B948;
  width: 40%;
  padding-left: 25px;
  padding-top: 2px;
}

body.patient .pageSection-header .pageSection-title div p {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 0.9375rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  body.patient .pageSection-header .pageSection-title {
    margin: 0 0 0 10px;
  }

  body.patient .pageSection-header .pageSection-title div {
    width: 100%;
    text-align: left;
    padding-left: 10px;
  }
}

body.patient .section-wrapper h2 {
  font-weight: bold;
  color: #003F73;
  font-size: 1.875rem;
  line-height: 35px;
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {
  body.patient .section-wrapper h2 {
    font-size: 1.625rem;
  }
}

body.patient .section-wrapper img {
  max-width: 95%;
  align-self: center;
}

body.patient img.desktop {
  max-width: 800px;
}

body.patient .centeredImage {
  margin: 25px auto;
  text-align: center;
}

body.patient .semibold {
  font-weight: 600;
}

body.patient img.mobile {
  display: none;
}

@media screen and (max-width: 955px) {
  body.patient img.desktop {
    display: none;
  }

  body.patient img.mobile {
    display: block;
  }
}

body.patient .img-max {
  max-width: 100% !important;
}

body.patient .hero-wrapper.patient {
  padding-top: 145px;
  padding-bottom: 25px;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.patient .hero-wrapper.patient {
    padding-top: 250px;
  }
}

@media (max-width: 800px) {
  body.patient .hero-wrapper.patient {
    padding-top: 255px;
  }

  body.patient .hero-wrapper.patient img {
    width: 125%;
  }
}

body.patient #about h3 {
  font-size: 1.375rem;
  line-height: 2rem;
  font-weight: 600;
}

body.patient #about .column-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 800px) {
  body.patient #about .column-wrapper {
    flex-direction: column;
  }
}

body.patient #about .column-wrapper .column {
  display: flex;
  flex-direction: column;
  flex-basis: 25%;
  min-width: 25%;
}

body.patient #about .column-wrapper .column .img-wrapper {
  display: flex;
  margin-top: 40px;
  margin-bottom: 16px;
  justify-content: center;
}

body.patient #about .column-wrapper .column .img-wrapper img {
  align-self: flex-end;
  height: auto;
  max-height: 330px;
  max-width: 250px;
  width: 100%;
}

@media (max-width: 800px) {
  body.patient #about .column-wrapper .column .img-wrapper {
    margin-top: 10px;
  }
}

body.patient #about .column-wrapper .column .col-contentArea {
  padding: 0 25px;
  border-right: 2px solid #8C8C8C;
}

body.patient #about .column-wrapper .column .col-contentArea h3 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.0625rem;
  line-height: 1.3125rem;
  white-space: nowrap;
}

@media (max-width: 1366px) {
  body.patient #about .column-wrapper .column .col-contentArea h3 {
    white-space: break-spaces;
  }
}

@media (max-width: 800px) {
  body.patient #about .column-wrapper .column .col-contentArea {
    text-align: center;
    border-right: 0;
    min-height: auto;
  }
}

body.patient #about .column-wrapper .column:last-of-type .col-contentArea {
  border-right: 0;
}

body.patient #about .column-wrapper hr {
  display: none;
}

@media (max-width: 800px) {
  body.patient #about .column-wrapper hr {
    display: block;
    margin: 25px auto;
    border-bottom: 2px solid #AAA9AB;
    width: 80%;
  }
}

@media screen and (max-width: 955px) {
  body.patient #about .column-wrapper .column:last-of-type .img-wrapper {
    margin-top: -70px;
  }
}

body.patient #about .exon-skipping-tool-section {
  margin: 50px auto;
}

@media (max-width: 800px) {
  body.patient #about .exon-skipping-tool-section {
    margin: 50px auto 0;
  }
}

body.patient #about .exon-skipping-tool-section p.blue:first-of-type {
  padding: 0 0 5px;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool {
  margin-top: 25px;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .headline-area {
  text-align: center;
  background-color: #54B948;
}

@media (max-width: 800px) {
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .headline-area {
    text-align: left;
  }
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .headline-area p.white.desktop {
  font-size: 1.375rem;
  line-height: 2.1875rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .headline-area div.mobile {
    display: flex;
    flex-direction: row;
    padding: 10px 15px;
  }

  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .headline-area div.mobile p.white {
    font-size: 1.125rem;
    line-height: 1.125rem;
    font-weight: 700;
    text-align: left;
    padding-left: 10px;
    flex-basis: 90%;
  }
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .headline-area div.mobile img.caret {
  flex-basis: 10%;
  padding-right: 10px;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area {
  margin: 0px auto 50px;
  background-color: #F8F8F8;
  padding: 10px 10px 50px 10px;
}

@media (max-width: 800px) {
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area {
    padding: 0;
    background-color: #ffffff;
  }
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area {
  overflow-x: auto;
  display: flex;
  flex-direction: column;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row {
  display: flex;
  flex-direction: row;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range {
  background-color: #AAA9AB;
  margin: 5px;
  padding: 5px 25px;
  text-align: center;
  min-width: 38px;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range:hover {
  background-color: #54B948;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range.active {
  background-color: #54B948;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range p {
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0;
}

@media (max-width: 800px) {
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area {
    height: 200px;
    overflow-y: scroll;
    /* width */
    /* Handle */
  }

  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area::-webkit-scrollbar {
    width: 40px;
    background-color: #a0a0a1;
  }

  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area::-webkit-scrollbar-thumb {
    background: #54B948;
    border: 1px solid #4E4E4E;
  }

  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row {
    flex-direction: column;
  }

  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range {
    margin: 0;
    padding: 15px 0px;
    width: 100%;
    background-color: #EEEDEE;
    border-top: 2px solid #4E4E4E;
  }

  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range p {
    font-size: 1.375rem;
    font-weight: 700;
    color: #4E4E4E;
  }

  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row:last-of-type .range:last-of-type {
    border-bottom: 2px solid #AAA9AB;
  }
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area p {
  font-size: 1.125rem;
  line-height: 25px;
  padding: 0 0 0 5px;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area p.green.bold {
  margin-top: 20px;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area p.blue.semibold {
  padding: 0 0 50px 5px;
  border-bottom: 2px solid #707072;
}

@media (max-width: 800px) {
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area p.blue.semibold {
    padding: 0 0 25px 5px;
  }
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .small-font {
  font-size: 0.9375rem !important;
}

@media (max-width: 800px) {
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .small-font {
    line-height: 1rem;
    font-style: italic;
    padding: 10px 0 10px 5px;
  }
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected,
body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected {
  width: 80%;
  margin: -50px auto 0;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion,
body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion {
  background-color: #F1F0F1;
  padding: 10px 25px;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion #email-rec-btn,
body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion #email-rec-btn {
  padding: 15px 9px;
  border: none !important;
  border-radius: 2px;
  background: linear-gradient(#94FC87, #4EAE43);
  width: 393px;
  display: block;
  text-align: center;
  box-shadow: none;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  margin: 10px auto;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion #email-rec-btn:hover,
body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion #email-rec-btn:hover {
  background-color: #4E4E4E !important;
}

@media (max-width: 800px) {
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion #email-rec-btn,
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion #email-rec-btn {
    width: 100%;
    max-width: 393px;
  }
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .bottom-portion,
body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .bottom-portion {
  background-color: #ffffff;
  padding: 10px 25px;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .bottom-portion h3,
body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .bottom-portion h3 {
  font-size: 1.375rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .bottom-portion ul,
body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .bottom-portion ul {
  margin-left: 15px;
}

body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .bottom-portion ul li::marker,
body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .bottom-portion ul li::marker {
  color: #003F73;
  content: ' \2022   ';
}

@media (max-width: 800px) {
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected,
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected {
    width: 90%;
    margin: -25px auto 0;
  }

  body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion,
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion {
    padding: 15px;
  }

  body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion #email-rec-btn,
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion #email-rec-btn {
    width: auto;
  }

  body.patient #about .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .bottom-portion,
  body.patient #about .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .bottom-portion {
    padding: 15px 0 40px;
  }
}

body.patient #about .about-bottom {
  padding-top: 25px;
  flex-direction: row;
}

@media (max-width: 800px) {
  body.patient #about .about-bottom {
    padding-top: 0;
  }
}

body.patient #about .about-bottom div {
  flex-basis: 33.3%;
  padding: 0px 15px 0 15px;
  border-right: 2px solid #8C8C8C;
}

body.patient #about .about-bottom div h3 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 24px;
}

body.patient #about .about-bottom div p {
  color: #003F73;
}

body.patient #about .about-bottom div .underline {
  text-decoration: underline;
  font-weight: 600;
  color: #003F73;
}

body.patient #about .about-bottom div .button-wrapper {
  padding: 10px 0 0 0;
  border-right: 0;
}

body.patient #about .about-bottom div .button-wrapper a {
  padding: 10px 12px;
  border: none;
  border-radius: 2px;
  background-color: #F15D22;
  width: 181px;
  display: block;
  text-align: center;
  box-shadow: none;
}

body.patient #about .about-bottom div .button-wrapper a:hover {
  background-color: #4E4E4E !important;
  color: #ffffff !important;
}

body.patient #about .about-bottom div:first-of-type .button-wrapper {
  margin-top: 15px;
}

body.patient #about .about-bottom div:last-of-type {
  border-right: 0;
}

body.patient #about .about-bottom hr {
  border-bottom: 2px solid #AAA9AB;
  width: 80%;
  margin: 25px auto;
}

@media (max-width: 800px) {
  body.patient #about .about-bottom {
    flex-direction: column;
    text-align: center;
  }

  body.patient #about .about-bottom div {
    border-right: 0;
  }

  body.patient #about .about-bottom div .button-wrapper a {
    margin: 0 auto;
  }

  body.patient #about .about-bottom div .vertical-line-border {
    display: none;
  }
}

@media (max-width: 800px) {
  body.patient #efficacy-section-header-patient .pageSection-title {
    width: 83%;
  }
}

body.patient #efficacy h3 {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

body.patient #efficacy h3 .large {
  font-size: 1.75rem;
}

body.patient #efficacy h3:first-of-type {
  padding: 15px 0;
}

body.patient #efficacy p:first-of-type {
  padding: 0 0 5px;
}

body.patient #efficacy img.desktop {
  margin: 25px auto;
  width: 100%;
}

body.patient #efficacy img.first-img {
  margin: 25px auto 50px;
}

body.patient #efficacy img.mobile {
  margin: 25px auto;
  width: 100%;
}

@media (max-width: 800px) {
  body.patient #efficacy ul {
    padding-left: 15px;
  }
}

body.patient #efficacy ul li {
  color: #8C8C8C;
  font-size: 1rem;
  line-height: 1.5rem;
}

body.patient #efficacy ul li .underline {
  text-decoration: underline;
}

body.patient #efficacy ul li::marker {
  color: #54B948;
  content: '\2022   ';
}

body.patient #efficacy .row.greenArea {
  margin: 50px auto 0px;
  align-items: start;
}

body.patient #efficacy .row.greenArea .iconArea img {
  margin: -35px 0 0 -47px;
  max-width: 90px !important;
  height: 90px !important;
  width: 90px !important;
  position: absolute;
}

body.patient #efficacy .row.greenArea .greenBox {
  background-color: #f5fff4;
  border: 3px solid #54B948;
  padding: 15px 25px 15px 65px;
  border-radius: 15px;
}

body.patient #efficacy .row.greenArea .greenBox p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #003F73;
}

@media (max-width: 800px) {
  body.patient #efficacy .row.greenArea {
    width: 85%;
    text-align: center;
    flex-direction: column;
    margin: 25px auto;
  }

  body.patient #efficacy .row.greenArea .iconArea {
    margin: 0 auto;
  }

  body.patient #efficacy .row.greenArea .iconArea img {
    margin: 0 0 -45px 0;
    position: relative;
    z-index: 3;
  }

  body.patient #efficacy .row.greenArea .greenBox {
    padding: 45px 25px 25px;
  }
}

body.patient #safety img {
  margin: 50px auto;
}

body.patient #safety .row.alignedTop {
  align-items: start !important;
  margin: 0;
}

body.patient #safety .row.alignedTop div p {
  font-size: 1rem;
  line-height: 1.0625rem;
  color: #000000;
}

body.patient #dosing .row-wrapper .row {
  margin: 20px 0;
}

body.patient #dosing .row-wrapper .row img {
  margin-right: 40px;
}

body.patient #dosing .row-wrapper .row img.smaller-img {
  margin-right: 45px;
}

@media (max-width: 800px) {
  body.patient #dosing .row-wrapper .row {
    flex-direction: row-reverse !important;
  }

  body.patient #dosing .row-wrapper .row img {
    margin-right: 0;
    margin-left: 10px;
  }

  body.patient #dosing .row-wrapper .row img.smaller-img {
    margin-right: 0;
    max-width: 50px !important;
  }
}

body.patient #dosing .row-wrapper .row h3 {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

body.patient #dosing .row-wrapper .row .question-flex {
  display: flex;
}

body.patient #dosing .row-wrapper .row .question-flex div:nth-of-type(2) {
  margin-left: 5px;
}

body.patient #dosing .row-wrapper .row .answer-flex {
  display: flex;
}

body.patient #dosing .row-wrapper .row .answer-flex div span.answerA {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

body.patient #dosing .row-wrapper .row .answer-flex div p {
  padding: 0;
  line-height: 1.5rem;
  margin-left: 7px;
  margin-top: 1.35px;
}

body.patient #dosing .row-wrapper .row:first-of-type {
  margin: 0 0 20px;
}

body.patient #dosing .row.greenArea {
  margin: 50px auto 0px 35px;
  align-items: start;
}

body.patient #dosing .row.greenArea .iconArea img {
  margin: -35px 0 0 -47px;
  max-width: 90px !important;
  height: 90px !important;
  width: 90px !important;
  position: absolute;
}

body.patient #dosing .row.greenArea .greenBox {
  background-color: #f5fff4;
  border: 3px solid #54B948;
  padding: 15px 25px 15px 65px;
  border-radius: 15px;
}

body.patient #dosing .row.greenArea .greenBox p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #003F73;
}

@media (max-width: 800px) {
  body.patient #dosing .row.greenArea {
    width: 85%;
    text-align: center;
    flex-direction: column;
    margin: 50px auto 0;
  }

  body.patient #dosing .row.greenArea .iconArea {
    margin: 0 auto;
  }

  body.patient #dosing .row.greenArea .iconArea img {
    margin: 0 0 -45px 0;
    position: relative;
    z-index: 3;
  }

  body.patient #dosing .row.greenArea .greenBox {
    padding: 45px 25px 25px;
  }
}

body.patient #support-blade {
  padding: 0;
}

body.patient #support-blade .section-wrapper {
  padding-bottom: 50px;
}

body.patient #support-blade .section-wrapper .navyBackground {
  background-color: #003F73;
}

body.patient #support-blade .section-wrapper .navyBackground h2 {
  color: #ffffff;
}

body.patient #support-blade .closingNavyLine {
  margin: 50px 0 0;
  height: 5px;
  background-color: #003F73;
  width: 100%;
}

body.patient #support-blade .section-wrapper:last-of-type {
  padding-top: 50px;
  padding-bottom: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #F4F4F4;
}

body.patient #support-blade .section-wrapper:last-of-type .registration-cta-box {
  display: flex;
  flex-direction: row;
  border: 2px solid #54B948;
}

body.patient #support-blade .section-wrapper:last-of-type .registration-cta-box .ctaBoxCopy {
  background-color: #ffffff;
}

body.patient #support-blade .section-wrapper:last-of-type .registration-cta-box .ctaBoxCopy h3 {
  font-size: 1.125rem;
  line-height: 1.375rem;
  padding: 9px 15px;
}

body.patient #support-blade .section-wrapper:last-of-type .registration-cta-box .button-wrapper a {
  padding: 6px 12px;
  border: none;
  border-radius: 2px;
  background-color: #54B948;
  width: 222px;
  display: block;
  text-align: center;
  box-shadow: none;
  margin-top: auto;
  font-size: 1.25rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

body.patient #support-blade .section-wrapper:last-of-type .registration-cta-box .button-wrapper a .white-arrow {
  margin-left: 2px;
}

body.patient #support-blade .section-wrapper:last-of-type .registration-cta-box .button-wrapper a:hover {
  background-color: #4E4E4E !important;
}

@media (max-width: 800px) {
  body.patient #support-blade .section-wrapper:last-of-type {
    width: 100% !important;
  }

  body.patient #support-blade .section-wrapper:last-of-type .registration-cta-box {
    flex-direction: column;
    height: auto;
    width: 85%;
  }

  body.patient #support-blade .section-wrapper:last-of-type .registration-cta-box .ctaBoxCopy h3 {
    padding: 9px 25px;
    text-align: center;
  }

  body.patient #support-blade .section-wrapper:last-of-type .registration-cta-box .button-wrapper a {
    width: auto;
  }
}

@media (max-width: 800px) {
  body.patient #email-me-rec-modal {
    padding-top: 0;
    align-items: center;
  }
}

body.patient #email-me-rec-modal.modal {
  position: fixed;
  top: 0;
  padding-top: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

@media (max-width: 800px) {
  body.patient #email-me-rec-modal.modal {
    padding-top: 0;
  }
}

body.patient #email-me-rec-modal.modal .modal-dialog {
  width: 800px;
  max-width: 100%;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body {
  background-color: white;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body button {
  color: #707072;
  border: none;
  font-size: 1rem;
  margin-left: auto;
  font-weight: 400;
  display: flex;
  font-family: "Spartan", sans-serif;
  margin-bottom: 5px;
  padding-top: 10px;
  padding-right: 10px;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area {
  padding: 42px 70px 70px;
}

@media (max-width: 800px) {
  body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area {
    padding: 42px 50px 70px;
  }
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form {
  display: flex;
  flex-direction: row;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email] {
  width: 100%;
  text-align: center;
  border: 2px solid #54B948;
  color: #003F73;
  font-weight: bold;
  font-size: 1.125rem;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email]::-webkit-input-placeholder {
  color: #003F73;
  font-weight: bold;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email]::-moz-placeholder {
  color: #003F73;
  font-weight: bold;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email]:-ms-input-placeholder {
  color: #003F73;
  font-weight: bold;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email]:-moz-placeholder {
  color: #003F73;
  font-weight: bold;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=submit] {
  padding: 10px 12px;
  border: none;
  border-radius: 2px;
  background-color: #54B948;
  width: 222px;
  display: block;
  text-align: center;
  box-shadow: none;
  margin-top: auto;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=submit]:hover {
  background-color: #4E4E4E !important;
}

@media (max-width: 800px) {
  body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form {
    flex-direction: column;
    align-items: center;
  }

  body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email] {
    margin-bottom: 20px;
    padding: 10px;
  }
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .error {
  display: none;
  font-size: 1.125rem;
  line-height: 1.375rem;
  color: red;
  text-align: center;
  margin-top: 10px;
}

body.patient #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .success {
  display: none;
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-align: center;
  color: #707072;
}

body.patient #email-me-rec-modal.hidden {
  display: none;
}

body.patient #email-me-rec-modal.fade {
  animation: bg-fade-in .5s ease-in-out;
}

body.patient #email-me-rec-modal.fade .modal-content {
  animation: fade-in .5s ease-in-out;
}

body.patient #email-me-rec-modal.fade-out {
  animation: bg-fade-out .5s ease-in-out;
}

body.patient #email-me-rec-modal.fade-out .modal-content {
  animation: fade-out .5s ease-in-out;
}

body.patient .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 20px 0;
}

body.patient .row img {
  margin-right: 20px;
  max-width: 50px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body.patient .row img {
    width: 100%;
    min-width: 50px;
  }
}

body.patient .row img.smaller-img {
  max-width: 40px;
  margin-left: 5px;
  margin-right: 45px;
}

@media screen and (max-width: 955px) {
  body.patient .row {
    align-items: flex-start;
  }

  body.patient .row img {
    align-self: flex-start;
  }
}

body.hcpabout .hcp.section-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: sticky;
  z-index: 10;
  background: #ffffff;
  padding: 0 !important;
}

body.hcpabout .hcp.section-links .fixed {
  position: fixed;
  top: 100px;
}

body.hcpabout .hcp.section-links .links-wrapper {
  width: 100%;
  justify-content: center;
  border-bottom: 2px solid #003F72;
  background-color: #ffffff;
  padding: 15px 0;
}

@media (max-width: 955px) {
  body.hcpabout .hcp.section-links .links-wrapper {
    margin-left: 0;
    width: 100% !important;
    flex-direction: row !important;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  body.hcpabout .hcp.section-links .links-wrapper {
    display: none;
  }
}

body.hcpabout .hcp.section-links .links-wrapper div {
  color: #003F73 !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0 20px;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.hcpabout .hcp.section-links .links-wrapper div {
    padding: 5px 8px;
  }
}

body.hcpabout .hcp.section-links .links-wrapper div:hover {
  color: #4E4E4E !important;
}

body.hcpabout .hcp.section-links .links-wrapper div:active {
  font-weight: bold !important;
}

body.hcpabout .hcp.section-links .links-wrapper div:visited {
  font-weight: bold !important;
}

body.hcpabout .hcp.section-links .links-wrapper span.mobile-hide.blue {
  font-size: 0.875rem;
  font-weight: 700;
}

body.hcpabout .hcp.section-links .mobile-pageTitle {
  display: none;
}

@media (max-width: 767px) {
  body.hcpabout .hcp.section-links .mobile-pageTitle {
    display: block;
    background-color: #fde7de;
    width: 100%;
    padding: 5px 25px;
    border-top: 5px solid #F15D22;
  }

  body.hcpabout .hcp.section-links .mobile-pageTitle p {
    color: #003F73;
    font-weight: 800;
    font-size: 0.8125rem;
    line-height: .9375rem;
  }
}

body.hcpabout .pageSection-header {
  margin: 0;
  border-bottom: 5px solid #F15D22;
}

body.hcpabout .pageSection-header .pageSection-title {
  width: 72%;
  margin: 0 auto;
}

body.hcpabout .pageSection-header .pageSection-title div {
  background-color: #F15D22;
  width: 40%;
  padding-left: 25px;
  padding-top: 2px;
}

body.hcpabout .pageSection-header .pageSection-title div p {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 0.9375rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  body.hcpabout .pageSection-header .pageSection-title {
    margin: 0 0 0 10px;
  }

  body.hcpabout .pageSection-header .pageSection-title div {
    width: 100%;
    text-align: left;
    padding-left: 10px;
  }
}

body.hcpabout .blue-box {
  display: flex;
  background: #6383B4;
  margin-top: 30px;
}

body.hcpabout .blue-box .orange-block {
  background-color: #F15D22;
  height: auto;
  width: 80px;
}

body.hcpabout .blue-box .blue-box-content {
  padding: 25px 30px;
}

body.hcpabout .blue-box .blue-box-content p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #ffffff;
  font-weight: 500;
}

body.hcpabout .blue-box .blue-box-content ul li {
  color: #003F73;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: normal;
  margin-left: 10px;
}

body.hcpabout .blue-box .blue-box-content ul li::marker {
  color: #003F73;
  content: "\2022";
  font-size: 125%;
}

body.hcpabout .section-wrapper h2 {
  font-weight: bold;
  color: #003F73;
  font-size: 1.875rem;
  line-height: 2.1875rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  body.hcpabout .section-wrapper h2 {
    font-size: 1.625rem;
  }
}

body.hcpabout .section-wrapper img {
  align-self: center;
}

body.hcpabout img.desktop {
  max-width: 800px;
}

body.hcpabout .centeredImage {
  margin: 25px auto;
  text-align: center;
}

body.hcpabout .hero-wrapper.hcp {
  width: 100%;
}

@media (max-width: 800px) {
  body.hcpabout .hero-wrapper.hcp {
    padding: 200px 0 0 !important;
  }
}

body.hcpabout .hero-wrapper.hcp .hero-bg-img {
  display: block;
  position: relative;
  background-image: url("/img/hcp/VILTEPSO_About-Hero.jpg");
  min-height: 590px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center right;
}

@media (max-width: 955px) {
  body.hcpabout .hero-wrapper.hcp .hero-bg-img {
    padding: 60px 20px 0;
    background-image: url("/img/hcp/about-hero-mbl.png");
  }
}

@media (min-width: 1500px) {
  body.hcpabout .hero-wrapper.hcp .hero-bg-img {
    min-height: 780px;
  }
}

body.hcpabout .hero-wrapper.hcp .hero-bg-img .overlay {
  text-align: center;
  line-height: 45px;
  font-weight: bold;
}

body.hcpabout .hero-wrapper.hcp .hero-bg-img .overlay .label {
  font-size: 30px;
}

@media (max-width: 800px) {
  body.hcpabout .hero-wrapper.hcp .hero-bg-img .overlay .label {
    font-size: 22px;
    line-height: 32px;
  }
}

body.hcpabout .hero-wrapper.hcp .hero-bg-img .overlay .hero-body {
  font-size: 45px;
  line-height: 52px;
  padding: 10px 0 40px;
}

@media (max-width: 800px) {
  body.hcpabout .hero-wrapper.hcp .hero-bg-img .overlay .hero-body {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 955px) {
  body.hcpabout .hero-wrapper.hcp .hero-bg-img .overlay .hero-body .hide-mobile {
    display: none;
  }
}

body.hcpabout .hero-wrapper.hcp .hero-bg-img .overlay p {
  position: absolute;
  bottom: 40px;
  right: 100px;
  font-size: 1rem;
  max-width: 15%;
  font-weight: normal;
  line-height: 1.2;
  text-align: left;
}

@media (max-width: 800px) {
  body.hcpabout .hero-wrapper.hcp .hero-bg-img .overlay p {
    position: relative;
    bottom: 0;
    right: 0;
    max-width: 75%;
    text-align: center;
    margin: 0 auto;
    padding: 20px 0 20px;
  }
}

body.hcpabout .hero-wrapper.hcp .hero-bg-img .learn-more {
  margin: 0 auto;
  padding: 50px 0 0;
  cursor: pointer;
}

body.hcpabout .row-3cols {
  align-items: inherit !important;
  display: flex;
  flex-direction: row;
}

body.hcpabout .row-3cols div.rowCol {
  flex-basis: 32%;
  padding: 0 25px;
  text-align: center;
  border-left: 0.5px solid #8C8C8C;
}

body.hcpabout .row-3cols div.rowCol p {
  font-size: 0.9375rem;
  line-height: 1.4375rem;
}

body.hcpabout .row-3cols div.rowCol > div {
  height: 75px;
  vertical-align: top;
}

body.hcpabout .row-3cols > div:first-of-type {
  padding: 0 25px 0 0;
  border-left: none;
}

body.hcpabout .row-3cols > div:last-of-type {
  padding: 0 0 0 25px;
}

@media (max-width: 800px) {
  body.hcpabout .row-3cols {
    flex-direction: column;
  }

  body.hcpabout .row-3cols div.rowCol {
    border: none;
    padding: 0 25px 30px;
  }

  body.hcpabout .row-3cols div.rowCol > div {
    min-height: auto;
    margin-bottom: 10px;
  }

  body.hcpabout .row-3cols > div:first-of-type {
    padding: 0 25px 30px;
  }

  body.hcpabout .row-3cols > div:last-of-type {
    padding: 0 25px 30px;
  }
}

body.hcpabout #about {
  padding: 50px 0;
  background-color: rgba(99, 131, 180, 0.03);
}

body.hcpabout #about .section-wrapper {
  flex-direction: column;
}

body.hcpabout #about .section-wrapper h2 {
  margin-bottom: 50px;
}

body.hcpabout #about .section-wrapper #s-p-btn {
  padding: 15px 25px;
  border: none;
  border-radius: 2px;
  background-color: #54B948;
  max-width: 396px;
  display: block;
  text-align: left;
  box-shadow: none;
  margin: 25px auto;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
}

@media (max-width: 800px) {
  body.hcpabout #about .section-wrapper #s-p-btn {
    padding: 15px 50px 15px 15px;
  }
}

body.hcpabout #about .section-wrapper .row.footnotes-and-image {
  margin: 15% 0 0;
  align-items: inherit !important;
  display: flex;
}

@media (max-width: 800px) {
  body.hcpabout #about .section-wrapper .row.footnotes-and-image {
    margin: 30px 0 0;
  }
}

body.hcpabout #about .section-wrapper .row.footnotes-and-image #footnotes-and-blue-box {
  width: 90%;
}

body.hcpabout #about .section-wrapper .row.footnotes-and-image #footnotes-and-blue-box .abtV-fn {
  font-size: 1rem;
  line-height: 1.1875rem;
  display: flex;
  margin-left: -10px;
  margin-bottom: -5px;
}

body.hcpabout #about .section-wrapper .row.footnotes-and-image #footnotes-and-blue-box .abtV-fn div {
  flex-direction: row;
}

body.hcpabout #about .section-wrapper .row.footnotes-and-image .smile-img {
  margin-left: -40px;
  margin-top: -20px;
}

@media (max-width: 1112px) {
  body.hcpabout #about .section-wrapper .row.footnotes-and-image .smile-img {
    margin-left: -40px;
    margin-top: 50px;
  }
}

@media (max-width: 955px) {
  body.hcpabout #about .section-wrapper .row.footnotes-and-image .smile-img {
    margin-left: -40px;
    margin-top: -35px;
  }
}

@media (max-width: 800px) {
  body.hcpabout #about .section-wrapper .row.footnotes-and-image .smile-img {
    margin-left: 0;
    margin-top: -40px;
  }
}

body.hcpabout #about .section-wrapper .row.footnotes-and-image .smile-img img {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 800px) {
  body.hcpabout #about .section-wrapper .row.footnotes-and-image .smile-img img {
    margin-bottom: 0;
  }
}

@media (max-width: 800px) {
  body.hcpabout #about .section-wrapper .row.footnotes-and-image {
    flex-direction: column;
  }

  body.hcpabout #about .section-wrapper .row.footnotes-and-image #footnotes-and-blue-box {
    width: 100%;
  }
}

body.hcpabout #exon-skipping-section-header-hcp {
  scroll-margin-top: 150px;
}

body.hcpabout .exon-skipping-hcp .est-video-wrap {
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

body.hcpabout .exon-skipping-hcp .est-video-wrap h4 {
  margin-bottom: 5px;
}

body.hcpabout .exon-skipping-hcp .est-video-wrap > div:first-of-type {
  width: 45%;
  padding-right: 40px;
}

body.hcpabout .exon-skipping-hcp .est-video-wrap > div:last-of-type {
  width: 55%;
}

@media (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp .est-video-wrap {
    flex-direction: column;
  }

  body.hcpabout .exon-skipping-hcp .est-video-wrap > div:first-of-type {
    width: 100%;
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  body.hcpabout .exon-skipping-hcp .est-video-wrap > div:last-of-type {
    width: 100%;
  }
}

body.hcpabout .exon-skipping-hcp .est-intro h3 {
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 10px;
  font-weight: 500;
}

@media (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp #eS-intro {
    text-align: center;
  }
}

body.hcpabout .exon-skipping-hcp #eS-intro div ul {
  padding-left: 10px;
  padding-right: 25px;
}

body.hcpabout .exon-skipping-hcp #eS-intro div ul li {
  font-size: 1rem;
  line-height: 1.375rem;
}

body.hcpabout .exon-skipping-hcp #eS-intro div ul li ul.subList {
  padding-left: 10px !important;
}

body.hcpabout .exon-skipping-hcp #eS-intro div ul li ul.subList li {
  font-size: 1rem;
  line-height: 1.375rem;
  padding-bottom: 0;
}

body.hcpabout .exon-skipping-hcp #eS-intro div ul li ul.subList li::marker {
  color: #F15D22;
  content: " > " !important;
  font-weight: 900;
}

body.hcpabout .exon-skipping-hcp #eS-intro div ul li::marker {
  color: #F15D22;
  content: " \2022   ";
}

body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table {
  padding: 20px 0 0 0;
  margin-bottom: 80px;
  align-items: center;
}

body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .show-mobile {
  display: none;
}

@media screen and (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table {
    flex-flow: row wrap;
    margin-bottom: 40px;
  }

  body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .show-mobile {
    display: block;
  }
}

body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .paragraph {
  padding-right: 32px;
  max-width: 350px;
}

@media screen and (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .paragraph {
    max-width: none;
    padding-right: 0;
  }
}

body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .table {
  padding: 10px 40px 0 0;
  width: 100%;
}

@media screen and (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .table {
    padding: 0 0 20px 0;
    border-right: none;
  }
}

body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .table h3 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 15px;
  max-width: 400px;
}

@media screen and (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .table h3 {
    margin-bottom: 15px;
  }
}

body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .table img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .table img {
    width: 80%;
    padding: 10px 0;
    margin: 0 auto;
  }
}

body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .table .table-img-desktop {
  display: block;
}

@media screen and (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .table .table-img-desktop {
    display: none;
  }
}

body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .table .table-img-mobile {
  display: none;
}

@media screen and (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp #eS-intro .deletion-table .table .table-img-mobile {
    display: block;
  }
}

body.hcpabout .exon-skipping-hcp #eS-intro .greenAreaWrap {
  display: flex;
  justify-content: center;
}

body.hcpabout .exon-skipping-hcp #eS-intro .greenAreaWrap .row.greenArea {
  width: 750px;
  max-width: calc(100% - 90px);
  display: flex;
  align-items: center;
  border: 3px solid #54B948;
  padding: 35px 40px 35px 50px;
  border-radius: 100px;
  margin-top: 50px;
}

body.hcpabout .exon-skipping-hcp #eS-intro .greenAreaWrap .row.greenArea .iconArea {
  margin-right: 35px;
}

body.hcpabout .exon-skipping-hcp #eS-intro .greenAreaWrap .row.greenArea .greenBox p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}

@media (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp #eS-intro .greenAreaWrap .row.greenArea {
    padding: 35px;
    max-width: calc(80% - 70px);
    margin: 30px auto;
    flex-direction: column;
    margin-bottom: 30px;
  }

  body.hcpabout .exon-skipping-hcp #eS-intro .greenAreaWrap .row.greenArea .iconArea {
    margin-right: 0;
  }
}

body.hcpabout .exon-skipping-hcp #eS-intro .videoSection .video-title {
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
}

@media (max-width: 1366px) {
  body.hcpabout .exon-skipping-hcp #eS-intro .videoSection .video-container #exon-skipping-video {
    width: 100% !important;
  }
}

body.hcpabout .exon-skipping-hcp #eS-intro .exonFinderToolBtnWrap {
  display: flex;
  justify-content: center;
}

body.hcpabout .exon-skipping-hcp #eS-intro .exonFinderToolBtnWrap .exonFinderToolBtn {
  background-color: rgba(99, 131, 180, 0.03);
  border-radius: 50px;
  padding: 60px 25px 35px;
  text-align: center;
  width: 75%;
}

body.hcpabout .exon-skipping-hcp #eS-intro .exonFinderToolBtnWrap .exonFinderToolBtn p {
  color: #003F73;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin: 0 0 35px;
}

@media (max-width: 800px) {
  body.hcpabout .exon-skipping-hcp #eS-intro .exonFinderToolBtnWrap .exonFinderToolBtn {
    max-width: 80%;
    margin: 0 auto;
    padding: 60px 15px 35px;
  }
}

body.hcpabout #efficacy-section-header-hcp {
  scroll-margin-top: 100px;
}

body.hcpabout .about-efficacy-hcp {
  background: linear-gradient(180deg, #003f73 0%, #00203a 50%);
  color: #ffffff;
  padding: 70px 0;
}

body.hcpabout .about-efficacy-hcp .section-wrapper .sectionOne {
  text-align: center;
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}

body.hcpabout .about-efficacy-hcp .section-wrapper .sectionOne h4 {
  margin-bottom: 20px;
}

body.hcpabout .about-efficacy-hcp .section-wrapper .sectionOne h2 {
  color: #ffffff;
  margin-bottom: 40px;
}

body.hcpabout .about-efficacy-hcp .section-wrapper .sectionOne .buttons {
  display: flex;
  justify-content: center;
}

body.hcpabout .about-efficacy-hcp .section-wrapper .sectionOne .buttons a {
  margin: 0 7px;
  color: #ffffff;
  border: 2px solid #92ED85;
  font-size: 18px;
  line-height: 18px;
  padding: 8px 20px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 25px;
}

@media (max-width: 800px) {
  body.hcpabout .about-efficacy-hcp .section-wrapper .sectionOne .buttons {
    flex-direction: column;
  }

  body.hcpabout .about-efficacy-hcp .section-wrapper .sectionOne .buttons a {
    margin: 0 0 20px;
  }

  body.hcpabout .about-efficacy-hcp .section-wrapper .sectionOne .buttons a:last-of-type {
    margin: 0;
  }
}

body.hcpabout #dosing-section-header-hcp {
  scroll-margin-top: 100px;
}

body.hcpabout .dosing-hcp {
  padding: 100px 0 0;
}

@media (max-width: 800px) {
  body.hcpabout .dosing-hcp {
    padding: 60px 0 0;
  }
}

body.hcpabout .dosing-hcp .dosingSec1 {
  margin-bottom: 40px;
}

body.hcpabout .dosing-hcp .dosingSec1 .row.dosingRowBlocks {
  display: flex;
  flex-direction: row;
  margin: 20px 0;
  align-items: center;
}

body.hcpabout .dosing-hcp .dosingSec1 .row.dosingRowBlocks > div {
  width: 62px;
  margin: 0 25px 0 0;
  display: flex;
  align-items: center;
}

body.hcpabout .dosing-hcp .dosingSec1 .row.dosingRowBlocks p {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

@media (max-width: 800px) {
  body.hcpabout .dosing-hcp .dosingSec1 {
    text-align: center;
    margin-bottom: 30px;
  }

  body.hcpabout .dosing-hcp .dosingSec1 .row.dosingRowBlocks {
    flex-direction: column;
  }

  body.hcpabout .dosing-hcp .dosingSec1 .row.dosingRowBlocks > div {
    margin: 0;
  }
}

body.hcpabout .dosing-hcp .dosing-video .videoSection {
  width: 780px;
  max-width: 100%;
  background-color: rgba(99, 131, 180, 0.03);
  padding: 60px;
  border-radius: 50px;
  margin-left: -50px;
  margin-bottom: 60px;
}

body.hcpabout .dosing-hcp .dosing-video .videoSection .videoTitle p {
  font-size: 20px;
  line-height: 24px;
  color: #003F73;
  font-weight: 700;
  padding: 0 0 15px;
}

@media (max-width: 1366px) {
  body.hcpabout .dosing-hcp .dosing-video .videoSection .video-container #exon-skipping-video {
    width: 100% !important;
  }
}

@media (max-width: 800px) {
  body.hcpabout .dosing-hcp .dosing-video .videoSection {
    margin-left: 0;
    padding: 60px 10px;
    max-width: calc(100% - 20px);
    text-align: center;
  }
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section h3 {
  font-size: 20px;
  line-height: 24px;
  margin-top: 40px;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section p:first-of-type {
  padding: 0 0 5px;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #desktop-dosing-chart {
  height: 295px;
  overflow-y: scroll;
  border-bottom: 5px solid #003F73;
  margin: 10px 0;
  /* Handle */
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #desktop-dosing-chart::-webkit-scrollbar {
  width: 10px;
  background-color: #fde7de;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #desktop-dosing-chart::-webkit-scrollbar-thumb {
  background: #F15D22;
  border: 1px solid #F15D22;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #desktop-dosing-chart img.desktop {
  max-width: 800px;
  align-self: center;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #desktop-dosing-chart .chartBlueBar {
  position: absolute;
  background-color: white;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #desktop-dosing-chart .chartDetails {
  width: 800px;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #mobile-dosing-chart {
  height: auto;
  width: 90vw;
  overflow-x: scroll;
  margin-top: 10px;
}

@media (max-width: 800px) {
  body.hcpabout .dosing-hcp .weekly-dosing-chart-section #mobile-dosing-chart {
    margin-bottom: 20px;
  }
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #mobile-dosing-chart img.wkly-arrow {
  position: absolute;
  z-index: 1;
  margin-top: 54px;
  margin-left: 164px;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #mobile-dosing-chart img.wkly-mobile {
  width: 1883px !important;
  max-width: 1883px !important;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #mobile-dosing-chart .hide-arrow {
  display: none !important;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section #mobile-dosing-chart .chartBlueBar {
  position: absolute;
  background-color: white;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section div.asterik-before::before {
  content: '*' !important;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section div.asterik-before {
  display: flex;
  flex-direction: row;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section div.dagger-before {
  display: flex;
  flex-direction: row;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section div.dagger-before p:first-of-type {
  padding: 5px 0;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section .orange-lt20v {
  background-color: #FEF6F2;
  padding: 25px;
  border-radius: 20px;
  margin: 25px 0 0;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section .orange-lt20v .numbered-text {
  display: flex;
  flex-direction: row;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section .orange-lt20v .numbered-text div:first-of-type {
  width: 10px;
  margin-right: 10px;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section .orange-lt20v .numbered-text div p {
  color: #707072;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section .orange-lt20v .numbered-text div p:first-of-type {
  padding: 5px 0 5px;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section .green-gte20v {
  background-color: #F5FFF4;
  padding: 25px;
  border-radius: 20px;
  margin: 25px 0 50px;
}

body.hcpabout .dosing-hcp .weekly-dosing-chart-section .green-gte20v p {
  color: #707072;
}

body.hcpabout .dosing-hcp #bottomDosingSection {
  border-top: 2px solid #E3E2E3;
  padding-top: 50px;
  text-align: center;
}

body.hcpabout .dosing-hcp #bottomDosingSection h3 {
  color: #003F73;
  font-weight: bold;
  font-size: 22px;
  line-height: 27px;
  margin-bottom: 50px;
}

body.hcpabout .dosing-hcp #bottomDosingSection .row.inherit.fiftysplit {
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
}

body.hcpabout .dosing-hcp #bottomDosingSection .row.inherit.fiftysplit > div {
  flex: 0 0 49%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  background-color: rgba(99, 131, 180, 0.03);
  border-radius: 20px;
  min-height: 210px;
}

body.hcpabout .dosing-hcp #bottomDosingSection .row.inherit.fiftysplit > div h4 {
  font-size: 18px;
  line-height: 22px;
  color: #003F73;
}

body.hcpabout .dosing-hcp #bottomDosingSection .row.inherit.fiftysplit > div p {
  padding: 10px 45px;
}

@media (max-width: 800px) {
  body.hcpabout .dosing-hcp #bottomDosingSection .row.inherit.fiftysplit > div p {
    padding: 20px 45px;
  }
}

@media (max-width: 800px) {
  body.hcpabout .dosing-hcp #bottomDosingSection .row.inherit.fiftysplit {
    padding: 30px 0 0;
  }

  body.hcpabout .dosing-hcp #bottomDosingSection .row.inherit.fiftysplit > div {
    flex: 0 0 100%;
    margin-bottom: 25px;
  }
}

body.hcpabout .dosing-hcp #bottomDosingSection .blue-box .blue-box-content p {
  color: #FF41CB;
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 800px) {
  body.hcpabout .dosing-hcp #bottomDosingSection h3 {
    margin-bottom: 30px;
  }

  body.hcpabout .dosing-hcp #bottomDosingSection .row.inherit {
    flex-direction: column;
  }
}

body.hcpabout #request-rep-thank-you-modal.modal {
  position: fixed;
  top: 0;
  padding-top: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

@media (max-width: 800px) {
  body.hcpabout #request-rep-thank-you-modal.modal {
    padding-top: 0;
    align-items: center;
  }
}

body.hcpabout #request-rep-thank-you-modal.modal .modal-dialog {
  width: 800px;
  max-width: 100%;
}

body.hcpabout #request-rep-thank-you-modal.modal .modal-dialog .modal-content .modal-body {
  background-color: #ffffff;
}

body.hcpabout #request-rep-thank-you-modal.modal .modal-dialog .modal-content .modal-body button {
  color: #707072;
  border: none;
  font-size: 1rem;
  margin-left: auto;
  font-weight: 400;
  display: flex;
  font-family: "Spartan", sans-serif;
  margin-bottom: 5px;
  padding-top: 10px;
  padding-right: 10px;
}

body.hcpabout #request-rep-thank-you-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area {
  background-color: white;
  padding: 32px 0 60px 0;
}

body.hcpabout #request-rep-thank-you-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area p {
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-align: center;
  color: #707072;
}

body.hcpabout #request-rep-thank-you-modal.hidden {
  display: none;
}

body.hcpabout #request-rep-thank-you-modal.fade {
  animation: bg-fade-in .5s ease-in-out;
}

body.hcpabout #request-rep-thank-you-modal.fade .modal-content {
  animation: fade-in .5s ease-in-out;
}

body.hcpabout #request-rep-thank-you-modal.fade-out {
  animation: bg-fade-out .5s ease-in-out;
}

body.hcpabout #request-rep-thank-you-modal.fade-out .modal-content {
  animation: fade-out .5s ease-in-out;
}

#register {
  scroll-margin-top: 145px;
  padding-bottom: 20px;
}

@media (max-width: 800px) {
  #register {
    padding-bottom: 20px;
  }
}

#register .section-wrapper {
  padding-bottom: 50px;
}

#register .section-wrapper .navyBackground {
  background-color: #003F73;
  padding: 20px;
}

@media (max-width: 800px) {
  #register .section-wrapper .navyBackground {
    padding: 15px 8px;
  }
}

#register .section-wrapper .navyBackground h2 {
  color: #ffffff;
  margin: 0;
  line-height: 1.875rem;
  padding-left: 8px;
}

@media (max-width: 800px) {
  #register .section-wrapper .navyBackground h2 {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }
}

#register .section-wrapper .grey-background {
  background-color: rgba(99, 131, 180, 0.03);
  padding: 20px;
}

#register .section-wrapper .grey-background h2 {
  font-size: 1.625rem;
  margin: 0;
  padding-left: 8px;
}

@media (max-width: 800px) {
  #register .section-wrapper .grey-background h2 {
    padding-left: 0px;
    font-size: 18px;
    line-height: 20px;
  }
}

#register .section-wrapper .grey-background p.small-font {
  margin: 0 0 20px;
  padding: 0;
  padding-left: 8px;
}

@media (max-width: 800px) {
  #register .section-wrapper .grey-background p.small-font {
    padding-left: 0px;
  }
}

#register .section-wrapper .grey-background #mktoForm_1177 {
  font-family: "Open Sans", sans-serif !important;
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
}

@media (max-width: 800px) {
  #register .section-wrapper .grey-background #mktoForm_1177 {
    padding: 10px 0;
  }
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(1),
#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(2),
#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(3),
#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(4) {
  width: 50%;
  padding-bottom: 15px;
}

@media (max-width: 800px) {
  #register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(1),
  #register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(2),
  #register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(3),
  #register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(4) {
    width: 100%;
  }
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(1) .mktoFieldDescriptor .mktoFieldWrap .mktoLabel.mktoHasWidth {
  font-weight: 400;
}

#register .section-wrapper .grey-background #mktoForm_1177 .smaller-text {
  font-size: 0.615384em;
  line-height: 0.5;
  font-weight: 400;
}

@media (max-width: 800px) {
  #register .section-wrapper .grey-background #mktoForm_1177 .smaller-text {
    display: block;
    line-height: 1rem;
    padding-bottom: 10px;
  }
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoAsterix {
  display: none !important;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(2) .mktoFieldDescriptor .mktoLabel {
  font-weight: normal !important;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(3) .mktoFieldDescriptor .mktoLabel {
  font-weight: normal !important;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(5) .mktoFieldDescriptor .mktoLabel {
  font-weight: normal !important;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(4) {
  display: none !important;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(5),
#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(6),
#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(7) {
  width: 100%;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(6) #LbltopicsofInterest {
  width: 100% !important;
  font-size: 1.625rem;
  line-height: 2.1875rem;
  color: #003F73;
  font-weight: 700;
  padding-top: 20px;
}

@media (max-width: 800px) {
  #register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(6) #LbltopicsofInterest {
    font-size: 18px;
    line-height: 20px;
  }
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(6) .mktoFieldDescriptor .mktoFieldWrap .mktoLogicalField.mktoCheckboxList.mktoHasWidth label:nth-of-type(4) {
  width: 100% !important;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(7) .mktoFieldWrap {
  flex-direction: row-reverse;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(7) .mktoFieldWrap #LblmarketingConsent:nth-of-type(1) {
  width: 95% !important;
}

@media (max-width: 800px) {
  #register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(7) .mktoFieldWrap #LblmarketingConsent:nth-of-type(1) {
    width: 95% !important;
  }
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(7) .mktoFieldWrap .mktoLogicalField.mktoCheckboxList.mktoHasWidth {
  width: 2% !important;
}

@media (max-width: 800px) {
  #register .section-wrapper .grey-background #mktoForm_1177 .mktoFormRow:nth-of-type(7) .mktoFieldWrap .mktoLogicalField.mktoCheckboxList.mktoHasWidth {
    width: 8% !important;
  }
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoButtonRow {
  width: 100%;
  margin: 20px auto;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoButtonRow .mktoButtonWrap {
  margin-left: 0 !important;
  margin: 0 auto;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFieldWrap {
  display: flex;
  flex-direction: column;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoFieldWrap .mktoLabel {
  width: 300px !important;
}

#register .section-wrapper .grey-background #mktoForm_1177 input[type=text],
#register .section-wrapper .grey-background #mktoForm_1177 input[type=email],
#register .section-wrapper .grey-background #mktoForm_1177 input[type=number] {
  padding: 10px;
  background-color: white;
  width: 300px !important;
  border: 1px solid #4E4E4E;
}

@media (max-width: 800px) {
  #register .section-wrapper .grey-background #mktoForm_1177 input[type=text],
  #register .section-wrapper .grey-background #mktoForm_1177 input[type=email],
  #register .section-wrapper .grey-background #mktoForm_1177 input[type=number] {
    padding: 20px;
  }
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoRadioList {
  width: 100% !important;
}

#register .section-wrapper .grey-background #mktoForm_1177 .mktoRadioList > label {
  padding-bottom: 15px;
}

#register .section-wrapper .grey-background .form-closing-text {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  padding-left: 8px;
}

@media (max-width: 800px) {
  #register .section-wrapper .grey-background .form-closing-text {
    font-size: 18px;
    line-height: 22px;
  }
}

#register .signup-box {
  background: linear-gradient(180deg, #003f73 0%, #00203a 50%);
  padding: 80px 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#register .signup-box .registration-cta-box .ctaBoxCopy h3 {
  font-size: 25px;
  line-height: 30px;
  padding: 0 0 30px;
  color: #ffffff;
}

@media (max-width: 955px) {
  #register .signup-box {
    width: 100% !important;
  }
}

@media (max-width: 800px) {
  #register .signup-box {
    padding: 50px 0;
  }

  #register .signup-box .registration-cta-box {
    padding: 0 20px;
    text-align: center;
  }
}

body.hcpefficacy .hcp.section-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: sticky;
  z-index: 10;
  background: #ffffff;
  padding: 0 !important;
}

body.hcpefficacy .hcp.section-links .fixed {
  position: fixed;
  top: 100px;
}

body.hcpefficacy .hcp.section-links .links-wrapper {
  width: 100%;
  justify-content: center;
  border-bottom: 2px solid #003F72;
  background-color: #ffffff;
  padding: 15px 0;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.hcpefficacy .hcp.section-links .links-wrapper {
    margin-left: 0;
    width: 100% !important;
    flex-direction: row !important;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  body.hcpefficacy .hcp.section-links .links-wrapper {
    display: none;
  }
}

body.hcpefficacy .hcp.section-links .links-wrapper div {
  color: #003F73 !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0 20px;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.hcpefficacy .hcp.section-links .links-wrapper div {
    padding: 5px 8px;
  }
}

body.hcpefficacy .hcp.section-links .links-wrapper div:hover {
  color: #4E4E4E !important;
}

body.hcpefficacy .hcp.section-links .links-wrapper div:active {
  font-weight: bold !important;
}

body.hcpefficacy .hcp.section-links .links-wrapper div:visited {
  font-weight: bold !important;
}

body.hcpefficacy .hcp.section-links .links-wrapper span.mobile-hide.blue {
  font-size: 0.875rem;
  font-weight: 700;
}

body.hcpefficacy .hcp.section-links .mobile-pageTitle {
  display: none;
}

@media (max-width: 767px) {
  body.hcpefficacy .hcp.section-links .mobile-pageTitle {
    display: block;
    background-color: #fde7de;
    width: 100%;
    padding: 5px 25px;
    border-top: 5px solid #F15D22;
  }

  body.hcpefficacy .hcp.section-links .mobile-pageTitle p {
    color: #003F73;
    font-weight: 800;
    font-size: 0.8125rem;
    line-height: .9375rem;
  }
}

body.hcpefficacy .pageSection-header {
  margin: 0;
}

body.hcpefficacy .pageSection-header .pageSection-title {
  width: 72%;
  margin: 0 auto;
}

body.hcpefficacy .pageSection-header .pageSection-title div {
  text-align: center;
  padding-top: 50px;
}

body.hcpefficacy .pageSection-header .pageSection-title div p {
  color: #003F73;
  font-size: 1.125rem;
  line-height: 0.9375rem;
  font-weight: 700;
  font-weight: bold;
}

@media (max-width: 800px) {
  body.hcpefficacy .pageSection-header .pageSection-title div {
    width: 100%;
    text-align: center;
  }
}

body.hcpefficacy .blue-box {
  display: flex;
  border: 2px solid #003F73;
}

body.hcpefficacy .blue-box .orange-block {
  background-color: #F15D22;
  height: auto;
  width: 80px;
}

body.hcpefficacy .blue-box .blue-box-content {
  padding: 10px 25px 10px 15px;
}

body.hcpefficacy .blue-box .blue-box-content p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #003F73;
  font-weight: 700;
}

body.hcpefficacy .blue-box .blue-box-content ul li {
  color: #003F73;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: normal;
  margin-left: 10px;
}

body.hcpefficacy .blue-box .blue-box-content ul li::marker {
  color: #003F73;
  content: "\2022";
  font-size: 125%;
}

body.hcpefficacy .videoSection {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 20px auto;
  text-align: center;
}

body.hcpefficacy .videoSection .videoTitle {
  background-color: #54B948;
  width: 40%;
  padding-left: 10px;
  padding-top: 2px;
}

body.hcpefficacy .videoSection .videoTitle p {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 0.9375rem;
  font-weight: 700;
  text-align: left;
}

body.hcpefficacy .videoSection .iframeSection {
  background-color: #F2F2F2;
}

body.hcpefficacy .videoSection .iframeSection .video-container {
  border: 2px solid #54B948;
  padding: 25px 50px;
}

body.hcpefficacy .videoSection .iframeSection .video-container iframe {
  margin: 0 auto;
}

@media (max-width: 800px) {
  body.hcpefficacy .videoSection {
    width: 100%;
  }

  body.hcpefficacy .videoSection .videoTitle {
    width: 80%;
  }

  body.hcpefficacy .videoSection .iframeSection .video-container {
    padding: 10px;
  }

  body.hcpefficacy .videoSection .iframeSection .video-container iframe {
    width: 100%;
    height: auto;
  }
}

body.hcpefficacy .section-wrapper h2 {
  font-weight: bold;
  color: #003F73;
  font-size: 1.875rem;
  line-height: 2.1875rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  body.hcpefficacy .section-wrapper h2 {
    font-size: 1.625rem;
  }
}

body.hcpefficacy .section-wrapper img {
  max-width: 100%;
  align-self: center;
}

@media screen and (max-width: 800px) {
  body.hcpefficacy .section-wrapper img {
    margin: 0 auto;
  }
}

body.hcpefficacy img.desktop {
  max-width: 800px;
}

body.hcpefficacy .hero-wrapper.hcp {
  width: 100%;
}

@media (max-width: 800px) {
  body.hcpefficacy .hero-wrapper.hcp {
    padding: 200px 0 0 !important;
  }
}

body.hcpefficacy .hero-wrapper.hcp .hero-bg-img {
  display: block;
  background-image: url("/img/hcp/VILTEPSO_EfficacySafetyHero.jpg");
  min-height: 590px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  body.hcpefficacy .hero-wrapper.hcp .hero-bg-img {
    padding: 0 40px 0;
    background-image: url("/img/hcp/efficacy-safety-bg-mbl.png");
  }
}

@media (min-width: 1500px) {
  body.hcpefficacy .hero-wrapper.hcp .hero-bg-img {
    min-height: 780px;
  }
}

body.hcpefficacy .hero-wrapper.hcp .hero-bg-img .overlay {
  text-align: center;
  line-height: 45px;
  font-weight: bold;
}

body.hcpefficacy .hero-wrapper.hcp .hero-bg-img .overlay .label {
  font-size: 30px;
}

@media (max-width: 800px) {
  body.hcpefficacy .hero-wrapper.hcp .hero-bg-img .overlay .label {
    font-size: 22px;
    line-height: 32px;
  }
}

body.hcpefficacy .hero-wrapper.hcp .hero-bg-img .overlay .hero-body {
  font-size: 45px;
  line-height: 52px;
  padding: 10px 0 40px;
}

@media (max-width: 800px) {
  body.hcpefficacy .hero-wrapper.hcp .hero-bg-img .overlay .hero-body {
    font-size: 32px;
    line-height: 40px;
  }
}

body.hcpefficacy .hero-wrapper.hcp .hero-bg-img .learn-more {
  margin: 0 auto;
  padding: 50px 0 0;
  cursor: pointer;
}

body.hcpefficacy #about {
  padding: 50px 0 0;
}

@media (max-width: 800px) {
  body.hcpefficacy #about {
    padding: 25px 0 0;
  }
}

body.hcpefficacy #about .section-wrapper {
  flex-direction: column;
}

body.hcpefficacy #about .section-wrapper .row.inherit {
  align-items: inherit !important;
  display: flex;
  flex-direction: row;
}

@media (max-width: 800px) {
  body.hcpefficacy #about .section-wrapper .row.inherit {
    flex-direction: column;
  }
}

body.hcpefficacy #about .section-wrapper .row.inherit div.rowCol {
  flex-basis: 32%;
  padding: 0 25px;
  text-align: center;
}

body.hcpefficacy #about .section-wrapper .row.inherit div.rowCol p {
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.4375rem;
  color: #003F73;
}

body.hcpefficacy #about .section-wrapper .row.inherit div.rowCol img {
  max-width: 72px;
}

@media (max-width: 800px) {
  body.hcpefficacy #about .section-wrapper .row.inherit div.rowCol {
    display: flex;
    padding: 10px 0;
  }

  body.hcpefficacy #about .section-wrapper .row.inherit div.rowCol p {
    padding-top: 0;
  }

  body.hcpefficacy #about .section-wrapper .row.inherit div.rowCol img {
    margin-right: 10px;
    margin-bottom: auto;
  }
}

body.hcpefficacy #about .section-wrapper .row.inherit div:first-of-type {
  padding: 0 25px 0 0;
}

@media (max-width: 800px) {
  body.hcpefficacy #about .section-wrapper .row.inherit div:first-of-type {
    padding: 0;
  }
}

body.hcpefficacy #about .section-wrapper .row.inherit .vertical-line-border {
  border-left: 2px solid #8C8C8C;
  height: 150px;
  flex-basis: 0%;
  margin-top: auto;
  padding: 0;
}

body.hcpefficacy #about .section-wrapper #s-p-btn {
  padding: 15px 25px;
  border: none;
  border-radius: 2px;
  background-color: #54B948;
  max-width: 396px;
  display: block;
  text-align: left;
  box-shadow: none;
  margin: 25px auto;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
}

@media (max-width: 800px) {
  body.hcpefficacy #about .section-wrapper #s-p-btn {
    padding: 15px 50px 15px 15px;
  }
}

body.hcpefficacy #about .section-wrapper .row.footnotes-and-image {
  margin: 20px 0 0;
  align-items: inherit !important;
  display: flex;
}

body.hcpefficacy #about .section-wrapper .row.footnotes-and-image #footnotes-and-blue-box {
  width: 60%;
}

body.hcpefficacy #about .section-wrapper .row.footnotes-and-image #footnotes-and-blue-box .abtV-fn {
  font-size: 1rem;
  line-height: 1.1875rem;
  display: flex;
  margin-left: -10px;
  margin-bottom: -5px;
}

body.hcpefficacy #about .section-wrapper .row.footnotes-and-image #footnotes-and-blue-box .abtV-fn div {
  flex-direction: row;
}

body.hcpefficacy #about .section-wrapper .row.footnotes-and-image .smile-img img {
  width: 100% !important;
  max-width: 100% !important;
  margin-right: 0 !important;
  margin-bottom: -33px;
}

@media (max-width: 800px) {
  body.hcpefficacy #about .section-wrapper .row.footnotes-and-image .smile-img img {
    margin-bottom: 0;
  }
}

@media (max-width: 800px) {
  body.hcpefficacy #about .section-wrapper .row.footnotes-and-image {
    flex-direction: column;
  }

  body.hcpefficacy #about .section-wrapper .row.footnotes-and-image #footnotes-and-blue-box {
    width: 100%;
  }
}

body.hcpefficacy #exon-skipping #eS-intro div p {
  font-size: 1rem;
  line-height: 1.375rem;
}

body.hcpefficacy #exon-skipping #eS-intro div ul {
  padding-left: 10px;
  padding-right: 25px;
}

body.hcpefficacy #exon-skipping #eS-intro div ul li {
  font-size: 1rem;
  line-height: 1.375rem;
}

body.hcpefficacy #exon-skipping #eS-intro div ul li ul.subList {
  padding-left: 10px !important;
}

body.hcpefficacy #exon-skipping #eS-intro div ul li ul.subList li {
  font-size: 1rem;
  line-height: 1.375rem;
  padding-bottom: 0;
}

body.hcpefficacy #exon-skipping #eS-intro div ul li ul.subList li::marker {
  color: #F15D22;
  content: " > " !important;
  font-weight: 900;
}

body.hcpefficacy #exon-skipping #eS-intro div ul li::marker {
  color: #F15D22;
  content: " \2022   ";
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table {
  display: flex;
  flex-flow: row nowrap;
  padding: 35px 0 0 0;
}

@media screen and (max-width: 800px) {
  body.hcpefficacy #exon-skipping #eS-intro .deletion-table {
    flex-flow: row wrap;
  }
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table .paragraph {
  padding-right: 32px;
  max-width: 350px;
}

@media screen and (max-width: 800px) {
  body.hcpefficacy #exon-skipping #eS-intro .deletion-table .paragraph {
    max-width: none;
    padding-right: 0;
  }
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table .table {
  padding: 0 0 0 0;
  flex: 0 0 60%;
}

@media screen and (max-width: 955px) {
  body.hcpefficacy #exon-skipping #eS-intro .deletion-table .table {
    padding: 0 0 0 0;
  }
}

@media screen and (max-width: 800px) {
  body.hcpefficacy #exon-skipping #eS-intro .deletion-table .table {
    padding: 0 0 32px 0;
    border-right: none;
    flex: 0 0 100%;
  }
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table .table h3 {
  margin-bottom: 16px;
  max-width: 400px;
}

@media screen and (max-width: 800px) {
  body.hcpefficacy #exon-skipping #eS-intro .deletion-table .table h3 {
    margin-bottom: 20px;
  }
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table .table img {
  width: 100%;
  height: auto;
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table .table .table-img-desktop {
  display: block;
}

@media screen and (max-width: 800px) {
  body.hcpefficacy #exon-skipping #eS-intro .deletion-table .table .table-img-desktop {
    display: none;
  }
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table .table .table-img-mobile {
  display: none;
}

@media screen and (max-width: 800px) {
  body.hcpefficacy #exon-skipping #eS-intro .deletion-table .table .table-img-mobile {
    display: block;
  }
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table .exonFinderToolBtn {
  margin-left: auto;
  flex-basis: 35%;
  margin-top: 40px;
}

@media (max-width: 800px) {
  body.hcpefficacy #exon-skipping #eS-intro .deletion-table .exonFinderToolBtn {
    margin: 0 auto;
    text-align: center;
    flex-basis: auto;
  }
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table .exonFinderToolBtn #e-f-t-btn {
  border: none;
  background-color: #54B948;
  display: block;
  text-align: center;
  box-shadow: none;
  max-height: 215px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50%;
  padding: 30px 37px;
  max-width: 150px;
  font-size: 1.3125rem;
  line-height: 1.375rem;
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table .exonFinderToolBtn #e-f-t-btn .white-arrow {
  width: 21px !important;
  height: 21px !important;
  margin-top: 8px;
}

@media (max-width: 800px) {
  body.hcpefficacy #exon-skipping #eS-intro .deletion-table .exonFinderToolBtn #e-f-t-btn {
    padding: 24.5px 12.5px;
    max-width: 145px;
    font-size: 0.8125rem;
    line-height: 0.875rem;
  }

  body.hcpefficacy #exon-skipping #eS-intro .deletion-table .exonFinderToolBtn #e-f-t-btn .white-arrow {
    width: 12px !important;
    height: 12px !important;
    margin-top: 8px;
  }
}

body.hcpefficacy #exon-skipping #eS-intro .deletion-table .exonFinderToolBtn #e-f-t-btn:hover {
  background-color: #4E4E4E !important;
}

@media (max-width: 1083px) and (min-width: 956px) {
  body.hcpefficacy #exon-skipping #eS-intro .deletion-table .exonFinderToolBtn {
    flex-basis: 30%;
  }
}

body.hcpefficacy #exon-skipping #eS-intro .videoSection .video-title {
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
}

@media (max-width: 1366px) {
  body.hcpefficacy #exon-skipping #eS-intro .videoSection .video-container #exon-skipping-video {
    width: 100% !important;
  }
}

body.hcpefficacy #efficacy-section-header-hcp {
  scroll-margin-top: 195px;
}

body.hcpefficacy #efficacy .section-wrapper p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  color: #8C8C8C;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne {
  margin-bottom: 50px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne h2,
body.hcpefficacy #efficacy .section-wrapper .sectionOne h3 {
  text-align: center;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne h3 {
  font-size: 1.375rem;
  font-weight: normal !important;
  color: #536D94;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .chart-area {
  margin-top: 40px;
  background-color: rgba(99, 131, 180, 0.03);
  border-radius: 5%;
  padding: 3% 5% 5%;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .chart-area p {
  color: #394151;
  text-align: left;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .chart-area .charts {
  text-align: left;
  padding-bottom: 10px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .chart-area .sub-text {
  font-size: 10px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .chart-area .sub-text:last-of-type {
  padding: 0 0 20px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .chart-area .mobile {
  display: none;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .chart-area .desktopAccImg {
  width: 100%;
}

@media (max-width: 800px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionOne .chart-area {
    padding: 10% 25px;
    border-radius: 40px;
  }

  body.hcpefficacy #efficacy .section-wrapper .sectionOne .chart-area .mobile {
    display: block;
    width: auto;
    min-width: 100%;
    max-width: 100% !important;
  }

  body.hcpefficacy #efficacy .section-wrapper .sectionOne .chart-area .desktopAccImg {
    display: none;
  }
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne ul {
  margin-left: 12px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne ul li {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #8C8C8C;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne ul li ul.subLi {
  margin-left: 10px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne ul li ul.subLi li::marker {
  content: "\203A   ";
  color: #F15D22;
  font-size: 1.25rem;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne ul li ul.subLi li {
  padding-bottom: 0;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne ul li::marker {
  color: #F15D22;
  font-size: 1.15rem;
  content: "\2022   ";
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .study-design {
  color: #717073 !important;
  padding-bottom: 10px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne div.flex-row {
  display: flex;
  flex-direction: row;
  color: #717073 !important;
  padding: 10px 0;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne div.flex-row .p-value {
  font-size: 15px;
  color: #717073 !important;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne p.small-font:last-of-type {
  line-height: 1.1rem;
  font-size: 12px !important;
  color: #717073 !important;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .row.greenArea {
  margin: 50px auto 0px;
  align-items: start;
  width: 75%;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .row.greenArea .iconArea img {
  margin: -35px 0 0 -47px;
  max-width: 90px !important;
  height: 90px !important;
  width: 90px !important;
  position: absolute;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .row.greenArea .greenBox {
  border: 3px solid #54B948;
  text-align: center;
  padding: 15px 25px 15px 25px;
  border-radius: 100px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .row.greenArea .greenBox span {
  font-weight: bolder;
}

body.hcpefficacy #efficacy .section-wrapper .sectionOne .row.greenArea .greenBox p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #394151 !important;
  font-weight: bold;
}

@media (max-width: 800px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionOne .row.greenArea {
    width: 95%;
    text-align: center;
  }

  body.hcpefficacy #efficacy .section-wrapper .sectionOne .row.greenArea .iconArea img {
    margin: 0 0 -45px 0;
    position: inherit;
  }

  body.hcpefficacy #efficacy .section-wrapper .sectionOne .row.greenArea .greenBox {
    padding: 45px 25px 25px;
    border-radius: 75px;
  }
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo {
  margin-bottom: 50px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo .chart-area {
  margin-top: 40px;
  background-color: rgba(99, 131, 180, 0.03);
  border-radius: 5%;
  padding: 3% 5% 5%;
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo .chart-area p {
  color: #394151;
  text-align: left;
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo .chart-area .centeredImage {
  margin: 25px auto;
  text-align: center;
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo .chart-area h3 {
  color: #394151;
  font-weight: normal;
  padding-bottom: 10px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo .chart-area .dark-grey {
  color: #595B60;
}

@media (max-width: 800px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionTwo .chart-area {
    padding: 10% 30px;
    border-radius: 40px;
  }

  body.hcpefficacy #efficacy .section-wrapper .sectionTwo .chart-area .centeredImage .mobile {
    display: block;
    width: auto;
    min-width: 100%;
    max-width: 100% !important;
  }
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo h2 {
  text-align: center;
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo h3 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo p.mobile {
  font-size: 0.9375rem;
  line-height: 1.0625rem;
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo ul {
  margin-left: 10px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo ul li {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #8C8C8C;
}

body.hcpefficacy #efficacy .section-wrapper .sectionTwo ul li::marker {
  color: #F15D22;
  content: " \2022   ";
}

body.hcpefficacy #efficacy .section-wrapper .sectionThree {
  margin-bottom: 50px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionThree h2 {
  text-align: center;
}

@media (max-width: 800px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionThree h2 {
    font-size: 1.25rem;
    line-height: 1.375rem;
  }
}

body.hcpefficacy #efficacy .section-wrapper .sectionThree h2 .h2-small-span {
  font-size: 1.375rem;
}

@media (max-width: 800px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionThree h2 .h2-small-span {
    font-size: .9375rem;
  }
}

body.hcpefficacy #efficacy .section-wrapper .sectionThree .row.alignedTop {
  align-items: start !important;
  display: flex;
  flex-direction: row;
}

body.hcpefficacy #efficacy .section-wrapper .sectionThree .row.alignedTop div p {
  font-size: 1rem;
  line-height: 1.375rem;
  color: #8C8C8C;
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour {
  padding: 5% 0 0;
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour h2 {
  text-align: center;
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area {
  margin-top: 40px;
  background-color: rgba(99, 131, 180, 0.03);
  border-radius: 5%;
  padding: 3% 5% 8%;
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area p {
  color: #394151;
  text-align: left;
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .charts {
  text-align: left;
  padding-bottom: 10px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .references {
  padding-top: 20px;
  padding-left: 60px;
  max-width: 70%;
}

@media (max-width: 800px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .references {
    padding-left: 0;
    max-width: 100%;
  }
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .references sup {
  margin-left: -8px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .references .reference {
  color: #595B60 !important;
  font-size: .90rem !important;
  line-height: 24px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .bottom-reference {
  padding-top: 20px;
  padding-left: 60px;
  margin-left: -5px;
  max-width: 70%;
  color: #707070 !important;
  font-size: .90rem !important;
  line-height: 24px;
}

@media (max-width: 800px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .bottom-reference {
    padding-left: 0;
    max-width: 100%;
  }
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .row.greenArea {
  padding-top: 50px;
  padding-left: 60px;
  width: 55%;
  text-align: center;
  vertical-align: center;
}

@media (max-width: 1200px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .row.greenArea {
    width: 75%;
  }
}

@media (max-width: 800px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .row.greenArea {
    width: 100%;
    padding-left: 0;
  }
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .row.greenArea .greenBox {
  background-color: #ffffff;
  border: 3px solid #54B948;
  padding: 30px 40px;
  border-radius: 100px;
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .row.greenArea .greenBox p {
  font-size: 1.15rem;
  color: #003F72 !important;
  font-weight: bold;
  width: 100%;
  text-align: left;
  margin: 0 auto;
}

body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .row.greenArea .greenBox .sub-text {
  color: #595B60 !important;
  font-size: .875rem;
  font-weight: normal;
  line-height: 1.375 !important;
}

@media (max-width: 800px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .row.greenArea .greenBox {
    padding: 40px 35px;
  }

  body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .row.greenArea .greenBox p {
    font-size: 0.95rem;
    line-height: 1.125;
    padding: 0 0;
  }

  body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area .row.greenArea .greenBox .sub-text {
    font-size: .75rem;
    padding: 0 0;
  }
}

@media (max-width: 800px) {
  body.hcpefficacy #efficacy .section-wrapper .sectionFour .chart-area {
    padding: 10% 25px;
    border-radius: 40px;
  }
}

body.hcpefficacy #safety-section-header-hcp {
  scroll-margin-top: 140px;
}

body.hcpefficacy #safety .study-design {
  padding: 4% 0 0;
}

body.hcpefficacy #safety .study-design p {
  color: #707070;
  font-size: 1rem;
}

body.hcpefficacy #safety .safety-assess {
  padding: 10% 0 0;
}

body.hcpefficacy #safety .safety-assess h2 {
  text-align: center;
}

body.hcpefficacy #safety .safety-assess .chart-area {
  margin-top: 40px;
  background-color: rgba(99, 131, 180, 0.03);
  border-radius: 5%;
  padding: 3% 0% 10%;
}

body.hcpefficacy #safety .safety-assess .chart-area p {
  color: #394151;
  text-align: left;
}

body.hcpefficacy #safety .safety-assess .chart-area .charts {
  text-align: left;
  padding-bottom: 10px;
  margin: 0 auto;
}

body.hcpefficacy #safety .safety-assess .chart-area .charts img {
  max-width: 100%;
  width: 100%;
}

@media (max-width: 800px) {
  body.hcpefficacy #safety .safety-assess .chart-area .charts .mobile {
    display: block;
    width: auto;
    min-width: 100%;
    max-width: 100% !important;
  }
}

body.hcpefficacy #safety .safety-assess .chart-area .row.greenArea {
  margin: 50px auto 0px;
  width: 65%;
}

body.hcpefficacy #safety .safety-assess .chart-area .row.greenArea .iconArea img {
  margin: -35px 0 0 -47px;
  max-width: 90px !important;
  height: 90px !important;
  width: 90px !important;
  position: absolute;
}

body.hcpefficacy #safety .safety-assess .chart-area .row.greenArea .greenBox {
  border: 3px solid #54B948;
  background-color: #ffffff;
  text-align: center;
  margin: 0 auto;
  padding: 35px 55px;
  border-radius: 100px;
}

body.hcpefficacy #safety .safety-assess .chart-area .row.greenArea .greenBox p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #003F72 !important;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 800px) {
  body.hcpefficacy #safety .safety-assess .chart-area .row.greenArea {
    width: 95%;
    padding: 10% 0;
    border-radius: 40px;
  }

  body.hcpefficacy #safety .safety-assess .chart-area .row.greenArea .greenBox {
    padding: 35px 15px;
  }

  body.hcpefficacy #safety .safety-assess .chart-area .row.greenArea .greenBox p {
    font-size: 1.1rem;
    line-height: 1.375rem;
  }
}

body.hcpefficacy #safety .order-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 70%;
  margin: 0 auto;
  padding: 12% 0 0;
}

@media (max-width: 800px) {
  body.hcpefficacy #safety .order-form {
    max-width: 100%;
    padding: 10% 40px 0;
  }
}

body.hcpefficacy #safety .order-form h4 {
  color: #003F72;
  font-weight: bold;
}

body.hcpefficacy #safety .order-form p {
  color: #595B60;
  padding: 3% 0 8%;
  text-align: center;
}

body.hcpefficacy #safety .order-form img {
  cursor: pointer;
}

body.hcpefficacy #dosing .dosingSec1 .row.dosingRowBlocks {
  display: flex;
  flex-direction: row;
  margin: 10px 0;
  align-items: center;
}

body.hcpefficacy #dosing .dosingSec1 .row.dosingRowBlocks img {
  max-width: 75px !important;
  width: 75px;
  height: 75px;
  margin: 0 20px 0 0;
}

@media (max-width: 800px) {
  body.hcpefficacy #dosing .dosingSec1 .row.dosingRowBlocks img {
    margin-bottom: auto;
  }
}

body.hcpefficacy #dosing .dosingSec1 .row.dosingRowBlocks p {
  color: #003F73;
  font-size: 1.125rem;
  line-height: 1.5rem;
}

@media (max-width: 800px) {
  body.hcpefficacy #dosing .dosingSec1 .row.dosingRowBlocks p {
    padding: 0;
  }
}

body.hcpefficacy #dosing .videoSection {
  padding-bottom: 50px;
  width: 100%;
}

body.hcpefficacy #dosing .videoSection .videoTitle {
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
}

@media (max-width: 800px) {
  body.hcpefficacy #dosing .videoSection .videoTitle {
    padding-left: 0;
  }

  body.hcpefficacy #dosing .videoSection .videoTitle p {
    padding: 10px 10px;
  }
}

@media (max-width: 1366px) {
  body.hcpefficacy #dosing .videoSection .video-container #exon-skipping-video {
    width: 100% !important;
  }
}

body.hcpefficacy #dosing .weekly-dosing-chart-section p:first-of-type {
  padding: 0 0 5px;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section #desktop-dosing-chart {
  height: 295px;
  overflow-y: scroll;
  border-bottom: 5px solid #003F73;
  /* Handle */
}

body.hcpefficacy #dosing .weekly-dosing-chart-section #desktop-dosing-chart::-webkit-scrollbar {
  width: 10px;
  background-color: #fde7de;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section #desktop-dosing-chart::-webkit-scrollbar-thumb {
  background: #F15D22;
  border: 1px solid #F15D22;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section #desktop-dosing-chart img.desktop {
  max-width: 800px;
  align-self: center;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section #desktop-dosing-chart .chartBlueBar {
  position: absolute;
  background-color: white;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section #mobile-dosing-chart {
  height: auto;
  width: 90vw;
  overflow-x: scroll;
  margin-top: 10px;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section #mobile-dosing-chart img.wkly-arrow {
  position: absolute;
  margin-top: 54px;
  margin-left: 164px;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section #mobile-dosing-chart img.wkly-mobile {
  width: 1883px !important;
  max-width: 1883px !important;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section #mobile-dosing-chart .hide-arrow {
  display: none !important;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section #mobile-dosing-chart .chartBlueBar {
  position: absolute;
  background-color: white;
  width: 100px !important;
  max-width: 100px !important;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section div.asterik-before::before {
  content: '*' !important;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section div.asterik-before {
  display: flex;
  flex-direction: row;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section div.dagger-before {
  display: flex;
  flex-direction: row;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section div.dagger-before p:first-of-type {
  padding: 5px 0;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section .orange-lt20v {
  background-color: #FEF6F2;
  padding: 25px;
  border-radius: 20px;
  margin: 25px 0 0;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section .orange-lt20v .numbered-text {
  display: flex;
  flex-direction: row;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section .orange-lt20v .numbered-text div:first-of-type {
  width: 10px;
  margin-right: 10px;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section .orange-lt20v .numbered-text div p {
  color: #707072;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section .orange-lt20v .numbered-text div p:first-of-type {
  padding: 5px 0 5px;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section .green-gte20v {
  background-color: #F5FFF4;
  padding: 25px;
  border-radius: 20px;
  margin: 25px 0 50px;
}

body.hcpefficacy #dosing .weekly-dosing-chart-section .green-gte20v p {
  color: #707072;
}

body.hcpefficacy #dosing #bottomDosingSection {
  border-top: 2px solid #8C8C8C;
  padding-top: 20px;
  text-align: center;
}

body.hcpefficacy #dosing #bottomDosingSection h3 {
  color: #F15D22;
  font-weight: bold;
  font-size: 1.375rem;
  margin-bottom: 25px;
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit {
  padding: 10px 0 25px;
  align-items: inherit !important;
  display: flex;
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit div {
  flex-basis: 33%;
  padding: 0 25px;
  text-align: center;
  border-right: 2px solid #8C8C8C;
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit div p {
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.4375rem;
  color: #003F73;
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit div img {
  max-width: 72px;
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit div h4 {
  font-size: 1.125rem;
  color: #F15D22;
  font-weight: bold;
  line-height: 1.375rem;
}

@media (max-width: 800px) {
  body.hcpefficacy #dosing #bottomDosingSection .row.inherit div {
    border-right: none;
  }

  body.hcpefficacy #dosing #bottomDosingSection .row.inherit div p {
    padding-top: 0;
  }

  body.hcpefficacy #dosing #bottomDosingSection .row.inherit div img {
    margin-right: 10px;
  }
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit div:last-of-type {
  border-right: none;
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit hr {
  border-bottom: 2px solid #AAA9AB;
  width: 80%;
  margin: 25px auto;
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit.fiftysplit {
  padding: 25px 0 50px;
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit.fiftysplit div {
  flex-basis: 50%;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit.fiftysplit div a {
  padding: 9px 25px;
  border: none;
  border-radius: 2px;
  background-color: #F15D22;
  display: block;
  text-align: center;
  box-shadow: none;
  margin-top: auto;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  width: 172px;
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit.fiftysplit div a .white-arrow {
  margin-left: 2px;
}

@media (max-width: 800px) {
  body.hcpefficacy #dosing #bottomDosingSection .row.inherit.fiftysplit div h4 {
    margin-bottom: 10px;
  }

  body.hcpefficacy #dosing #bottomDosingSection .row.inherit.fiftysplit div p {
    margin-bottom: 10px;
  }
}

body.hcpefficacy #dosing #bottomDosingSection .row.inherit.fiftysplit hr {
  border-bottom: 2px solid #AAA9AB;
  width: 80%;
  margin: 25px auto;
}

body.hcpefficacy #dosing #bottomDosingSection .blue-box .blue-box-content p {
  color: #FF41CB;
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-weight: 500;
  text-align: left;
}

@media (max-width: 800px) {
  body.hcpefficacy #dosing #bottomDosingSection h3 {
    text-align: left;
  }

  body.hcpefficacy #dosing #bottomDosingSection .row.inherit {
    flex-direction: column;
  }

  body.hcpefficacy #dosing #bottomDosingSection .row.inherit div {
    display: flex;
    flex-direction: row;
    padding: 10px 0 0;
  }

  body.hcpefficacy #dosing #bottomDosingSection .row.inherit div img {
    margin-bottom: auto;
  }

  body.hcpefficacy #dosing #bottomDosingSection .row.inherit.fiftysplit {
    flex-direction: column;
  }

  body.hcpefficacy #dosing #bottomDosingSection .row.inherit.fiftysplit div {
    padding-top: 10px;
  }
}

body.hcpefficacy #request-rep-thank-you-modal.modal {
  position: fixed;
  top: 0;
  padding-top: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

@media (max-width: 800px) {
  body.hcpefficacy #request-rep-thank-you-modal.modal {
    padding-top: 0;
    align-items: center;
  }
}

body.hcpefficacy #request-rep-thank-you-modal.modal .modal-dialog {
  width: 800px;
  max-width: 100%;
}

body.hcpefficacy #request-rep-thank-you-modal.modal .modal-dialog .modal-content .modal-body {
  background-color: #ffffff;
}

body.hcpefficacy #request-rep-thank-you-modal.modal .modal-dialog .modal-content .modal-body button {
  color: #707072;
  border: none;
  font-size: 1rem;
  margin-left: auto;
  font-weight: 400;
  display: flex;
  font-family: "Spartan", sans-serif;
  margin-bottom: 5px;
  padding-top: 10px;
  padding-right: 10px;
}

body.hcpefficacy #request-rep-thank-you-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area {
  background-color: white;
  padding: 32px 0 60px 0;
}

body.hcpefficacy #request-rep-thank-you-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area p {
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-align: center;
  color: #707072;
}

body.hcpefficacy #request-rep-thank-you-modal.hidden {
  display: none;
}

body.hcpefficacy #request-rep-thank-you-modal.fade {
  animation: bg-fade-in .5s ease-in-out;
}

body.hcpefficacy #request-rep-thank-you-modal.fade .modal-content {
  animation: fade-in .5s ease-in-out;
}

body.hcpefficacy #request-rep-thank-you-modal.fade-out {
  animation: bg-fade-out .5s ease-in-out;
}

body.hcpefficacy #request-rep-thank-you-modal.fade-out .modal-content {
  animation: fade-out .5s ease-in-out;
}

#safety-section-header-hcp {
  background: linear-gradient(180deg, #003f73 0%, #00203a 50%);
  color: #ffffff;
  padding: 70px 40px;
}

#safety-section-header-hcp .section-wrapper {
  width: 100% !important;
}

#safety-section-header-hcp .section-wrapper .sectionOne {
  text-align: center;
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}

#safety-section-header-hcp .section-wrapper .sectionOne h4 {
  margin-bottom: 10px;
}

#safety-section-header-hcp .section-wrapper .sectionOne h2 {
  color: #ffffff;
  padding: 2% 0;
}

@media (max-width: 955px) {
  .hide-mobile {
    display: none;
  }
}

body.about-viltepso .hero-wrapper.about-viltepso {
  width: 100%;
}

@media (max-width: 800px) {
  body.about-viltepso .hero-wrapper.about-viltepso {
    padding: 200px 0 0 !important;
  }
}

body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img {
  display: block;
  position: relative;
  background-image: url("/img/patient/about-viltepso-hero.png");
  min-height: 590px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img {
    background-image: url("/img/patient/about-viltepso-hero-mobile.png");
    min-height: 650px;
  }
}

@media (min-width: 1500px) {
  body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img {
    min-height: 780px;
  }
}

body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay {
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  width: 958px;
  max-width: 100%;
}

@media (max-width: 955px) {
  body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay {
    width: 700px;
  }
}

@media (max-width: 800px) {
  body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay {
    margin-top: -60px;
    padding: 0 20px;
    max-width: calc(100% - 40px);
  }
}

body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay h2 {
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay h2 {
    font-size: 22px;
  }
}

body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay .label {
  font-size: 30px;
}

@media (max-width: 800px) {
  body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay .label {
    font-size: 22px;
    line-height: 32px;
  }
}

body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay .hero-body {
  font-size: 45px;
  line-height: 52px;
  padding: 10px 0;
}

@media (max-width: 800px) {
  body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay .hero-body {
    font-size: 32px;
    line-height: 40px;
  }
}

body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay > p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 800px) {
  body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay > p {
    margin-top: 0;
  }
}

body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay > p:last-of-type {
  position: absolute;
  bottom: 25px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay > p:last-of-type a {
  color: #ffffff;
}

@media (max-width: 800px) {
  body.about-viltepso .hero-wrapper.about-viltepso .hero-bg-img .overlay > p:last-of-type {
    max-width: 90%;
  }
}

body.about-viltepso .section-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: sticky;
  z-index: 10;
  background: #ffffff;
  padding: 0 !important;
}

body.about-viltepso .section-links .fixed {
  position: fixed;
  top: 100px;
}

body.about-viltepso .section-links .links-wrapper {
  width: 100%;
  justify-content: center;
  border-bottom: 2px solid #003F72;
  background-color: #ffffff;
  padding: 15px 0;
}

@media (max-width: 955px) {
  body.about-viltepso .section-links .links-wrapper {
    margin-left: 0;
    width: 100% !important;
    flex-direction: row !important;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  body.about-viltepso .section-links .links-wrapper {
    display: none;
  }
}

body.about-viltepso .section-links .links-wrapper div {
  color: #003F73 !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0 20px;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.about-viltepso .section-links .links-wrapper div {
    padding: 5px 8px;
  }
}

body.about-viltepso .section-links .links-wrapper div:hover {
  color: #4E4E4E !important;
}

body.about-viltepso .section-links .links-wrapper div:active {
  font-weight: bold !important;
}

body.about-viltepso .section-links .links-wrapper div:visited {
  font-weight: bold !important;
}

body.about-viltepso .section-links .links-wrapper span.mobile-hide.blue {
  font-size: 0.875rem;
  font-weight: 700;
}

body.about-viltepso .section-links .mobile-pageTitle {
  display: none;
}

@media (max-width: 767px) {
  body.about-viltepso .section-links .mobile-pageTitle {
    display: block;
    background-color: #fde7de;
    width: 100%;
    padding: 5px 25px;
    border-top: 5px solid #F15D22;
  }

  body.about-viltepso .section-links .mobile-pageTitle p {
    color: #003F73;
    font-weight: 800;
    font-size: 0.8125rem;
    line-height: .9375rem;
  }
}

body.about-viltepso .pageSection-header {
  margin: 0;
}

body.about-viltepso .pageSection-header .pageSection-title {
  margin: 0 auto;
}

body.about-viltepso .pageSection-header .pageSection-title div {
  text-align: center;
  padding-top: 50px;
}

body.about-viltepso .pageSection-header .pageSection-title div p {
  color: #003F73;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  body.about-viltepso .pageSection-header .pageSection-title div {
    width: 100%;
    text-align: center;
  }
}

body.about-viltepso .section-wrapper h2 {
  font-weight: bold;
  color: #003F73;
  font-size: 1.875rem;
  line-height: 2.1875rem;
  margin-bottom: 20px;
  text-align: center;
}

body.about-viltepso .section-wrapper img {
  max-width: 100%;
  align-self: center;
}

@media screen and (max-width: 800px) {
  body.about-viltepso .section-wrapper img {
    margin: 0 auto;
  }
}

body.about-viltepso #what-is-dmd-patient {
  padding: 50px 0 100px;
  margin-bottom: 80px;
  background-color: rgba(99, 131, 180, 0.05);
  position: relative;
  scroll-margin-top: 100px;
}

@media screen and (max-width: 800px) {
  body.about-viltepso #what-is-dmd-patient {
    padding: 50px 0;
    margin-bottom: 40px;
  }
}

body.about-viltepso #what-is-dmd-patient .section-wrapper {
  flex-direction: column;
}

body.about-viltepso #what-is-dmd-patient .section-wrapper > p {
  text-align: center;
}

body.about-viltepso #what-is-dmd-patient .section-wrapper #s-p-btn {
  padding: 15px 25px;
  border: none;
  border-radius: 2px;
  background-color: #54B948;
  max-width: 396px;
  display: block;
  text-align: left;
  box-shadow: none;
  margin: 25px auto;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
}

@media (max-width: 800px) {
  body.about-viltepso #what-is-dmd-patient .section-wrapper #s-p-btn {
    padding: 15px 50px 15px 15px;
  }
}

body.about-viltepso #what-is-dmd-patient .section-wrapper .highlight {
  position: absolute;
  bottom: 0;
  width: 525px;
  max-width: 90%;
  border: 3px solid #54B948;
  padding: 20px 50px;
  border-radius: 100px;
  background: #ffffff;
  left: 50%;
  transform: translate(-50%, 50%);
}

body.about-viltepso #what-is-dmd-patient .section-wrapper .highlight p {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  margin: 0;
  padding: 0;
  color: #003F73;
}

body.about-viltepso #what-is-dmd-patient .section-wrapper .highlight p strong {
  display: block;
}

@media (max-width: 955px) {
  body.about-viltepso #what-is-dmd-patient .section-wrapper .highlight {
    max-width: calc(100% - 126px);
    padding: 15px 30px;
  }

  body.about-viltepso #what-is-dmd-patient .section-wrapper .highlight p {
    font-size: 14px;
    line-height: 18px;
  }

  body.about-viltepso #what-is-dmd-patient .section-wrapper .highlight p strong {
    display: inline;
  }
}

body.about-viltepso #viltepso-works {
  padding: 0 0 30px;
  scroll-margin-top: 100px;
}

body.about-viltepso #viltepso-works .column-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

body.about-viltepso #viltepso-works .column-wrapper .column {
  display: flex;
  flex-direction: column;
  flex-basis: 48%;
  min-width: 48%;
  background-color: rgba(99, 131, 180, 0.05);
  margin-bottom: 40px;
  border-radius: 20px;
}

@media screen and (max-width: 800px) {
  body.about-viltepso #viltepso-works .column-wrapper .column {
    flex-basis: 100%;
  }
}

body.about-viltepso #viltepso-works .column-wrapper .column .img-wrapper {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
  min-height: 320px;
}

body.about-viltepso #viltepso-works .column-wrapper .column .img-wrapper img {
  align-self: flex-end;
}

@media screen and (max-width: 800px) {
  body.about-viltepso #viltepso-works .column-wrapper .column .img-wrapper {
    min-height: auto;
  }
}

body.about-viltepso #viltepso-works .column-wrapper .column .col-contentArea {
  padding: 0 25px 30px;
  text-align: center;
  color: #003F73;
}

body.about-viltepso #viltepso-works .column-wrapper .column .col-contentArea h3 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  white-space: nowrap;
  color: #003F73;
}

body.about-viltepso #viltepso-works .column-wrapper .column .col-contentArea p {
  color: #394151;
}

body.about-viltepso #viltepso-works .column-wrapper .column:last-of-type .col-contentArea {
  border-right: 0;
}

@media (max-width: 800px) {
  body.about-viltepso #email-me-rec-modal {
    padding-top: 0;
    align-items: center;
  }
}

body.about-viltepso #email-me-rec-modal.modal {
  position: fixed;
  top: 0;
  padding-top: 100px;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

@media (max-width: 800px) {
  body.about-viltepso #email-me-rec-modal.modal {
    padding-top: 0;
  }
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog {
  width: 800px;
  max-width: 100%;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body {
  background-color: white;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body button {
  color: #707072;
  border: none;
  font-size: 1rem;
  margin-left: auto;
  font-weight: 400;
  display: flex;
  font-family: "Spartan", sans-serif;
  margin-bottom: 5px;
  padding-top: 10px;
  padding-right: 10px;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area {
  padding: 42px 70px 70px;
}

@media (max-width: 800px) {
  body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area {
    padding: 42px 50px 70px;
  }
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form {
  display: flex;
  flex-direction: row;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email] {
  width: 100%;
  text-align: center;
  border: 2px solid #003F73;
  color: #003F73;
  font-weight: bold;
  font-size: 1.125rem;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email]::-webkit-input-placeholder {
  color: #003F73;
  font-weight: bold;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email]::-moz-placeholder {
  color: #003F73;
  font-weight: bold;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email]:-ms-input-placeholder {
  color: #003F73;
  font-weight: bold;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email]:-moz-placeholder {
  color: #003F73;
  font-weight: bold;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=submit] {
  padding: 10px 12px;
  border: none;
  border-radius: 2px;
  background-color: #003F73;
  width: 222px;
  display: block;
  text-align: center;
  box-shadow: none;
  margin-top: auto;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=submit]:hover {
  opacity: 0.9;
}

@media (max-width: 800px) {
  body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form {
    flex-direction: column;
    align-items: center;
  }

  body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .input-and-btn-area form input[type=email] {
    margin-bottom: 20px;
    padding: 10px;
  }
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .error {
  display: none;
  font-size: 1.125rem;
  line-height: 1.375rem;
  color: red;
  text-align: center;
  margin-top: 10px;
}

body.about-viltepso #email-me-rec-modal.modal .modal-dialog .modal-content .modal-body .success {
  display: none;
  font-size: 1.125rem;
  line-height: 1.375rem;
  text-align: center;
  color: #707072;
}

body.about-viltepso #email-me-rec-modal.hidden {
  display: none;
}

body.about-viltepso #email-me-rec-modal.fade {
  animation: bg-fade-in .5s ease-in-out;
}

body.about-viltepso #email-me-rec-modal.fade .modal-content {
  animation: fade-in .5s ease-in-out;
}

body.about-viltepso #email-me-rec-modal.fade-out {
  animation: bg-fade-out .5s ease-in-out;
}

body.about-viltepso #email-me-rec-modal.fade-out .modal-content {
  animation: fade-out .5s ease-in-out;
}

body.about-viltepso .about-efficacy-viltepso {
  background: linear-gradient(180deg, #003f73 0%, #00203a 50%);
  color: #ffffff;
  padding: 60px 0;
}

body.about-viltepso .about-efficacy-viltepso .section-wrapper .sectionOne {
  text-align: center;
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}

body.about-viltepso .about-efficacy-viltepso .section-wrapper .sectionOne h4 {
  margin-bottom: 20px;
}

body.about-viltepso .about-efficacy-viltepso .section-wrapper .sectionOne h2 {
  color: #ffffff;
  margin-bottom: 40px;
}

body.about-viltepso .about-efficacy-viltepso .section-wrapper .sectionOne > a {
  width: 330px;
  max-width: 100%;
  text-transform: uppercase;
}

@media screen and (max-width: 800px) {
  body.about-viltepso .about-efficacy-viltepso .section-wrapper .sectionOne > a {
    width: 290px;
  }
}

body.about-viltepso .exon-skipping-tool-section {
  background-color: rgba(99, 131, 180, 0.05);
  padding: 30px;
  margin: 50px auto;
}

body.about-viltepso .exon-skipping-tool-section h2 {
  font-size: 22px;
  text-transform: uppercase;
  text-align: left;
}

@media (max-width: 800px) {
  body.about-viltepso .exon-skipping-tool-section {
    margin: 35px 20px 50px;
    padding: 20px;
    width: calc(100% - 80px) !important;
    text-align: center;
  }

  body.about-viltepso .exon-skipping-tool-section h2 {
    text-transform: none;
    text-align: center;
    font-size: 30px;
  }
}

body.about-viltepso .exon-skipping-tool-section p.blue:first-of-type {
  padding: 0 0 5px;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool {
  margin-top: 40px;
}

@media (max-width: 800px) {
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool {
    text-align: left;
  }
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool h3 {
  font-size: 20px;
  color: #003F73;
}

@media (max-width: 800px) {
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool h3 {
    text-align: left;
  }
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area {
  margin: 0 auto;
  padding: 20px 0 10px 0;
}

@media (max-width: 800px) {
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area {
    padding: 0;
    margin-top: 15px;
  }
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area {
  overflow-x: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}

@media (max-width: 800px) {
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area {
    margin-bottom: 20px;
  }
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row {
  display: flex;
  flex-direction: row;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range {
  background-color: #AAA9AB;
  margin: 5px;
  padding: 5px 25px;
  text-align: center;
  min-width: 38px;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range:hover {
  background-color: #003F73;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range.active {
  background-color: #003F73;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range p {
  color: #ffffff;
  font-size: 0.875rem;
  padding: 0;
}

@media (max-width: 800px) {
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area {
    height: 200px;
    overflow-y: scroll;
    /* width */
    /* Handle */
  }

  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area::-webkit-scrollbar {
    width: 40px;
    background-color: #a0a0a1;
  }

  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area::-webkit-scrollbar-thumb {
    background: #54B948;
    border: 1px solid #4E4E4E;
  }

  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row {
    flex-direction: column;
  }

  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range {
    margin: 0;
    padding: 15px 0px;
    width: 100%;
    background-color: #EEEDEE;
    border-top: 2px solid #4E4E4E;
  }

  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row .range p {
    font-size: 1.375rem;
    font-weight: 700;
    color: #4E4E4E;
  }

  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .range-area .range-row:last-of-type .range:last-of-type {
    border-bottom: 2px solid #AAA9AB;
  }
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area p.green.bold {
  margin-top: 20px;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area p.blue.semibold {
  padding: 0 0 50px 5px;
  border-bottom: 2px solid #707072;
}

@media (max-width: 800px) {
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area p.blue.semibold {
    padding: 0 0 25px 5px;
  }
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .small-font {
  font-size: 0.9375rem !important;
}

@media (max-width: 800px) {
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool .grey-background-area .small-font {
    line-height: 1rem;
    font-style: italic;
    padding: 10px 0 10px 5px;
  }
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected,
body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected {
  width: 80%;
  margin: 0 auto;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion,
body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion {
  background-color: #F1F0F1;
  padding: 10px 25px;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion #email-rec-btn,
body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion #email-rec-btn {
  width: 393px;
  display: block;
  text-align: center;
  box-shadow: none;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  margin: 10px auto;
}

@media (max-width: 800px) {
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion #email-rec-btn,
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion #email-rec-btn {
    width: 100%;
    max-width: 393px;
  }
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .bottom-portion,
body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .bottom-portion {
  background-color: #ffffff;
  padding: 10px 25px;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .bottom-portion h3,
body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .bottom-portion h3 {
  font-size: 1.375rem;
  line-height: 1.5rem;
  margin-bottom: 10px;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .bottom-portion ul,
body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .bottom-portion ul {
  margin-left: 15px;
}

body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .bottom-portion ul li::marker,
body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .bottom-portion ul li::marker {
  color: #003F73;
  content: ' \2022   ';
}

@media (max-width: 800px) {
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected,
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected {
    width: 100%;
    margin: 0 auto 0;
  }

  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion,
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion {
    padding: 15px;
  }

  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .top-portion #email-rec-btn,
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .top-portion #email-rec-btn {
    width: auto;
  }

  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #green-range-selected .bottom-portion,
  body.about-viltepso .exon-skipping-tool-section .exon-skipping-tool #blue-range-selected .bottom-portion {
    padding: 15px 0;
    background-color: transparent;
  }
}

body.about-viltepso .row-3cols {
  align-items: inherit !important;
  display: flex;
  flex-direction: row;
}

body.about-viltepso .row-3cols div.rowCol {
  flex-basis: 32%;
  padding: 0 25px;
  text-align: center;
  border-left: 0.5px solid #8C8C8C;
}

body.about-viltepso .row-3cols div.rowCol > div {
  height: 75px;
  vertical-align: top;
}

body.about-viltepso .row-3cols > div:first-of-type {
  padding: 0 25px 0 0;
  border-left: none;
}

body.about-viltepso .row-3cols > div:last-of-type {
  padding: 0 0 0 25px;
}

@media (max-width: 800px) {
  body.about-viltepso .row-3cols {
    flex-direction: column;
  }

  body.about-viltepso .row-3cols div.rowCol {
    border: none;
    padding: 0 25px 40px;
  }

  body.about-viltepso .row-3cols div.rowCol > div {
    min-height: auto;
    height: auto;
    margin-bottom: 10px;
  }

  body.about-viltepso .row-3cols > div:first-of-type {
    padding: 0 25px 30px;
  }

  body.about-viltepso .row-3cols > div:last-of-type {
    padding: 0 25px 30px;
  }
}

body.about-viltepso .section-col-3 {
  margin: 0 auto;
  width: 75%;
}

body.about-viltepso .section-col-3 .row.inherit {
  padding: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 800px) {
  body.about-viltepso .section-col-3 .row.inherit {
    flex-direction: column;
    padding: 0 0 30px;
  }
}

body.about-viltepso .section-col-3 .row.inherit > div {
  flex: 0 0 calc(32% - 50px);
  padding: 30px 25px;
  background-color: rgba(99, 131, 180, 0.05);
  border-radius: 20px;
  min-height: 160px;
  text-align: center;
}

@media (max-width: 800px) {
  body.about-viltepso .section-col-3 .row.inherit > div {
    padding: 30px 40px;
    margin-bottom: 20px;
  }
}

body.about-viltepso .section-col-3 .row.inherit > div h4 {
  font-size: 18px;
  line-height: 22px;
  color: #003F73;
}

body.about-viltepso .section-col-3 .row.inherit > div p {
  margin: 10px 0 20px;
}

body.about-viltepso .section-col-3 .row.inherit > div p a {
  font-weight: 700;
  color: #003F73;
}

body.about-viltepso .section-col-3 .row.inherit > div > a {
  padding: 9px 25px;
  border: none;
  border-radius: 2px;
  background-color: #003F73;
  border-radius: 25px;
  display: block;
  text-align: center;
  box-shadow: none;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  width: 170px;
  margin: 0 auto;
}

body.about-viltepso #meet-jordan-cta {
  background: linear-gradient(180deg, #003f73 0%, #00203a 50%);
  color: #ffffff;
  padding: 35px 0;
}

body.about-viltepso #meet-jordan-cta .section-wrapper > div {
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  body.about-viltepso #meet-jordan-cta .section-wrapper > div {
    flex-direction: column;
    padding: 0 15px;
  }
}

body.about-viltepso #meet-jordan-cta .section-wrapper > div > div {
  margin-left: 60px;
}

@media (max-width: 800px) {
  body.about-viltepso #meet-jordan-cta .section-wrapper > div > div {
    margin-left: 0;
    margin-top: 30px;
  }
}

body.about-viltepso #meet-jordan-cta .section-wrapper > div h3 {
  font-size: 25px;
  margin: 0 0 10px;
}

body.about-viltepso #meet-jordan-cta .section-wrapper > div p {
  margin: 0 0 20px;
  padding: 0;
}

body.about-viltepso #meet-jordan-cta .section-wrapper > div a {
  margin: 0;
  color: #ffffff;
  border: 2px solid #92ED85;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  padding: 12px 35px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
}

@media (max-width: 800px) {
  body.about-viltepso #meet-jordan-cta .section-wrapper > div a {
    line-height: 24px;
    text-align: center;
  }
}

body.about-viltepso #taking-viltepso-patient {
  padding: 60px 0 20px;
  scroll-margin-top: 100px;
}

@media (max-width: 800px) {
  body.about-viltepso #taking-viltepso-patient {
    padding: 60px 0 20px;
  }
}

body.about-viltepso #taking-viltepso-patient h2 {
  text-align: left;
  margin: 0 0 10px;
}

@media (max-width: 800px) {
  body.about-viltepso #taking-viltepso-patient h2 {
    text-align: center;
  }
}

@media (max-width: 800px) {
  body.about-viltepso #taking-viltepso-patient .section-wrapper > p {
    text-align: center;
  }
}

body.about-viltepso #taking-viltepso-patient .row-wrapper .row {
  margin: 0 0 50px;
  display: flex;
}

body.about-viltepso #taking-viltepso-patient .row-wrapper .row .img-wrap {
  min-width: 60px;
  margin-right: 30px;
}

body.about-viltepso #taking-viltepso-patient .row-wrapper .row > img {
  align-self: flex-start;
}

body.about-viltepso #taking-viltepso-patient .row-wrapper .row h3 {
  margin: 0;
  line-height: 1.5rem;
}

body.about-viltepso #taking-viltepso-patient .row-wrapper .row .question-flex {
  display: flex;
  color: #003F73;
  margin-bottom: 10px;
}

body.about-viltepso #taking-viltepso-patient .row-wrapper .row .question-flex div:nth-of-type(2) {
  margin-left: 10px;
}

body.about-viltepso #taking-viltepso-patient .row-wrapper .row .answer-flex {
  display: flex;
}

body.about-viltepso #taking-viltepso-patient .row-wrapper .row .answer-flex div p {
  padding: 0;
  margin-left: 12px;
  margin-top: 1.35px;
}

body.about-viltepso #taking-viltepso-patient .buttons {
  display: flex;
  justify-content: center;
  margin: 20px 0 60px;
}

body.about-viltepso #taking-viltepso-patient .buttons a {
  margin: 0 15px;
  min-width: 300px;
}

@media (max-width: 800px) {
  body.about-viltepso #taking-viltepso-patient .buttons {
    flex-direction: column;
    margin: 20px 0 30px;
  }

  body.about-viltepso #taking-viltepso-patient .buttons a {
    margin: 0 auto 30px;
  }
}

body.about-viltepso #taking-viltepso-patient .greenAreaWrap {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

body.about-viltepso #taking-viltepso-patient .greenAreaWrap .row.greenArea {
  width: 720px;
  max-width: calc(100% - 90px);
  display: flex;
  align-items: center;
  border: 3px solid #54B948;
  padding: 30px 40px 30px 50px;
  border-radius: 100px;
  margin-top: 10px;
}

@media (max-width: 800px) {
  body.about-viltepso #taking-viltepso-patient .greenAreaWrap .row.greenArea {
    flex-direction: column;
    max-width: calc(100% - 100px);
    padding: 50px 30px;
    text-align: center;
    border-radius: 150px;
  }
}

body.about-viltepso #taking-viltepso-patient .greenAreaWrap .row.greenArea .iconArea {
  margin-right: 35px;
  width: 100px;
}

@media (max-width: 800px) {
  body.about-viltepso #taking-viltepso-patient .greenAreaWrap .row.greenArea .iconArea {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

body.about-viltepso #taking-viltepso-patient .greenAreaWrap .row.greenArea .greenBox {
  width: calc(100% - 100px);
}

@media (max-width: 800px) {
  body.about-viltepso #taking-viltepso-patient .greenAreaWrap .row.greenArea .greenBox {
    width: auto;
  }
}

body.about-viltepso #taking-viltepso-patient .greenAreaWrap .row.greenArea .greenBox p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #003F73;
}

body.about-viltepso #taking-viltepso-patient .greenAreaWrap .row.greenArea .greenBox p span {
  font-weight: 700;
}

body.efficacy-safety .hero-wrapper.efficacy-safety {
  width: 100%;
}

@media (max-width: 800px) {
  body.efficacy-safety .hero-wrapper.efficacy-safety {
    padding: 200px 0 0 !important;
  }
}

body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img {
  display: block;
  position: relative;
  background-image: url("/img/patient/Hero-EfficacySafety_1424x588.jpg");
  min-height: 590px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img {
    background-position: 20% 100%;
  }
}

@media (min-width: 1500px) {
  body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img {
    min-height: 780px;
  }
}

body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img .overlay {
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  width: 815px;
  max-width: 100%;
}

@media (max-width: 800px) {
  body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img .overlay {
    padding: 0 25px;
    width: auto;
  }
}

body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img .overlay h2 {
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  text-transform: uppercase;
}

body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img .overlay .label {
  font-size: 30px;
}

@media (max-width: 800px) {
  body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img .overlay .label {
    font-size: 22px;
    line-height: 32px;
  }
}

body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img .overlay .hero-body {
  font-size: 45px;
  line-height: 52px;
  padding: 10px 0;
}

@media (max-width: 800px) {
  body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img .overlay .hero-body {
    font-size: 32px;
    line-height: 40px;
  }
}

body.efficacy-safety .hero-wrapper.efficacy-safety .hero-bg-img .overlay > p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
}

body.efficacy-safety .section-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: sticky;
  z-index: 10;
  background: #ffffff;
  padding: 0 !important;
}

body.efficacy-safety .section-links .fixed {
  position: fixed;
  top: 100px;
}

body.efficacy-safety .section-links .links-wrapper {
  width: 100%;
  justify-content: center;
  border-bottom: 2px solid #003F72;
  background-color: #ffffff;
  padding: 15px 0;
}

@media (max-width: 955px) {
  body.efficacy-safety .section-links .links-wrapper {
    margin-left: 0;
    width: 100% !important;
    flex-direction: row !important;
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  body.efficacy-safety .section-links .links-wrapper {
    display: none;
  }
}

body.efficacy-safety .section-links .links-wrapper div {
  color: #003F73 !important;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
  padding: 0 20px;
}

@media (max-width: 955px) and (min-width: 768px) {
  body.efficacy-safety .section-links .links-wrapper div {
    padding: 5px 8px;
  }
}

body.efficacy-safety .section-links .links-wrapper div:hover {
  color: #4E4E4E !important;
}

body.efficacy-safety .section-links .links-wrapper div:active {
  font-weight: bold !important;
}

body.efficacy-safety .section-links .links-wrapper div:visited {
  font-weight: bold !important;
}

body.efficacy-safety .section-links .links-wrapper span.mobile-hide.blue {
  font-size: 0.875rem;
  font-weight: 700;
}

body.efficacy-safety .section-links .mobile-pageTitle {
  display: none;
}

@media (max-width: 767px) {
  body.efficacy-safety .section-links .mobile-pageTitle {
    display: block;
    background-color: #fde7de;
    width: 100%;
    padding: 5px 25px;
    border-top: 5px solid #F15D22;
  }

  body.efficacy-safety .section-links .mobile-pageTitle p {
    color: #003F73;
    font-weight: 800;
    font-size: 0.8125rem;
    line-height: .9375rem;
  }
}

body.efficacy-safety .pageSection-header {
  margin: 0;
}

body.efficacy-safety .pageSection-header .pageSection-title {
  margin: 0 auto;
}

body.efficacy-safety .pageSection-header .pageSection-title div {
  text-align: center;
  padding-top: 50px;
}

body.efficacy-safety .pageSection-header .pageSection-title div p {
  color: #003F73;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  body.efficacy-safety .pageSection-header .pageSection-title div {
    width: 100%;
    text-align: center;
  }

  body.efficacy-safety .pageSection-header .pageSection-title div p {
    font-size: 18px;
  }
}

body.efficacy-safety .section-wrapper h2 {
  font-weight: bold;
  color: #003F73;
  font-size: 1.875rem;
  line-height: 2.1875rem;
  margin-bottom: 20px;
  text-align: center;
}

body.efficacy-safety .section-wrapper img {
  max-width: 100%;
  align-self: center;
}

@media screen and (max-width: 800px) {
  body.efficacy-safety .section-wrapper img {
    margin: 0 auto;
  }
}

body.efficacy-safety .chart-area {
  background-color: rgba(99, 131, 180, 0.03);
  border-radius: 50px;
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
}

body.efficacy-safety .chart-area h3 {
  font-size: 18px;
  color: #003F73;
  font-weight: 500;
  margin: 0 0 20px;
}

body.efficacy-safety .chart-area .charts {
  padding-bottom: 10px;
}

body.efficacy-safety .chart-area .sub-text {
  font-size: 10px;
}

body.efficacy-safety .chart-area .sub-text:last-of-type {
  padding: 0 0 20px;
}

@media (max-width: 800px) {
  body.efficacy-safety .chart-area {
    padding: 10% 25px;
    border-radius: 40px;
  }

  body.efficacy-safety .chart-area .mobile {
    display: block;
    width: auto;
    min-width: 100%;
    max-width: 100% !important;
  }
}

body.efficacy-safety #dystrophin-levels {
  padding: 0 0 30px;
  scroll-margin-top: 100px;
}

body.efficacy-safety #dystrophin-levels p {
  width: 735px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

body.efficacy-safety #secondary-endpoints {
  padding: 0 0 30px;
  scroll-margin-top: 100px;
}

@media (max-width: 800px) {
  body.efficacy-safety #secondary-endpoints {
    padding: 0 0 10px;
  }
}

body.efficacy-safety #secondary-endpoints .accordian-content#motor .references .reference {
  font-size: 14px !important;
}

body.efficacy-safety #secondary-endpoints .accordian > div:last-of-type .accordian-content > div:last-of-type {
  margin-bottom: 40px;
}

body.efficacy-safety #safety-section-header-patient {
  scroll-margin-top: 100px;
}

body.efficacy-safety #safety-data-section-header-patient {
  scroll-margin-top: 100px;
}

body.efficacy-safety #safety,
body.efficacy-safety #safety-data {
  padding: 0 0 30px;
}

body.efficacy-safety #safety .references,
body.efficacy-safety #safety-data .references {
  text-align: left;
  width: 600px;
  margin: 10px auto 0;
}

@media (max-width: 800px) {
  body.efficacy-safety #safety .references,
  body.efficacy-safety #safety-data .references {
    width: auto;
    margin: 20px auto 0;
  }
}

body.efficacy-safety #safety .references sup,
body.efficacy-safety #safety-data .references sup {
  margin-left: -8px;
}

body.efficacy-safety #safety .references .reference,
body.efficacy-safety #safety-data .references .reference {
  font-size: 14px !important;
}

body.efficacy-safety #safety .greenBox,
body.efficacy-safety #safety-data .greenBox {
  border: 3px solid #54B948;
  text-align: center;
  padding: 25px;
  border-radius: 100px;
  width: 700px;
  max-width: 100%;
  margin: 50px auto 30px;
}

body.efficacy-safety #safety .greenBox span,
body.efficacy-safety #safety-data .greenBox span {
  font-weight: bolder;
}

body.efficacy-safety #safety .greenBox p,
body.efficacy-safety #safety-data .greenBox p {
  font-size: 18px;
  line-height: 22px;
  color: #003F73;
  font-weight: bold;
  padding: 0;
}

@media (max-width: 800px) {
  body.efficacy-safety #safety .greenBox,
  body.efficacy-safety #safety-data .greenBox {
    width: auto !important;
    margin: 30px auto 0;
    padding: 50px 30px;
  }
}

body.efficacy-safety #safety .charts img.desktop {
  width: 735px;
  max-width: 100%;
}

body.efficacy-safety #safety-data .charts p {
  text-align: left;
  margin-left: 40px;
  padding-top: 30px;
}

@media (max-width: 800px) {
  body.efficacy-safety #safety-data .charts p {
    text-align: center;
    font-size: 10px;
    margin-left: 0;
  }
}

body.efficacy-safety #safety-data .greenBox {
  width: 600px;
}

body.efficacy-safety #meet-jordan-cta {
  background: linear-gradient(180deg, #003f73 0%, #00203a 50%);
  color: #ffffff;
  padding: 35px 0;
}

body.efficacy-safety #meet-jordan-cta .section-wrapper > div {
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  body.efficacy-safety #meet-jordan-cta .section-wrapper > div {
    flex-direction: column;
    padding: 0 15px;
  }
}

body.efficacy-safety #meet-jordan-cta .section-wrapper > div > div {
  margin-left: 60px;
}

@media (max-width: 800px) {
  body.efficacy-safety #meet-jordan-cta .section-wrapper > div > div {
    margin-left: 0;
    margin-top: 30px;
  }
}

body.efficacy-safety #meet-jordan-cta .section-wrapper > div h3 {
  font-size: 25px;
  margin: 0 0 10px;
}

body.efficacy-safety #meet-jordan-cta .section-wrapper > div p {
  margin: 0 0 20px;
  padding: 0;
}

body.efficacy-safety #meet-jordan-cta .section-wrapper > div a {
  margin: 0;
  color: #ffffff;
  border: 2px solid #92ED85;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  padding: 12px 35px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
}

@media (max-width: 800px) {
  body.efficacy-safety #meet-jordan-cta .section-wrapper > div a {
    line-height: 24px;
    text-align: center;
  }
}

body.efficacy-safety .greenAreaWrap {
  display: flex;
  justify-content: center;
}

body.efficacy-safety .greenAreaWrap .row.greenArea {
  width: 750px;
  max-width: calc(100% - 90px);
  display: flex;
  align-items: center;
  border: 3px solid #54B948;
  padding: 30px 40px 30px 50px;
  border-radius: 100px;
  margin-top: 50px;
}

@media (max-width: 800px) {
  body.efficacy-safety .greenAreaWrap .row.greenArea {
    flex-direction: column;
    max-width: calc(100% - 140px);
    padding: 50px 30px;
    text-align: center;
    border-radius: 150px;
  }
}

body.efficacy-safety .greenAreaWrap .row.greenArea .iconArea {
  margin-right: 35px;
}

@media (max-width: 800px) {
  body.efficacy-safety .greenAreaWrap .row.greenArea .iconArea {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 800px) {
  body.efficacy-safety .greenAreaWrap .row.greenArea .greenBox {
    width: auto;
  }
}

body.efficacy-safety .greenAreaWrap .row.greenArea .greenBox p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: #003F73;
}

body.efficacy-safety .greenAreaWrap .row.greenArea .greenBox p span {
  font-weight: 700;
}

body.efficacy-safety #support {
  margin-top: 50px;
  padding: 50px 0;
  border-top: 0.5px solid #8C8C8C;
}

@media (max-width: 800px) {
  body.efficacy-safety #support {
    padding: 30px 0 25px;
  }
}

body.efficacy-safety #support .home-support-wrapper {
  flex-direction: row;
}

body.efficacy-safety #support .home-support-wrapper .support-logo {
  width: 300px;
  max-width: 100%;
}

body.efficacy-safety #support .home-support-wrapper .support-logo hr {
  border-bottom: 1px solid #003F73;
  margin: 10px 0;
}

@media (max-width: 800px) {
  body.efficacy-safety #support .home-support-wrapper .support-logo hr {
    border-bottom: 2px solid #003F73;
  }
}

body.efficacy-safety #support .home-support-wrapper .support-logo p {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  color: #536D94;
  font-weight: 500;
  padding: 0;
}

body.efficacy-safety #support .home-support-wrapper .support-logo p b {
  font-family: "Open Sans", sans-serif;
}

body.efficacy-safety #support .home-support-wrapper .support-logo p small {
  font-size: 1rem;
  font-weight: 400;
}

body.efficacy-safety #support .home-support-wrapper .support-logo p small span {
  font-size: 0.875rem;
}

body.efficacy-safety #support .home-support-wrapper .comprehensive {
  padding-left: 50px;
  width: inherit;
  justify-content: center;
}

body.efficacy-safety #support .home-support-wrapper .comprehensive h2 {
  font-size: 1.5rem;
  line-height: 1.6875rem;
  margin-bottom: 5px;
  text-align: left;
  margin-bottom: 10px;
}

body.efficacy-safety #support .home-support-wrapper .comprehensive p {
  font-size: 0.9375rem;
  line-height: 1.375rem;
  padding: 0 0 15px;
}

body.efficacy-safety #support .home-support-wrapper .comprehensive ul {
  margin-left: 20px;
}

body.efficacy-safety #support .home-support-wrapper .comprehensive ul li::marker {
  content: ' \2022   ';
  color: #0092CC;
}

body.efficacy-safety #support .home-support-wrapper .comprehensive a {
  width: 150px;
  margin: 0;
}

@media (max-width: 800px) {
  body.efficacy-safety #support .home-support-wrapper {
    flex-direction: column;
  }

  body.efficacy-safety #support .home-support-wrapper .support-logo {
    text-align: left;
    width: 80%;
    margin: 0 auto;
  }

  body.efficacy-safety #support .home-support-wrapper .support-logo .logo-image {
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
  }

  body.efficacy-safety #support .home-support-wrapper .support-logo .logo-image img {
    margin: 0;
  }

  body.efficacy-safety #support .home-support-wrapper .comprehensive {
    padding-left: 0;
    width: 80%;
    margin: 25px auto;
  }

  body.efficacy-safety #support .home-support-wrapper .comprehensive a {
    margin: 25px auto;
    max-width: 100%;
    width: auto;
    padding: 12px 30px;
  }
}

body.efficacy-safety #muscle-function-header-patient {
  background: linear-gradient(180deg, #003f73 0%, #00203a 50%);
  color: #ffffff;
  padding: 55px 40px;
  scroll-margin-top: 100px;
}

body.efficacy-safety #muscle-function-header-patient .section-wrapper {
  width: 100% !important;
  text-align: center;
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}

body.efficacy-safety #muscle-function-header-patient .section-wrapper h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  body.efficacy-safety #muscle-function-header-patient .section-wrapper h4 {
    margin-bottom: 15px;
  }
}

body.efficacy-safety #muscle-function-header-patient .section-wrapper h2 {
  color: #ffffff;
  margin: 0;
}

body.efficacy-safety #muscle-function {
  padding: 40px 0;
}

@media (max-width: 800px) {
  body.efficacy-safety #muscle-function {
    padding: 40px 0 10px;
  }
}

body.efficacy-safety #muscle-function .references {
  margin: 40px 0 0;
}

body.efficacy-safety #muscle-function .references .reference {
  font-size: 14px;
}

body.efficacy-safety #muscle-function .accordian-content .chart-container {
  text-align: center;
  background-color: rgba(99, 131, 180, 0.02);
  padding: 20px 0;
  margin-top: 30px;
  width: 715px;
  max-width: 100%;
}

@media (max-width: 800px) {
  body.efficacy-safety #muscle-function .accordian-content .chart-container {
    margin-top: 15px;
  }
}

body.efficacy-safety #muscle-function .accordian-content .chart-container h3 {
  color: #394151;
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}

@media (max-width: 800px) {
  body.efficacy-safety #muscle-function .accordian-content .chart-container h3 {
    font-size: 10px;
    line-height: 14px;
  }
}

body.efficacy-safety #muscle-function .accordian-content .chart-container hr {
  background-color: #707070;
  height: 1px;
  width: 100%;
  margin: 20px 0;
}

body.efficacy-safety #muscle-function .accordian-content .chart-container img {
  width: 550px;
  max-width: 100%;
}

.accordian {
  margin: 5% 0 0;
  width: 100%;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-color: rgba(99, 131, 180, 0.3);
}

.accordian .blue-divider {
  background-color: rgba(99, 131, 180, 0.3);
  width: 100%;
  height: 2px;
}

.accordian .accordian-container {
  position: relative;
  padding: 15px 0 15px 0;
}

.accordian .accordian-container h3 {
  color: #003F72;
  font-weight: 600;
  font-size: 22px;
}

@media (max-width: 800px) {
  .accordian .accordian-container h3 {
    font-size: 18px;
  }
}

.accordian .accordian-container .label {
  position: relative;
  width: 97%;
  cursor: pointer;
}

@media (max-width: 800px) {
  .accordian .accordian-container .label {
    width: calc(100% - 40px);
    padding-right: 40px;
  }
}

.accordian .accordian-container .label::before {
  content: url("/img/hcp/expand-icon.svg");
  color: black;
  position: absolute;
  top: 55%;
  right: -5px;
  font-size: 34px;
  transform: translateY(-50%);
}

.accordian .accordian-container .accordian-content {
  position: relative;
  height: 0;
  width: 100%;
  overflow-y: hidden;
}

.accordian .accordian-container .accordian-content .desktopAccImg {
  width: 100%;
  max-width: 100%;
}

.accordian .accordian-container .accordian-content .mobile {
  display: none;
}

@media (max-width: 800px) {
  .accordian .accordian-container .accordian-content .mobile {
    display: block;
    width: 100%;
    min-width: 100%;
    max-width: 100% !important;
  }

  .accordian .accordian-container .accordian-content .desktopAccImg {
    display: none;
  }
}

.accordian .accordian-container.active .accordian-content {
  min-height: 250px;
  height: 100%;
  padding: 40px 0 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.accordian .accordian-container.active .accordian-content#motor {
  flex-direction: column;
  width: 100%;
}

.accordian .accordian-container.active .accordian-content#motor h3 {
  color: #394151;
  font-size: 1.275rem;
  font-weight: bold;
}

.accordian .accordian-container.active .accordian-content#motor .motor-chart-container {
  width: 100%;
  padding: 5% 0 0;
  text-align: center;
}

.accordian .accordian-container.active .accordian-content#motor .motor-chart-container .desktopAccImg {
  width: auto;
  min-width: 100%;
}

.accordian .accordian-container.active .accordian-content#motor .references {
  padding: 2% 0 0;
}

@media (max-width: 800px) {
  .accordian .accordian-container.active .accordian-content#motor .references {
    margin-left: 8px;
  }

  .accordian .accordian-container.active .accordian-content#motor .references sup {
    margin-left: -8px;
  }
}

.accordian .accordian-container.active .accordian-content#motor .references .reference {
  color: #303E50 !important;
  font-size: .95rem !important;
  line-height: 24px;
}

.accordian .accordian-container.active .accordian-content#motor .references .reference:last-of-type {
  margin-left: 5px;
}

@media (max-width: 800px) {
  .accordian .accordian-container.active .accordian-content#motor .references .reference:last-of-type {
    margin-left: 0;
  }
}

@media (max-width: 800px) {
  .accordian .accordian-container.active .accordian-content {
    flex-direction: column;
  }
}

.accordian .accordian-container.active .accordian-content .chart-container {
  flex: 0 0 75%;
  padding: 0 25px 0 0;
}

@media (max-width: 800px) {
  .accordian .accordian-container.active .accordian-content .chart-container {
    flex: 0 0 100%;
    width: 100% !important;
    padding: 0 0 0 0;
    margin: 0 auto;
  }
}

.accordian .accordian-container.active .accordian-content .detail-body {
  font-size: 15px;
  color: #394151;
  line-height: 24px;
}

@media (max-width: 800px) {
  .accordian .accordian-container.active .accordian-content .detail-body {
    margin-left: 10px;
  }
}

.accordian .accordian-container.active .accordian-content .asterisk {
  margin-left: -10px;
}

.accordian .accordian-container.active .label::before {
  content: url("/img/hcp/expanded-icon.svg");
}

#signup-guide-box {
  background: linear-gradient(180deg, #003f73 0%, #00203a 50%);
  color: #ffffff;
  padding: 50px 0;
  margin-bottom: 60px;
}

#signup-guide-box .section-wrapper > div {
  display: flex;
  align-items: flex-end;
}

@media (max-width: 955px) {
  #signup-guide-box .section-wrapper > div {
    flex-direction: column;
  }
}

#signup-guide-box .section-wrapper > div > div {
  text-align: center;
}

#signup-guide-box .section-wrapper > div > div:first-of-type {
  padding-right: 50px;
  border-right: 1px solid #536D94;
}

#signup-guide-box .section-wrapper > div > div:first-of-type a {
  margin-top: 30px;
}

@media (max-width: 955px) {
  #signup-guide-box .section-wrapper > div > div:first-of-type {
    padding-right: 0;
    padding-bottom: 40px;
    border-right: none;
    border-bottom: none;
  }
}

#signup-guide-box .section-wrapper > div > div:last-of-type {
  padding-left: 50px;
}

#signup-guide-box .section-wrapper > div > div:last-of-type a {
  margin-top: 60px;
}

@media (max-width: 955px) {
  #signup-guide-box .section-wrapper > div > div:last-of-type {
    padding-left: 0;
    padding-top: 35px;
    width: 100%;
  }

  #signup-guide-box .section-wrapper > div > div:last-of-type a {
    margin-top: 30px;
  }

  #signup-guide-box .section-wrapper > div > div:last-of-type h3:before {
    content: '';
    height: 1px;
    width: 215px;
    background-color: #536D94;
    position: relative;
    display: block;
    margin: -30px auto 35px;
  }
}

#signup-guide-box .section-wrapper > div h3 {
  font-size: 25px;
  margin: 0;
  width: 420px;
  max-width: 100%;
}

@media (max-width: 955px) {
  #signup-guide-box .section-wrapper > div h3 {
    width: auto;
  }
}

#signup-guide-box .section-wrapper > div p {
  margin: 0 0 20px;
  padding: 0;
}

#signup-guide-box .section-wrapper > div a {
  margin: 0;
  color: #ffffff;
  border: 2px solid #92ED85;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  padding: 12px 35px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 25px;
  display: inline-block;
}

body.meet-jordan .hero-wrapper.meet-jordan {
  width: 100%;
}

@media (max-width: 800px) {
  body.meet-jordan .hero-wrapper.meet-jordan {
    padding: 200px 0 0 !important;
  }
}

body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img {
  display: block;
  position: relative;
  background-image: url("/img/patient/meet-jordan-hero.png");
  min-height: 590px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 800px) {
  body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img {
    background-image: url("/img/patient/meet-jordan-hero-mobile.png");
    background-position: center center;
  }
}

@media (min-width: 1500px) {
  body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img {
    min-height: 780px;
  }
}

body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img .overlay {
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  width: 815px;
  max-width: 100%;
}

@media (max-width: 800px) {
  body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img .overlay {
    padding: 0 25px;
  }
}

body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img .overlay h2 {
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img .overlay h2 {
    font-size: 22px;
  }
}

body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img .overlay .label {
  font-size: 30px;
}

@media (max-width: 800px) {
  body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img .overlay .label {
    font-size: 22px;
    line-height: 32px;
  }
}

body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img .overlay .hero-body {
  font-size: 45px;
  line-height: 52px;
  padding: 10px 0;
}

@media (max-width: 800px) {
  body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img .overlay .hero-body {
    font-size: 32px;
    line-height: 40px;
  }
}

body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img .overlay > p {
  position: absolute;
  bottom: 25px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 955px) {
  body.meet-jordan .hero-wrapper.meet-jordan .hero-bg-img .overlay > p {
    max-width: 80%;
    left: 10%;
    bottom: 25px;
  }
}

body.meet-jordan .section-jordan {
  padding: 60px 0 0;
}

@media (max-width: 800px) {
  body.meet-jordan .section-jordan {
    padding: 50px 0 0;
  }
}

body.meet-jordan .section-jordan .section-wrapper {
  width: 980px;
  max-width: 100%;
}

body.meet-jordan .section-jordan .section-wrapper > div {
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  body.meet-jordan .section-jordan .section-wrapper > div {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  body.meet-jordan .section-jordan .section-wrapper > div.mobile-reverse {
    flex-direction: column-reverse;
  }
}

body.meet-jordan .section-jordan .section-wrapper > div h3 {
  font-size: 30px;
  line-height: 35px;
  color: #003F73;
  font-weight: 700;
  margin: 0 0 5px;
}

body.meet-jordan .section-jordan .section-wrapper > div p {
  color: #394151;
}

@media (max-width: 800px) {
  body.meet-jordan .section-jordan .section-wrapper img {
    margin-top: 20px;
  }
}

body.meet-jordan .section-jordan .section-wrapper img.img-right {
  margin-left: 50px;
}

@media (max-width: 800px) {
  body.meet-jordan .section-jordan .section-wrapper img.img-right {
    margin-left: 0;
  }
}

body.meet-jordan .section-jordan .section-wrapper img.img-left {
  margin-right: 50px;
}

@media (max-width: 800px) {
  body.meet-jordan .section-jordan .section-wrapper img.img-left {
    margin-right: 0;
  }
}

body.meet-jordan .section-jordan .section-wrapper .ref {
  font-size: 14px;
  margin: 60px 0;
}

@media (max-width: 800px) {
  body.meet-jordan .section-jordan .section-wrapper .ref {
    margin: 30px 0 50px;
  }
}

body.meet-jordan .signup-box {
  background: linear-gradient(180deg, #003f73 0%, #00203a 50%);
  padding: 80px 0;
  margin-bottom: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

body.meet-jordan .signup-box .registration-cta-box .ctaBoxCopy h3 {
  font-size: 25px;
  line-height: 30px;
  padding: 0 0 30px;
  color: #ffffff;
  text-align: center;
}

body.meet-jordan .signup-box .registration-cta-box a {
  text-transform: uppercase;
}

@media (max-width: 955px) {
  body.meet-jordan .signup-box {
    width: 100% !important;
  }
}

@media (max-width: 800px) {
  body.meet-jordan .signup-box {
    margin-bottom: 20px;
    padding: 50px 0;
  }

  body.meet-jordan .signup-box .registration-cta-box {
    padding: 0 20px;
    text-align: center;
  }
}

body.meet-jordan .pageSection-header {
  margin: 0;
}

body.meet-jordan .pageSection-header .pageSection-title {
  margin: 0 auto;
}

body.meet-jordan .pageSection-header .pageSection-title div {
  text-align: center;
  padding-top: 50px;
}

body.meet-jordan .pageSection-header .pageSection-title div p {
  color: #003F73;
  font-size: 15px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  body.meet-jordan .pageSection-header .pageSection-title div {
    width: 100%;
    text-align: center;
  }
}

body.meet-jordan .section-wrapper h2 {
  font-weight: bold;
  color: #003F73;
  font-size: 1.875rem;
  line-height: 2.1875rem;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  body.meet-jordan .section-wrapper h2 {
    font-size: 1.625rem;
  }
}

body.meet-jordan .section-wrapper img {
  max-width: 100%;
  align-self: center;
}

@media screen and (max-width: 800px) {
  body.meet-jordan .section-wrapper img {
    margin: 0 auto;
  }
}

body.lmntool #lmntool {
  padding: 50px 0 20px;
}

body.lmntool .hero-wrapper.lmntool {
  width: 100%;
}

@media (max-width: 800px) {
  body.lmntool .hero-wrapper.lmntool {
    padding: 200px 0 0 !important;
  }
}

body.lmntool .hero-wrapper.lmntool .hero-bg-img {
  display: block;
  position: relative;
  background-image: url("/img/patient/bg-hero-lmntool.jpg");
  min-height: 510px;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 955px) {
  body.lmntool .hero-wrapper.lmntool .hero-bg-img {
    background-size: cover;
  }
}

@media (max-width: 800px) {
  body.lmntool .hero-wrapper.lmntool .hero-bg-img {
    padding: 0 40px 0;
    background-image: url("/img/patient/bg-hero-lmntool-mobile.png");
    min-height: 590px;
  }
}

@media (min-width: 1500px) {
  body.lmntool .hero-wrapper.lmntool .hero-bg-img {
    background-size: cover;
    min-height: 700px;
  }
}

body.lmntool .hero-wrapper.lmntool .hero-bg-img .overlay {
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  width: 815px;
  max-width: 100%;
}

@media (max-width: 800px) {
  body.lmntool .hero-wrapper.lmntool .hero-bg-img .overlay {
    padding: 0 25px;
    width: auto;
  }
}

body.lmntool .hero-wrapper.lmntool .hero-bg-img .overlay h2 {
  font-size: 30px;
  line-height: 40px;
  color: #ffffff;
  text-transform: uppercase;
}

body.lmntool .hero-wrapper.lmntool .hero-bg-img .overlay .label {
  font-size: 30px;
}

@media (max-width: 800px) {
  body.lmntool .hero-wrapper.lmntool .hero-bg-img .overlay .label {
    font-size: 22px;
    line-height: 32px;
  }
}

body.lmntool .hero-wrapper.lmntool .hero-bg-img .overlay .hero-body {
  font-size: 45px;
  line-height: 52px;
  padding: 10px 0;
}

body.lmntool .hero-wrapper.lmntool .hero-bg-img .overlay > p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
}

body.lmntool .section-wrapper {
  width: 80%;
}

body.lmntool .section-wrapper h2 {
  font-weight: bold;
  color: #003F73;
  font-size: 1.875rem;
  line-height: 2.1875rem;
  margin-bottom: 20px;
  text-align: center;
}

body.lmntool .section-wrapper p {
  text-align: center;
}

body.lmntool .section-wrapper img {
  max-width: 100%;
  align-self: center;
}

@media screen and (max-width: 800px) {
  body.lmntool .section-wrapper img {
    margin: 0 auto;
  }
}

body.lmntool .steps {
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 800px) {
  body.lmntool .steps {
    flex-direction: column;
  }
}

body.lmntool .steps:before {
  content: '';
  background-color: #8C8C8C;
  height: 1px;
  position: absolute;
  width: 80%;
  top: 45px;
  z-index: -1;
  left: 10%;
}

@media (max-width: 800px) {
  body.lmntool .steps:before {
    display: none;
  }
}

body.lmntool .steps > div {
  text-align: center;
  flex: 20%;
}

@media (min-width: 1440px) {
  body.lmntool .steps > div {
    padding: 0 20px;
  }
}

@media (max-width: 800px) {
  body.lmntool .steps > div {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}

body.lmntool .steps > div .img-wrap {
  margin-bottom: 10px;
}

@media (max-width: 800px) {
  body.lmntool .steps > div .img-wrap {
    margin-bottom: 0;
  }
}

body.lmntool .steps > div p {
  margin: 0;
}

body.lmntool .select-plan {
  background: #F7F9FB;
  width: 100%;
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 800px) {
  body.lmntool .select-plan {
    padding: 40px 20px;
    width: calc(100% - 40px);
  }
}

body.lmntool .select-plan > .section-wrapper {
  background: #FFFFFF;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 50px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  body.lmntool .select-plan > .section-wrapper {
    padding: 30px 20px;
  }
}

body.lmntool .select-plan h2 {
  border: 3px solid #54B948;
  border-radius: 50px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

body.lmntool .select-plan h3 {
  color: #003F73;
  font-size: 1.6rem;
  line-height: 2.1875rem;
  margin: 0 0 20px;
}

body.lmntool .select-plan .btn-blue {
  padding: 15px 40px;
}

body.lmntool .select-wrap {
  position: relative;
  width: 450px;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 800px) {
  body.lmntool .select-wrap {
    width: 100%;
  }
}

body.lmntool .select-wrap:before {
  content: "";
  background: url(/img/patient/down-arrow.svg) no-repeat;
  width: 13px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 20px;
}

body.lmntool .select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FFFFFF;
  border: 2px solid #D2D2D2;
  border-radius: 0;
  outline: none;
  width: 100%;
  padding: 15px 20px;
}

body.lmntool .radio-grp {
  display: flex;
  flex-wrap: wrap;
  width: 745px;
  margin: 0 auto;
  max-width: 100%;
}

body.lmntool .radio-grp .radio-wrap {
  flex: calc(50% - 55px);
  text-align: left;
  display: flex;
  align-items: center;
  border: 3px solid transparent;
  border-radius: 50px;
  padding: 15px;
  margin-right: 15px;
}

@media (max-width: 800px) {
  body.lmntool .radio-grp .radio-wrap {
    flex: 100%;
    margin-right: 0;
  }
}

body.lmntool .radio-grp .radio-wrap.selected {
  background-color: #EBF5FF;
  border-color: #00ADEE;
}

body.lmntool .radio-grp .radio-wrap input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #003F73;
  width: 18px;
  height: 18px;
  outline: none;
  border-radius: 20px;
  margin: 0 10px 0 0;
}

body.lmntool .radio-grp .radio-wrap input:checked {
  background: url(/img/patient/radio-checked.svg) no-repeat;
  border: none;
}

body.lmntool .step2 {
  display: none;
}

body.lmntool .step3 {
  display: none;
}

body.lmntool .step4 {
  display: none;
}

body.lmntool .step4 p {
  width: 700px;
  max-width: 100%;
  margin: 0 auto 30px;
}

body.lmntool .lmn-attention {
  position: fixed;
  z-index: 1;
  height: calc(100vh - 200px);
  width: 100%;
  top: 200px;
  background: #F7F9FB;
  overflow: hidden;
  display: none;
}

@media (max-width: 800px) {
  body.lmntool .lmn-attention {
    display: block;
  }
}

body.lmntool .lmn-attention > div {
  background: #FFFFFF;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
  margin-top: 70px;
  padding: 30px;
  text-align: center;
  width: calc(100% - 100px);
  margin-left: 20px;
  border-radius: 20px;
}

body.lmntool .lmn-attention h3 {
  color: #003F73;
  font-size: 1.6rem;
  line-height: 2.1875rem;
  margin: 0 0 20px;
}

body.lmntool .lmn-attention p {
  margin-bottom: 30px;
}

