@charset "UTF-8";

.c_teal {
  color: var(--teal);
}

.c_hover_teal:hover,
.c_hover_teal:active {
  color: var(--teal);
}

.bg_teal {
  background-color: var(--teal);
}

.c_blue {
  color: var(--blue);
}

.c_hover_blue:hover,
.c_hover_blue:active {
  color: var(--blue);
}

.bg_blue {
  background-color: var(--blue);
}

.c_gray_1 {
  color: var(--gray_1);
}

.c_hover_gray_1:hover,
.c_hover_gray_1:active {
  color: var(--gray_1);
}

.bg_gray_1 {
  background-color: var(--gray_1);
}

.c_gray_2 {
  color: var(--gray_2);
}

.c_hover_gray_2:hover,
.c_hover_gray_2:active {
  color: var(--gray_2);
}

.bg_gray_2 {
  background-color: var(--gray_2);
}

.c_gray_3 {
  color: var(--gray_3);
}

.c_hover_gray_3:hover,
.c_hover_gray_3:active {
  color: var(--gray_3);
}

.bg_gray_3 {
  background-color: var(--gray_3);
}

.c_gray_4 {
  color: var(--gray_4);
}

.c_hover_gray_4:hover,
.c_hover_gray_4:active {
  color: var(--gray_4);
}

.bg_gray_4 {
  background-color: var(--gray_4);
}

.c_gray_5 {
  color: var(--gray_5);
}

.c_hover_gray_5:hover,
.c_hover_gray_5:active {
  color: var(--gray_5);
}

.bg_gray_5 {
  background-color: var(--gray_5);
}

.c_gray_6 {
  color: var(--gray_6);
}

.c_hover_gray_6:hover,
.c_hover_gray_6:active {
  color: var(--gray_6);
}

.bg_gray_6 {
  background-color: var(--gray_6);
}

.c_gray_7 {
  color: var(--gray_7);
}

.c_hover_gray_7:hover,
.c_hover_gray_7:active {
  color: var(--gray_7);
}

.bg_gray_7 {
  background-color: var(--gray_7);
}

.c_green {
  color: var(--green);
}

.c_hover_green:hover,
.c_hover_green:active {
  color: var(--green);
}

.bg_green {
  background-color: var(--green);
}

.c_green_2 {
  color: var(--green_2);
}

.c_hover_green_2:hover,
.c_hover_green_2:active {
  color: var(--green_2);
}

.bg_green_2 {
  background-color: var(--green_2);
}

.c_green_3 {
  color: var(--green_3);
}

.c_hover_green_3:hover,
.c_hover_green_3:active {
  color: var(--green_3);
}

.bg_green_3 {
  background-color: var(--green_3);
}

.c_green_4 {
  color: var(--green_4);
}

.c_hover_green_4:hover,
.c_hover_green_4:active {
  color: var(--green_4);
}

.bg_green_4 {
  background-color: var(--green_4);
}

.c_green_5 {
  color: var(--green_5);
}

.c_hover_green_5:hover,
.c_hover_green_5:active {
  color: var(--green_5);
}

.bg_green_5 {
  background-color: var(--green_5);
}

.c_yellow {
  color: var(--yellow);
}

.c_hover_yellow:hover,
.c_hover_yellow:active {
  color: var(--yellow);
}

.bg_yellow {
  background-color: var(--yellow);
}

.c_yellow_2 {
  color: var(--yellow_2);
}

.c_hover_yellow_2:hover,
.c_hover_yellow_2:active {
  color: var(--yellow_2);
}

.bg_yellow_2 {
  background-color: var(--yellow_2);
}

.c_wine {
  color: var(--wine);
}

.c_hover_wine:hover,
.c_hover_wine:active {
  color: var(--wine);
}

.bg_wine {
  background-color: var(--wine);
}

.c_wine_2 {
  color: var(--wine_2);
}

.c_hover_wine_2:hover,
.c_hover_wine_2:active {
  color: var(--wine_2);
}

.bg_wine_2 {
  background-color: var(--wine_2);
}

.c_magenta {
  color: var(--magenta);
}

.c_hover_magenta:hover,
.c_hover_magenta:active {
  color: var(--magenta);
}

.bg_magenta {
  background-color: var(--magenta);
}

.c_red {
  color: var(--red);
}

.c_hover_red:hover,
.c_hover_red:active {
  color: var(--red);
}

.bg_red {
  background-color: var(--red);
}

.c_purple {
  color: var(--purple);
}

.c_hover_purple:hover,
.c_hover_purple:active {
  color: var(--purple);
}

.bg_purple {
  background-color: var(--purple);
}

.c_white {
  color: var(--white);
}

.c_hover_white:hover,
.c_hover_white:active {
  color: var(--white);
}

.bg_white {
  background-color: var(--white);
}

.c_white_2 {
  color: var(--white_2);
}

.c_hover_white_2:hover,
.c_hover_white_2:active {
  color: var(--white_2);
}

.bg_white_2 {
  background-color: var(--white_2);
}

html,
body {
  min-height: 100vh;
}

b,
strong {
  font-weight: 700;
}

body {
  color: #000000;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll_padding, 100px);
}

hr {
  opacity: 1;
}

.ttu {
  text-transform: uppercase;
}

.ttl {
  text-transform: lowercase;
}

.tdn {
  text-decoration: none;
}

.tdu {
  text-decoration: underline;
}

.tdl {
  text-decoration: line-through;
}

.wmc {
  width: max-content;
}

.wfc {
  width: fit-content;
}

legend {
  float: initial;
  width: initial;
}

.lh-150 {
  line-height: 150%;
}

.lh-160 {
  line-height: 160%;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.l-s-2 {
  letter-spacing: 2px;
}

.no-opacity {
  opacity: 0;
}

@media (min-width: 992px) {
  .d-lg-grid {
    display: grid;
  }
}

@media (max-width: 575px) {

  .mobile-100 .container,
  .mobile-100 .col-12,
  .mobile-100 .row {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-c-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.grid-center {
  display: grid;
  place-items: center;
}

.p-relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.mt-auto {
  margin-top: auto;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
dl,
ol,
ul,
hr,
legend {
  margin: 0;
  padding: 0;
}

body,
html {
  min-height: 100vh;
}

:root {
  --white: #ffffff;
  --white_2: #fbf9e5;
  --blue: #090449;
  --teal: #0097a9;
  --gray_1: #6e7185;
  --gray_2: #494b58;
  --gray_3: #f0f0f3;
  --gray_4: #f0f0f2;
  --gray_5: #ebeeee;
  --gray_6: #707070;
  --gray_7: #607088;
  --green: #3e5d58;
  --green_2: #18332f;
  --green_3: #aebcb9;
  --green_4: #C5D8AF;
  --green_5: #EDF3E6;
  --yellow: #e1cd00;
  --yellow_2: #f0e250;
  --wine: #9b2242;
  --wine_2: #ffeff4;
  --magenta: #e0004d;
  --purple: #ff00a7;
  --red: #ff0000;
  --light: 300;
  --regular: 400;
  --medium: 400;
  --demibold: 600;
  --bold: 700;
  --extrabold: 800;
  --heavy: 900;
  --geom-graphic: "geom-graphic", sans-serif;
  --kallisto: "kallisto", sans-serif;
  --kallisto_lined: "kallisto-lined", sans-serif;
  --montserrat: "Montserrat", sans-serif;
  --bs-tooltip-bg: #ffeff4;
}

a:hover {
  color: inherit;
}

@media (max-width: 991px) {
  .row>* {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.ff-mo {
  font-family: var(--montserrat);
}

.ff-ka {
  font-family: var(--kallisto);
}

.ff-ka-lined {
  font-family: var(--kallisto);
}

.ff-ge {
  font-family: var(--geom-graphic);
}

ul,
ol {
  list-style-type: none;
  padding: 0;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1122px;
  }
}

@media (min-width: 345px) and (max-width: 405px) {
  .d-405-block {
    display: block;
  }
}

.top_bar {
  position: relative;
  background-image: url(../img/top_bar_bg_1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--teal_2);
  background-blend-mode: multiply;
  min-height: 168px;
}

@media (max-width: 991px) {
  .top_bar {
    min-height: 204px;
    background-image: url(../img/top_bar_bg_mobile.png);
  }
}

.top_bar.top_bar_not_found {
  background-image: url(../img/not_found_bg.png);
  min-height: 320px;
}

@media (max-width: 991px) {
  .top_bar.top_bar_not_found {
    min-height: 204px;
    background-image: url(../img/top_bar_bg_mobile.png);
  }
}

.top_bar_wrapper {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  justify-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .top_bar_wrapper {
    width: 100%;
    padding: 0 13px;
    top: 34px;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 374px) {
  .top_bar_wrapper {
    top: 36px;
  }
}

.top_bar_clipped-background::before {
  position: absolute;
  content: "";
  width: 73px;
  height: 39px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  left: 50%;
  bottom: -1px;
  transform: translate(-50%, 0);
}

.top_bar_title {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  margin-top: 0;
  line-height: 110.52632%;
  font-size: 38px;
}

@media (max-width: 991px) {
  .top_bar_title {
    max-width: 370px;
    margin-top: 0;
    line-height: 138.88889%;
  }
}

@media (max-width: 374px) {
  .top_bar_title {
    font-size: 36px;
  }
}

@media (max-width: 355px) {
  .top_bar_title {
    line-height: 112.88889%;
  }
}

.top_bar.top_bar_not_found .top_bar_title {
  margin-top: 0;
  font-size: 93px;
}

@media (max-width: 991px) {
  .top_bar.top_bar_not_found .top_bar_title {
    font-size: 38px;
    margin-top: 0;
  }
}

.step_bar {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  isolation: isolate;
}

.step_bar_wrapper {
  display: grid;
  place-items: center;
  padding: 19px 0;
}

@media (max-width: 991px) {
  .step_bar_wrapper {
    padding: 40px 0;
  }
}

.generic_btn {
  border-radius: 4px;
  width: 100%;
  min-height: 41px;
  padding: 11px;
  background-color: var(--teal_2);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  justify-items: center;
  position: relative;
}

.next_insurance .generic_btn {
  max-width: 292px;
}

.next_patient .generic_btn {
  max-width: 330px;
}

.next_copay .generic_btn {
  max-width: 246px;
}

.next_home .generic_btn {
  max-width: 182px;
}

.next_additional .generic_btn {
  max-width: 272px;
}

.not_found .generic_btn {
  max-width: 208px;
}

.next_savings .generic_btn {
  max-width: 194px;
}

.next_support .generic_btn {
  max-width: 196px;
}

.generic_btn_text {
  line-height: 125%;
}

@media (max-width: 991px) {
  .banner_outer {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
  }
}

@media (max-width: 991px) {
  .banner_outer .banner {
    grid-row: 1 / 2;
  }
}

@media (max-width: 991px) {
  .banner_bg_mobile {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-image: url(../img/banner_1_mobile.png); */
    padding: 264px 0 0;
  }
}

.banner {
  padding: 234px 0 301px 0;
  /* background-image: url(../img/banner_1.png); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.version_professional .banner {
  background-position: center bottom;
}

.banner>div {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  align-content: center;
}

@media (max-width: 991px) {
  .banner {
    padding: 0;
    grid-auto-rows: max-content;
    background-size: revert;
    background-repeat: revert;
    background-position: revert;
    background-image: revert !important;
  }

  .banner>div {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

.banner__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 26px;
}

@media (max-width: 991px) {
  .banner__wrapper {
    margin-right: 0;
    justify-content: center;
    margin: 37px 0 32px 0;
  }
}

.banner__title {
  text-align: right;
  font-size: 45px;
  line-height: 100%;
  margin: 8px 0 0 0;
}

@media (max-width: 991px) {
  .banner__title {
    font-size: 38px;
    text-align: center;
  }
}

@media (max-width: 362px) {
  .banner__title {
    font-size: 32px;
  }
}

.info_bar {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 991px) {
  .info_bar {
    background-size: cover;
  }
}

.info_bar_title {
  font-size: 28px;
  line-height: 132.14286%;
}

@media (max-width: 991px) {
  .info_bar_title {
    font-size: 27px;
  }
}

.info_bar_subtitle {
  font-size: 18px;
  line-height: 133.33333%;
}

.info_bar_text {
  font-size: 14px;
  line-height: 128.57143%;
}

.info_bar__home {
  background-image: url(../img/info_bar_blue_home.png);
  padding: 45px 0;
}

@media (max-width: 991px) {
  .info_bar__home {
    background-image: url(../img/info_bar_blue_home_mobile.png);
    padding: 47px 0 50px;
  }
}

.info_bar__home .info_bar_wrapper {
  display: grid;
  grid-template-columns: 1fr 232px;
  grid-auto-rows: max-content;
  column-gap: 56px;
  row-gap: 3px;
}

@media (max-width: 991px) {
  .info_bar__home .info_bar_wrapper {
    grid-template-columns: 1fr;
    row-gap: revert;
  }
}

.info_bar__home .info_bar_title {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .info_bar__home .info_bar_title {
    grid-row: 1 / 2;
    white-space: nowrap;
  }
}

@media (max-width: 370px) {
  .info_bar__home .info_bar_title {
    white-space: revert;
  }
}

.info_bar__home .info_bar_subtitle {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .info_bar__home .info_bar_subtitle {
    grid-row: 2 / 3;
    margin: 21px 0 29px 0;
  }
}

.info_bar__home .button {
  grid-row: 1 / 3;
  align-self: center;
  line-height: 125%;
  max-width: 232px;
}

.info_bar__home .button:hover {
  color: var(--teal_1);
}

@media (max-width: 991px) {
  .info_bar__home .button {
    grid-row: 3 / 4;
    justify-self: center;
  }
}

.enrollment {
  margin: 56px 0 0 0;
}

@media (max-width: 991px) {
  .enrollment {
    margin: 50px 0 0 0;
  }
}

.info_bar__enrollment {
  padding: 19px 0;
}

@media (max-width: 991px) {
  .info_bar__enrollment {
    padding: 47px 0 50px;
  }
}

.info_bar__enrollment .info_bar_wrapper {
  display: grid;
  grid-template-columns: 1fr 298px;
  grid-auto-rows: max-content;
  column-gap: 81px;
  row-gap: 3px;
}

@media (max-width: 991px) {
  .info_bar__enrollment .info_bar_wrapper {
    grid-template-columns: 1fr;
    row-gap: revert;
  }
}

.info_bar__enrollment .info_bar_title {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .info_bar__enrollment .info_bar_title {
    grid-row: 1 / 2;
  }
}

.info_bar__enrollment .info_bar_subtitle {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .info_bar__enrollment .info_bar_subtitle {
    grid-row: 2 / 3;
    margin: 21px 0 29px 0;
  }
}

.info_bar__enrollment .button {
  grid-row: 1 / 3;
  align-self: start;
  margin-top: 29px;
  line-height: 125%;
  max-width: 298px;
}

.info_bar__enrollment .button:hover {
  color: var(--teal_1);
}

@media (max-width: 991px) {
  .info_bar__enrollment .button {
    margin-top: revert;
    grid-row: 3 / 4;
    justify-self: center;
  }
}

.info_bar__phone {
  background-image: url(../img/info_bar_blue_phone.png);
  padding: 38px 0;
}

@media (max-width: 991px) {
  .info_bar__phone {
    background-image: url(../img/info_bar_blue_phone_mobile.png);
    padding: 49px 0 58px;
  }
}

.info_bar__phone .info_bar_wrapper {
  max-width: 652px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr max-content;
  grid-auto-rows: max-content;
  column-gap: 46px;
  row-gap: 3px;
}

@media (max-width: 991px) {
  .info_bar__phone .info_bar_wrapper {
    grid-template-columns: 1fr;
    row-gap: revert;
  }
}

.info_bar__phone .info_bar_title {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .info_bar__phone .info_bar_title {
    justify-self: center;
    max-width: 247px;
    margin: 32px 0 0 0;
    grid-row: 2 / 3;
    text-align: center;
  }
}

.info_bar__phone .info_bar_subtitle {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .info_bar__phone .info_bar_subtitle {
    justify-self: center;
    max-width: 321px;
    text-align: center;
    grid-row: 3 / 4;
    margin: 15px 0 42px 0;
  }
}

.info_bar__phone .info_bar_subtitle span {
  font-size: 12px;
  line-height: 50%;
}

.info_bar__phone .info_call_icon {
  margin-top: 5px;
  grid-row: 1 / 4;
  align-self: start;
}

@media (max-width: 991px) {
  .info_bar__phone .info_call_icon {
    margin-top: 0;
    grid-row: 1 / 2;
    justify-self: center;
  }
}

.info_bar.info_bar__phone_alt .info_bar_wrapper {
  position: relative;
  left: -40px;
}

@media (max-width: 1199px) {
  .info_bar.info_bar__phone_alt .info_bar_wrapper {
    left: 40px;
  }
}

@media (max-width: 991px) {
  .info_bar.info_bar__phone_alt .info_bar_wrapper {
    left: revert;
    position: revert;
  }
}

.info_bar__phone_alt {
  background-image: url(../img/info_bar_blue_phone.png);
  padding: 38px 0;
}

@media (max-width: 991px) {
  .info_bar__phone_alt {
    background-image: url(../img/info_bar_blue_phone_mobile.png);
    padding: 49px 0 58px;
  }
}

.info_bar__phone_alt .info_bar_wrapper {
  max-width: 645px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-auto-rows: max-content;
  column-gap: 32px;
  row-gap: 3px;
}

@media (max-width: 991px) {
  .info_bar__phone_alt .info_bar_wrapper {
    grid-template-columns: 1fr;
    row-gap: revert;
  }
}

.info_bar__phone_alt .info_bar_title {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .info_bar__phone_alt .info_bar_title {
    justify-self: center;
    max-width: 247px;
    margin: 32px 0 0 0;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    text-align: center;
  }
}

.info_bar__phone_alt .info_bar_subtitle {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .info_bar__phone_alt .info_bar_subtitle {
    justify-self: center;
    max-width: 321px;
    text-align: center;
    grid-row: 3 / 4;
    margin: 15px 0 42px 0;
    grid-column: 1 / 2;
  }
}

.info_bar__phone_alt .info_bar_subtitle span {
  font-size: 12px;
  line-height: 50%;
}

.info_bar__phone_alt.info_bar .info_bar_text {
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .info_bar__phone_alt.info_bar .info_bar_text {
    grid-column: 1 / 2;
  }
}

.info_bar__phone_alt .info_call_icon {
  margin-top: 5px;
  grid-row: 1 / 4;
  grid-column: 1 / 2;
  align-self: start;
}

@media (max-width: 991px) {
  .info_bar__phone_alt .info_call_icon {
    margin-top: 0;
    grid-row: 1 / 2;
    justify-self: center;
  }
}

.info_bar .info_bar_text {
  margin-top: 5px;
}

@media (max-width: 991px) {
  .info_bar .info_bar_text {
    text-align: center;
    justify-self: center;
    max-width: 328px;
    margin-top: 0;
    grid-row: 4 / 5;
  }
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 300px;
}

@media (max-width: 991px) {
  .box {
    margin: 0 auto 60px auto;
    height: revert;
  }
}

@media (max-width: 991px) {
  .box_3 {
    margin-bottom: 0;
  }
}

.boxes_title {
  font-size: 28px;
  line-height: 132.14286%;
  margin-bottom: 27px;
}

@media (max-width: 991px) {
  .boxes_title {
    font-size: 27px;
    margin-bottom: 63px;
  }
}

.box_title {
  margin: 20px 0 7px;
  font-size: 21px;
  line-height: 104.7619%;
}

.box_text {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 122.22222%;
}

@media (max-width: 991px) {
  .box_text {
    margin-bottom: 30px;
  }
}

.button {
  min-height: 41px;
  border-radius: 4px;
  padding: 7px;
  display: grid;
  place-items: center;
  width: 100%;
  position: relative;
}

.colored_button_clipped-background::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 7px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  left: 50%;
  bottom: -1px;
  transform: translate(-50%, 0);
}

.teal_1_colored_button_clipped-background::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 7px;
  background: var(--teal_1);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  left: 50%;
  bottom: -1px;
  transform: translate(-50%, 0);
}

.white_bordered_button_clipped-background::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 14px;
  background-image: url(./../img/green_triangle.svg);
  background-color: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  left: 50%;
  bottom: -3px;
  transform: translate(-50%, 7%);
}

.help {
  padding: 52px 0 40px;
}

@media (max-width: 991px) {
  .help {
    padding: 50px 0;
  }
}

.box_2 {
  margin: 0 auto;
}

@media (max-width: 991px) {
  .box_2 {
    margin: 0 auto 60px auto;
  }
}

.box_2 p::before,
.box_2 p::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 246px;
  background-image: url(./../img/dashed-line.svg);
  bottom: 4px;
}

@media (max-width: 991px) {

  .box_2 p::before,
  .box_2 p::after {
    background-image: url(./../img/dashed-line-horizontal.svg);
    bottom: revert;
    width: 335px;
    height: 1px;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 374px) {

  .box_2 p::before,
  .box_2 p::after {
    width: 100%;
  }
}

.box_2 p::before {
  left: -49px;
}

@media (max-width: 1199px) {
  .box_2 p::before {
    left: -12px;
  }
}

@media (max-width: 991px) {
  .box_2 p::before {
    top: -30px;
    left: 50%;
    bottom: revert;
  }
}

.box_2 p::after {
  right: -50px;
}

@media (max-width: 1199px) {
  .box_2 p::after {
    right: -13px;
  }
}

@media (max-width: 991px) {
  .box_2 p::after {
    right: revert;
    bottom: -30px;
    left: 50%;
  }
}

.box_3 p {
  padding: 0 1px;
}

@media (min-width: 992px) {
  .box_3 {
    margin-left: auto;
  }
}

.button_help_1 {
  max-width: 236px;
}

.button_help_2 {
  max-width: 278px;
}

.button_help_3 {
  max-width: 264px;
}

.boxes_disclaimer {
  margin-top: 47px;
  font-size: 14px;
  line-height: 128.57143%;
}

.sheets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1199px) {
  .sheets {
    column-gap: 15px;
  }
}

@media (max-width: 991px) {
  .sheets {
    column-gap: revert;
    grid-template-columns: 1fr;
    row-gap: 68px;
  }
}

.sheet {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.sheets .or_icon_outer {
  margin: 0 0 4px 0;
}

@media (max-width: 991px) {
  .sheets .or_icon_outer {
    margin: 10px 0;
  }
}

.sheet_main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991px) {
  .sheet_main {
    padding-left: 0;
  }
}

.sheet_1 .sheet_main {
  padding-left: 16px;
}

@media (max-width: 1199px) {
  .sheet_1 .sheet_main {
    padding-left: 0;
  }
}

.sheet_2 .sheet_main {
  padding-left: 0;
}

.or_icon_outer {
  display: grid;
  place-items: center;
}

.or_icon_wrapper {
  margin-right: 75px;
}

@media (max-width: 991px) {
  .or_icon_wrapper {
    margin-right: 0;
  }
}

.or_icon_text {
  position: relative;
  bottom: 1px;
}

.or_icon_bg::before {
  content: "";
  position: absolute;
  background-color: var(--purple_1);
  width: 27px;
  height: 27px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.or_icon_bg::after {
  content: "";
  position: absolute;
  background-color: var(--purple_1);
  width: 73px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 1px;
}

.sheets_list {
  list-style-position: outside;
  padding-left: 18px;
  margin-left: 0;
  list-style-type: revert;
}

.sheet_1 .sheet_text:not(:first-of-type) {
  margin: 0 0 11px 0;
}

@media (min-width: 355px) and (max-width: 383px) {
  .sheet_1 .sheet_text:first-of-type {
    padding-right: 14px;
  }
}

.sheet_2 .sheet_text:first-of-type {
  margin: 0 0 10px 0;
}

.sheet_1 span {
  font-weight: 500;
}

.sheet_1 .sheets_content {
  max-width: 488px;
}

.sheet_2 .sheets_content {
  max-width: 426px;
}

.sheet_text {
  font-size: 18px;
  line-height: 122.22222%;
}

.sheet_icon {
  margin: 0 auto;
}

.sheet_print {
  margin: 0 0 10px 0;
}

.sheet_title {
  font-size: 28px;
  line-height: 71.42857%;
  margin: 28px 0 28px 0;
}

@media (max-width: 991px) {
  .sheet_title {
    line-height: 125%;
  }
}

.sheet .sheet_subtitle {
  font-size: 21px;
  line-height: 95.2381%;
}

.sheet_1 .sheet_subtitle {
  margin: 0 0 13px 0;
}

@media (max-width: 991px) {
  .sheet_1 .sheet_subtitle {
    margin: 0 0 19px 0;
  }
}

.sheet_2 .sheet_subtitle {
  margin: 0 0 45px 0;
}

@media (max-width: 991px) {
  .sheet_2 .sheet_subtitle {
    margin: 0 0 19px 0;
  }
}

.enrollment .sheet_1 .button {
  max-width: 318px;
  margin: 32px auto 0 auto;
}

.enrollment .sheet_2 .button {
  max-width: 226px;
  margin: 32px auto 0 auto;
}

.sheet_1 .sheet_main h2::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 404px;
  background-image: url(./../img/dashed-line-enrollment.svg);
  top: 96px;
}

@media (max-width: 991px) {
  .sheet_1 .sheet_main h2::after {
    background-image: url(./../img/dashed-line-horizontal.svg);
    bottom: revert;
    width: 335px;
    height: 1px;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 374px) {
  .sheet_1 .sheet_main h2::after {
    width: 100%;
  }
}

.sheet_1 .sheet_main h2::after {
  right: 0;
}

@media (max-width: 1199px) {
  .sheet_1 .sheet_main h2::after {
    right: -7px;
  }
}

@media (max-width: 991px) {
  .sheet_1 .sheet_main h2::after {
    right: revert;
    bottom: -34px;
    top: revert;
    left: 50%;
  }
}

.questions {
  margin: 65px 0 80px 0;
}

@media (max-width: 991px) {
  .questions {
    margin: 50px 0;
  }
}

.questions__wrapper {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 19px;
  align-items: center;
  padding: 21px 46px 21px 25px;
  max-width: 667px;
  margin: 0 auto 0 auto;
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.16);
}

@media (max-width: 991px) {
  .questions__wrapper {
    max-width: 334px;
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding: 21px 6px 21px 6px;
  }
}

.questions__left {
  display: grid;
  place-items: center;
}

.questions__text {
  font-size: 21px;
  line-height: 119.04762%;
}

.questions__text a {
  text-decoration: none;
  font-weight: 700;
  color: var(--teal_1);
}

@media (max-width: 991px) {
  .questions__text {
    text-align: center;
  }

  .questions__text span {
    font-size: 18px;
    line-height: 138.88889%;
  }
}

.questions__text span {
  font-size: 18px;
}

.questions__text.questions__intro {
  display: inline;
}

@media (max-width: 991px) {
  .questions__text.questions__intro {
    display: block;
  }
}

.questions__text.questions__phone {
  display: inline;
}

.questions__text.questions__phone br {
  display: none;
}

@media (max-width: 991px) {
  .questions__text.questions__phone {
    display: block;
  }

  .questions__text.questions__phone br {
    display: block;
  }
}

.questions__text.questions__phone span {
  font-weight: 500;
}

@media (max-width: 991px) {
  .questions__text.question__days {
    font-size: 18px;
    line-height: 138.88889%;
  }
}

.description {
  margin: 0 0 20px 0;
}

@media (max-width: 991px) {
  .description {
    margin: 0 0 50px 0;
  }
}

.description__wrapper a {
  color: var(--purple_1);
  font-weight: 700;
}

.description__title {
  font-size: 14px;
  line-height: 114.28571%;
  margin: 0 0 8px 0;
}

@media (max-width: 991px) {
  .description__title {
    margin: 0 0 8px 0;
  }
}

.description__text li {
  font-size: 14px;
  font-weight: 500;
  line-height: 128.57143%;
}

@media (max-width: 991px) {
  .description__text li {
    padding: 0 3px 0 0;
  }
}

.description__text ol {
  list-style: none;
  padding-left: 0;
}

.description__text ol li {
  position: relative;
}

.description__text ol li::before {
  position: absolute;
  left: -6px;
  content: "";
  font-weight: 500;
}

.description__text ol li:nth-child(odd)::before {
  font-size: 14px;
  content: "*";
  top: 0;
}

.description__text ol li:nth-child(even)::before {
  font-size: 10px;
  content: "†";
  top: -3px;
}

.patients {
  background-image: url(../img/patients_bg.png);
  padding: 91px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 1400px) {
  .patients {
    background-position: center bottom;
  }
}

@media (max-width: 991px) {
  .patients {
    background-size: revert;
    background-repeat: revert;
    background-position: revert;
    background-image: revert;
    padding: 27px 0 50px 0;
  }
}

@media (max-width: 991px) {
  .patients_bg_mobile {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/patients_bg_mobile.png);
    padding: 219px 0 0;
  }
}

.patients__title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 10px 0;
}

@media (max-width: 991px) {
  .patients__title {
    margin: 0 0 22px 0;
  }
}

.patients__text {
  font-size: 18px;
  line-height: 122.22222%;
  max-width: 491px;
}

.help__info {
  font-size: 18px;
  line-height: 122.22222%;
  margin: 0 0 19px 0;
}

.help__info a {
  color: var(--purple_1);
  font-weight: 700;
}

.help.insurance {
  padding: 31px 0 40px;
}

@media (max-width: 991px) {
  .help.insurance {
    padding: 50px 0;
  }
}

.help.insurance .boxes_disclaimer {
  margin-top: 34px;
  font-size: 14px;
  line-height: 157.14286%;
}

.program__title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 16px 0;
}

@media (max-width: 991px) {
  .program__title {
    text-align: center;
  }
}

@media (max-width: 448px) {
  .program__2 .program__title {
    max-width: 244px;
    margin: 0 auto 16px auto;
  }
}

.program {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: max-content 1fr;
  grid-auto-flow: row;
  gap: 30px;
}

@media (max-width: 991px) {
  .program {
    grid-template-columns: 1fr;
    grid-auto-flow: revert;
    gap: 17px;
  }
}

@media (max-width: 991px) {
  .program__left {
    display: grid;
    place-items: center;
  }
}

.program__1 {
  padding: 54px 0 62px 0;
  background-color: rgba(91, 103, 112, 0.05);
}

@media (max-width: 991px) {
  .program__1 {
    padding: 50px 0 50px 0;
  }
}

.program__2 {
  padding: 38px 0 59px 0;
}

@media (max-width: 991px) {
  .program__2 {
    padding: 50px 0 38px 0;
  }
}

.program a {
  color: var(--purple_1);
  font-weight: 700;
}

.program__text {
  font-size: 18px;
  line-height: 122.22222%;
  padding: 0 0 0 0;
  margin: 0 0 10px 0;
}

.program__conditions_list {
  list-style-position: outside;
  padding-left: 18px;
  margin-left: 0;
  list-style-type: revert;
}

.program__condition {
  font-size: 18px;
  line-height: 122.22222%;
  margin: 0 0 10px 0;
}

.program__condition::marker {
  color: var(--purple_1);
}

.eligible {
  padding: 0 0 80px 0;
}

@media (max-width: 991px) {
  .eligible {
    padding: 0 0 50px 0;
  }
}

.eligible__info {
  margin: 28px 0 51px 0;
}

@media (max-width: 991px) {
  .eligible__info {
    margin: 50px 0 51px 0;
  }
}

.eligible__info_title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 22px 0;
}

.eligible__info_text {
  font-size: 18px;
  line-height: 122.22222%;
}

.faq_title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 3px 0;
}

.faq_subtitle {
  font-size: 14px;
  line-height: 178.57143%;
  margin: 0 0 22px 0;
}

@media (max-width: 991px) {
  .faq_subtitle {
    line-height: 114.28571%;
    padding: 0 11px;
  }
}

@media (max-width: 991px) {
  .faq_subtitle span {
    color: var(--purple_1);
  }
}

.accordion .accordion-button {
  font-family: var(--geom-graphic);
  color: var(--green);
  font-size: 26px;
  line-height: 115.3846153846%;
  font-weight: 600;
  border-radius: 0;
  padding: 20px 25px 20px 0;
  background-color: var(--white);
  border-bottom: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  max-width: 1050px;
  position: revert;
}

@media (max-width: 991px) {
  .accordion .accordion-button {
    padding: 21px 38px 25px 0;
  }
}

.main_dosing_and_management .accordion .accordion-button {
  max-width: 1096px;
}

.accordion {
  --bs-accordion-border-color: solid 1px var(--teal_2);
  --bs-accordion-border-radius: 0;
}

.accordion .accordion-body {
  padding: 0 0 40px 0;
}

.accordion .special-padding .accordion-body {
  padding: 0 0 20px 0;
}

.accordion-header {
  font-size: 26px;
  font-weight: 600;
  font-family: var(--geom-graphic);
  line-height: 115.3846153846%;
}

.accordion .accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion_subheader {
  font-size: 20px;
  line-height: 160%;
  margin: 0 0 30px 0;
}

.accordion .accordion-button::after {
  position: absolute;
  top: 25px;
  right: 0;
}

.trial .accordion .accordion-button::after {
  position: absolute;
  top: 25px;
  right: 0;
}

@media (max-width: 991px) {
  .trial .accordion .accordion-button::after {
    right: 0;
  }
}

@media (max-width: 767px) {
  .trial .accordion .accordion-button::after {
    top: 25px;
  }
}

@media (max-width: 359px) {
  .trial .accordion .accordion-button::after {
    top: 55px;
  }
}

@media (max-width: 426px) {
  .accordion #heading1 .accordion-button::after {
    top: 60px;
  }
}

.accordion-button::after {
  background-image: url(../img/icon_plus.svg);
  transition: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../img/icon_minus.svg);
}

.accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-item--disabled {
  pointer-events: none;
}

.accordion-item--disabled .accordion-button::after,
.accordion-item--disabled .accordion-button::before {
  background-image: none;
}

.accordion-item:first-of-type {
  border-left: none;
  border-right: none;
  border-bottom: none;
}

.accordion-item {
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: solid 1px var(--green);
  position: relative;
}

.accordion-item:last-of-type {
  border-bottom: solid 1px var(--green);
}

.accordion .accordion-item:not(:first-of-type) {
  border-top: solid 1px var(--green);
}

.accordion button:focus:not(:focus-visible) {
  outline: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.dedicated {
  background-image: url(../img/dedicated_bg.png);
  padding: 66px 0 67px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 1400px) {
  .dedicated {
    background-image: url(../img/dedicated_bg_large.png);
  }
}

@media (max-width: 991px) {
  .dedicated {
    background-size: revert;
    background-repeat: revert;
    background-position: revert;
    background-image: revert;
    padding: 27px 0 50px 0;
  }
}

@media (max-width: 991px) {
  .dedicated_bg_mobile {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/dedicated_bg_mobile.png);
    padding: 219px 0 0;
  }
}

.dedicated__title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 22px 0;
}

@media (max-width: 991px) {
  .dedicated__title {
    margin: 0 0 21px 0;
  }
}

.dedicated__text {
  font-size: 18px;
  line-height: 133.33333%;
  max-width: 546px;
  margin-bottom: 10px;
}

.dedicated__disclaimer {
  max-width: 534px;
  margin: 30px 0 0 0;
  font-size: 14px;
  line-height: 128.57143%;
}

@media (max-width: 991px) {
  .dedicated__disclaimer {
    margin: 20px 0 0 0;
  }
}

.dedicated__conditions_list {
  list-style-position: outside;
  padding-left: 18px;
  list-style-type: revert;
  margin: 20px 0 0 0;
  max-width: 546px;
}

.dedicated__condition {
  font-size: 18px;
  line-height: 122.22222%;
  margin: 0 0 10px 0;
}

.dedicated__condition::marker {
  color: var(--purple_1);
}

.copay {
  margin: 28px 0 28px 0;
}

@media (max-width: 991px) {
  .copay {
    margin: 50px 0 28px 0;
  }
}

.copay__content {
  display: grid;
  grid-template-columns: 349px 1fr;
  grid-template-rows: repeat(3, max-content);
  column-gap: 6px;
}

@media (max-width: 991px) {
  .copay__content {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, max-content);
  }
}

.copay__content .description__wrapper {
  grid-row: 3 / 4;
  grid-column: 2 / 3;
  margin: 30px 0 0 0;
}

@media (max-width: 991px) {
  .copay__content .description__wrapper {
    grid-row: 4 / 5;
    grid-column: 1 / 2;
    margin: 50px 0 0 0;
  }
}

.copay__picture_wrapper {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .copay__picture_wrapper {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    margin: 20px 0 0 0;
  }
}

.copay_btn {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  align-self: start;
}

@media (max-width: 991px) {
  .copay_btn {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
}

.copay__texts {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  margin: 10px 0 0 0;
}

@media (max-width: 991px) {
  .copay__texts {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

.copay .generic_btn {
  max-width: 246px;
  margin: 10px 0 0 0;
  box-shadow: revert;
}

@media (max-width: 991px) {
  .copay .generic_btn {
    justify-self: center;
    margin: 35px 0 0 0;
  }
}

.copay__title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 22px 0;
}

@media (max-width: 991px) {
  .copay__title {
    text-align: center;
    margin: 0 0 18px 0;
  }
}

.copay__text {
  font-size: 18px;
  line-height: 122.22222%;
  margin-bottom: 10px;
}

.support__info {
  margin: 28px 0 50px 0;
}

.support__info_title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 22px 0;
}

@media (max-width: 991px) {
  .support__info_title {
    font-size: 28px;
    margin: 50px 0 50px 0;
  }
}

.support__info_text {
  font-size: 18px;
  margin: 0 0 10px 0;
  line-height: 122.22222%;
}

.support {
  background-color: rgba(91, 103, 112, 0.05);
  padding: 55px 0 40px 0;
}

@media (max-width: 991px) {
  .support {
    padding: 47px 0 40px 0;
  }
}

.support .box_3 a {
  color: var(--teal_2);
  font-weight: 600;
}

.support .box_3 .box_text span {
  font-size: 12px;
  line-height: 50%;
}

.support .button_support_1 {
  max-width: 248px;
}

.support .button_support_2 {
  max-width: 246px;
}

.support .box_1 a,
.support .box_2 a {
  margin: 9px 0 0 0;
}

.support .box_3 .box_text {
  margin: 0;
}

.support .box_title {
  margin: 0;
}

.support .box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  max-width: 300px;
  gap: 20px;
}

.support__title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 27px 0;
}

.support_disclaimer_top {
  font-size: 14px;
  line-height: 128.57143%;
}

.support_disclaimer_bottom {
  font-size: 16px;
}

@media (min-width: 992px) {
  .support_disclaimer_bottom {
    padding-right: 130px;
  }
}

.support__disclaimer {
  margin: 74px 0 0 0;
}

@media (max-width: 991px) {
  .support__disclaimer {
    margin: 30px 0 0 0;
  }
}

.support__medical_title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 37px 0 22px 0;
}

@media (max-width: 991px) {
  .support__medical_title {
    margin: 27px 0 22px 0;
  }
}

.patient__support_disclaimer {
  padding: 20px 0 5px 0;
}

.patient__support_disclaimer_text {
  font-size: 18px;
  line-height: 122.22222%;
}

.support__medical_text {
  font-size: 18px;
  line-height: 122.22222%;
  margin: 0 0 0 0;
}

.support .box_2 h3::before,
.support .box_2 h3::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 234px;
  background-image: url(./../img/dashed-line-support.svg);
  bottom: -25px;
}

@media (max-width: 991px) {

  .support .box_2 h3::before,
  .support .box_2 h3::after {
    background-image: url(./../img/dashed-line-horizontal.svg);
    bottom: revert;
    width: 335px;
    height: 1px;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 374px) {

  .support .box_2 h3::before,
  .support .box_2 h3::after {
    width: 100%;
  }
}

.support .box_2 h3::before {
  left: -49px;
}

@media (max-width: 1199px) {
  .support .box_2 h3::before {
    left: -12px;
  }
}

@media (max-width: 991px) {
  .support .box_2 h3::before {
    top: -30px;
    left: 50%;
    bottom: revert;
  }
}

.support .box_2 h3::after {
  right: -50px;
}

@media (max-width: 1199px) {
  .support .box_2 h3::after {
    right: -13px;
  }
}

@media (max-width: 991px) {
  .support .box_2 h3::after {
    right: revert;
    bottom: 29px;
    left: 50%;
  }
}

.site_map {
  padding: 82px 0 67px 0;
}

@media (max-width: 991px) {
  .site_map {
    padding: 50px 0 20px 0;
  }
}

.site_map .parent {
  list-style: disc;
}

.site_map .child {
  padding: 0 0 0 32px;
}

.site_map_wrapper {
  font-family: var(--whitney);
  font-weight: 500;
  font-size: 18px;
  line-height: 122.22222%;
  color: var(--teal_2);
  padding-left: 18px;
}

.site_map a {
  color: var(--teal_2);
  margin: 0 0 30px 0;
  display: inline-block;
}

.site_map .child a {
  padding-left: 0;
}

.not_found_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.not_found {
  padding: 88px 0;
}

.not_found_text {
  margin: 22px 0 55px 0;
}

@media (max-width: 991px) {
  .version_patient.banner_outer {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
  }
}

@media (max-width: 991px) {
  .version_patient.banner_outer .banner {
    grid-row: 1 / 2;
  }
}

@media (max-width: 991px) {
  .version_patient .banner_bg_mobile {
    display: grid;
    place-items: center;
    background-size: revert;
    background-repeat: revert;
    background-position: revert;
    background-image: revert;
    padding: 0 5px;
  }
}

@keyframes bubbleAnimation {
  0% {
    background-image: url(../img/patient_bg_no_bubble.png);
  }

  10% {
    background-image: url(../img/patient_bg_no_bubble.png);
  }

  30%,
  55% {
    background-image: url(../img/patient_bg_no_bubble.png), url(../img/patient_bg_bubble_left.png);
  }

  55%,
  65% {
    background-image: url(../img/patient_bg_no_bubble.png);
  }

  65%,
  90% {
    background-image: url(../img/patient_bg_no_bubble.png), url(../img/patient_bg_bubble_right.png);
  }

  90%,
  100% {
    background-image: url(../img/patient_bg_no_bubble.png), url(../img/patient_bg_bubble_right.png), url(../img/patient_bg_bubble_left.png);
  }
}

.version_patient .banner {
  padding: 46px 0 406px 0;
  background-image: url(../img/banner_1_patient.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  animation: bubbleAnimation 7s forwards;
}

@media (max-width: 1199px) {
  .version_patient .banner {
    background-size: contain;
    background-image: url(../img/banner_1_patient.png);
    animation: revert;
  }
}

@media (min-width: 1400px) {
  .version_patient .banner {
    background-size: contain;
  }
}

@media (min-width: 1399) {
  .version_patient .banner {
    background-size: contain;
  }
}

.version_patient .banner>div {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  align-content: center;
}

@media (max-width: 991px) {
  .version_patient .banner {
    padding: 0;
    grid-auto-rows: max-content;
    background-size: revert;
    background-repeat: revert;
    background-position: revert;
    background-image: revert;
  }

  .version_patient .banner>div {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

@media (min-width: 1705px) {
  .version_patient .banner {
    padding: 26px 0 426px 0;
  }
}

.version_patient .banner__title {
  text-align: right;
  font-size: 41px;
  line-height: 100%;
  margin: 0 0 0 0;
}

@media (max-width: 991px) {
  .version_patient .banner__title {
    margin: 23px 0 0 0;
    font-size: 35px;
    text-align: center;
  }
}

@media (max-width: 362px) {
  .version_patient .banner__title {
    font-size: 30px;
  }
}

.version_patient .banner__wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
}

@media (max-width: 991px) {
  .version_patient .banner__wrapper {
    margin-right: 0;
    justify-content: center;
    margin: 37px 0 32px 0;
  }
}

.version_patient.info_bar__welcome {
  background-image: url(../img/info_bar_blue_welcome.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 18px 0;
}

@media (max-width: 991px) {
  .version_patient.info_bar__welcome {
    background-image: url(../img/info_bar_blue_welcome_mobile.png);
    padding: 50px 0;
  }
}

.version_patient.info_bar__welcome .info_bar_wrapper {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: repeat(2, max-content);
  row-gap: 3px;
  column-gap: 26px;
  max-width: 990px;
  justify-content: center;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .version_patient.info_bar__welcome .info_bar_wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, max-content);
    row-gap: 0;
    column-gap: 0;
    max-width: revert;
  }
}

.version_patient.info_bar__welcome .info_call_icon {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .version_patient.info_bar__welcome .info_call_icon {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    justify-self: center;
  }
}

.version_patient.info_bar__welcome .info_bar_title {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  font-size: 28px;
  line-height: 132.14286%;
  align-self: end;
}

@media (max-width: 991px) {
  .version_patient.info_bar__welcome .info_bar_title {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    font-size: 27px;
    line-height: 133.33333%;
    align-self: revert;
    margin: 27px 0 21px 0;
  }
}

.version_patient.info_bar__welcome .info_bar_subtitle {
  align-self: start;
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  font-size: 18px;
  line-height: 122.22222%;
}

@media (max-width: 991px) {
  .version_patient.info_bar__welcome .info_bar_subtitle {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    align-self: revert;
  }
}

.version_patient.info_bar__savings .info_bar_wrapper {
  padding: 16px 0 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 76px;
}

@media (max-width: 991px) {
  .version_patient.info_bar__savings .info_bar_wrapper {
    flex-direction: column;
    padding: 47px 0 50px 0;
    gap: 30px;
  }
}

.version_patient.info_bar__savings .info_bar_title {
  text-align: center;
}

.version_patient.info_bar__savings .button {
  max-width: 204px;
}

.version_patient.info_bar__nurse {
  background-image: url(../img/info_bar_blue_nurse.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 52px 0;
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse {
    background-image: url(../img/info_bar_blue_nurse_mobile.png);
    padding: 44px 0;
  }
}

.version_patient.info_bar__nurse {
  margin: 91px 0 0 0;
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse {
    margin: 240px 0 0 0;
  }
}

@media (max-width: 335px) {
  .version_patient.info_bar__nurse {
    margin: 205px 0 0 0;
  }
}

.version_patient.info_bar__nurse .info_bar_wrapper {
  padding: 0 0 0 75px;
  max-width: 563px;
}

.version_patient.info_bar__nurse .info_bar_wrapper span {
  font-size: 12px;
  line-height: 50%;
}

@media (max-width: 1199px) {
  .version_patient.info_bar__nurse .info_bar_wrapper {
    padding: 0 0 0 0;
    max-width: 488px;
  }
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse .info_bar_wrapper {
    max-width: revert;
  }
}

.version_patient.info_bar__nurse .info_bar_title::before {
  content: "";
  right: 61px;
  bottom: -52px;
  position: absolute;
  width: 446px;
  height: 281px;
  background-image: url(../img/people_1.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

@media (max-width: 1199px) {
  .version_patient.info_bar__nurse .info_bar_title::before {
    right: 0;
  }
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse .info_bar_title::before {
    width: 335px;
    height: 211px;
    right: 50%;
    bottom: revert;
    top: 0;
    transform: translate(50%, calc(-100% - 44px));
  }
}

@media (max-width: 335px) {
  .version_patient.info_bar__nurse .info_bar_title::before {
    width: 300px;
    height: 188px;
  }
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse .info_bar_title {
    font-size: 28px;
    line-height: 128.57143%;
    margin: 0 0 19px 0;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse .info_bar_subtitle {
    text-align: center;
  }
}

.version_patient.info_bar__nurse_v2 {
  background-image: url(../img/info_bar_blue_nurse.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 52px 0;
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse_v2 {
    background-image: url(../img/info_bar_blue_nurse_mobile.png);
    padding: 44px 0;
  }
}

.version_patient.info_bar__nurse_v2 {
  margin: 121px 0 0 0;
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse_v2 {
    margin: 240px 0 0 0;
  }
}

@media (max-width: 335px) {
  .version_patient.info_bar__nurse_v2 {
    margin: 205px 0 0 0;
  }
}

.version_patient.info_bar__nurse_v2 .info_bar_wrapper {
  padding: 0 75px 0 0;
  max-width: 563px;
  margin: 0 0 0 auto;
}

.version_patient.info_bar__nurse_v2 .info_bar_wrapper span {
  font-size: 12px;
  line-height: 50%;
}

@media (max-width: 1199px) {
  .version_patient.info_bar__nurse_v2 .info_bar_wrapper {
    padding: 0 0 0 0;
    max-width: 488px;
  }
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse_v2 .info_bar_wrapper {
    max-width: revert;
  }
}

.version_patient.info_bar__nurse_v2 .info_bar_title::before {
  content: "";
  left: 89px;
  bottom: -52px;
  position: absolute;
  width: 340px;
  height: 282px;
  background-image: url(../img/people_2.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

@media (max-width: 1199px) {
  .version_patient.info_bar__nurse_v2 .info_bar_title::before {
    left: 0;
  }
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse_v2 .info_bar_title::before {
    width: 255px;
    height: 211px;
    left: 50%;
    bottom: revert;
    top: 0;
    transform: translate(-50%, calc(-100% - 44px));
  }
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse_v2 .info_bar_title {
    font-size: 28px;
    line-height: 128.57143%;
    margin: 0 0 19px 0;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .version_patient.info_bar__nurse_v2 .info_bar_subtitle {
    text-align: center;
  }
}

.version_patient.copay {
  margin: 28px 0 0 0;
}

@media (max-width: 991px) {
  .version_patient.copay {
    margin: 50px 0 10px 0;
  }
}

.version_patient .copay__content {
  display: grid;
  grid-template-columns: 299px 1fr;
  grid-template-rows: repeat(3, max-content);
  column-gap: 17px;
  margin: 0 0 6px 0;
}

@media (max-width: 991px) {
  .version_patient .copay__content {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, max-content);
  }
}

.version_patient .copay__content .description__wrapper {
  grid-row: 3 / 4;
  grid-column: 1 / 3;
  margin: 30px 0 0 0;
}

@media (max-width: 991px) {
  .version_patient .copay__content .description__wrapper {
    grid-row: 4 / 5;
    grid-column: 1 / 2;
    margin: 50px 0 0 0;
  }
}

.version_patient .copay__picture_wrapper {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  position: relative;
  top: 31px;
  left: -14px;
}

@media (max-width: 1199px) {
  .version_patient .copay__picture_wrapper {
    top: 0;
    left: 0;
  }
}

@media (max-width: 991px) {
  .version_patient .copay__picture_wrapper {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    margin: 20px 0 0 0;
  }
}

.version_patient .copay_btn {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  align-self: start;
  margin: 12px 0 0 145px;
}

@media (max-width: 991px) {
  .version_patient .copay_btn {
    margin: 35px 0 0 0;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
}

.version_patient .copay__texts {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  margin: 10px 0 0 0;
}

@media (max-width: 991px) {
  .version_patient .copay__texts {
    margin: 0 0 0 0;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    margin: 0 0 0 0;
  }
}

.version_patient .copay .generic_btn {
  max-width: 260px;
  margin: 10px 0 0 0;
  box-shadow: revert;
}

@media (max-width: 991px) {
  .version_patient .copay .generic_btn {
    justify-self: center;
    margin: 35px 0 0 0;
  }
}

.version_patient .copay__title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 22px 0;
}

@media (max-width: 991px) {
  .version_patient .copay__title {
    text-align: center;
    margin: 0 0 18px 0;
  }
}

.version_patient .copay__subtitle {
  font-size: 18px;
  line-height: 122.22222%;
  margin: 0 0 10px 0;
}

@media (max-width: 991px) {
  .version_patient .copay__subtitle {
    margin: 0 0 10px 0;
  }
}

.version_patient .copay__text {
  font-size: 18px;
  line-height: 122.22222%;
  margin-bottom: 10px;
}

.version_patient.dedicated {
  background-image: url(../img/cloud_woman.png);
  padding: 52px 0 64px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 1400px) {
  .version_patient.dedicated {
    background-size: contain;
  }
}

@media (max-width: 991px) {
  .version_patient.dedicated {
    background-size: revert;
    background-repeat: revert;
    background-position: revert;
    background-image: revert;
    padding: 27px 0 0 0;
    margin: 0 0 204px 0;
  }
}

@media (max-width: 991px) {
  .version_patient .dedicated_bg_mobile {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/dedicated_bg_mobile.png);
    padding: 219px 0 0;
  }
}

.version_patient .dedicated__title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 0 0;
}

@media (max-width: 991px) {
  .version_patient .dedicated__title {
    font-size: 24px;
    line-height: 133.33333%;
    margin: 0 0 10px 0;
  }
}

.version_patient .dedicated__text {
  font-size: 18px;
  line-height: 133.33333%;
  max-width: 386px;
  margin-bottom: 5px;
}

.version_patient .dedicated__text span {
  font-size: 14px;
  line-height: 157.14286%;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .version_patient .dedicated__text {
    max-width: revert;
  }
}

@media (max-width: 991px) {
  .version_patient .dedicated__text::before {
    content: "";
    position: absolute;
    background-image: url(../img/cloud_woman_mobile.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 375px;
    height: 204px;
    left: 50%;
    bottom: -203px;
    transform: translateX(-50%);
  }
}

@media (max-width: 374px) {
  .version_patient .dedicated__text::before {
    width: 320px;
    height: 174px;
  }
}

@media (max-width: 319px) {
  .version_patient .dedicated__text::before {
    width: 300px;
    height: 164px;
  }
}

.version_patient .dedicated__disclaimer {
  max-width: 534px;
  margin: 30px 0 0 0;
  font-size: 14px;
  line-height: 128.57143%;
}

@media (max-width: 991px) {
  .version_patient .dedicated__disclaimer {
    margin: 20px 0 0 0;
  }
}

.version_patient .dedicated__conditions_list {
  list-style-position: outside;
  padding-left: 18px;
  list-style-type: revert;
  margin: 20px 0 0 0;
  max-width: 546px;
}

.version_patient .dedicated__condition {
  font-size: 18px;
  line-height: 122.22222%;
  margin: 0 0 10px 0;
}

.version_patient .dedicated__condition::marker {
  color: var(--purple_1);
}

.version_patient.dedicated .button {
  max-width: 246px;
  margin: 12px 0 0 0;
}

@media (max-width: 991px) {
  .version_patient.dedicated .button {
    margin: 30px auto 0 auto;
  }
}

.version_patient .dedicated__wrapper {
  padding: 0 0 0 107px;
}

@media (max-width: 1199px) {
  .version_patient .dedicated__wrapper {
    padding: 0 0 0 0;
  }
}

.version_patient .description__title {
  font-size: 14px;
  line-height: 114.28571%;
  margin: 0 0 0 0;
}

@media (max-width: 991px) {
  .version_patient .description__title {
    margin: 0 0 0 0;
  }
}

.version_patient.warning {
  padding: 20px 0 24px 0;
}

@media (max-width: 991px) {
  .version_patient.warning {
    padding: 30px 0 0 0;
  }
}

.ahead {
  padding: 42px 0 40px 0;
}

@media (max-width: 991px) {
  .ahead {
    padding: 50px 0 42px 0;
  }
}

.ahead__title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 16px 0;
}

@media (max-width: 991px) {
  .ahead__title {
    margin: 0 0 10px 0;
    font-size: 27px;
  }
}

.ahead__text {
  font-size: 18px;
  line-height: 122.22222%;
}

.team {
  min-height: 524px;
  background-image: url(../img/cloud_nurse.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 1400px) {
  .team {
    background-size: contain;
  }
}

@media (max-width: 991px) {
  .team {
    background-size: revert;
    background-repeat: revert;
    background-position: revert;
    background-image: revert;
    min-height: revert;
    padding: 30px 0 25px 0;
    margin: 0 0 0 0;
  }
}

.team__title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 97px 0 0 0;
  padding: 0 0 0 136px;
}

@media (max-width: 1199px) {
  .team__title {
    padding: 0 0 0 80px;
  }
}

@media (max-width: 991px) {
  .team__title {
    /* margin: 231px 0 0 0; */
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .team__title::before {
    /* width: 534px;
        height: 231px;
        left: 50%;
        top: -231px;
        transform: translateX(-50%);
        background-image: url(../img/cloud_nurse_mobile.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 1;
        content: "";
        position: absolute;
        display: none; */
  }
}

@media (max-width: 991px) {
  .team_mobile_bg {
    height: 231px;
    background-image: url(../img/cloud_nurse_mobile_v2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 539px) {
  .team_mobile_bg {
    background-size: cover;
    background-position: 100% 100%;
  }
}

@media (max-width: 374px) {
  .team__title::before {
    width: 320px;
    height: 197px;
  }
}

@media (max-width: 319px) {
  .team__title::before {
    width: 300px;
    height: 184px;
  }
}

.team__text {
  font-size: 18px;
  line-height: 122.22222%;
  max-width: 660px;
  margin: 20px 0 43px 0;
  padding: 0 0 0 136px;
}

@media (max-width: 1199px) {
  .team__text {
    padding: 0 0 0 80px;
  }
}

@media (max-width: 991px) {
  .team__text {
    margin: 50px 0 30px 0;
    padding: 0 0 0 0;
  }
}

.team__quote {
  font-size: 34px;
  line-height: 129.41176%;
  font-style: italic;
  max-width: 758px;
  margin: 0 0 24px 0;
}

@media (max-width: 1199px) {
  .team__quote {
    max-width: 665px;
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .team__quote {
    max-width: revert;
    font-size: 34px;
    margin: 0 0 40px 0;
  }
}

.team__person {
  list-style: none;
  padding: 0;
  font-size: 20px;
  padding-left: 230px;
}

@media (max-width: 991px) {
  .team__person {
    padding: 0 0 0 13px;
  }
}

.team__person li {
  font-style: italic;
  line-height: 120%;
}

.team__person li::marker {
  content: "–";
}

.assistance {
  padding: 35px 0 18px 0;
}

@media (max-width: 991px) {
  .assistance {
    padding: 50px 0 50px 0;
  }
}

.assistance__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 418px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .assistance__item.assistance__item_1 {
    margin: 0 auto 60px auto;
  }
}

.assistance__title {
  font-size: 24px;
  line-height: 91.66667%;
  margin: 27px 0 13px 0;
}

.assistance__item_1 .assistance__title::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 197px;
  background-image: url(./../img/dashed-line-patient-home.svg);
  bottom: 16px;
}

@media (max-width: 991px) {
  .assistance__item_1 .assistance__title::after {
    background-image: url(./../img/dashed-line-horizontal.svg);
    bottom: revert;
    width: 335px;
    height: 1px;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 374px) {
  .assistance__item_1 .assistance__title::after {
    width: 100%;
  }
}

.assistance__item_1 .assistance__title::after {
  right: -72px;
}

@media (max-width: 1199px) {
  .assistance__item_1 .assistance__title::after {
    right: -32px;
  }
}

@media (max-width: 991px) {
  .assistance__item_1 .assistance__title::after {
    right: revert;
    bottom: -30px;
    left: 50%;
  }
}

.assistance__text {
  font-size: 18px;
  line-height: 122.22222%;
  margin: 0 0 42px 0;
}

.assistance__disclaimer {
  margin: 37px 0 0 0;
}

@media (max-width: 991px) {
  .assistance__disclaimer {
    margin: 50px 0 0 0;
  }
}

@media (max-width: 991px) {
  .assistance__item_1 {
    margin: 0 auto 60px auto;
  }
}

.assistance__item_1 .button {
  max-width: 226px;
}

.assistance__item_2 .button {
  max-width: 246px;
}

.orgs {
  padding: 50px 0 45px 0;
}

.orgs__info_title {
  font-size: 28px;
  line-height: 132.14286%;
}

.orgs__info_text {
  font-size: 18px;
  line-height: 122.22222%;
  margin: 49px 0 36px 0;
}

@media (max-width: 991px) {
  .orgs__info_text {
    margin: 19px 0 40px 0;
  }
}

.orgs__link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.orgs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 360px;
}

.orgs__item_1 {
  margin: 0 13px 0 auto;
}

@media (max-width: 991px) {
  .orgs__item_1 {
    margin: 0 auto 0 auto;
  }
}

.orgs__item_2 {
  margin: 0 auto 0 13px;
}

@media (max-width: 991px) {
  .orgs__item_2 {
    margin: 60px auto 0 auto;
  }
}

.orgs__item a {
  font-family: var(--whitney);
  color: var(--teal_2);
  text-align: center;
  margin: 0 0 20px 0;
  font-weight: 500;
}

.orgs__item p {
  text-align: center;
  font-weight: 600;
  color: var(--teal_2);
  font-family: var(--whitney);
}

.orgs__title {
  font-size: 24px;
  line-height: 91.66667%;
  margin: 20px 0 7px 0;
}

.orgs__title_1::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 529px;
  background-image: url(./../img/dashed-line-orgs.svg);
  top: 47px;
}

@media (max-width: 991px) {
  .orgs__title_1::after {
    background-image: url(./../img/dashed-line-horizontal.svg);
    width: 335px;
    height: 1px;
    top: calc(100% + 30px);
    transform: translate(-50%, 0);
  }
}

@media (max-width: 374px) {
  .orgs__title_1::after {
    width: 100%;
  }
}

.orgs__title_1::after {
  right: 0;
}

@media (max-width: 1199px) {
  .orgs__title_1::after {
    right: 0;
  }
}

@media (max-width: 991px) {
  .orgs__title_1::after {
    right: revert;
    left: 50%;
  }
}

.subgroups {
  background-image: url(../img/bg_subgroups.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  background-color: var(--green_2);
  padding: 61px 0 61px 0;
}

@media (max-width: 1399px) {
  .subgroups {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 991px) {
  .subgroups {
    background-image: url(../img/bg_subgroups_mobile.png);
    background-position: center top;
    background-size: contain;
    padding: 116px 0 50px 0;
  }
}

.subgroups_shape {
  width: max-content;
  padding: 56px 47px 55px 54px;
  border-radius: 40px 0 40px 0;
}

@media (max-width: 991px) {
  .subgroups_shape {
    padding: 45px 20px 36px 31px;
  }
}

@media (max-width: 575px) {
  .subgroups_shape {
    width: 100%;
  }
}

.subgroups_wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .subgroups_wrapper {
    margin: 0 0 0 62px;
  }
}

@media (max-width: 991px) {
  .subgroups_wrapper {
    flex-direction: column;
  }
}

.subgroups_shape_text {
  font-size: 26px;
  line-height: 115.3846153846%;
}

.subgroups_shape_text sup {
  top: -0.5em;
  font-size: 0.65em;
}

.subgroups_list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subgroups_list_item {
  position: relative;
  padding: 0 0 0 14px;
}

.subgroups_list_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 0;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.subgroups_list_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.trial_middle_text_new_wrapper {
  position: relative;
  padding: 0 0 0 12px;
}

.trial_middle_text_new_wrapper span::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 0;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.pop_modal_shape {
  max-width: 266px;
  width: 100%;
  border-radius: 40px 0 40px 0;
  padding: 26px 16px 26px 16px;
  margin: 17px auto 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .pop_modal_shape {
    margin: 74px auto 0 auto;
  }
}

@media (max-width: 330px) {
  .pop_modal_shape {
    max-width: 240px;
  }
}

.pop_modal_text {
  line-height: 120%;
  font-size: 20px;
}

.generic_modal_pop_up_home .modal-content {
  border: none;
  border-radius: 30px 5px 30px 5px;
}

.generic_modal_pop_up_home .modal-dialog {
  max-width: 475px;
}

@media (max-width: 575px) {
  .generic_modal_pop_up_home .modal-dialog {
    max-width: 100%;
    margin: 0 20px;
  }
}

.pop_modal_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  padding: 14px 0 10px 0;
}

@media (max-width: 991px) {
  .pop_modal_disclaimer {
    padding: 14px 5px 34px 5px;
  }
}

.pop_modal_img {
  margin: 0 auto 0 auto;
  display: block;
  max-width: 468px;
  height: auto;
}

.pop_modal_img_wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin: -10px 0 0 0;
}

.generic_modal_pop_up_home .close_modal {
  position: absolute;
  top: 18px;
  right: 20px;
}

@media (max-width: 991px) {
  .generic_modal_pop_up_home .modal-body {
    padding: 0;
  }
}

.network {
  padding: 80px 0 70px 0;
  margin: 65px 0 0 0;
}

@media (max-width: 991px) {
  .network {
    margin: 0 0 0 0;
    padding: 40px 0 50px 0;
  }
}

.network_left_left_title {
  font-size: 98px;
  line-height: 78%;
  position: relative;
  left: -4px;
}

@media (max-width: 991px) {
  .network_left_left_title {
    font-size: 61px;
    left: 0;
  }
}

.network_left_left_subtitle {
  font-size: 34px;
  line-height: 117.6470588235%;
}

@media (min-width: 992px) {
  .network_left_left_subtitle {
    letter-spacing: -0.4px;
  }
}

@media (max-width: 991px) {
  .network_left_left_subtitle {
    font-size: 21px;
    position: relative;
    left: 2px;
  }
}

.network_left_right_title {
  font-size: 35px;
  line-height: 102%;
  position: relative;
  top: -4px;
  border-left: none;
  padding: 0 0 0 35px;
  margin: 0 0 0 35px;
}

@media (max-width: 991px) {
  .network_left_right_title {
    border-left: revert;
    border-top: solid 1px var(--yellow);
    padding: 12px 0 0 0;
    margin: 15px 0 0 0;
    text-align: center;
    font-size: 21px;
    line-height: 128.5714285714%;
  }
}

.network_left_right {
  position: relative;
}

.page-template-home .network_left_right_title::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 104px;
  background-color: var(--yellow);
  top: 4px;
  left: -1px;
}

@media (max-width: 991px) {
  .page-template-home .network_left_right_title::after {
    display: none;
  }
}

.network_left_bottom_text {
  font-size: 22px;
  line-height: 118.1818181818%;
  margin: 10px 0 0 0;
}

@media (max-width: 991px) {
  .network_left_bottom_text {
    text-align: center;
    margin: 30px 0 20px 0;
    font-size: 18px;
    line-height: 111.1111111111%;
  }
}

.network_right {
  padding: 0;
}

.network_right_text {
  font-size: 18px;
  line-height: 144.4444444444%;
}

@media (max-width: 991px) {
  .network_right_text {
    text-align: left;
  }
}

.network_top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

@media (max-width: 991px) {
  .network_top {
    flex-direction: column;
    gap: 0;
  }
}

.network_left_top {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .network_left_top {
    flex-direction: column;
  }
}

.network_bottom_text {
  max-width: 912px;
  margin: 60px auto 0 auto;
  font-size: 14px;
  line-height: 128.5714285714%;
}

@media (max-width: 991px) {
  .network_bottom_text {
    margin: 50px auto 0 auto;
  }
}

.next.home_disclaimers {
  padding: 40px 0 40px 0;
}

.drop {
  padding: 40px 0 0 0;
}

.drop_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 101px;
}

@media (max-width: 991px) {
  .drop_bottom {
    flex-direction: column;
    gap: 80px;
  }
}

.drop_bottom_left {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 991px) {
  .drop_bottom_left {
    flex-direction: column;
    gap: 20px;
  }
}

.drop_bottom_left_item {
  display: flex;
  align-items: center;
  gap: 25px;
}

.drop_top_text {
  font-size: 18px;
  line-height: 155.5555555556%;
  max-width: 624px;
  margin: 0 auto;
}

.drop_middle_text {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 0 0 35px 0;
}

.drop_bottom_left_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.drop_bottom_right {
  position: relative;
  border: solid 3px var(--gray_7);
  border-radius: 34px 0 34px 0;
  padding: 37px 35.8px 37px 90.8px;
  max-width: 526px;
}

@media (max-width: 991px) {
  .drop_bottom_right {
    padding: 84px 32px 40px 32px;
  }
}

.drop_bottom_right_item_img {
  position: absolute;
  top: 23px;
  left: -48px;
  width: 115px;
  height: 115px;
}

@media (max-width: 991px) {
  .drop_bottom_right_item_img {
    top: 0;
    left: 50%;
    transform: translate(-50%, -54px);
  }
}

.drop_bottom_right_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.drop_line .yellow_line_wrapper {
  margin: 30px auto 30px auto;
}

@media (max-width: 991px) {
  .drop_bottom_left_item_1 {
    width: 101.2%;
  }
}

@media (max-width: 991px) {
  .drop_bottom_left_item_3 {
    width: 98.7%;
  }
}

@media (max-width: 991px) {
  .main_KMT2Ar_AML_ALL .next__text_item_2 {
    width: 100.3%;
  }
}

.main_efficacy .network {
  margin: 0 0 0 0;
}

.main_efficacy .network_left_right_title {
  border-left: none;
}

@media (max-width: 991px) {
  .main_efficacy .network_left_right_title {
    border-top: solid 1px var(--green_2);
    border-left: none;
  }
}

.network_left_right {
  position: relative;
}

.network_left_right_title::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 104px;
  background-color: var(--green_2);
  top: 4px;
  left: -1px;
}

@media (max-width: 991px) {
  .network_left_right_title::after {
    display: none;
  }
}

.break-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
}

@media (min-width: 395px) {
  .efficacy_disclaimer_1 {
    display: none;
  }
}

.vimeo_wrapper {
  max-width: 770px;
  margin: 34px auto 35px auto;
}

@media (max-width: 991px) {
  .vimeo_wrapper {
    margin: 23px auto 29px auto;
  }
}

.main_mechanism_of_action .vimeo_wrapper {
  max-width: 770px;
  margin: 0 auto 38px auto;
}

@media (max-width: 991px) {
  .main_mechanism_of_action .vimeo_wrapper {
    margin: 0 auto 51px auto;
  }
}

.watch {
  margin: 55px 0 0 0;
  padding: 20px 0 63px 0;
}

@media (max-width: 991px) {
  .watch {
    margin: 27px 0 0 0;
    padding: 20px 0 50px 0;
  }
}

.watch_title {
  font-size: 28px;
  line-height: 128.5714285714%;
  max-width: 912px;
  margin: 0 auto 0 auto;
  z-index: 1;
  position: relative;
}

@media (max-width: 991px) {
  .watch_title {
    margin: 0 auto 0 auto;
    font-size: 20px;
  }
}

.watch_video_placeholder {
  margin: 0 auto 50px auto;
  display: block;
}

@media (max-width: 991px) {
  .watch_video_placeholder {
    margin: 0 auto 28px auto;
  }
}

.watch_disclaimer_text {
  font-size: 18px;
  line-height: 133.3333333333%;
}

.resources_disclaimer {
  margin: 50px 0 40px 0;
}

.resources_disclaimer_text {
  font-size: 18px;
  line-height: 133.3333333333%;
}

@media (max-width: 991px) {
  .resources_disclaimer_text {
    padding: 0 3px;
  }
}

.video_block {
  display: grid;
  grid-template-columns: 303px 303px;
  column-gap: 51px;
  justify-content: center;
}

@media (max-width: 991px) {
  .video_block {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 57px;
  }
}

.next_moa .generic_button {
  max-width: 330px;
}

.next_safety .generic_button {
  max-width: 330px;
}

.next_efficacy .generic_button {
  max-width: 330px;
}

.page_not_found .generic_button {
  max-width: 266px;
}

@media (max-width: 991px) {
  .next_safety .next__text_item {
    width: 102.5%;
  }
}

@media (max-width: 991px) {
  .next_dosing_and_management .next__text_item {
    width: 102.5%;
  }
}

.next_access_and_patient_support .generic_button {
  max-width: 388px;
}

@media (max-width: 991px) {
  .next_access_and_patient_support .generic_button {
    max-width: 330px;
  }
}

.next {
  padding: 0 0 40px 0;
}

@media (max-width: 991px) {
  .next {
    padding: 0 0 46px 0;
  }
}

.next__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media (max-width: 991px) {
  .next__wrapper {
    gap: 50px;
  }
}

.next__texts {
  align-self: start;
}

.next__text_item {
  font-size: 14px;
  line-height: 128.5714285714%;
}

.next__text_item:not(:last-of-type) {
  margin: 0 0 20px 0;
}

.next_efficacy .next__text_item {
  width: 100%;
}

@media (max-width: 991px) {
  .next_efficacy .next__text_item.next__text_item_1 {
    width: 97.8%;
  }
}

.generic_button {
  border-top-left-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 10px;
  width: 100%;
  min-height: 50px;
  padding: 11px;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transform: ease all 0.4s;
}

.generic_button.bg_wine {
  transition: ease all 0.4s;
  border: solid 2px var(--wine);
}

@media (max-width: 991px) {
  .generic_button.bg_wine {
    max-width: 100%;
  }
}

.generic_button.bg_wine:hover,
.generic_button.bg_wine:active {
  background-color: var(--white);
  border: solid 2px var(--wine);
}

.generic_button.bg_wine:hover p,
.generic_button.bg_wine:active p {
  color: var(--wine);
}

.wpcf7-submit.generic_button.bg_wine:hover,
.wpcf7-submit.generic_button.bg_wine:active {
  color: var(--wine) !important;
}

.wpcf7-submit.disabled {
  background-color: rgba(155, 34, 66, 0.5);
  border: solid 2px transparent !important;
}

.wpcf7-submit.disabled:hover {
  background-color: rgba(155, 34, 66, 0.5);
  border: solid 2px transparent !important;
}

.wpcf7-submit.generic_button.bg_wine.disabled:hover,
.wpcf7-submit.generic_button.bg_wine.disabled:active {
  color: var(--white) !important;
}

.generic_button.bg_blue {
  transition: ease all 0.4s;
  border: solid 2px var(--blue);
}

.generic_button.bg_blue:hover,
.generic_button.bg_blue:active {
  background-color: var(--white);
  border: solid 2px var(--blue);
}

.generic_button.bg_blue:hover p {
  color: var(--blue);
}

.generic_button.bg_magenta {
  transition: ease all 0.4s;
  border: solid 2px var(--magenta);
}

.generic_button.bg_magenta:hover,
.generic_button.bg_magenta:active {
  background-color: var(--white);
  border: solid 2px var(--magenta);
}

.generic_button.bg_magenta:hover p,
.generic_button.bg_magenta:active p {
  color: var(--magenta);
}

.modal-button-accept {
  transition: ease all 0.4s;
  border: solid 2px var(--wine) !important;
}

.modal-button-accept:hover,
.modal-button-accept:active {
  background-color: var(--white);
  border: solid 2px var(--wine) !important;
  color: var(--wine) !important;
}

.modal-button-accept:hover p,
.modal-button-accept:active p {
  color: var(--wine);
}

.modal-button-cancel {
  transition: ease all 0.4s;
  border: solid 2px var(--wine) !important;
}

.modal-button-cancel:hover,
.modal-button-cancel:active {
  background-color: var(--wine);
  border: solid 2px var(--wine) !important;
  color: var(--white) !important;
}

.modal-button-cancel:hover p,
.modal-button-cancel:active p {
  color: var(--white);
}

.modal-button-accept {
  transition: ease all 0.4s;
  border: solid 2px var(--wine) !important;
}

.modal-button-accept:hover,
.modal-button-accept:active {
  background-color: var(--white);
  border: solid 2px var(--wine) !important;
  color: var(--wine) !important;
}

.modal-button-accept:hover p,
.modal-button-accept:active p {
  color: var(--wine);
}

.modal-button-accept:hover,
.modal-button-accept:active {
  background: #9B2242 !important;
  color: #fff !important;
}

.modal-button-accept.hover {
  background: #fff;
  color: #9B2242 !important;
}

.generic_button_text {
  line-height: 125%;
  text-align: center;
  letter-spacing: 0.64px;
}

.connected .generic_button {
  max-width: 330px;
}

.syndaccess .generic_button {
  max-width: 330px;
  margin: 0 auto;
}

.connected .generic_button {
  max-width: 330px;
}

.block__resources .generic_button {
  max-width: 330px;
}

.block__guidelines .generic_button {
  max-width: 330px;
}

.block__guidelines .generic_button {
  max-width: 330px;
}

.next_dosing_and_management .generic_button {
  max-width: 330px;
}

.gb_wrapper {
  padding: 0 0 15px 0;
}

.gb_title {
  font-size: 20px;
  line-height: 130%;
}

.isi-tray.top .isi_btn_wrapper_initial {
  display: flex;
  min-height: 37px;
}

@media (max-width: 991px) {
  .isi-tray.top .isi_btn_wrapper_initial {
    padding: 5px 0 8px 0;
  }
}

.isi-tray:not(.top) .isi_btn_wrapper_initial {
  display: none;
}

.isi-tray.top .isi_btn_wrapper_intermediate {
  display: none;
}

.isi-tray:not(.top) .isi_btn_wrapper_intermediate {
  display: flex;
}

@media (max-width: 991px) {
  .isi-tray:not(.top) .isi_btn_wrapper_intermediate {
    padding: 5px 0 23px 0;
  }
}

@media (max-width: 991px) {
  .isi-tray:not(.top) .isi_btn_wrapper_intermediate {
    padding: 10px 0 23px 0;
  }
}

@media (max-width: 767px) {
  .isi-tray:not(.top) .isi_btn_wrapper_intermediate {
    padding: 4px 0 23px 0;
  }
}

@media (max-width: 341px) {
  .isi-tray:not(.top) .isi_btn_wrapper_intermediate {
    padding: 0 0 23px 0;
  }
}

.isi_btn_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 47px;
}

.gb_subtitle {
  line-height: 130%;
  font-size: 18px;
}

.gb_text {
  font-size: 18px;
  line-height: 144.4444444444%;
}

@media (max-width: 991px) {

  .gb_subtitle {
    padding-right: 5px;
    margin-bottom: 5px;
  }

  .gb_text_a {
    width: 99.4%;
  }
}

@media (max-width: 991px) {
  .gb_text_b {
    width: 99.1%;
  }
}

.gb_text_big {
  font-size: 20px;
  line-height: 130%;
}

.gb_boxed_info {
  border: solid 3px var(--green);
  padding: 9px 25px 14px 20px;
  margin: 0 0 20px 0;
}

@media (max-width: 991px) {
  .gb_boxed_info {
    padding: 11px 11px 16px 11px;
    margin: 0 0 17px 0;
  }
}

.gb_ul {
  list-style: none;
  padding-left: 0;
}

.gb_li {
  padding: 0 0 0 12px;
  position: relative;
}

@media (max-width: 991px) {
  .gb_li.gb_li_a {
    width: 98.4%;
  }
}

@media (max-width: 991px) {
  .gb_li.gb_li_b {
    width: 99.4%;
  }
}

@media (max-width: 991px) {
  .gb_li.gb_li_c {
    width: 96.9%;
  }
}

.gb_li .gb_text::before {
  color: var(--yellow);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0px;
  top: -1px;
  content: "•";
  font-size: 14px;
  font-family: var(--kallisto);
}

.connected {
  background-image: url(../img/bg_connected.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  background-color: #18332f;
  padding: 80px 0 80px 0;
}

@media (max-width: 1399px) {
  .connected {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 991px) {
  .connected {
    background-image: url(../img/bg_connected_mobile.png);
    background-position: center top;
    background-size: contain;
    padding: 97px 0 50px 0;
  }
}

.connected__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.connected__title {
  max-width: 646px;
  font-size: 26px;
  line-height: 138.4615384615%;
  margin: 20px 0 26px 0;
}

@media (max-width: 991px) {
  .connected__title {
    max-width: 329px;
    margin: 20px 0 49px 0;
  }
}

.connected__buttons {
  display: grid;
  grid-template-columns: 330px 330px;
  justify-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .connected__buttons {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
}

.syndaccess:not(.syndaccess_patient-support) {
  padding: 80px 0 80px 0;
}

@media (max-width: 991px) {
  .syndaccess:not(.syndaccess_patient-support) {
    padding: 50px 0 50px 0;
  }
}

#patient-support {
  background-color: var(--yellow);
  padding: 80px 0 80px 0;
}

@media (max-width: 991px) {
  #patient-support {
    padding: 80px 0 80px 0;
  }
}

.syndaccess__wrapper {
  background-color: var(--white);
  padding: 80px 0 80px 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 40px;
}

@media (max-width: 991px) {
  .syndaccess__wrapper {
    padding: 50px 10px 50px 10px;
  }
}

@media (min-width: 370px) and (max-width: 382px) {
  .syndaccess__wrapper {
    padding: 50px 5px 50px 5px;
  }
}

.syndaccess__info {
  margin: 0 auto 48px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 991px) {
  .syndaccess__info {
    flex-direction: column;
    gap: 17px;
  }
}

.page-template-home .syndaccess__info {
  margin: 0 auto 38px auto;
}

.syndaccess__info_texts {
  font-size: 18px;
}

@media (max-width: 991px) {
  .syndaccess__info_texts {
    text-align: center;
  }
}

.syndaccess__info_texts_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  margin: 8px 0 0 -8px;
}

@media (max-width: 991px) {
  .syndaccess__info_texts_disclaimer {
    margin: 15px 0 0 0;
  }
}

.syndaccess__title {
  font-size: 28px;
  line-height: 128.5714285714%;
}

@media (max-width: 991px) {
  .syndaccess__title {
    margin: 0 auto;
    font-size: 26px;
  }
}

@media (min-width: 370px) and (max-width: 382px) {
  .syndaccess__title {
    max-width: revert;
  }
}

.syndaccess__title sup {
  font-size: 16px;
}

.syndaccess__subtitle {
  font-size: 18px;
  line-height: 144.4444444444%;
  margin: 27px auto 32px auto;
}

@media (max-width: 991px) {
  .syndaccess__subtitle {
    margin: 26px auto 30px auto;
    max-width: 310px;
  }
}

.main_access_and_patient_support .syndaccess__subtitle {
  line-height: 116.6666666667%;
}

.block__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 40px;
  padding: 95px 16px 80px 16px;
}

.align-left.block__wrapper {
  justify-content: flex-start;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .block__wrapper {
    padding: 90px 16px 50px 16px;
  }
}

.block__title {
  font-size: 26px;
  line-height: 138.4615384615%;
}

.block__guidelines .block__title {
  margin: 0 0 14px 0;
}

.block__resources .block__title {
  margin: 0 0 20px 0;
}

.block__text {
  font-size: 18px;
  line-height: 155.5555555556%;
  max-width: 926px;
}

.block_icon_wrapper {
  content: "";
  width: 136px;
  height: 117px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  padding: 22px 39px;
  background-color: var(--white);
  border: solid 3px var(--green);
  border-top-left-radius: 16px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 16px;
}

.block__guidelines {
  margin: 140px 0 140px 0;
}

@media (max-width: 991px) {
  .block__guidelines {
    margin: 80px 0 105px 0;
  }
}

.bricks {
  overflow: hidden;
}

.bricks__wrapper {
  display: grid;
  grid-template-columns: 1fr 20px 1fr;
  transition: ease all 0.4s;
}

.bricks__wrapper.active {
  grid-template-columns: 1fr 205px 1fr;
  transition: ease all 0.4s;
}

@media (max-width: 991px) {
  .bricks__wrapper.active {
    grid-template-columns: 1fr 167px 1fr;
  }
}

.block__resources {
  margin: 115px 0 97px 0;
}

@media (max-width: 991px) {
  .block__resources {
    margin: 98px 0 50px 0;
  }
}

.brick__left,
.brick__right {
  margin: 27px 0 27px 0;
}

@media (max-width: 991px) {

  .brick__left,
  .brick__right {
    margin: 13px 0 13px 0;
  }
}

@media (max-width: 991px) {

  .brick__left.brick__left__mobile,
  .brick__right.brick__right__mobile {
    margin: 30px 0 30px 0;
  }
}

.brick__middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  overflow: hidden;
  transition: ease all 0.2s;
}

@media (max-width: 991px) {
  .brick__middle {
    gap: 11px;
  }
}

.bricks__wrapper.active .brick__middle {
  opacity: 1;
  overflow: revert;
  transition: ease all 0.2s;
}

.brick__icon {
  width: 84px;
  height: 73px;
  background-image: url(../img/icon_revuforj_small_white.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

@media (max-width: 991px) {
  .brick__icon {
    width: 48px;
    height: 42px;
    background-image: url(../img/icon_revuforj_small_white_mobile.svg);
  }
}

.brick__icon.active {
  background-image: url(../img/icon_revuforj_small_colored.svg);
}

@media (max-width: 991px) {
  .brick__icon.active {
    background-image: url(../img/icon_revuforj_small_white_colored.svg);
  }
}

.bricks__content {
  opacity: 0;
  position: relative;
  bottom: -100px;
}

@media (max-width: 991px) {
  .bricks__content {
    opacity: 1;
    bottom: 0;
  }
}

.bricks__wrapper.active .bricks__content {
  opacity: 1;
  bottom: 0;
  transition: ease all 0.6s;
}

.bricks__content_left {
  padding: 70px 69px 70px 0;
}

@media (max-width: 991px) {
  .bricks__content_left {
    display: none;
  }

  .bricks__content_left.bricks__mobile {
    padding: 0 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 0 50px 0;
  }
}

.brick__left {
  border-radius: 0 10px 10px 0;
}

.brick__right {
  border-radius: 10px 0 0 10px;
}

.bricks__left_title {
  font-size: 26px;
  line-height: 138.4615384615%;
  margin: 0 0 24px 0;
  max-width: 377px;
}

@media (max-width: 991px) {
  .bricks__left_title {
    margin: 0;
    max-width: 100%;
    padding: 0 2px 0 0;
  }
}

.bricks__left_bg::before {
  content: "";
  background-color: var(--magenta);
  height: 100%;
  width: 2000px;
  right: 50px;
  top: 0;
  position: absolute;
  z-index: -1;
}

.bricks__right_bg::before {
  content: "";
  background-color: var(--wine);
  height: 100%;
  width: 2000px;
  left: 50px;
  top: 0;
  position: absolute;
  z-index: -1;
}

.bricks__left_text {
  font-size: 18px;
  line-height: 144.4444444444%;
  max-width: 377px;
}

@media (max-width: 991px) {
  .bricks__left_text {
    max-width: 100%;
  }
}

.bricks__content_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  padding: 80px 0 80px 93px;
}

@media (max-width: 991px) {
  .bricks__content_right {
    display: none;
  }

  .bricks__content_right.bricks__mobile {
    display: flex;
    padding: 50px 0 50px 0;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .bricks__content_right {
    padding-left: 80px;
  }
}

.bricks__content_right .generic_button {
  max-width: 352px;
}

.about {
  padding: 80px 0 80px 0;
}

@media (max-width: 991px) {
  .about {
    padding: 50px 0 50px 0;
  }
}

.about__titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .about__titles {
    gap: 25px;
  }
}

.about__title {
  font-size: 26px;
  line-height: 138.4615384615%;
  margin: 0 0 0 0;
  max-width: 792px;
}

.about__subtitle {
  max-width: 669px;
  font-size: 18px;
  line-height: 155.5555555556%;
}

.about__list {
  margin-left: 0;
}

.about__list_item::marker {
  color: var(--magenta);
}

.about__list_item:not(:last-of-type) {
  margin: 0 0 20px 0;
}

.about__content {
  display: grid;
  grid-template-columns: 445px 1fr;
  gap: 36px;
  align-items: start;
  margin: 40px 0 0 0;
}

@media (max-width: 991px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0 0 0;
  }
}

.about__content_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.about__info {
  padding: 0 0 0 0;
}

@media (max-width: 991px) {
  .about__info {
    grid-row: 2 / 3;
    padding: 0 0 0 0;
  }
}

.about__chart {
  max-width: 650px;
}

.about__chart_headers {
  width: 100%;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 0.38fr 0.32fr 0.3fr;
  grid-auto-flow: column;
  padding: 10px 20px 8px 27px;
}

@media (max-width: 991px) {
  .about__chart_headers {
    padding: 10px 0 10px 0;
  }
}

.about__chart_icon_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.about__chart_row_text {
  font-size: 22px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {

  .about__chart_icon_text,
  .about__chart_row_text {
    font-size: 18px;
    line-height: 155.5555555556%;
  }
}

.about__chart_row_item {
  display: grid;
  grid-template-columns: 0.49fr 0.32fr 0.3fr;
  grid-auto-flow: column;
  align-items: center;
  padding: 0 30px 0 42px;
  min-height: 120px;
}

@media (max-width: 991px) {
  .about__chart_row_item {
    min-height: 150px;
    padding: 0 0 0 0;
  }
}

@media (max-width: 330px) {
  .about__chart_row_item {
    justify-content: space-around;
  }
}

.about__chart_icon_wrapper .special-align {
  position: relative;
}

.about__chart_icon_wrapper .special-align-2 {
  position: relative;
  left: -12px;
}

.about__chart_header_text {
  font-size: 20px;
  line-height: 110%;
}

@media (max-width: 991px) {
  .about__chart_header_text {
    text-align: center;
    font-size: 18px;
    line-height: 112.5%;
  }
}

@media (max-width: 991px) {
  .about__chart_header_text__1 {
    text-align: center;
  }
}

.about__chart_icon_wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .about__chart_icon_wrapper {
    flex-direction: column;
  }
}

.about__chart_row_item:nth-of-type(1) .about__chart_icon_wrapper {
  gap: 18px;
}

@media (max-width: 991px) {
  .about__chart_row_item:nth-of-type(1) .about__chart_icon_wrapper {
    gap: 11px;
  }
}

.about__chart_row_item:nth-of-type(2) .about__chart_icon_wrapper {
  gap: 25px;
}

.about__chart_row_item:nth-of-type(2) .about__chart_icon_wrapper.special-gap {
  gap: 0;
}

@media (max-width: 991px) {
  .about__chart_row_item:nth-of-type(2) .about__chart_icon_wrapper {
    gap: 7px;
  }
}

.about__chart_row_item:nth-of-type(3) .about__chart_icon_wrapper {
  gap: 17px;
}

@media (max-width: 991px) {
  .about__chart_row_item:nth-of-type(3) .about__chart_icon_wrapper {
    gap: 10px;
  }
}

.about__chart_footer {
  padding: 6px 0 6px 0;
}

@media (max-width: 991px) {
  .about__chart_footer {
    padding: 18px 30px 18px 30px;
  }
}

.about__chart_footer_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.about__chart__title {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 0 0 16px 0;
}

@media (max-width: 991px) {
  .about__chart__title {
    margin: 0 0 20px 0;
  }
}

.progression {
  padding: 80px 0 65px 0;
}

@media (max-width: 991px) {
  .progression {
    padding: 50px 0 50px 0;
  }
}

.progression__content {
  margin: 35px 0 40px 0;
}

@media (max-width: 991px) {
  .progression__content {
    flex-direction: column;
    margin: 46px 0 50px 0;
  }
}

.progression__title {
  font-size: 26px;
  line-height: 138.4615384615%;
  margin-bottom: 30px;
}

.progression__title sup {
  top: -0.5em;
  font-size: 0.65em;
}

.progression__subtitle {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}

.progression__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.progression__content_item {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 3fr;
  gap: 22px;
}

@media (max-width: 991px) {
  .progression__content_item {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-items: center;
  }
}

.progression__box {
  width: 114px;
  height: 114px;
  background-color: var(--white);
  border: solid 5px var(--wine);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.progression__box img {
  width: 72.5px;
}

.progression__box_top {
  font-size: 35px;
  line-height: 1;
}

.progression__box_top span {
  font-size: 19px;
  line-height: 1;
}

.progression__box_bottom {
  font-size: 14px;
  line-height: 1;
}

.progression__content_text {
  font-size: 18px;
  line-height: 155.5555555556%;
  flex: 1;
}

@media (max-width: 991px) {
  .progression__content_text {
    text-align: center;
  }
}

.progression__disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
}

.testing {
  padding: 75px 0 80px 0;
  background-image: url(./../img/testing_bg.png);
  background-size: 593px;
  background-repeat: no-repeat;
  background-position: bottom left;
}

@media (max-width: 991px) {
  .testing {
    padding: 50px 0 40px 0;
  }
}

.testing__title {
  font-size: 26px;
  line-height: 138.4615384615%;
}

@media (max-width: 991px) {
  .testing__title {
    width: 100.4%;
  }
}

.testing__subtitle {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 40px auto 47px auto;
  max-width: 708px;
  width: 100%;
}

@media (max-width: 991px) {
  .testing__subtitle {
    margin: 28px 0 30px 0;
    padding: 0 10px;
  }
}

.about__list_item::marker {
  color: var(--magenta);
}

.testing__list {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 43px;
  row-gap: 0;
  align-items: center;
}

@media (max-width: 991px) {
  .testing__list {
    grid-template-columns: 1fr;
    column-gap: revert;
    row-gap: 25px;
  }
}

.testing_list_yellow {
  font-size: 18px;
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  padding: 20px 27px;
  line-height: 155.5555555556%;
  border-radius: 20px;
  align-self: start;
  max-width: 428px;
}

@media (max-width: 991px) {
  .testing_list_yellow {
    max-width: revert;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    text-align: center;
    padding: 27px 32px;
  }
}

.testing__list_item::marker {
  color: var(--magenta);
}

.testing__list_item_1.testing__list_item_1 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  max-width: 625px;
  position: relative;
  top: 10px;
}

@media (max-width: 991px) {
  .testing__list_item_1.testing__list_item_1 {
    top: revert;
    max-width: 100%;
  }
}

.testing__list_item_2 {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  max-width: 612px;
}

@media (max-width: 991px) {
  .testing__list_item_2 {
    max-width: 100%;
  }
}

.testing__list_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.testing__disclaimer {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 0 auto 58px auto;
  max-width: 682px;
  width: 100%;
}

@media (max-width: 991px) {
  .testing__disclaimer {
    max-width: 100%;
  }
}

.testing__icon {
  margin: 32px auto 23px auto;
  display: block;
}

@media (max-width: 991px) {
  .testing__icon {
    margin: 30px auto 30px auto;
  }
}

.testing__blocks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 23px;
}

@media (max-width: 991px) {
  .testing__blocks {
    flex-direction: column;
    gap: 58px;
  }
}

.testing__block {
  border-radius: 20px;
  max-width: 350px;
  width: 100%;
  min-height: 132px;
  border: solid 6px var(--yellow);
  display: grid;
  place-items: center;
}

.testing__block_text {
  font-size: 40px;
  line-height: 55%;
}

.testing__block_text::before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(./../img/icon_bullseye.svg);
  background-size: cover;
  background-repeat: no-repeat;
  left: 50%;
  top: -3px;
  transform: translate(-50%, -50%);
}

.highlight {
  padding: 80px 0 44px 0;
}

@media (max-width: 991px) {
  .highlight {
    padding: 37px 0 50px 0;
  }
}

.highlight__logo {
  margin: 0 auto 0 auto;
  display: block;
}

.highlight__text_wrapper {
  padding: 46px 104px 41px 104px;
  border-radius: 40px 0 40px 0;
  margin: 42px 0 0 0;
  display: grid;
  place-items: center;
}

@media (max-width: 991px) {
  .highlight__text_wrapper {
    margin: 38px 0 0 0;
    padding: 41px 21px 41px 21px;
  }
}

.highlight__text {
  max-width: 510px;
  font-size: 18px;
  line-height: 138.4615384615%;
}

.reliance__table_info_text:not(.reliance__table_info_text_new) b {
  position: relative;
}

.reliance__table_info_text b::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -14px;
  top: -3px;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

@media (max-width: 991px) {
  .reliance__table_info_text b::before {
    top: -2px;
  }
}

.reliance {
  padding: 80px 0 80px 0;
}

@media (max-width: 991px) {
  .reliance {
    padding: 50px 0 70px 0;
  }
}

.reliance__title {
  font-size: 26px;
  line-height: 115.3846153846%;
}

.reliance__point {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 37px 0 30px 0;
  text-align: center;
}

@media (max-width: 991px) {
  .reliance__point {
    margin: 26px 0 30px 0;
  }
}

.reliance__subtitle_wrapper {
  max-width: 731px;
  margin: 0 auto;
}

.reliance__subtitle {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 0 0 20px 0;
  text-align: center;
}

@media (max-width: 991px) {
  .reliance__subtitle {
    text-align: revert;
    max-width: revert;
    margin: 0 0 25px 0;
    width: 101%;
  }
}

.reliance__disclaimer_wrapper {
  border-radius: 40px 0 40px 0;
  display: grid;
  place-items: center;
  padding: 16px 50px;
  max-width: 911px;
  margin: 40px auto 0 auto;
}

@media (max-width: 991px) {
  .reliance__disclaimer_wrapper {
    padding: 23px 13px 21px 13px;
    margin: 42px auto 0 auto;
  }
}

.reliance__disclaimer {
  font-size: 18px;
  line-height: 122.2222222222%;
}

@media (max-width: 991px) {
  .reliance__disclaimer {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .reliance__disclaimer:last-of-type {
    margin: 15px 0 0 0;
  }
}

.reliance ul {
  list-style-position: outside;
  padding-left: 18px;
  margin-left: 0;
  list-style-type: none;
}

@media (max-width: 991px) {
  .reliance ul {
    padding-left: 0;
  }
}

.reliance__table_top {
  min-height: 40px;
  display: grid;
  place-items: center;
}

@media (max-width: 991px) {
  .reliance__table_top {
    min-height: 80px;
  }
}

.reliance__table_info_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .reliance__table_info_text {
    font-size: 14px;
    line-height: 142.8571428571%;
    display: block;
    text-align: center;
  }
}

.reliance__table_info_text.reliance__table_info_text_new {
  font-size: 16px;
  max-width: 225px;
}

@media (max-width: 991px) {
  .reliance__table_info_text.reliance__table_info_text_new {
    max-width: 100%;
  }
}

.reliance__table_info_text:nth-of-type(1) {
  margin: 0 0 14px 0;
  padding: 11px 0 0 17px;
}

@media (max-width: 991px) {
  .reliance__table_info_text:nth-of-type(1) {
    padding: 30px 15px 20px 15px;
    margin: 0 auto 0 auto;
  }
}

.reliance__table_info_text:nth-of-type(2) {
  margin: 0 0 13px 0;
  padding: 0 0 0 33px;
}

@media (max-width: 991px) {
  .reliance__table_info_text:nth-of-type(2) {
    padding: 0 15px 0 15px;
    margin: 0 auto 0 auto;
  }
}

.reliance__table_info_text:nth-of-type(3) {
  margin: 0 0 15px 0;
  padding: 0 0 0 33px;
}

@media (max-width: 991px) {
  .reliance__table_info_text:nth-of-type(3) {
    padding: 20px 15px 0 15px;
    margin: 0 auto 0 auto;
  }
}

.reliance__table_info_text:nth-of-type(4) {
  padding: 0 0 0 33px;
}

@media (max-width: 991px) {
  .reliance__table_info_text:nth-of-type(4) {
    padding: 20px 15px 30px 15px;
    margin: 0 auto 0 auto;
  }
}

@media (max-width: 991px) {
  .reliance__table_info_text_3 {
    max-width: 263px;
  }
}

.reliance__table_data_text {
  font-size: 18px;
  line-height: 155.5555555556%;
  min-height: 56px;
  display: grid;
  place-items: center;
}

@media (max-width: 991px) {
  .reliance__table_data_text {
    font-size: 14px;
    line-height: 171.4285714286%;
    min-height: 53px;
  }
}

.reliance__table_data_text:last-of-type {
  min-height: 56px;
}

@media (max-width: 991px) {
  .reliance__table_data_text:last-of-type {
    min-height: 51px;
  }
}

.reliance__table_data_text:not(:last-of-type) {
  border-bottom: solid 4px white;
}

@media (max-width: 991px) {
  .reliance__table_data_text:not(:last-of-type) {
    border-bottom: solid 2px white;
  }
}

.reliance__table_title {
  font-size: 18px;
  line-height: 122.2222222222%;
}

@media (max-width: 991px) {
  .reliance__table_title {
    font-size: 16px;
    line-height: 137.5%;
  }
}

.reliance__table {
  display: grid;
  grid-template-columns: 318px 318px;
  justify-content: center;
  width: 100%;
  max-width: 636px;
  margin: 0 auto 0 auto;
  border-radius: 10px 10px 0 0;
}

@media (max-width: 991px) {
  .reliance__table {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content max-content;
  }
}

.reliance__table_titles {
  max-width: 271px;
  width: 100%;
}

@media (max-width: 991px) {
  .reliance__table_titles {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    max-width: revert;
  }
}

@media (max-width: 991px) {
  .reliance__table_data_1 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
}

@media (max-width: 991px) {
  .reliance__table_data_2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}

.reliance__table_data {
  max-width: 318px;
  width: 100%;
  min-height: 304px;
}

@media (max-width: 991px) {
  .reliance__table_data {
    max-width: revert;
    min-height: revert;
  }
}

.reliance__table_top_1 {
  border-radius: 4px 0 0 4px;
}

@media (max-width: 991px) {
  .reliance__table_top_1 {
    border-radius: 0 0 0 0;
  }
}

.reliance__table_top_2 {
  border-radius: 4px 0 0 0;
}

.reliance__table_top_3 {
  border-radius: 0 4px 0 0;
}

@media (max-width: 991px) {
  .reliance__table_top_3 {
    border-radius: 0 0 0 0;
  }
}

.reliance__table_data_1 .reliance__table_title::before {
  content: "";
  height: 100%;
  width: 1px;
  border-left: dotted 1px var(--white);
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

@media (max-width: 991px) {
  .reliance__table_data_1 .reliance__table_title::before {
    display: none;
  }
}

.reliance__table_data_1 .reliance__table_title::after {
  content: "";
  height: 100%;
  width: 1px;
  border-left: dotted 1px var(--white);
  position: absolute;
  right: 0;
  top: 0;
}

.reliance__table_data_1 .reliance__table_data_text_1::before {
  content: "";
  height: 100%;
  width: 1px;
  border-left: dotted 1px var(--gray_6);
  position: absolute;
  left: 0;
  top: 0;
  display: none;
}

@media (max-width: 991px) {
  .reliance__table_data_1 .reliance__table_data_text_1::before {
    display: none;
  }
}

.reliance__table_data_1 .reliance__table_data_text_1::after {
  content: "";
  height: 100%;
  width: 1px;
  border-left: dotted 1px var(--gray_6);
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 575px) {
  .reliance .container-table .col-12 {
    padding: 0 0 0 0;
  }
}

.download {
  padding: 80px 0 80px 0;
}

@media (max-width: 991px) {
  .download {
    padding: 50px 0 50px 0;
  }
}

.download__title {
  font-size: 26px;
  line-height: 115.3846153846%;
}

.download__subtitle {
  font-size: 20px;
  line-height: 150%;
  margin: 84px 0 6px 0;
}

@media (max-width: 991px) {
  .download__subtitle {
    margin: 73px 0 20px 0;
  }
}

.download__subtitle.download__subtitle_0 {
  margin: 36px 0 26px 0;
}

@media (max-width: 991px) {
  .download__subtitle.download__subtitle_0 {
    margin: 27px 0 26px 0;
  }
}

.download__subtitle.download__subtitle_2 {
  margin: 60px 0 14px 0;
}

@media (max-width: 991px) {
  .download__subtitle.download__subtitle_2 {
    margin: 49px 0 3px 0;
  }
}

.download__text {
  font-size: 18px;
}

@media (max-width: 991px) {
  .download__text_special_1 {
    width: 102%;
  }
}

@media (min-width: 992px) {
  .download__text_special_2 {
    width: 102%;
  }
}

.download__blocks {
  display: grid;
  grid-auto-flow: column;
  column-gap: 20px;
  justify-content: center;
}

@media (max-width: 991px) {
  .download__blocks {
    grid-template-columns: auto auto;
    grid-auto-flow: row;
    row-gap: 20px;
    column-gap: 19px;
  }
}

@media (max-width: 374px) {
  .download__blocks {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.download__block {
  display: grid;
  grid-template-columns: 184px;
  grid-template-rows: 189px max-content;
  align-items: end;
  row-gap: 10px;
  color: var(--gray_1);
}

.download__block:hover,
.download__block:active {
  color: var(--gray_1);
}

@media (max-width: 991px) {
  .download__block {
    grid-template-columns: 160px;
  }
}

.download_info__text_wrapper {
  max-width: 724px;
  padding: 34px 35px 32px 35px;
  border-radius: 40px 0 40px 0;
  margin: 0 auto 0 auto;
  display: grid;
  place-items: center;
}

@media (max-width: 991px) {
  .download_info__text_wrapper {
    margin: 0 auto 0 auto;
    padding: 37px 12px 34px 12px;
  }
}

.download_info__text {
  max-width: 519px;
  font-size: 18px;
  line-height: 122.2222222222%;
}

.download_info__text sup {
  font-size: 10px;
  top: -0.7em;
}

@media (min-width: 402px) and (max-width: 509px) {
  .download_info__text .special_br {
    display: none;
  }
}

@media (min-width: 510px) {
  .download_info__text .special_br {
    display: block;
  }
}

@media (min-width: 402px) and (max-width: 509px) {
  .download_info__text .special_br_2 {
    display: none;
  }
}

@media (min-width: 510px) {
  .download_info__text .special_br_2 {
    display: none;
  }
}

.download_info__text a {
  color: var(--green_2);
}

.precautions_list_item {
  padding: 0 0 0 15px;
  position: relative;
}

.precautions_list_item .precautions_list_item_text::before {
  content: "•";
  color: var(--magenta);
  margin-right: 8px;
  font-size: 20px;
  font-family: var(--kallisto);
  position: absolute;
  left: 0;
  top: -2px;
}

@media (min-width: 992px) {
  .precautions_list_item_text_special {
    width: 100.6%;
  }
}

@media (min-width: 992px) {
  .precautions_list_item_text_special_0 {
    width: 103.9%;
  }
}

.precautions_list_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 0 0 14px 0;
}

.precautions {
  padding: 80px 0 0 0;
}

@media (max-width: 991px) {
  .precautions {
    padding: 50px 0 50px 0;
  }
}

.precautions__title {
  font-size: 26px;
  line-height: 115.3846153846%;
}

.precautions__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .precautions__top {
    flex-direction: column;
    gap: 0;
  }
}

@media (min-width: 992px) {
  .precautions__icon {
    margin: 0 -27px 0 -40px;
  }
}

.precautions__top_text {
  font-size: 20px;
  line-height: 160%;
}

@media (min-width: 992px) {
  .precautions__top_text {
    margin: -60px 0 0 0;
  }
}

@media (max-width: 991px) {
  .precautions__top_text {
    margin: -24px 20px 30px 20px;
  }
}

.precautions__content {
  display: grid;
  grid-template-columns: 550px 480px;
  column-gap: 60px;
  margin: 40px 0 0 0;
}

@media (max-width: 1199px) {
  .precautions__content {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
}

@media (max-width: 991px) {
  .precautions__content {
    grid-template-columns: 1fr;
    row-gap: 30px;
    margin: 26px 0 0 0;
  }
}

.precautions__text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.precautions__text a {
  color: var(--green);
}

.precautions__text_1 {
  max-width: revert;
  width: 100.2%;
}

@media (max-width: 991px) {
  .precautions__text_1 {
    max-width: revert;
    width: 101.2%;
  }
}

.precautions__text_2 {
  max-width: 100%;
}

.precautions__text_3 {
  max-width: 100%;
}

.precautions__text_4 {
  max-width: 100%;
}

.precautions__text_5 {
  max-width: 501px;
}

@media (max-width: 991px) {
  .precautions__text_6 {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .precautions__text_7 {
    width: 100.4%;
  }
}

@media (max-width: 991px) {
  .precautions__text_8 {
    width: 101.3%;
  }
}

@media (max-width: 991px) {
  .precautions__text_9 {
    width: 100.8%;
  }
}

@media (max-width: 991px) {
  .precautions__bottom {
    width: 101.3%;
  }
}

.precautions__bottom>.precautions__text:not(:last-of-type) {
  margin: 0 0 20px 0;
}

@media (max-width: 991px) {
  .precautions__bottom>.precautions__text:not(:last-of-type) {
    margin: 0 0 20px 0;
  }
}

@media (max-width: 767px) {
  .precautions_list_items_1 {
    width: 95.2%;
  }
}

.precautions__list {
  list-style: "*";
  font-size: 14px;
  color: var(--gray_1);
  font-weight: 500;
}

.precautions__list .precautions__text {
  font-size: 14px;
  line-height: 128.5714285714%;
}

.precautions__left {
  border-right: solid 1px var(--yellow);
  padding: 0 22px 0 0;
}

.precautions__left.no-border-right {
  border-right: none;
}

@media (max-width: 991px) {
  .precautions__left {
    border-right: revert;
    /* border-bottom: solid 1px var(--yellow); */
    /* padding: 0 0 30px 0; */
  }
}

.remission {
  padding: 80px 0 80px 0;
}

@media (max-width: 991px) {
  .remission {
    padding: 50px 0 50px 0;
  }
}

.remission__disclaimer_list_item {
  list-style: "*";
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  list-style-position: outside;
}

.remission__disclaimer_list_item.remission__disclaimer_list_item_2 {
  list-style: "";
}

.remission__disclaimer_list_item:not(:last-of-type) {
  margin: 0 0 17px 0;
}

.remission__disclaimer_text {
  font-size: 14px;
  line-height: 128.5714285714%;
  color: var(--white);
}

.remission__title {
  font-size: 26px;
  line-height: 115.3846153846%;
  margin: 0 0 42px 0;
}

.remission__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 0 0 40px 0;
}

@media (max-width: 991px) {
  .remission__content {
    flex-direction: column;
  }
}

.remission__box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 127px;
  max-width: 155px;
  width: 100%;
  border: solid 5px var(--yellow);
  border-radius: 12px;
}

.remission__box_text_top {
  font-size: 26px;
  line-height: 123.0769230769%;
  margin: 0 0 5px 0;
}

@media (max-width: 991px) {
  .remission__box_text_top {
    text-align: center;
  }
}

.remission__box_text_bottom {
  font-size: 16px;
  line-height: 125%;
}

@media (max-width: 991px) {
  .remission__box_text_bottom {
    text-align: center;
  }
}

.remission__top_text_large {
  font-size: 60px;
}

.remission__top_text_small {
  font-size: 30px;
  position: relative;
  top: 10px;
}

.first {
  background-image: url(../img/bg_first.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  background-color: var(--yellow);
  padding: 94px 0 93px 0;
}

@media (max-width: 991px) {
  .first {
    background-image: url(../img/bg_first_mobile.png);
    background-repeat: no-repeat;
    background-position: top center;
    padding: 100px 0 50px 0;
  }
}

.first__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.first__title {
  max-width: 763px;
  font-size: 26px;
  line-height: 138.4615384615%;
}

.syndrome {
  padding: 80px 0 80px 0;
}

@media (max-width: 991px) {
  .syndrome {
    padding: 30px 0 50px 0;
  }
}

.syndrome__title {
  font-size: 26px;
  line-height: 115.3846153846%;
  max-width: 625px;
  margin: 0 auto 40px auto;
}

.syndrome__subtitle {
  font-size: 20px;
  line-height: 180%;
  margin: 36px auto 36px auto;
  max-width: 851px;
}

.syndrome__info_text {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 0 0 14px 0;
}

@media (max-width: 991px) {
  .syndrome__info_list_items .syndrome__info_text {
    width: 104.6%;
  }
}

.syndrome__info_list_item {
  padding: 0 0 0 15px;
  position: relative;
}

@media (min-width: 992px) {
  .syndrome__info_list_item_1 .syndrome__info_text {
    width: 100.4%;
  }
}

.syndrome__info_list_item .syndrome__info_text::before {
  content: "•";
  color: var(--magenta);
  margin-right: 8px;
  font-size: 20px;
  font-family: var(--kallisto);
  position: absolute;
  left: 0;
  top: 0;
}

.syndrome__info {
  display: grid;
  grid-template-columns: 533px 545px;
  grid-template-rows: 1fr;
}

@media (max-width: 1199px) {
  .syndrome__info {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .syndrome__info {
    grid-template-columns: 1fr;
  }
}

.syndrome__info_left {
  padding: 0 8px 0 0;
  border-right: solid 1px var(--yellow);
}

@media (max-width: 991px) {
  .syndrome__info_left {
    border-right: none;
    border-bottom: solid 1px var(--yellow);
    padding: 0 8px 30px 0;
    margin: 0 0 27px 0;
  }
}

.syndrome__info_right {
  padding: 0 0 0 23px;
}

@media (max-width: 991px) {
  .syndrome__info_right {
    padding: 0 0 0 0;
  }
}

.syndrome__advise {
  border-radius: 40px 0 40px 0;
  padding: 30px 38px 30px 38px;
  margin: 0 0 0 0;
}

@media (max-width: 991px) {
  .syndrome__advise {
    margin: 15px 0 0 0;
    padding: 30px 20px;
  }
}

.syndrome__advise_text {
  font-size: 18px;
  line-height: 122.2222222222%;
}

.syndrome__info_lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

@media (max-width: 991px) {
  .syndrome__info_lists {
    grid-template-columns: 1fr;
  }
}

.syndrome__info_left .syndrome__info_list_1 {
  margin: 0 0 40px 0;
}

@media (max-width: 991px) {
  .syndrome__info_left .syndrome__info_list_1 {
    margin-bottom: 0;
  }
}

.syndrome__info_left .syndrome__info_list_1 p {
  max-width: 412px;
}

.syndrome__info_right .syndrome__info_list_1 {
  margin: 0 0 21px 0;
}

@media (max-width: 991px) {
  .syndrome__info_right .syndrome__info_list_1 {
    margin: 0 0 0 0;
  }
}

.syndrome__card_outertitle {
  padding: 40px 0 35px 0;
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .syndrome__card_outertitle {
    padding: 30px 0 30px 0;
  }
}

.syndrome .generic_button {
  max-width: 330px;
  margin: 0 auto 40px auto;
}

.syndrome .generic_button .generic_button_text::before {
  content: "";
  width: 27px;
  height: 27px;
  background-image: url(./../img/icon_download_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.syndrome .generic_button:hover .generic_button_text::before,
.syndrome .generic_button:active .generic_button_text::before {
  background-image: url(./../img/icon_download_wine.svg);
}

@media (max-width: 991px) {
  .syndrome .generic_button {
    margin: 0 auto 50px auto;
  }
}

.syndrome__block {
  padding: 40px 60px 40px 51.5px;
  border-radius: 40px 0 40px 0;
}

@media (max-width: 991px) {
  .syndrome__block {
    padding: 30px 15px 10px 17px;
  }
}

.syndrome__info_list_2 .syndrome__info_list_item_3 .syndrome__info_text {
  margin: 0 0 0 0;
}

.syndrome__bottom_disclaimer_title {
  font-size: 14px;
  line-height: 128.5714285714%;
  margin: 29px 0 0 0;
}

.syndrome__block_subtitle {
  font-size: 20px;
  line-height: 180%;
  margin: 35px 0 13px 0;
}

@media (max-width: 991px) {
  .syndrome__block_subtitle {
    margin: 20px 0 13px 0;
  }
}

.syndrome__block_text {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 0 0 13px 0;
}

@media (max-width: 991px) {
  .syndrome__block_text_2 {
    margin: 40px 0 20px 0;
    padding: 0 1px 0 0;
  }
}

@media (min-width: 992px) {
  .syndrome__block_text_4 {
    width: 100.3%;
  }
}

.syndrome_card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .syndrome_card {
    flex-direction: column;
    gap: 0;
  }
}

.syndrome__card_img {
  margin: 0 -27px 0 -40px;
}

@media (min-width: 992px) {
  .syndrome_card_texts {
    margin: -60px 0 0 0;
  }
}

@media (max-width: 991px) {
  .syndrome_card_texts {
    align-self: flex-start;
  }
}

.syndrome__card_title {
  font-size: 20px;
  line-height: 180%;
}

@media (max-width: 991px) {
  .syndrome__card_title {
    margin: -20px 0 0 0;
  }
}

.syndrome__card_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .syndrome__card_text_2 {
    width: 102.7%;
  }
}

.syndrome__cards {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 10px;
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .syndrome__cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .syndrome__cards {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.main_safety .reactions {
  padding: 80px 0 0 0;
}

@media (max-width: 991px) {
  .main_safety .reactions {
    padding: 50px 0 0 0;
  }
}

.reactions_title {
  font-size: 26px;
  line-height: 115.3846153846%;
}

.reactions_top_list_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.reactions__subtitle {
  font-size: 20px;
  line-height: 160%;
  margin: 40px auto 40px auto;
  max-width: 745px;
}

@media (max-width: 991px) {
  .reactions__subtitle {
    margin: 25px 0 25px 0;
    width: 97.8%;
  }
}

.reactions__disclaimer_text {
  font-size: 14px;
}

.reactions_tables_title_wrapper {
  padding: 8px 16px;
  border-radius: 4px;
  padding: 8px 0;
  margin: 0 0 4px 0;
}

.reactions_tables_title {
  font-size: 20px;
  line-height: 160%;
  max-width: 815px;
  margin: 0 auto 0 auto;
}

@media (max-width: 991px) {
  .reactions_tables_title {
    font-size: 16px;
  }
}

.reactions_top_list {
  margin: 0 0 37px 0;
  display: grid;
  grid-template-columns: 519px 538px;
  column-gap: 40px;
}

@media (max-width: 1199px) {
  .reactions_top_list {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
}

@media (max-width: 991px) {
  .reactions_top_list {
    grid-template-columns: 1fr;
    column-gap: revert;
    row-gap: 0;
  }
}

.reactions_disclaimer {
  margin: 20px 0 0 0;
}

@media (max-width: 991px) {
  .reactions_disclaimer {
    margin: 17px 0 0 0;
  }
}

.reactions__disclaimer_text_0 {
  margin: 0 0 10px 0;
}

@media (max-width: 991px) {
  .rate__brick_info_4_tooltip .reactions__disclaimer_text_0 {
    margin: 0 0 0 0;
    padding: 0 36px 6px 0;
  }
}

@media (max-width: 991px) {
  .rate__brick_info_4_tooltip .reactions__disclaimer_text_1 {
    margin: 0 0 0 0;
    padding: 0 36px 6px 0;
  }
}

@media (max-width: 991px) {
  .rate__brick_info_4_tooltip .reactions__disclaimer_text_2 {
    margin: 0 0 0 0;
    padding: 0 36px 6px 0;
  }
}

@media (max-width: 991px) {
  .rate__brick_info_4_tooltip .reactions__disclaimer_text_3 {
    margin: 0 0 0 0;
    padding: 0 36px 6px 0;
  }
}

@media (max-width: 991px) {
  .rate__brick_info_4_tooltip .reactions__disclaimer_text_4 {
    margin: 0 0 0 0;
    padding: 0 36px 6px 0;
  }
}

@media (max-width: 991px) {
  .rate__brick_info_4_tooltip .reactions__disclaimer_text_5 {
    margin: 0 0 0 0;
    padding: 0 36px 6px 0;
  }
}

@media (max-width: 991px) {
  .rate__brick_info_4_tooltip .reactions__disclaimer_text_6 {
    margin: 0 0 0 0;
    padding: 0 39px 6px 0;
  }
}

@media (max-width: 991px) {
  .rate__brick_info_4_tooltip .reactions__disclaimer_text_7 {
    margin: 0 0 0 0;
    padding: 0 39px 6px 0;
  }
}

@media (max-width: 991px) {
  .rate__brick_info_4_tooltip .reactions__disclaimer_text_8 {
    margin: 0 0 0 0;
    padding: 0 36px 6px 0;
  }
}

@media (max-width: 991px) {
  .rate__brick_info_4_tooltip .reactions__disclaimer_text_9 {
    margin: 0 0 0 0;
    padding: 0 36px 0 0;
  }
}

.reactions_top_list_item {
  padding: 0 0 0 12px;
  position: relative;
}

@media (max-width: 991px) {
  .reactions_top_list_item {
    margin: 0 0 5px 0;
  }
}

.reactions_top_list_item .reactions_top_list_text::before {
  content: "•";
  color: var(--magenta);
  font-family: var(--kallisto);
  margin-right: 8px;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
}

.reactions_disclaimer_list {
  max-width: 1023px;
}

.rate__brick_info_4_tooltip .reactions_disclaimer_list {
  max-width: 1326px;
}

.reactions_disclaimer_list_item {
  padding: 0 0 0 0;
  position: relative;
}

.reactions_disclaimer_list_item .reactions__disclaimer_text::before {
  color: var(--gray_1);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -6px;
  top: -1px;
  width: 5px;
  text-align: right;
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_0.reactions__disclaimer_text_0_0::before {
  content: "*";
  font-size: 14px;
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_0::before {
  content: "a";
  font-size: 9px;
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_1::before {
  content: "b";
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_2::before {
  content: "c";
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_3::before {
  content: "d";
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_4::before {
  content: "e";
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_5::before {
  content: "f";
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_6::before {
  content: "g";
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_7::before {
  content: "h";
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_8::before {
  content: "i";
}

.reactions_disclaimer_list_item .reactions__disclaimer_text_9::before {
  content: "j";
}

@media (max-width: 991px) {
  .reactions__disclaimer_text_0_0 {
    width: 96.7%;
  }
}

.reaction_tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

@media (max-width: 991px) {
  .reaction_tables {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }
}

.reactions_table_grid.reactions_table_header,
.reactions_table_grid.reactions_table_body {
  display: grid;
  grid-template-columns: 0.5fr 0.25fr 0.25fr;
  grid-template-rows: 1fr;
  align-items: center;
}

@media (max-width: 991px) {

  .reactions_table_grid.reactions_table_header,
  .reactions_table_grid.reactions_table_body {
    grid-template-columns: 0.45fr 0.3fr 0.25fr;
  }
}

.main_safety #faqAccordion .reactions_table_grid.reactions_table_header {
  display: grid;
  grid-template-columns: 0.5fr 0.25fr 0.25fr;
  grid-template-rows: 1fr;
  align-items: start;
}

@media (max-width: 991px) {
  .main_safety #faqAccordion .reactions_table_grid.reactions_table_header {
    grid-template-columns: 0.44fr 0.3fr 0.26fr;
  }
}

.main_safety #faqAccordion .reactions_table_grid.reactions_table_body {
  display: grid;
  grid-template-columns: 0.5fr 0.25fr 0.25fr;
  grid-template-rows: 1fr;
  align-items: start;
}

@media (max-width: 991px) {
  .main_safety #faqAccordion .reactions_table_grid.reactions_table_body {
    grid-template-columns: 0.44fr 0.3fr 0.26fr;
    align-items: center;
  }
}

.main_safety .reactions .reactions_table_grid.reactions_table_header {
  display: grid;
  grid-template-columns: 0.45fr 0.25fr 0.3fr;
  grid-template-rows: 1fr;
  align-items: end;
}

@media (max-width: 991px) {
  .main_safety .reactions .reactions_table_grid.reactions_table_header {
    grid-template-columns: 142px 1fr 1fr;
  }
}

.main_safety .reactions .reactions_table_grid.reactions_table_body {
  display: grid;
  grid-template-columns: 0.45fr 0.25fr 0.3fr;
  grid-template-rows: 1fr;
  align-items: center;
}

@media (max-width: 991px) {
  .main_safety .reactions .reactions_table_grid.reactions_table_body {
    grid-template-columns: 142px 1fr 1fr;
    align-items: center;
  }
}

.reactions_table_header {
  padding: 4px 0 4px 20px;
}

@media (max-width: 991px) {
  .reactions_table_header {
    padding: 5px 15px 5px 20px;
  }
}

.main_safety .reactions_table_header {
  padding: 18px 0 18px 20px;
}

@media (max-width: 991px) {
  .main_safety .reactions_table_header {
    padding: 10px 10px 10px 20px;
  }
}

.main_safety .reactions .reactions_table_header {
  padding: 18px 10px 18px 20px;
}

@media (max-width: 991px) {
  .main_safety .reactions .reactions_table_header {
    padding: 10px 10px 10px 20px;
  }
}

.reactions_table_title {
  padding: 7px 0 6px 20px;
}

@media (max-width: 991px) {
  .reactions_table_title {
    padding: 9px 15px 10px 20px;
  }
}

@media (max-width: 991px) {
  .reactions_table_title_special.reactions_table_title .reactions_table_text {
    width: 98%;
  }
}

.reactions_table_body {
  padding: 5px 0 5px 20px;
}

@media (max-width: 991px) {
  .reactions_table_body {
    padding: 8px 15px 8px 20px;
  }
}

.main_safety .reactions_table_body {
  padding: 5px 0 5px 20px;
}

@media (max-width: 991px) {
  .main_safety .reactions_table_body {
    padding: 8px 10px 8px 20px;
  }
}

.main_safety .reactions .reactions_table_body {
  padding: 5px 10px 5px 20px;
}

@media (max-width: 991px) {
  .main_safety .reactions .reactions_table_body {
    padding: 8px 10px 8px 20px;
  }
}

.reactions_table_grid.reactions_table_header {
  border-radius: 4px;
}

@media (max-width: 991px) {
  .reactions_table_grid.reactions_table_header {
    border-radius: 0;
  }
}

.reactions_table_body {
  border-bottom: solid 3px var(--white);
}

.reactions_table_body:last-of-type {
  border-bottom: none;
}

.reactions_table_header .reactions_table_text {
  font-size: 20px;
  line-height: 160%;
}

@media (max-width: 991px) {
  .reactions_table_header .reactions_table_text {
    font-size: 16px;
  }
}

.main_safety .reactions_table_header .reactions_table_text {
  font-size: 20px;
  line-height: 110%;
}

@media (max-width: 991px) {
  .main_safety .reactions_table_header .reactions_table_text {
    font-size: 18px;
    line-height: 120%;
  }
}

.reactions_table_title .reactions_table_text,
.reactions_table_body .reactions_table_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {

  .reactions_table_title .reactions_table_text,
  .reactions_table_body .reactions_table_text {
    font-size: 14px;
  }
}

.main_safety .reactions_table_title .reactions_table_text,
.main_safety .reactions_table_body .reactions_table_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {

  .main_safety .reactions_table_title .reactions_table_text,
  .main_safety .reactions_table_body .reactions_table_text {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

@media (max-width: 355px) {

  .main_safety .reactions_table_title .reactions_table_text,
  .main_safety .reactions_table_body .reactions_table_text {
    font-size: 14px;
  }
}

.main_safety .reactions .reactions_table_title .reactions_table_text,
.main_safety .reactions .reactions_table_body .reactions_table_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {

  .main_safety .reactions .reactions_table_title .reactions_table_text,
  .main_safety .reactions .reactions_table_body .reactions_table_text {
    font-size: 16px;
  }
}

@media (max-width: 355px) {

  .main_safety .reactions .reactions_table_title .reactions_table_text,
  .main_safety .reactions .reactions_table_body .reactions_table_text {
    font-size: 14px;
  }
}

.main_safety .reactions .reactions_table_title .reactions_table_text.special,
.main_safety .reactions .reactions_table_body .reactions_table_text.special {
  line-height: 138%;
}

.reactions_table_title .reactions_table_text.reactions_table_text_short,
.reactions_table_body .reactions_table_text.reactions_table_text_short {
  line-height: 138%;
}

@media (min-width: 992px) {
  .reactions_table_body .reactions_table_text.reactions_table_text_special {
    width: 117%;
  }
}

@media (max-width: 991px) {
  .reactions_table_body .reactions_table_text.reactions_table_text_special_mobile {
    width: 125%;
  }
}

@media (max-width: 350px) {
  .reactions_table_body .reactions_table_text.reactions_table_text_special_mobile {
    width: revert;
  }
}

.main_safety .reactions_table_grid.reactions_table_grid_d_lg_grid {
  display: none;
}

@media (min-width: 992px) {
  .main_safety .reactions_table_grid.reactions_table_grid_d_lg_grid {
    display: grid;
  }
}

.main_safety .reactions .reactions_table_grid.reactions_table_grid_d_lg_grid {
  display: none;
}

@media (min-width: 992px) {
  .main_safety .reactions .reactions_table_grid.reactions_table_grid_d_lg_grid {
    display: grid;
  }
}

@media (max-width: 991px) {
  .reactions_tables_right .reactions_table_header {
    display: none;
  }
}

@media (max-width: 991px) {
  .row.table-row>* {
    padding-left: 0;
    padding-right: 0;
  }
}

.rate {
  margin: 45px 0 80px 0;
}

.main_safety .rate {
  margin: 70px 0 80px 0;
}

@media (max-width: 991px) {
  .rate {
    margin: 45px 0 50px 0;
  }
}

.rate__block {
  margin: 30px auto 30px auto;
  max-width: 724px;
  padding: 19px 40px 19px 40px;
  border-radius: 40px 0 40px 0;
}

@media (max-width: 991px) {
  .rate__block {
    padding: 20px 9px 20px 9px;
  }
}

.rate__title {
  font-size: 26px;
  line-height: 138.4615384615%;
}

.rate__subtitle {
  font-size: 20px;
  line-height: 160%;
  margin: 4px 0 20px 0;
}

@media (max-width: 991px) {
  .rate__subtitle {
    margin: 20px 0 20px 0;
  }
}

.rate__block_text {
  font-size: 18px;
  line-height: 122.2222222222%;
}

.rate_top_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  margin: 0 0 30px 0;
}

.rate_top_disclaimer span::before {
  color: var(--gray_1);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -6px;
  top: -4px;
  content: "†";
}

.rate_bottom_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  margin: 20px 0 0 0;
}

.rate__bricks {
  display: flex;
  justify-content: space-between;
  max-width: 737px;
  margin: 0 auto 0 auto;
}

@media (max-width: 991px) {
  .rate__bricks {
    flex-direction: column;
    gap: 25px;
  }
}

.rate__brick {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.rate__brick_info {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: -20px 0 0 0;
}

@media (max-width: 991px) {
  .rate__brick_info {
    flex-direction: column;
  }
}

.reactions_footer_definitions_wrapper .rate__brick_info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin: 0 0 0 0;
}

@media (max-width: 991px) {
  .reactions_footer_definitions_wrapper .rate__brick_info {
    flex-direction: row;
  }
}

.reactions_footer_definitions_wrapper .tooltip_content {
  position: relative;
  top: 0px;
}

.rate__brick_info_1 {
  left: 20px;
}

@media (max-width: 991px) {
  .rate__brick_info_1 {
    left: 0;
  }
}

.rate__brick_info_2 {
  left: 20px;
}

@media (max-width: 991px) {
  .rate__brick_info_2 {
    left: 0;
  }
}

.rate__brick_info_3 {
  left: 20px;
}

@media (max-width: 991px) {
  .rate__brick_info_3 {
    left: 0;
  }
}

.rate__brick_info_4 {
  left: 0;
}

@media (max-width: 991px) {
  .rate__brick_info_4 {
    left: 0;
  }
}

.rate_brick_info_title {
  font-size: 18px;
  line-height: 20px;
}

.rate__brick_info_icon {
  cursor: pointer;
  height: 56px;
  width: 56px;
  background-image: url("../img/icon_more_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  top: 3px;
}

.rate__brick_info_icon.active {
  background-image: url("../img/icon_less_circle.svg");
}

.rate__brick_shape {
  width: 179px;
  height: 154px;
  background-image: url(../img/shape_brick.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.rate__brick_top {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
}

.rate__brick_number {
  font-size: 35px;
  line-height: 120%;
}

.rate__brick_percentage {
  font-size: 19px;
  line-height: 121.0526315789%;
  position: relative;
  top: -4px;
}

.tooltip_text {
  font-family: var(--montserrat);
  font-weight: 600;
  color: var(--gray_1);
}

.tooltip.show {
  opacity: 1;
}

.tooltip-arrow {
  width: 20px;
  height: 10px;
}

.tooltip-inner {
  background-color: #ffeff4;
  color: #fff;
  padding: 21px 21px 22px 26px;
  font-size: 16px;
  text-align: left;
  opacity: 1;
  border-radius: 40px;
}

@media (max-width: 991px) {
  .tooltip-inner {
    padding: 21px 21px 22px 21px;
  }
}

.tooltip-inner.rate__brick_info_1_tooltip {
  max-width: 380px;
}

.tooltip-inner.rate__brick_info_2_tooltip {
  max-width: 412px;
}

.tooltip-inner.rate__brick_info_3_tooltip {
  max-width: 384px;
}

.tooltip-inner.rate__brick_info_4_tooltip {
  max-width: 1326px;
  padding: 42px 66px 42px 66px;
}

@media (max-width: 991px) {
  .tooltip-inner.rate__brick_info_4_tooltip {
    padding: 28px 0 28px 26px;
  }
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #ffeff4;
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #ffeff4;
}

.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.bs-tooltip-left .tooltip-arrow::before {
  border-left-color: #ffeff4;
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.bs-tooltip-right .tooltip-arrow::before {
  border-right-color: #ffeff4;
}

.rate__faq {
  margin: 80px 0 0 0;
}

.main_safety .rate__faq {
  margin: 0;
}

.rate__content {
  max-width: 983px;
}

.rate__content.mb-40 {
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .rate__content {
    padding: 0 20px 0 20px;
  }
}

.rate__content_1 {
  display: grid;
  grid-template-columns: 0.48fr 0.52fr;
  grid-template-rows: max-content max-content max-content;
  column-gap: 23px;
}

@media (max-width: 991px) {
  .rate__content_1 {
    grid-template-columns: 1fr;
    grid-template-rows: revert;
    row-gap: 0;
  }
}

.rate__content_1 .content__left_title {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  font-size: 20px;
  line-height: 160%;
}

@media (max-width: 991px) {
  .rate__content_1 .content__left_title {
    text-align: center;
  }
}

.rate__content_1 .content__left_list {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  margin: 30px 0 30px 0;
}

@media (max-width: 991px) {
  .rate__content_1 .content__left_list {
    margin: 30px 0 20px 0;
  }
}

.rate__content_1 .content_list_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.rate__content_1 .content__left_list_item:not(:last-of-type) {
  margin: 0 0 20px 0;
}

.rate__content_1 .content__left_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  grid-row: 3 / 4;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .rate__content_1 .content__left_disclaimer {
    grid-row: 4 / 5;
    margin: 30px 0 0 0;
    width: 100.9%;
  }
}

.rate__content_1 .content__right_text {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 15px 0 0 0;
  grid-row: 1 / 4;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .rate__content_1 .content__right_text {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    margin: 0 0 0 0;
    width: 100.5%;
  }
}

.rate__content_1 .content__left_list_item {
  margin-left: 0;
  position: relative;
  padding-left: 12px;
}

.rate__content_1 .content__left_list_item .content_list_text::before {
  color: var(--magenta);
  margin-right: 0;
  position: absolute;
  left: -2px;
  top: -1px;
  content: "•";
  font-size: 20px;
  font-family: var(--kallisto);
}

.rate__content_2 .content__title {
  font-size: 20px;
  line-height: 160%;
  max-width: 1006px;
  margin: 0 0 30px 0;
}

@media (max-width: 991px) {
  .rate__content_2 .content__title {
    text-align: left;
  }
}

.rate__content_2 .content__disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  margin: 20px 0 0 0;
}

@media (max-width: 991px) {
  .rate__content_2 .content__disclaimer {
    margin: 0 0 0 0;
    margin: 30px 0 0 0;
  }
}

.rate__content_2 .content__disclaimer span::before {
  color: var(--gray_1);
  margin-right: 8px;
  font-size: 14px;
  position: absolute;
  left: -8px;
  top: 0px;
  content: "*";
}

@media (max-width: 991px) {
  .rate__content_2 .content__disclaimer span::before {
    left: 12px;
  }
}

.border_x::before,
.border_x::after {
  content: "";
  width: 1px;
  height: 1000px;
  position: absolute;
  border-left: dotted 1px #707070;
  top: -50px;
}

.border_x::before {
  left: 0;
}

.border_x::after {
  right: 0;
}

@media (max-width: 991px) {
  .main_safety .accordion-item_1 {
    margin: 0 20px;
  }
}

@media (max-width: 991px) {
  .main_safety .accordion-item_2 .accordion-header {
    margin: 0 20px;
  }
}

@media (max-width: 991px) {
  .main_safety .accordion-item_2 .content__disclaimer {
    padding: 0 20px;
  }
}

@media (max-width: 991px) {
  .mobile_risk_top::before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    top: -1px;
    left: 0;
  }
}

@media (max-width: 991px) {
  .mobile_risk_top::after {
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    top: -1px;
    right: 0;
  }
}

@media (max-width: 991px) {
  .mobile_risk_bottom::before {
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    bottom: -1px;
    left: 0;
  }
}

@media (max-width: 991px) {
  .mobile_risk_bottom::after {
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--white);
    position: absolute;
    bottom: -1px;
    right: 0;
  }
}

.main_safety .accordion .accordion-body {
  padding: 0 0 20px 0;
}

.dosing {
  padding: 80px 0 0 0;
}

@media (max-width: 991px) {
  .dosing {
    padding: 50px 0 0 0;
  }
}

.dosing_disclaimer_wrapper {
  margin: 33px auto 0 auto;
  position: relative;
  padding: 0 0 0 0;
  display: flex;
  justify-content: center;
  width: max-content;
}

@media (min-width: 992px) {
  .dosing_disclaimer_wrapper {
    padding: 0 0 0 6px;
  }
}

@media (max-width: 991px) {
  .dosing_disclaimer_wrapper {
    width: revert;
  }
}

.dosing_disclaimer::before {
  color: var(--gray_1);
  margin-right: 8px;
  position: absolute;
  left: -6px;
  top: 0;
  content: "*";
  font-size: 14px;
  font-weight: 500;
  font-family: var(--montserrat);
}

@media (min-width: 992px) {
  .dosing_disclaimer::before {
    left: 0;
  }
}

.dosing_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  text-align: center;
}

@media (max-width: 991px) {
  .dosing_disclaimer {
    text-align: left;
    width: 100.1%;
  }
}

.dosing__block {
  border-radius: 40px 0 40px 0;
  padding: 24px 79px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 724px;
  margin: 0 auto 0 auto;
  gap: 25px;
}

@media (max-width: 991px) {
  .dosing__block {
    padding: 20px 17px 30px 17px;
    flex-direction: column;
    gap: 20px;
  }
}

.text-calendar {
  background: url(../img/bg-icon-calendar.png) no-repeat;
  background-size: 88.824px 84.5px;
  display: block;
  color: #fff;
  font-family: var(--geom-graphic);
  font-size: 11px;
  width: 89px;
  height: 85px;
  padding: 33px 0 0 16px;
}

.text-calendar.green {
  background: url(../img/bg-icon-calendar-green.png) no-repeat;
  background-size: 88.824px 84.5px;
  display: block;
  color: var(--green);
  font-family: var(--geom-graphic);
  font-size: 11px;
  width: 89px;
  height: 85px;
  padding: 33px 0 0 16px;
}

.text-calendar span {
  font-size: 35px;
  font-weight: 600;
  line-height: 75%;
}

.dosing__block_text {
  font-size: 18px;
  line-height: 122.2222222222%;
  flex: 1;
}

.yellow_line {
  background-color: var(--yellow);
  height: 3px;
  width: 100%;
}

.yellow_line_wrapper {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-template-rows: max-content;
  align-items: center;
  max-width: 724px;
  margin: 70px auto 138px auto;
}

@media (max-width: 991px) {
  .yellow_line_wrapper {
    margin: 50px auto 100px auto;
  }
}

.main_dosing_and_management .yellow_line_wrapper {
  margin: 74px auto 65px auto;
}

@media (max-width: 991px) {
  .main_dosing_and_management .yellow_line_wrapper {
    margin: 50px auto 50px auto;
  }
}

.yellow_block_left {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.yellow_line {
  grid-column: 1 / 4;
  grid-row: 1 / 2;
}

.yellow_block_right {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.dosing__title {
  font-size: 26px;
  line-height: 115.3846153846%;
}

.dosing__subtitle {
  font-size: 18px;
  line-height: 177.7777777778%;
  max-width: 887px;
  margin: 28px auto 28px auto;
}

@media (max-width: 991px) {
  .dosing__subtitle {
    margin: 34px auto 20px auto;
    line-height: 122.2222222222%;
  }
}

.dosing__extra_title {
  font-size: 20px;
  line-height: 160%;
  margin: 40px 0 40px 0;
}

@media (max-width: 991px) {
  .dosing__extra_title {
    margin: 30px auto 20px auto;
    width: 91.8%;
  }
}

.dosing_bricks {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-items: center;
  justify-content: center;
  column-gap: 70px;
}

@media (min-width: 992px) {
  .dosing_bricks {
    position: relative;
    left: 0;
  }
}

@media (max-width: 991px) {
  .dosing_bricks {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}

.dosing_brick_left .dosing_brick_texts {
  max-width: 221px;
  margin: -15px auto 0 auto;
}

.dosing_brick_right .dosing_brick_texts {
  max-width: 293px;
  margin: -15px auto 0 auto;
}

.dosing_brick_top {
  font-size: 18px;
  line-height: 111.1111111111%;
}

.dosing_brick_bottom {
  font-size: 16px;
  line-height: 125%;
}

.dosing_brick_img {
  margin: 0 auto;
  display: block;
}

.delivery__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

@media (max-width: 991px) {
  .delivery__wrapper {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 88px;
  }
}

.delivery__item {
  border-radius: 40px 0 40px 0;
}

.delivery__left {
  padding: 0 53px 40px 50px;
}

@media (max-width: 991px) {
  .delivery__left {
    padding: 0px 16px 50px 17px;
  }
}

.delivery__right {
  padding: 0 46px 40px 62px;
}

@media (max-width: 991px) {
  .delivery__right {
    padding: 0px 16px 37px 17px;
  }
}

.delivery__title {
  margin: 100px 0 10px 0;
  font-size: 26px;
  line-height: 138.4615384615%;
}

@media (max-width: 991px) {
  .delivery__title {
    margin: 80px 0 10px 0;
  }
}

.delivery__left .delivery__title::before {
  position: absolute;
  content: "";
  width: 136px;
  height: 117px;
  background-image: url(./../img/icon_two_pills.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  top: -3px;
  transform: translate(-50%, -50%);
}

.delivery__right .delivery__title::before {
  position: absolute;
  content: "";
  width: 136px;
  height: 117px;
  background-image: url(./../img/icon_dosage.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  top: -3px;
  transform: translate(-50%, -50%);
}

.delivery__list_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.delivery_list_item {
  margin: 0 0 13px 0;
}

@media (max-width: 991px) {
  .delivery_list_item {
    margin: 0 0 17px 0;
  }
}

.delivery__disclaimer {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.delivery {
  margin: 0 0 80px 0;
}

@media (max-width: 991px) {
  .delivery {
    margin: 0 0 50px 0;
  }
}

.delivery_list_item {
  margin-left: 0;
  position: relative;
}

.delivery_list_item .delivery__list_item_text::before {
  color: var(--magenta);
  margin-right: 0;
  position: absolute;
  left: -12px;
  top: -1px;
  content: "•";
  font-size: 18px;
  font-family: var(--kallisto);
}

.missed {
  margin: 0 0 0 0;
  background-image: url(../img/bg_missed.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  background-color: var(--wine);
  padding: 75px 0 75px 0;
}

@media (max-width: 1399px) {
  .missed {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 991px) {
  .missed {
    background-image: url(../img/bg_missed_mobile.png);
    background-position: center top;
    background-size: contain;
    padding: 110px 0 50px 0;
    margin: 0 0 0 0;
  }
}

.missed__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.missed__title {
  max-width: 783px;
  font-size: 26px;
  line-height: 138.4615384615%;
}

@media (max-width: 991px) {
  .missed__title {
    max-width: 340px;
    width: 100.9%;
  }
}

.main_access_and_patient_support .syndaccess__subtitle,
.main_resources .syndaccess__subtitle {
  max-width: 683px;
}

.main_access_and_patient_support .syndaccess__subtitle sup,
.main_resources .syndaccess__subtitle sup {
  font-size: 12px;
}

.above {
  padding: 80px 0 73px 0;
  margin: 0 0 0 0;
}

@media (max-width: 991px) {
  .above {
    margin: 0 0 0 0;
    padding: 50px 0 70px 0;
  }
}

.above__title {
  font-size: 26px;
  line-height: 115.3846153846%;
  max-width: 624px;
  margin: 0 auto 0 auto;
}

@media (max-width: 991px) {
  .above__title {
    width: 100%;
  }
}

.above__subtitle {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 20px auto 30px auto;
  max-width: 650px;
}

@media (max-width: 991px) {
  .above__subtitle {
    margin: 45px auto 30px auto;
    width: 95.1%;
  }
}

.above__disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
}

@media (max-width: 991px) {
  .above__disclaimer {
    width: 101.5%;
  }
}

.above__subtitle__2 {
  font-size: 20px;
  margin-bottom: 30px;
}

.above_disclaimer_list_item_1 {
  margin: 0 0 0 0;
}

.above_table_nav_wrapper {
  border-radius: 0 40px 0 0;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 80px;
  grid-column: 1 / 4;
}

@media (max-width: 991px) {
  .above_table_nav_wrapper {
    grid-template-rows: 125px;
  }
}

.above_table_header {
  display: grid;
  place-items: center;
}

@media (max-width: 991px) {
  .above_table_header.above_table_header_1 {
    place-items: revert;
    align-items: center;
    justify-items: start;
    padding: 0 0 0 20px;
  }
}

.above_table_content_2 {
  display: none;
}

@media (max-width: 991px) {
  .container_above_table.container .row>* {
    padding-left: 0;
    padding-right: 0;
  }
}

.above_table_nav {
  display: grid;
  justify-content: start;
  align-items: center;
  padding: 0 10px 0 20px;
  border-bottom: solid 6px transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.above_table_nav_text {
  color: rgba(235, 238, 238, 0.3);
  font-size: 20px;
  line-height: 120%;
}

.above_table_nav.active {
  background-color: var(--white);
  border-radius: 0 40px 0 0;
  border-bottom: solid 6px var(--magenta);
}

.above_table_nav.active .above_table_nav_text {
  color: var(--green_2);
}

.above_table_header_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .above_table_header_text {
    font-size: 16px;
    line-height: 131.25%;
  }
}

.above_table_body_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .above_table_body_text {
    font-size: 14px;
    line-height: 135.7142857143%;
  }
}

.above_table_header_2 {
  border-right: dotted 1px var(--white);
  border-left: dotted 1px var(--white);
}

.above_table_body_2,
.above_table_body_5,
.above_table_body_8 {
  border-left: dotted 1px var(--gray_1);
  border-right: dotted 1px var(--gray_1);
}

.above_table {
  display: grid;
  grid-template-rows: max-content 40px 40px 40px;
  grid-template-columns: 33.33% 33.34% 33.33%;
  grid-auto-flow: row;
  max-width: 813px;
  margin: 0 auto 0 auto;
}

@media (max-width: 767px) {
  .above_table {
    grid-template-rows: 125px 62px 40px 55px;
    grid-template-columns: 35.33% 31.34% 33.33%;
  }
}

.above_table_body.above_table_body_1,
.above_table_body.above_table_body_4,
.above_table_body.above_table_body_7 {
  padding: 0 20px 0 20px;
  justify-items: start;
}

@media (max-width: 991px) {

  .above_table_body.above_table_body_1,
  .above_table_body.above_table_body_4,
  .above_table_body.above_table_body_7 {
    padding: 0 7px 0 20px;
  }
}

.above_table_body_1,
.above_table_body_2,
.above_table_body_3 {
  background-color: var(--white_2);
}

.above_table_body_4,
.above_table_body_5,
.above_table_body_6 {
  background-color: var(--white);
}

.above_table_body_7,
.above_table_body_8,
.above_table_body_9 {
  background-color: var(--gray_5);
}

.above_table_body {
  display: grid;
  justify-items: center;
  align-items: center;
  width: 100%;
  height: 40px;
}

.break-word {
  hyphens: auto;
  word-wrap: break-word;
}

.under {
  padding: 105px 0 95px 0;
  margin: 144px 0 0 0;
}

@media (max-width: 991px) {
  .under {
    margin: 115px 0 0 0;
    padding: 105px 0 45px 0;
  }
}

.under__title {
  font-size: 26px;
  line-height: 115.3846153846%;
  max-width: 558px;
  margin: 0 auto 0 auto;
}

.under__title::before {
  position: absolute;
  content: "";
  width: 219px;
  height: 186px;
  background-image: url(./../img/icon_baby_large_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  top: 27px;
  transform: translate(-50%, -50%);
}

.under__subtitle {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 20px auto 30px auto;
}

.under__disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  color: var(--green_2);
}

@media (max-width: 991px) {
  .under__disclaimer {
    width: 101.5%;
  }
}

.under_disclaimer_list_item_1 {
  margin: 30px 0 0 0;
}

@media (max-width: 991px) {
  .container_under_table.container .row>* {
    padding-left: 0;
    padding-right: 0;
  }
}

.under_table {
  display: grid;
  grid-template-columns: 33.33% 33.34% 33.33%;
  grid-template-rows: 80px 80px 80px;
  max-width: 817px;
  margin: 0 auto 0 auto;
}

@media (max-width: 991px) {
  .under_table {
    grid-template-rows: 87px 87px 87px;
    grid-template-columns: 29.33% 35.34% 35.33%;
  }
}

.under_table_header {
  display: grid;
  place-items: center;
}

.under_table_header.under_table_header_1,
.under_table_body.under_table_body_1,
.under_table_body.under_table_body_4 {
  place-items: revert;
  justify-items: start;
  align-items: center;
}

.under_table_body {
  display: grid;
  place-items: center;
}

.under_table_body_1,
.under_table_body_2,
.under_table_body_3 {
  border-bottom: solid 4px var(--yellow);
}

.under_table_header_1,
.under_table_body_1,
.under_table_body_4 {
  padding: 0 0 0 50px;
}

@media (max-width: 991px) {

  .under_table_header_1,
  .under_table_body_1,
  .under_table_body_4 {
    padding: 0 18px;
  }
}

.under_disclaimer_list_item {
  padding: 0 0 0 0;
  position: relative;
}

.under_table_header_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .under_table_header_text {
    font-size: 16px;
    line-height: 131.25%;
  }
}

@media (max-width: 991px) {

  .under_table_header_2,
  .under_table_header_3 {
    padding: 0 18px;
  }

  .under_table_header_2 .under_table_header_text,
  .under_table_header_3 .under_table_header_text {
    text-align: center;
  }
}

.under_table_body_text {
  font-size: 18px;
  line-height: 111.1111111111%;
}

@media (max-width: 991px) {
  .under_table_body_text {
    font-size: 14px;
    line-height: 135.7142857143%;
  }
}

.under_table_header_2 .under_table_header_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  border-left: dotted 1px var(--white);
}

.under_table_header_2 .under_table_header_text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  border-right: dotted 1px var(--white);
}

.under_table_body_2 .under_table_body_text::before,
.under_table_body_5 .under_table_body_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  border-left: dotted 1px var(--gray_1);
}

.under_table_body_2 .under_table_body_text::after,
.under_table_body_5 .under_table_body_text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  border-right: dotted 1px var(--gray_1);
}

.under_disclaimer_list_item .under__disclaimer::before {
  color: var(--green_2);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -6px;
  top: -1px;
}

.under_disclaimer_list_item .under__disclaimer_0::before {
  content: "*";
  font-size: 14px;
}

.under_disclaimer_list_item .under__disclaimer_1::before {
  content: "†";
  font-size: 10px;
  left: -6px;
  top: -3px;
}

.above_disclaimer_list_item {
  padding: 0 0 0 0;
  position: relative;
}

.above_disclaimer_list_item .above__disclaimer::before {
  color: var(--white);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -6px;
  top: -1px;
}

.above_disclaimer_list_item .above__disclaimer_0::before {
  content: "*";
  font-size: 14px;
}

.above_disclaimer_list_item .above__disclaimer_1::before {
  content: "†";
  font-size: 10px;
  left: -6px;
  top: -3px;
}

.above__disclaimer_top {
  font-size: 14px;
  line-height: 128.5714285714%;
  margin: 78px 0 27px 0;
}

@media (max-width: 991px) {
  .above__disclaimer_top {
    margin: 30px 0 30px 0;
  }
}

.call {
  margin: 0 0 50px 0;
}

.call_list_item_text {
  font-size: 14px;
  line-height: 128.5714285714%;
}

@media (max-width: 991px) {
  .call_list_item_text_0 {
    width: 100.7%;
  }
}

.call_list_item_text_1 {
  margin: 10px 0 0 0;
}

.call_list_item {
  padding: 0 0 0 0;
  position: relative;
}

.call_list_item .call_list_item_text::before {
  color: var(--gray_1);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -6px;
  top: -1px;
}

.call_list_item .call_list_item_text_0::before {
  content: "‡";
  font-size: 10px;
}

.call_block {
  margin: 40px auto 35px auto;
  border-radius: 40px 0 40px 0;
  padding: 15px 12px 15px 12px;
  max-width: 724px;
  width: 100%;
}

.call__block_text {
  font-size: 18px;
  line-height: 122.2222222222%;
}

.nonclinical {
  margin: 130px 0 0 0;
  background-image: url(../img/bg_first.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  background-color: var(--yellow);
  padding: 94px 0 93px 0;
}

@media (max-width: 991px) {
  .nonclinical {
    background-image: url(../img/bg_first_mobile.svg);
    background-position: revert;
    background-size: revert;
    padding: 109px 0 40px 0;
    margin: 50px 0 0 0;
  }
}

.nonclinical__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nonclinical__title {
  font-size: 26px;
  line-height: 138.4615384615%;
}

.moa {
  padding: 80px 0 0 0;
}

@media (max-width: 991px) {
  .moa {
    padding: 40px 0 0 0;
  }
}

.moa__upper_title {
  font-size: 26px;
  line-height: 138.4615384615%;
}

.moa__upper_subtitle {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 16px auto 0 auto;
}

@media (max-width: 991px) {
  .moa__upper_subtitle {
    margin: 30px auto 0 auto;
  }
}

.moa_animation_outer {
  border-radius: 40px 0 40px 0;
  padding: 26px 0 60px 0;
}

.moa_animation_title {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 0 auto 40px auto;
}

.moa_animation_title_1 {
  max-width: 796px;
}

.moa_animation_title_2 {
  max-width: 860px;
}

.moa_blocks {
  display: flex;
  max-width: 974px;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
}

.moa_block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}

.moa_block_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.text-box .moa_block_text.moa_block_text_special {
  width: 117%;
  left: -9%;
}

.moa_block_img {
  width: 216px;
  height: 162px;
  background-color: white;
}

.achieved {
  padding: 80px 0 80px 0;
  background-color: rgb(197, 216, 175, 33%);
}

@media (max-width: 991px) {
  .achieved {
    padding: 50px 0 50px 0;
  }
}

.achieved_title {
  font-size: 26px;
  line-height: 115.3846153846%;
  margin: 0 0 35px 0;
}

.achieved_calendar_middle {
  width: 178px;
  height: 149px;
  background-image: url(../img/icon_calendar_yellow-bg-white.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

.main_kmt2a-aml .achieved_calendar_middle {
  width: 178px;
  height: 149px;
  background-image: url(../img/icon_calendar_time_kmt2a_aml.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

.achieved_calendar_middle_2 {
  background-image: url(../img/icon_calendar_yellow_v2-bg-white.svg);
}

.main_kmt2a-aml .achieved_calendar_middle_2 {
  background-image: url(../img/icon_calendar-arrow_kmt2a_aml.svg);
}

.achieved__left .achieved_calendar_middle {
  margin: 0 auto;
}

.achieved__left .achieved_calendar_bottom {
  margin: 5px 0 0 18px;
}

.achieved__middle .achieved_calendar_middle {
  margin: 0 auto;
}

.achieved__middle .achieved_calendar_bottom {
  margin: 5px 15px 0 0;
  text-align: center;
}

@media (min-width: 992px) {
  .achieved__middle {
    position: relative;
    left: 30px;
  }
}

@media (max-width: 991px) {
  .achieved__middle {
    margin: 50px 0 30px 0;
  }
}

.achieved_calendar_content {
  position: relative;
  top: 35px;
  left: -17px;
}

.achieved_calendar_middle_2 .achieved_calendar_content {
  left: -14px;
}

.achieved_calendar_text_number {
  font-size: 60px;
  line-height: 120%;
  text-align: center;
  letter-spacing: -3px;
}

.achieved_calendar_text_text {
  font-size: 18px;
  line-height: 177.7777777778%;
  text-align: center;
  margin: -12px 0 0 7px;
}

.achieved_calendar_top {
  font-size: 18px;
  line-height: 166.6666666667%;
  margin: 0 0 15px 0;
}

.achieved_calendar_bottom {
  font-size: 16px;
  line-height: 125%;
}

.achieved__right_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.achieved__bottom {
  display: grid;
  grid-template-columns: max-content max-content 315px;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .achieved__bottom {
    margin: 0 0 0 0;
  }
}

@media (max-width: 991px) {
  .achieved__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 50px 0 0 0;
  }
}

.achieved__right {
  display: grid;
  place-items: center;
}

@media (max-width: 991px) {
  .achieved__right {
    max-width: 312px;
  }
}

@media (max-width: 575px) {
  .achieved__right {
    max-width: revert;
    place-items: revert;
  }
}

.achieved__bricks {
  display: flex;
  margin: 0 auto 0 auto;
}

@media (max-width: 991px) {
  .achieved__bricks {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .achieved__bricks {
    justify-content: revert;
  }
}

.achieved__brick {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.achieved__brick_shape {
  width: 416px;
  height: 357px;
  background-image: url(../img/shape_brick__bg_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 992px) {
  .achieved__brick_shape {
    position: relative;
    top: 0;
    left: -79px;
  }
}

@media (max-width: 991px) {
  .achieved__brick_shape {
    top: 0;
    left: -50px;
    width: 270px;
    height: 231px;
  }
}

@media (max-width: 360px) {
  .achieved__brick_shape {
    left: -41px;
    width: 220px;
    height: 188px;
  }
}

.achieved__brick_top {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
}

.achieved__brick_number {
  font-size: 85px;
  line-height: 120%;
}

.main_kmt2a-aml .first_achieved__bricks .achieved__brick_number {
  letter-spacing: -10px;
}

@media (max-width: 991px) {
  .achieved__brick_number {
    font-size: 56px;
    line-height: 121.4285714286%;
  }
}

@media (max-width: 360px) {
  .achieved__brick_number {
    font-size: 46px;
    line-height: 121.7391304348%;
  }
}

.achieved__brick_percentage {
  font-size: 44px;
  line-height: 120.4545454545%;
  position: relative;
  top: -10px;
}

.main_kmt2a-aml .first_achieved__bricks .achieved__brick_percentage {
  left: 10px;
}

@media (max-width: 991px) {
  .achieved__brick_percentage {
    top: -7px;
    font-size: 28px;
    line-height: 121.4285714286%;
  }
}

@media (max-width: 360px) {
  .achieved__brick_percentage {
    top: -6px;
    font-size: 24px;
    line-height: 120.8333333333%;
  }
}

.achieved_middle {
  display: grid;
  grid-template-columns: max-content 505px;
  column-gap: 135px;
}

@media (max-width: 1199px) {
  .achieved_middle {
    grid-template-columns: max-content 1fr;
    column-gap: 40px;
  }
}

@media (max-width: 991px) {
  .achieved_middle {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

.achieved__brick_info {
  align-self: center;
}

@media (min-width: 992px) {
  .achieved__brick_info {
    margin: -60px 0 0 -138px;
  }
}

@media (max-width: 991px) {
  .achieved__brick_info {
    margin: -75px 0 0 -93px;
  }
}

@media (max-width: 360px) {
  .achieved__brick_info {
    margin: -50px 0 0 -78px;
  }
}

@media (min-width: 992px) {
  .achieved__brick_info_bottom {
    position: relative;
    top: 12px;
  }
}

.achieved__brick_info_top_text {
  font-size: 26px;
  line-height: 123.0769230769%;
}

.achieved__brick_info_bottom_text {
  font-size: 16px;
  line-height: 125%;
}

@media (max-width: 991px) {
  .achieved_list {
    padding: 0 0 0 12px;
  }
}

.achieved_list_item {
  padding: 0 0 0 0;
  position: relative;
}

.achieved_list_item .achieved_list_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -12px;
  top: -1px;
  content: "•";
  font-size: 18px;
  font-family: var(--kallisto);
}

.achieved_list_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.achieved_list_item_1 {
  margin: 0 0 20px 0;
}

.achieved_list_item_2 {
  margin: 0 0 20px 0;
}

.mod {
  padding: 80px 0 40px 0;
}

@media (max-width: 991px) {
  .mod {
    padding: 50px 0 50px 0;
  }
}

.mod_top_title {
  max-width: 692px;
  margin: 0 auto 0 auto;
  font-size: 26px;
  line-height: 138.4615384615%;
}

.mod_top_subtitle {
  margin: 35px auto 50px auto;
  font-size: 20px;
  line-height: 160%;
}

.mod_bottom {
  padding: 40px 0 0 0;
}

.mod_bottom_text {
  font-size: 16px;
  line-height: 112.5%;
  margin: 0 0 35px 0;
}

.mod_bottom_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
}

.call_list_item {
  padding: 0 0 0 0;
  position: relative;
}

.mod_bottom_disclaimer_1::before {
  color: var(--gray_1);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -6px;
  top: -1px;
  content: "*";
  font-size: 14px;
  font-family: var(--montserrat);
}

.mod_bottom_disclaimer_2::before {
  color: var(--gray_1);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -6px;
  top: -3px;
  content: "†";
  font-family: var(--montserrat);
}

.accordion_list_item_text {
  padding: 0 0 0 12px;
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (min-width: 992px) {
  .accordion_list_item_3 .accordion_list_item_text {
    max-width: 959px;
  }
}

@media (min-width: 992px) {
  .accordion_list_item_18 .accordion_list_item_text {
    max-width: 973px;
  }
}

.accordion_list_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: -1px;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.accordion_list_item:not(:last-of-type) {
  margin: 0 0 20px 0;
}

.accordion_list_item sup {
  top: -0.55em;
  font-size: 0.6em;
}

@media (max-width: 991px) {
  .main_dosing_and_management .accordion .accordion-body {
    padding: 0 0 20px 0;
  }
}

.monitoring_faq_special .accordion .accordion-body {
  padding: 0 0 25px 0;
}

@media (max-width: 991px) {
  .monitoring_faq_special .accordion .accordion-body {
    padding: 0 5px 25px 0;
  }
}

@media (max-width: 991px) {
  .main_dosing_and_management .accordion_subheader {
    margin: 0 0 25px 0;
  }
}

.main_dosing_and_management .accordion-item_6 .accordion_list_item_br_special {
  display: none;
}

@media (min-width: 375px) and (max-width: 376px) {
  .main_dosing_and_management .accordion-item_6 .accordion_list_item_br_special {
    display: block;
  }
}

@media (max-width: 991px) {
  .main_dosing_and_management .accordion-item_4 .accordion-button {
    padding: 21px 16px 25px 0;
  }
}

@media (max-width: 991px) {
  .main_dosing_and_management .accordion-item_8 .accordion-button {
    padding: 21px 30px 25px 0;
  }
}

.main_dosing_and_management .accordion-item_4 br {
  display: none;
}

@media (min-width: 375px) and (max-width: 376px) {
  .main_dosing_and_management .accordion-item_4 br {
    display: block;
  }
}

@media (max-width: 991px) {
  .main_dosing_and_management .accordion_list {
    width: 100.8%;
  }
}

.main_dosing_and_management .next__text_item:not(:last-of-type) {
  width: 100.5%;
}

.monitoring {
  padding: 80px 0 60px 0;
}

@media (max-width: 991px) {
  .monitoring {
    padding: 50px 0 50px 0;
  }
}

.monitoring__block {
  padding: 40px 92px 59px 92px;
  border-radius: 40px 0 40px 0;
}

@media (max-width: 991px) {
  .monitoring__block {
    padding: 40px 10px 40px 10px;
  }
}

.monitoring__block_text {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 0 0 20px 0;
  max-width: 896px;
}

.monitoring__block_text_1 {
  margin: 39px 0 36px 0;
}

.monitoring__block_text_2 {
  margin: 30px 0 0 0;
}

@media (max-width: 991px) {
  .monitoring__block_text_2 {
    width: 101.9%;
  }
}

.monitoring_block_list_item {
  margin: 0 0 10px 0;
  position: relative;
  padding: 0 0 0 14px;
}

.monitoring_block_list_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: -1px;
  content: "•";
  font-size: 20px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.monitoring_block_list_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .monitoring_block_list_item_2 .monitoring_block_list_item_text {
    width: 102.4%;
  }
}

.monitoring__card_outertitle {
  padding: 40px 0 35px 0;
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .monitoring__card_outertitle {
    padding: 30px 0 30px 0;
  }
}

.monitoring_card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .monitoring_card {
    flex-direction: column;
    gap: 0;
  }
}

@media (min-width: 1200px) {
  .monitoring__card_right {
    position: relative;
  }
}

.swallow_bottom_img,
.monitoring__card_img {
  margin: 0 0 0 -40px;
}

@media (max-width: 991px) {

  .swallow_bottom_img,
  .monitoring__card_img {
    margin: revert;
  }
}

.swallow_bottom_img {
  margin: 0 0 -21px -40px;
}

@media (max-width: 991px) {
  .swallow_bottom_img {
    margin: 0 0 0 0;
  }
}

@media (max-width: 991px) {
  .monitoring_card_texts {
    align-self: center;
  }
}

@media (min-width: 992px) {
  .monitoring__card_left .monitoring_card_texts {
    margin: -55px 0 0 0;
  }
}

@media (min-width: 992px) {
  .monitoring__card_right .monitoring_card_texts {
    margin: -55px 0 0 0;
  }
}

@media (max-width: 991px) {
  .monitoring_card_texts {
    max-width: revert;
  }
}

.monitoring__card_title {
  font-size: 20px;
  line-height: 130%;
}

@media (max-width: 991px) {
  .monitoring__card_title {
    margin: -20px 0 0 0;
    text-align: center;
    max-width: revert;
    width: 100%;
  }
}

.monitoring__card_text_1 {
  text-align: center;
}

@media (max-width: 991px) {
  .monitoring__card_text_1 {
    display: block;
  }
}

.monitoring__card_title_1 {
  max-width: 566px;
}

@media (max-width: 575px) {
  .monitoring__card_title_2 {
    width: 77.3%;
    margin: 0 auto 0 auto;
  }
}

.monitoring__card_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .monitoring__card_text {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .monitoring__card_text_2 {
    width: 102.6%;
  }
}

.monitoring__cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, max-content);
  column-gap: 10px;
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .monitoring__cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .monitoring__cards {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.monitoring_shape {
  border-radius: 40px 0 40px 0;
  padding: 24px 172px 24px 172px;
  margin: 30px 0 0 0;
}

@media (max-width: 1199px) {
  .monitoring_shape {
    padding: 24px 90px 24px 90px;
  }
}

.monitoring_shape_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.monitoring_top_title {
  font-size: 26px;
  line-height: 115.3846153846%;
  margin: 0 0 50px 0;
}

@media (max-width: 991px) {
  .monitoring_top_title {
    margin: 0 0 25px 0;
  }
}

@media (max-width: 575px) {
  .monitoring__card_left .monitoring_card_texts {
    max-width: 299px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .monitoring__card_right .monitoring_card_texts {
    max-width: 277px;
    margin: 0 auto;
  }
}

.monitoring_faq {
  margin: 39px 0;
}

@media (max-width: 991px) {
  .monitoring_faq {
    margin: 50px 0 0 0;
  }
}

.monitoring_faq .accordion .accordion-button {
  font-family: var(--geom-graphic);
  color: var(--green);
  font-size: 26px;
  line-height: 115.3846153846%;
  font-weight: 600;
  border-radius: 0;
  padding: 20px 25px 20px 0;
  background-color: var(--green_2);
  border-bottom: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  max-width: 1050px;
  position: revert;
}

.monitoring_faq .accordion-item {
  border-top: solid 1px #ffffff;
  border-bottom: solid 1px #ffffff;
  background-color: var(--green_2);
}

.monitoring_faq .accordion_subheader {
  font-size: 20px;
  line-height: 180%;
  margin: 0 0 15px 0;
}

.monitoring_faq .accordion_subheader.accordion_subheader_2 {
  margin: 20px 0 15px 0;
}

.accordion_subheader_extra {
  font-size: 16px;
  line-height: 185%;
  margin: 0 0 20px 0;
  max-width: 768px;
}

@media (max-width: 991px) {
  .accordion_subheader_extra {
    text-align: center;
    line-height: 162.5%;
    width: 100.3%;
    margin: 20px 0 0 0;
  }
}

.monitoring_faq .accordion-button::after {
  background-image: url(../img/icon_plus_circle_white.svg);
  transition: none;
}

.monitoring_faq .accordion-button:not(.collapsed)::after {
  background-image: url(../img/icon_minus_circle_white.svg);
  transition: none;
}

.monitoring_table .monitoring_table_header_1 .monitoring_table_header_text {
  text-align: left;
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .monitoring_table .monitoring_table_header_1 .monitoring_table_header_text {
    text-align: center;
  }
}

.monitoring_table .monitoring_table_header_1 {
  justify-content: flex-start;
  padding: 5px 20px 5px 20px;
}

@media (max-width: 991px) {
  .monitoring_table .monitoring_table_header_1 {
    justify-content: center;
  }
}

.monitoring_table {
  display: grid;
  grid-template-columns: 0.28fr 0.46fr 0.35fr;
  grid-template-rows: max-content max-content max-content max-content;
  grid-auto-flow: column;
}

@media (max-width: 991px) {
  .monitoring_table {
    grid-template-columns: 50% 50%;
    grid-template-rows: repeat(12, max-content);
    grid-auto-flow: revert;
  }
}

@media (max-width: 575px) {
  .monitoring_table {
    margin: 0 -20px;
  }
}

.morning_faq_subheader_wrapper {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 46px;
  align-items: start;
  margin: 0 0 28px 0;
}

@media (max-width: 991px) {
  .morning_faq_subheader_wrapper {
    margin: 10px 0 28px 0;
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 26px;
    justify-items: center;
  }
}

.monitoring_faq .morning_faq_subheader_wrapper .accordion_subheader {
  font-size: 20px;
  line-height: 1;
  margin: 0 0 10px 0;
}

@media (max-width: 991px) {
  .monitoring_faq .morning_faq_subheader_wrapper .accordion_subheader {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .monitoring_table_header_1 {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .monitoring_table_header_2 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {
  .monitoring_table_header_3 {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
  }
}

.monitoring_table_header_1_1 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .monitoring_table_header_1_1 {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
}

.monitoring_table_header_1_2 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .monitoring_table_header_1_2 {
    grid-row: 5 / 6;
    grid-column: 1 / 3;
    border-top: solid 3px var(--green_2);
  }
}

.monitoring_table_header_1_3 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .monitoring_table_header_1_3 {
    grid-row: 9 / 10;
    grid-column: 1 / 3;
    border-top: solid 3px var(--green_2);
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_1 {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_2 {
    grid-row: 6 / 7;
    grid-column: 1 / 3;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_3 {
    grid-row: 10 / 11;
    grid-column: 1 / 3;
  }
}

.monitoring_table_header_2_1 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .monitoring_table_header_2_1 {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
}

.monitoring_table_header_2_2 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .monitoring_table_header_2_2 {
    grid-row: 7 / 8;
    grid-column: 1 / 2;
  }
}

.monitoring_table_header_2_3 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .monitoring_table_header_2_3 {
    grid-row: 11 / 12;
    grid-column: 1 / 2;
  }
}

.monitoring_table_header_3_1 {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
}

@media (max-width: 991px) {
  .monitoring_table_header_3_1 {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
  }
}

.monitoring_table_header_3_2 {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
}

@media (max-width: 991px) {
  .monitoring_table_header_3_2 {
    grid-row: 7 / 8;
    grid-column: 2 / 3;
  }
}

.monitoring_table_header_3_3 {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
}

@media (max-width: 991px) {
  .monitoring_table_header_3_3 {
    grid-row: 11 / 12;
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_4 {
    grid-row: 4 / 5;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_5 {
    grid-row: 8 / 9;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_6 {
    grid-row: 12 / 13;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_7 {
    grid-row: 4 / 5;
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_8 {
    grid-row: 8 / 9;
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_9 {
    grid-row: 12 / 13;
    grid-column: 2 / 3;
  }
}

.monitoring_table_header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
}

.monitoring_table_body_left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .monitoring_table_body_left {
    align-items: center;
  }
}

.monitoring_table_body_middle {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 991px) {
  .monitoring_table_body_middle {
    align-items: center;
  }
}

.monitoring_table_body_right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .monitoring_table_body_right {
    align-items: center;
  }
}

.monitoring_table_body_2,
.monitoring_table_body_4,
.monitoring_table_body_5,
.monitoring_table_body_6,
.monitoring_table_body_8 {
  position: relative;
}

.monitoring_table_body_2 .monitoring_table_body_text::before,
.monitoring_table_body_5 .monitoring_table_body_text::before,
.monitoring_table_body_8 .monitoring_table_body_text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: var(--green_2);
}

@media (max-width: 991px) {

  .monitoring_table_body_2 .monitoring_table_body_text::before,
  .monitoring_table_body_5 .monitoring_table_body_text::before,
  .monitoring_table_body_8 .monitoring_table_body_text::before {
    display: none;
  }
}

.monitoring_table_body_2 .monitoring_table_body_text::after,
.monitoring_table_body_5 .monitoring_table_body_text::after,
.monitoring_table_body_8 .monitoring_table_body_text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: var(--green_2);
}

@media (max-width: 991px) {

  .monitoring_table_body_2 .monitoring_table_body_text::after,
  .monitoring_table_body_5 .monitoring_table_body_text::after,
  .monitoring_table_body_8 .monitoring_table_body_text::after {
    display: none;
  }
}

.monitoring_table_body_4 span::before,
.monitoring_table_body_5 span::before,
.monitoring_table_body_6 span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  border-left: dotted 1px var(--gray_1);
}

@media (max-width: 991px) {

  .monitoring_table_body_4 span::before,
  .monitoring_table_body_5 span::before,
  .monitoring_table_body_6 span::before {
    display: none;
  }
}

.monitoring_table_body_4 span::after,
.monitoring_table_body_5 span::after,
.monitoring_table_body_6 span::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  border-left: dotted 1px var(--gray_1);
}

.monitoring_table_body_1,
.monitoring_table_body_2,
.monitoring_table_body_3 {
  padding: 20px 20px 20px 20px;
}

@media (max-width: 991px) {

  .monitoring_table_body_1,
  .monitoring_table_body_2,
  .monitoring_table_body_3 {
    padding: 25px 20px;
    min-height: 76px;
  }

  .monitoring_table_body_1 .monitoring_table_body_text,
  .monitoring_table_body_2 .monitoring_table_body_text,
  .monitoring_table_body_3 .monitoring_table_body_text {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_3.monitoring_table_body_3 {
    padding: 10px 20px 10px 20px;
  }
}

.monitoring_table_body_4,
.monitoring_table_body_5,
.monitoring_table_body_6 {
  padding: 20px 40px 20px 30px;
}

@media (max-width: 991px) {

  .monitoring_table_body_4,
  .monitoring_table_body_5,
  .monitoring_table_body_6 {
    padding: 20px 11px 20px 12px;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_6.monitoring_table_body_6 {
    padding: 20px 13px 20px 15px;
  }
}

.monitoring_table_body_7,
.monitoring_table_body_8,
.monitoring_table_body_9 {
  padding: 20px 40px 20px 27px;
}

@media (max-width: 991px) {

  .monitoring_table_body_7,
  .monitoring_table_body_8,
  .monitoring_table_body_9 {
    padding: 20px 18px 20px 20px;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_arrow {
    display: none;
  }
}

.monitoring_table_header_text {
  font-size: 18px;
  line-height: 155.5555555556%;
  text-align: center;
}

@media (max-width: 1199px) {
  .monitoring_table_header_text {
    font-size: 18px;
    line-height: 155.5555555556%;
  }
}

.monitoring_table_body_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .monitoring_table_body_text {
    text-align: center;
    font-size: 16px;
    line-height: 125%;
  }
}

@media (max-width: 991px) {
  .monitoring_table_body_mini_text {
    font-size: 10px;
    line-height: 1;
  }
}

.form_wrapper .generic_button {
  max-width: 330px;
}

.monitoring_faq_disclaimer::before {
  color: var(--white);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -6px;
  top: -1px;
  content: "*";
}

@media (max-width: 991px) {
  .monitoring_faq_disclaimer::before {
    left: -8px;
  }
}

.monitoring_faq_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
}

@media (max-width: 991px) {
  .monitoring_faq_disclaimer {
    width: 101.6%;
  }
}

.monitoring_faq_disclaimer_1 {
  margin: 30px 0 0 0;
}

@media (max-width: 991px) {
  .monitoring_faq_disclaimer_1 {
    margin: 0px 0 0 0;
  }
}

.monitoring_faq_disclaimer_1 .monitoring_faq_disclaimer::before {
  content: "*";
  font-size: 14px;
}

.monitoring_faq_disclaimer_2 .monitoring_faq_disclaimer::before {
  content: "†";
  font-size: 10px;
  top: -4px;
}

.ordering {
  padding: 80px 0 0 0;
}

@media (max-width: 991px) {
  .ordering {
    padding: 50px 0 0 0;
  }
}

.ordering__title {
  font-size: 26px;
  line-height: 115.3846153846%;
}

.ordering__subtitle {
  font-size: 20px;
  line-height: 160%;
  margin: 35px 0 46px 0;
}

.ordering_info {
  margin: 100px 0 70px 0;
}

@media (max-width: 991px) {
  .ordering_info {
    margin: 110px 0 50px 0;
  }
}

.ordering_info_wrapper {
  border-radius: 40px 0 40px 0;
  padding: 84px 61px 48px;
}

@media (max-width: 991px) {
  .ordering_info_wrapper {
    padding: 84px 16px 35px 16px;
  }
}

.ordering_info_title {
  font-size: 26px;
  line-height: 138.4615384615%;
}

@media (max-width: 991px) {
  .ordering_info_title {
    margin: 0 0 25px 0;
    line-height: 115.3846153846%;
  }
}

.ordering_info_title::before {
  position: absolute;
  content: "";
  width: 136px;
  height: 117px;
  background-image: url(./../img/icon_warehouse.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.ordering_info_subtitle {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 15px 0 0 0;
}

.access__button .generic_button {
  max-width: 330px;
  margin: 62px auto 87px auto;
}

.access__button .generic_button p {
  padding: 0 0 0 30px;
}

@media (max-width: 350px) {
  .access__button .generic_button p {
    padding: 0 0 0 40px;
  }
}

.access__button .generic_button .generic_button_text::before {
  content: "";
  width: 27px;
  height: 27px;
  background-image: url(./../img/icon_download_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.access__button .generic_button:hover .generic_button_text::before,
.access__button .generic_button:active .generic_button_text::before {
  background-image: url(./../img/icon_download_wine.svg);
}

@media (max-width: 991px) {
  .access__button .generic_button {
    margin: 50px auto 50px auto;
  }
}

@media (max-width: 991px) {
  .distribution_faq_section .accordion .accordion-button {
    padding: 21px 31px 25px 0;
  }
}

.distribution_faq_phones {
  display: grid;
  grid-template-columns: 33% 34% 33%;
  grid-template-rows: max-content max-content;
  grid-auto-flow: column;
  row-gap: 45px;
}

@media (max-width: 991px) {
  .distribution_faq_phones {
    grid-template-columns: 1fr;
    grid-template-rows: revert;
    grid-auto-rows: max-content;
    grid-auto-flow: row;
    row-gap: 30px;
  }
}

.accordion-item_2 .distribution_faq_phones {
  display: grid;
  grid-template-columns: 33% 34% 33%;
  grid-template-rows: max-content;
}

@media (max-width: 991px) {
  .accordion-item_2 .distribution_faq_phones {
    grid-template-columns: 1fr;
    grid-template-rows: revert;
    grid-auto-rows: max-content;
    grid-auto-flow: row;
    row-gap: 30px;
  }
}

.distribution_faq_phone_item_8 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .distribution_faq_phone_item_8 {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

.distribution_faq_phone_item_9 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .distribution_faq_phone_item_9 {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
}

.distribution_faq_phone_item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.distribution_faq_phone_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.distribution_faq_phone_number {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.distribution_faq_phone_number:hover,
.distribution_faq_phone_number:active {
  color: var(--green);
}

.getting_bottom__text_wrapper {
  max-width: 786px;
  padding: 30px 40px;
  border-radius: 40px 0 40px 0;
  margin: 32px auto 50px auto;
  display: grid;
  place-items: center;
}

@media (max-width: 991px) {
  .getting_bottom__text_wrapper {
    margin: 50 auto 30px auto;
    padding: 32px 18px;
  }
}

.getting_bottom__text {
  font-size: 18px;
  line-height: 122.2222222222%;
}

.getting_faq_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
}

@media (min-width: 992px) {
  .getting_faq_disclaimer {
    margin: 30px 0 50px 0;
  }
}

@media (min-width: 992px) {
  .getting_faq_disclaimer {
    width: 101.4%;
    letter-spacing: -0.1px;
  }
}

@media (max-width: 991px) {
  .getting_faq_disclaimer {
    margin: 30px 0 0 0;
  }
}

@media (max-width: 991px) {
  .content_hidden {
    overflow: hidden;
  }
}

.getting_bottom_subheader {
  font-size: 20px;
  line-height: 160%;
}

.getting_bottom_content {
  display: grid;
  grid-template-columns: max-content 776px;
  justify-content: space-between;
  margin: 10px 0 0 0;
}

@media (max-width: 1199px) {
  .getting_bottom_content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .getting_bottom_content {
    grid-template-columns: 1fr;
  }
}

.main_access_and_patient_support .accordion-item_4 .getting_bottom_content {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: space-between;
  margin: 10px 0 0 0;
}

@media (max-width: 1199px) {
  .main_access_and_patient_support .accordion-item_4 .getting_bottom_content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .main_access_and_patient_support .accordion-item_4 .getting_bottom_content {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .main_access_and_patient_support .accordion-item_4 .getting_bottom_content {
    padding: 0 0 15px 0;
  }
}

.main_access_and_patient_support .accordion-item_4 .getting_bottom_content_right {
  right: revert;
  max-width: 400px;
}

@media (min-width: 992px) {
  .main_access_and_patient_support .accordion-item_4 .getting_bottom_content_right {
    margin: 0 0 0 0;
  }
}

.main_access_and_patient_support .accordion-item_4 .img_disclaimer {
  text-align: center;
  width: 100%;
  right: 50%;
  transform: translate(50%, 20px);
}

@media (max-width: 991px) {
  .main_access_and_patient_support .accordion-item_4 .img_disclaimer {
    position: revert;
    right: revert;
    transform: revert;
  }
}

@media (max-width: 575px) {
  .main_access_and_patient_support .accordion-item_4 .getting_bottom_content_img {
    width: 100%;
    max-width: revert;
  }
}

@media (max-width: 500px) {
  .main_access_and_patient_support .accordion-item_4 .getting_bottom_content_img {
    width: 100%;
    max-width: revert;
  }
}

@media (max-width: 450px) {
  .main_access_and_patient_support .accordion-item_4 .getting_bottom_content_img {
    width: 100%;
    max-width: revert;
  }
}

.getting_bottom_subheader {
  margin: 25px 0 30px 0;
}

@media (max-width: 991px) {
  .getting_bottom_subheader {
    margin: 40px 0 20px 0;
  }
}

.getting_bottom_content_list_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.getting_bottom_content_list_item:not(:last-of-type) {
  margin: 0 0 20px 0;
}

.img_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  position: absolute;
  bottom: -20px;
  right: 213px;
}

@media (max-width: 1199px) {
  .img_disclaimer {
    right: 52px;
    bottom: 20px;
  }
}

@media (max-width: 991px) {
  .img_disclaimer {
    position: revert;
    bottom: revert;
    right: revert;
    text-align: center;
    font-size: 10px;
    margin: 10px 0 0 0;
  }
}

@media (min-width: 1200px) {
  .getting_bottom_content_right {
    right: 10px;
    top: 13px;
  }
}

@media (max-width: 991px) {
  .getting_bottom_content_right {
    margin: 20px auto 0 auto;
    max-width: 528px;
  }
}

@media (max-width: 575px) {
  .getting_bottom_content_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.getting_bottom_content_img {
  right: -15px;
  position: relative;
}

@media (max-width: 575px) {
  .getting_bottom_content_img {
    width: 120%;
    max-width: revert;
    right: initial;
  }
}

@media (max-width: 500px) {
  .getting_bottom_content_img {
    width: 150%;
    max-width: revert;
  }
}

@media (max-width: 450px) {
  .getting_bottom_content_img {
    width: 155%;
    max-width: revert;
  }
}

.getting_bottom_content_list_item {
  position: relative;
  padding: 0 0 0 12px;
}

.getting_bottom_content_list_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: -1px;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.getting_table {
  display: grid;
  grid-template-columns: 24.59016393% 25.50091075% 25.31876138% 24.59016393%;
  grid-template-rows: max-content minmax(146px, max-content) minmax(146px, max-content) 146px;
  width: 100%;
}

@media (max-width: 991px) {
  .getting_table {
    grid-template-columns: 50% 50%;
    grid-auto-rows: max-content;
    grid-template-rows: revert;
  }
}

.getting_table_header_1_1,
.getting_table_header_1_2,
.getting_table_header_1_3 {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.getting_table_header_2_1,
.getting_table_header_2_2,
.getting_table_header_2_3 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  border-left: dotted 1px var(--white);
  border-right: dotted 1px var(--white);
}

.getting_table_header_3_1,
.getting_table_header_3_2,
.getting_table_header_3_3 {
  grid-row: 1 / 2;
  grid-column: 3 / 4;
  border-right: dotted 1px var(--white);
}

.getting_table_header_4_1,
.getting_table_header_4_2,
.getting_table_header_4_3 {
  grid-row: 1 / 2;
  grid-column: 4 / 5;
}

@media (max-width: 991px) {
  .getting_table_header_1_1 {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .getting_table_header_1_2 {
    grid-row: 5 / 6;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .getting_table_header_1_3 {
    grid-row: 9 / 10;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .getting_table_header_2_1 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {
  .getting_table_header_2_2 {
    grid-row: 5 / 6;
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {
  .getting_table_header_2_3 {
    grid-row: 9 / 10;
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {
  .getting_table_header_3_1 {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .getting_table_header_3_2 {
    grid-row: 7 / 8;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .getting_table_header_3_3 {
    grid-row: 11 / 12;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .getting_table_header_4_1 {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {
  .getting_table_header_4_2 {
    grid-row: 7 / 8;
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {
  .getting_table_header_4_3 {
    grid-row: 11 / 12;
    grid-column: 2 / 3;
  }
}

.getting_table_body_1,
.getting_table_body_2,
.getting_table_body_3,
.getting_table_body_4,
.getting_table_body_9,
.getting_table_body_10,
.getting_table_body_11,
.getting_table_body_12 {
  border-bottom: solid 3px var(--white);
}

@media (max-width: 991px) {

  .getting_table_body_9.getting_table_body_9,
  .getting_table_body_10.getting_table_body_10,
  .getting_table_body_1.getting_table_body_1,
  .getting_table_body_2.getting_table_body_2 {
    border-bottom: revert;
  }
}

@media (max-width: 991px) {

  .getting_table_body_3.getting_table_body_3,
  .getting_table_body_4.getting_table_body_4,
  .getting_table_body_11.getting_table_body_11,
  .getting_table_body_12.getting_table_body_12 {
    margin-bottom: 40px;
    border-bottom: 0;
  }
}

.getting_table_body_2,
.getting_table_body_6,
.getting_table_body_10 {
  border-left: dotted 1px var(--gray_6);
  border-right: dotted 1px var(--gray_6);
}

.getting_table_body_3,
.getting_table_body_7,
.getting_table_body_11 {
  border-right: dotted 1px var(--gray_6);
}

.getting_table_body_1 {
  grid-row: 3 / 4;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .getting_table_body_1 {
    grid-row: revert;
    grid-column: revert;
  }
}

.getting_table_body_2 {
  grid-row: 3 / 4;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .getting_table_body_2 {
    grid-row: revert;
    grid-column: revert;
  }
}

.getting_table_body_3 {
  grid-row: 3 / 4;
  grid-column: 3 / 4;
}

@media (max-width: 991px) {
  .getting_table_body_3 {
    grid-row: revert;
    grid-column: revert;
  }
}

.getting_table_body_4 {
  grid-row: 3 / 4;
  grid-column: 4 / 5;
}

@media (max-width: 991px) {
  .getting_table_body_4 {
    grid-row: revert;
    grid-column: revert;
  }
}

.getting_table_body_5 {
  grid-row: 4 / 5;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .getting_table_body_5 {
    grid-row: revert;
    grid-column: revert;
  }
}

.getting_table_body_6 {
  grid-row: 4 / 5;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .getting_table_body_6 {
    grid-row: revert;
    grid-column: revert;
  }
}

.getting_table_body_7 {
  grid-row: 4 / 5;
  grid-column: 3 / 4;
}

@media (max-width: 991px) {
  .getting_table_body_7 {
    grid-row: revert;
    grid-column: revert;
  }
}

.getting_table_body_8 {
  grid-row: 4 / 5;
  grid-column: 4 / 5;
}

@media (max-width: 991px) {
  .getting_table_body_8 {
    grid-row: revert;
    grid-column: revert;
  }
}

.getting_table_body_9 {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .getting_table_body_9 {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
}

.getting_table_body_10 {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .getting_table_body_10 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
}

.getting_table_body_11 {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
}

@media (max-width: 991px) {
  .getting_table_body_11 {
    grid-row: 4 / 5;
    grid-column: 1 / 2;
  }
}

.getting_table_body_12 {
  grid-row: 2 / 3;
  grid-column: 4 / 5;
}

@media (max-width: 991px) {
  .getting_table_body_12 {
    grid-row: 4 / 5;
    grid-column: 2 / 3;
  }
}

@media (max-width: 991px) {

  .getting_table_header_2_1,
  .getting_table_header_2_2,
  .getting_table_header_2_3,
  .getting_table_body_2,
  .getting_table_body_6 {
    border-right: none;
  }
}

@media (min-width: 992px) {
  .getting_faq_section .accordion .accordion-body {
    padding: 0 0 90px 0;
  }
}

@media (max-width: 991px) {
  .getting_faq_section .accordion .accordion-body {
    padding: 0 0 55px 0;
  }
}

@media (max-width: 991px) {

  .getting_faq_section #collapse3 .row-no-padding>*,
  .getting_faq_section #collapse4 .row-no-padding>* {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .getting_faq_section .container {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .getting_faq_section .container .col-12 {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 991px) {

  .getting_faq_section .accordion .accordion-item:not(:first-of-type),
  .getting_faq_section .accordion-item {
    border: 0;
  }
}

@media (max-width: 991px) {
  .getting_faq_section .accordion-item {
    border-top: solid 1px var(--green);
    border-bottom: solid 1px var(--green);
    position: relative;
  }
}

@media (max-width: 991px) {
  .getting_faq_section .line_left::before {
    width: 12px;
    height: 1px;
    background-color: var(--white);
    left: 0;
    top: -1px;
    content: "";
    position: absolute;
  }
}

@media (max-width: 575px) {
  .getting_faq_section .line_left::before {
    width: 20px;
  }
}

@media (max-width: 991px) {
  .getting_faq_section .line_left::after {
    width: 12px;
    height: 1px;
    background-color: var(--white);
    left: 0;
    bottom: -1px;
    content: "";
    position: absolute;
  }
}

@media (max-width: 575px) {
  .getting_faq_section .line_left::after {
    width: 20px;
  }
}

@media (max-width: 991px) {
  .getting_faq_section .line_right::before {
    width: 12px;
    height: 1px;
    background-color: var(--white);
    right: 0;
    top: -1px;
    content: "";
    position: absolute;
  }
}

@media (max-width: 575px) {
  .getting_faq_section .line_right::before {
    width: 20px;
  }
}

@media (max-width: 991px) {
  .getting_faq_section .line_right::after {
    width: 12px;
    height: 1px;
    background-color: var(--white);
    right: 0;
    bottom: -1px;
    content: "";
    position: absolute;
  }
}

@media (max-width: 575px) {
  .getting_faq_section .line_right::after {
    width: 20px;
  }
}

.getting_faq_section {
  overflow: hidden;
}

@media (max-width: 991px) {
  .getting_faq_section .accordion .accordion-button {
    position: relative;
  }
}

@media (max-width: 991px) {
  .getting_faq_section .accordion .accordion-item:not(:first-of-type) .accordion-button:before {
    border-bottom: 1px solid var(--green);
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 991px) {
  .getting_faq_section .accordion .accordion-item.accordion-item__open .accordion-button {
    border-bottom-color: transparent;
  }
}

.getting_table_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--gray_5);
}

@media (max-width: 991px) {
  .getting_table_body {
    min-height: 121px;
    padding: 0 15px 0 15px;
  }
}

.getting_table_body.getting_table_body_3,
.getting_table_body.getting_table_body_7,
.getting_table_body.getting_table_body_11 {
  align-items: flex-start;
}

@media (min-width: 992px) {

  .getting_table_body.getting_table_body_3,
  .getting_table_body.getting_table_body_7,
  .getting_table_body.getting_table_body_11 {
    padding: 0 0 0 14px;
  }
}

.getting_table_body_img_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.getting_table_body_img_text {
  font-size: 14px;
  line-height: 128.5714285714%;
  text-align: center;
}

@media (max-width: 991px) {
  .getting_table_body_img_text {
    font-size: 10px;
    line-height: 120%;
  }
}

@media (max-width: 991px) {
  .getting_table_body_img {
    max-width: revert;
    width: 250px;
  }
}

@media (max-width: 991px) {
  .getting_table_body_9 .getting_table_body_img {
    max-width: revert;
    width: 140px;
  }
}

@media (min-width: 992px) {
  .getting_table_body_9 .getting_table_body_img {
    max-width: 141px;
  }
}

@media (max-width: 991px) {
  .getting_table_body_3 {
    padding: 20px 21px 20px 27px;
  }
}

@media (max-width: 991px) {
  .getting_table_body_7 {
    padding: 20px 15px 20px 32px;
  }
}

@media (max-width: 991px) {
  .getting_table_body_11 {
    padding: 20px 8px 20px 21px;
  }
}

@media (max-width: 991px) {
  .getting_table_body_12 {
    padding: 20px 15px 20px 15px;
  }
}

.getting_table_header_text {
  text-align: center;
  font-size: 18px;
  line-height: 122.2222222222%;
}

@media (max-width: 991px) {
  .getting_table_header_text {
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.32px;
  }
}

.getting_table_header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

@media (max-width: 991px) {
  .getting_table_header {
    min-height: 72px;
  }
}

.getting_table_body_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .getting_table_body_text {
    text-align: center;
    font-size: 14px;
    line-height: 142.8571428571%;
  }
}

.accordion-item_4 .getting_table {
  display: grid;
  grid-template-columns: 24.55% 25.45% 25.45% 24.55%;
  grid-template-rows: max-content minmax(229px, max-content);
  width: 100%;
}

@media (max-width: 991px) {
  .accordion-item_4 .getting_table {
    grid-template-columns: 50% 50%;
    grid-auto-rows: max-content;
    grid-template-rows: revert;
  }
}

.accordion-item_4 .getting_table_body_img {
  max-height: 192px;
}

@media (max-width: 991px) {
  .accordion-item_4 .getting_table_body_img {
    max-height: 100px;
  }
}

@media (max-width: 991px) {

  .accordion-item_4 .getting_table_body_3.getting_table_body_3,
  .accordion-item_4 .getting_table_body_4.getting_table_body_4 {
    margin-bottom: 0;
    border-bottom: 0;
  }
}

.trial {
  padding: 80px 0 80px 0;
}

@media (max-width: 991px) {
  .trial {
    padding: 50px 0 46px 0;
  }
}

.trial_top_title {
  font-size: 26px;
  line-height: 115.3846153846%;
}

.trial_top_subtitle {
  font-size: 20px;
  line-height: 180%;
  margin: 25px auto 25px auto;
  max-width: 907px;
  line-height: 160%;
}

@media (max-width: 991px) {
  .trial_top_subtitle {
    padding: 0 16px;
  }
}

.trial_top_text {
  font-size: 20px;
  line-height: 180%;
  margin: 0 0 15px 0;
}

@media (max-width: 991px) {
  .trial_top_text {
    line-height: 150%;
    padding: 0 3px;
  }
}

.trial_top_text sup {
  top: -0.5em;
  font-size: 0.65em;
}

.trial_shape {
  display: grid;
  place-items: center;
  margin: 10px auto 30px auto;
  max-width: 910px;
}

@media (max-width: 991px) {
  .trial_shape {
    margin: 10px auto 35px auto;
  }
}

.trial_shape_1 {
  padding: 17px 15px;
  border-radius: 0 0 0 0;
  margin: 10px auto 10px auto;
}

@media (max-width: 991px) {
  .trial_shape_1 {
    padding: 17px 18px;
  }
}

.trial_shape_2 {
  padding: 20px 24px 21px 30px;
  border-radius: 0 0 40px 0;
  margin: 0 auto 0 auto;
  place-items: start;
}

@media (max-width: 991px) {
  .trial_shape_2 {
    padding: 22px 36px 22px 32px;
  }
}

.trial_shape_text {
  max-width: 700px;
  line-height: 22px;
  font-size: 18px;
}

.trial_shape_text.small {
  font-size: 14px;
  max-width: 100%;
}

@media (max-width: 991px) {
  .trial_shape_text {
    line-height: 150%;
  }
}

.trial_bottom {
  max-width: 910px;
  margin: 0 auto 0 auto;
}

@media (min-width: 992px) {
  .trial_bottom {
    padding: 0 0 0 40px;
  }
}

.trial_bottom_list_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.trial_bottom_list_item {
  margin: 0 0 20px 0;
  position: relative;
  padding: 0 0 0 12px;
}

.trial_bottom_list_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: -1px;
  content: "•";
  font-size: 20px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.main_efficacy .yellow_line_wrapper {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-template-rows: max-content;
  align-items: center;
  max-width: 724px;
  margin: 32px auto 40px auto;
}


@media (min-width: 992px) {
  .main_efficacy .yellow_line_wrapper {
    padding: 0 0 0 12px;
  }
}

@media (max-width: 991px) {
  .main_efficacy .yellow_line_wrapper {
    margin: 12px auto 40px auto;
  }
}

.trial_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  margin: 40px 0 0 0;
}

.main_npm1m-aml .trial_disclaimer {
  margin: 1px 0 0 0;
}

@media (max-width: 991px) {
  .trial_disclaimer {
    margin: 40px 0 0 0;
  }
}

.trial_middle {
  border-radius: 40px 0 0 0;
  max-width: 910px;
  margin: 0 auto 0 auto;
  display: grid;
  grid-template-columns: 512px 390px;
  grid-template-rows: auto;
  column-gap: 10px;
  row-gap: 10px;
  background-color: var(--green_2);
}

@media (max-width: 991px) {
  .trial_middle {
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: revert;
  }
}

.trial_middle_1 {
  border-radius: 40px 0 0 0;
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  background-color: var(--white);
}

@media (max-width: 991px) {
  .trial_middle_1 {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

.trial_middle_2 {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  background-color: var(--white);
}

@media (max-width: 991px) {
  .trial_middle_2 {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
}

.trial_middle_3 {
  grid-row: 2 / 3;
  grid-column: 2 / 2;
  background-color: var(--white);
}

@media (max-width: 991px) {
  .trial_middle_3 {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
}

.trial_middle_1 .trial_middle_text {
  max-width: 270px;
}

@media (max-width: 991px) {
  .trial_middle_1 .trial_middle_text {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .trial_middle_1 .trial_middle_text {
    max-width: 225px;
  }
}

.trial_circle_wrapper {
  height: 70px;
  width: 70px;
  background-color: var(--green_2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(40px, -50%);
  z-index: 2;
  background-image: url(../img/icon_circle_arrow_right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 991px) {
  .trial_circle_wrapper {
    background-image: url(../img/icon_circle_arrow_bottom.svg);
    height: 40px;
    width: 40px;
    top: revert;
    right: 50%;
    bottom: 0;
    transform: translate(50%, 18px);
  }
}

.trial_middle_1_list {
  margin: 10px 0 0 0;
}

.trial_middle_1_list_item {
  position: relative;
  padding: 0 0 0 12px;
}

.trial_middle_1_list_item:not(:last-of-type) {
  margin: 0 0 10px 0;
}

.trial_middle_1_list_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: -1px;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.trial_middle_text {
  font-size: 18px;
  line-height: 122.2222222222%;
}

.trial_middle_text span {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.trial_middle_1_list_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.trial_item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.trial_middle_1.trial_item {
  padding: 0 0 0 34px;
}

@media (max-width: 991px) {
  .trial_middle_1.trial_item {
    padding: 27px 32px 24px 32px;
  }
}

.trial_middle_2.trial_item {
  padding: 0 0 0 45px;
}

@media (max-width: 991px) {
  .trial_middle_2.trial_item {
    padding: 12px 32px 12px 32px;
  }
}

.trial_middle_3.trial_item {
  padding: 0 0 0 45px;
}

@media (max-width: 991px) {
  .trial_middle_3.trial_item {
    padding: 12px 32px 12px 32px;
  }
}

@media (max-width: 991px) {

  .trial_middle_2 .trial_middle_text,
  .trial_middle_3 .trial_middle_text {
    line-height: 155.5555555556%;
    text-align: left;
  }
}

.trial_faq_list_top_item {
  position: relative;
  padding: 0 0 0 14px;
}

#monitoring_faq_collapse1 .trial_faq_list_top_item {
  padding: 0 0 20px 14px;
}

.trial_faq_list_top_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 0;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.trial_faq_list_top_outer_item {
  position: relative;
  padding: 0 0 0 16px;
}

.trial_faq_list_top_outer_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 0;
  content: "o";
  font-size: 17px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.trial_faq_list_top_outer_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.accordion .trial_faq_list_top_outer_item:not(:last-of-type) {
  margin: 0 0 13px 0;
}

.accordion .trial_faq_list_top_outer_item:first-of-type {
  margin: 15px 0 13px 0;
}

@media (max-width: 991px) {
  .trial_faq_list_top_item_1 .trial_faq_list_top_outer_item_text {
    width: 101.5%;
  }
}

@media (max-width: 991px) {
  .trial_faq_list_top_item_2 {
    width: 96%;
  }
}

.trial_faq_list_top_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .trial_faq_list_top_item_text {
    width: 100.8%;
  }
}

.trial_faq_list_bottom_item {
  position: relative;
  padding: 0 0 0 14px;
}

.trial_faq_list_bottom_item:not(:last-of-type) {
  margin: 0 0 20px 0;
}

.trial_faq_list_bottom_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 0;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.trial_faq_list_bottom_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .trial_faq_list_bottom_item_text.trial_faq_list_bottom_item_text_2 {
    width: 101.2%;
  }
}

.accordion_content_inner {
  display: grid;
  grid-template-columns: 424px 50%;
  column-gap: 120px;
  margin: 0 0 25px 0;
}

@media (max-width: 1199px) {
  .accordion_content_inner {
    grid-template-columns: 1fr 1fr;
    column-gap: 10px;
  }
}

@media (max-width: 991px) {
  .accordion_content_inner {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}



.main_npm1m-aml .trial_middle {
  font-size: 18px;
}

.main_npm1m-aml .trial_middle_1.trial_item {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}

.main_npm1m-aml .trial_middle_1 .parent {
  display: grid;
  grid-template-columns: 279px 221px;
  column-gap: 10px;
  height: 100%;
}

.main_npm1m-aml .trial_middle_1 .parent .action.one {
  padding: 35px 37px 37px 30px;
  background-color: var(--white);
  border-radius: 40px 0 0 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.main_npm1m-aml .trial_middle_1 .parent .action.two {
  padding: 35px 70px 37px 50px;
  background-color: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 22px;
}

.main_npm1m-aml .trial_middle_1 .parent .text-action {
  grid-column: span 2 / span 2;
  padding: 20px 50px 16px 30px;
  line-height: 22px;
}

.main_npm1m-aml .trial_middle_2 {
  grid-row: span 2;
  grid-column: 2;
  background-color: var(--white);
  padding: 35px 51px 30px;
}

.main_npm1m-aml .icon-plus-trial {
  position: absolute;
  left: 250px;
  top: 40px;
}

.main_npm1m-aml .icon-arrow-right-trial {
  position: absolute;
  left: 480px;
  top: 40px;
}

.main_npm1m-aml .trial_middle_1 .parent .action.active {
  background-color: var(--gray_6);
}

.main_npm1m-aml .trial_middle_1 .parent .action.active p,
.main_npm1m-aml .trial_middle_1 .parent .action.active p span {
  color: #ffffff33;
  line-height: 22px;
}

.accordion_disclaimer_wrapper {
  position: relative;
  padding: 0 0 0 6px;
}

.accordion_disclaimer {
  margin: 30px 0 0 0;
  font-size: 14px;
  line-height: 128.5714285714%;
}

.accordion_disclaimer::before {
  color: var(--white);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 0;
  content: "*";
  font-size: 14px;
  font-weight: 500;
  font-family: var(--montserrat);
}

.accordion_shape {
  margin: 40px 0 0 0;
  padding: 27px 30px 27px 50px;
  border-radius: 40px 0 40px 0;
  display: grid;
  grid-template-rows: max-content max-content max-content;
  grid-auto-flow: row;
}

@media (max-width: 991px) {
  .accordion_shape {
    padding: 27px 17px 43px 17px;
  }
}

@media (max-width: 355px) {
  .accordion_shape {
    padding: 27px 0 43px 0;
  }
}

.accordion_shape_circles {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  grid-template-rows: max-content max-content;
  align-items: center;
  column-gap: 0;
  row-gap: 30px;
}

@media (max-width: 1199px) {
  .accordion_shape_circles {
    grid-template-columns: max-content max-content 1fr;
  }
}

@media (max-width: 991px) {
  .accordion_shape_circles {
    grid-template-columns: max-content max-content;
    grid-template-rows: max-content max-content max-content;
    column-gap: 0;
    row-gap: 0;
    column-gap: 36px;
    justify-items: center;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .accordion_shape_circles {
    padding: 0 0 0 15px;
  }
}

@media (max-width: 374px) {
  .accordion_shape_circles {
    column-gap: 5px;
  }
}

.accordion_shape_title {
  font-size: 20px;
  line-height: 1;
}

@media (min-width: 992px) {
  .accordion_shape_title {
    margin: 0 0 -10px 0;
  }
}

@media (max-width: 991px) {
  .accordion_shape_title {
    text-align: center;
    margin: 0 0 30px 0;
  }
}

.accordion_shape_footer {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 9px;
}

@media (min-width: 992px) {
  .accordion_shape_footer {
    margin: -10px 0 0 0;
  }
}

@media (max-width: 991px) {
  .accordion_shape_footer {
    gap: 9px;
    grid-row: 2 / 3;
    justify-self: center;
    margin: 0 0 30px 0;
    align-items: start;
    justify-content: center;
  }
}

.accordion_shape_footer_text {
  font-size: 18px;
  line-height: 144.4444444444%;
}

@media (max-width: 991px) {
  .accordion_shape_footer_text {
    text-align: center;
  }
}

@media (max-width: 355px) {
  .accordion_shape_footer_text {
    font-size: 16px;
  }
}

.accordion_shape_circle_big {
  height: 157px;
  width: 157px;
  border-radius: 50%;
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  position: relative;
  background-image: url(../img/icon_people_in_a_circle.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

@media (min-width: 992px) {
  .accordion_shape_circle_big {
    margin: 0 217px 0 0;
  }
}

@media (max-width: 991px) {
  .accordion_shape_circle_big {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    margin: 0 0 141px 0;
  }
}

@media (min-width: 992px) {

  .accordion_shape_extra_texts_top,
  .accordion_shape_extra_texts_bottom {
    padding: 0 0 0 60px;
  }
}

@media (max-width: 991px) {

  .accordion_shape_extra_texts_top,
  .accordion_shape_extra_texts_bottom {
    padding: 60px 0 0 0;
  }
}

@media (max-width: 991px) {
  .accordion_shape_extra_texts_top {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
}

@media (max-width: 991px) {
  .accordion_shape_extra_texts_bottom {
    grid-row: 3 / 4;
    grid-column: 2 / 3;
  }
}

.accordion_shape_extra_texts_top_text {
  font-size: 20px;
  line-height: 180%;
}

@media (max-width: 991px) {
  .accordion_shape_extra_texts_top_text {
    text-align: center;
    line-height: 150%;
  }
}

@media (max-width: 374px) {
  .accordion_shape_extra_texts_top_text {
    font-size: 18px;
  }
}

.accordion_shape_extra_texts_bottom_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 991px) {
  .accordion_shape_extra_texts_bottom_text {
    text-align: center;
  }
}

@media (max-width: 374px) {
  .accordion_shape_extra_texts_bottom_text {
    font-size: 16px;
  }
}

.accordion_shape_circle_top {
  height: 86px;
  width: 86px;
  border-radius: 50%;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  position: relative;
  background-image: url(../img/icon_person_in_a_circle.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

@media (max-width: 991px) {
  .accordion_shape_circle_top {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }
}

.accordion_shape_circle_bottom {
  height: 86px;
  width: 86px;
  border-radius: 50%;
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  position: relative;
  background-image: url(../img/icon_person_in_a_circle.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

@media (max-width: 991px) {
  .accordion_shape_circle_bottom {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
  }
}

.accordion_shape_big_child {
  height: 92px;
  width: 92px;
  border: solid 3px var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  right: 25px;
  top: 50%;
  transform: translate(100%, -50%);
}

.accordion_shape_big_child p {
  font-size: 22px;
  line-height: 1;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  background-color: var(--wine);
}

@media (max-width: 991px) {
  .accordion_shape_big_child {
    height: 92px;
    width: 92px;
    right: revert;
    top: revert;
    left: 50%;
    bottom: 47px;
    transform: translate(-50%, 100%);
  }
}

.straight_yellow_lines {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.straight_yellow_lines::before {
  background-image: url(./../img/icon_straight_lines_desktop.svg);
  width: 159px;
  height: 119px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  content: "";
}

@media (max-width: 991px) {
  .straight_yellow_lines::before {
    display: none;
  }
}

.accordion_shape_small_child {
  height: 63px;
  width: 63px;
  border: solid 3px var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(100%, -50%);
}

.accordion_shape_small_child p {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 991px) {
  .accordion_shape_small_child {
    height: 63px;
    width: 63px;
    right: revert;
    top: revert;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 100%);
  }
}

@media (max-width: 991px) {
  .yellow_line_mob_1::before {
    position: absolute;
    content: "";
    height: 44px;
    width: 3px;
    background-color: var(--yellow);
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}

@media (max-width: 991px) {
  .yellow_line_mob_1::after {
    position: absolute;
    content: "";
    height: 50px;
    width: 3px;
    background-color: var(--yellow);
    top: -96px;
    left: 50%;
    transform: translate(83px, 0);
  }
}

@media (max-width: 374px) {
  .yellow_line_mob_1::after {
    left: 50%;
    transform: translate(62px, 0);
  }
}

@media (max-width: 991px) {
  .yellow_line_mob_2::before {
    position: absolute;
    content: "";
    height: 44px;
    width: 3px;
    background-color: var(--yellow);
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}

@media (max-width: 991px) {
  .yellow_line_mob_2::after {
    position: absolute;
    content: "";
    height: 3px;
    width: 172px;
    background-color: var(--yellow);
    top: -44px;
    left: 50%;
    transform: translate(-171px, -100%);
  }
}

@media (max-width: 374px) and (max-width: 991px) {
  .yellow_line_mob_2::after {
    width: 126px;
    transform: translate(-125px, -100%);
  }
}

.base {
  padding: 80px 0 45px 0;
}

@media (max-width: 991px) {
  .base {
    padding: 45px 0 50px 0;
  }
}

.base_top_title {
  font-size: 26px;
  line-height: 115.3846153846%;
  max-width: 756px;
  margin: 0 auto 36px auto;
}

.base_top_blocks {
  margin: 0 0 47px 0;
}

.main_efficacy .rate__brick_info_1 {
  left: 0;
}

.main_efficacy .rate__brick_info_2 {
  left: 0;
}

.main_efficacy .rate__brick_info_3 {
  left: 0;
}

.main_efficacy .rate_brick_info_title {
  font-size: 18px;
  line-height: 111.1111111111%;
}

.main_efficacy .rate__bricks {
  margin: 0 auto 47px auto;
}

@media (max-width: 991px) {
  .main_efficacy .rate__bricks {
    gap: 40px;
  }
}

.main_efficacy .reactions_table_grid.reactions_table_header,
.main_efficacy .reactions_table_grid.reactions_table_body {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  grid-template-rows: 1fr;
  align-items: center;
}

.main_efficacy .reactions_table_header .reactions_table_column {
  grid-column: 1 / 3;
}

.main_efficacy .reactions_table_content .reactions_table_column:last-of-type {
  padding: 0 0 0 40px;
}

@media (max-width: 575px) {
  .main_efficacy .reactions_table_content .reactions_table_column:last-of-type {
    padding: 0 0 0 30px;
  }
}

@media (max-width: 355px) {
  .main_efficacy .reactions_table_content .reactions_table_column:last-of-type {
    padding: 0 0 0 20px;
  }
}

.main_efficacy .extra_left_padding {
  padding: 0 0 0 15px;
}

.main_efficacy .reactions_table_body.extra_vertical_padding {
  padding: 11px 0 11px 20px;
}

.main_efficacy .reactions_table_content {
  position: relative;
}

.main_efficacy .reactions_table_content .reactions_table_body:first-of-type .reactions_table_text::before {
  border-left: dotted 1px var(--gray_6);
  content: "";
  position: absolute;
  top: 0;
  right: 30%;
  height: 100%;
}

.main_efficacy .reactions_tables_left {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .main_efficacy .reactions_tables_left {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

.main_efficacy .reactions_tables_right {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

@media (max-width: 991px) {
  .main_efficacy .reactions_tables_right {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    padding-top: 60px;
  }
}

@media (min-width: 992px) {
  .main_efficacy .container_accordion_mobile {
    display: none;
  }
}

.main_efficacy .container_accordion_mobile.container_accordion_mobile_1 {
  margin: 0 auto 30px auto;
}

.main_efficacy .container_accordion_mobile .accordion-item {
  border: none;
}

@media (max-width: 575px) {
  .main_efficacy .container_accordion_mobile .accordion-collapse {
    margin: 0 -20px;
  }
}

.main_efficacy .container_accordion_mobile .accordion-header {
  font-size: 16px;
  line-height: 131.25%;
  color: var(--white);
  padding: 0 0 0 10px;
}

@media (max-width: 575px) {
  .main_efficacy .container_accordion_mobile .accordion-header {
    padding: 0 0 0 0;
  }
}

.main_efficacy .container_accordion_mobile .accordion-button {
  background-color: var(--green);
  padding: 11px 38px 12px 0;
}

@media (max-width: 575px) {
  .main_efficacy .container_accordion_mobile .accordion-button.full-bleed {
    box-shadow: 0 0 0 100vmax var(--green);
    clip-path: inset(0 -100vmax);
  }
}

.main_efficacy .container_accordion_mobile .accordion-button::after {
  background-image: url(../img/icon_plus_circle_white.svg);
  top: 21px;
  right: 10px;
}

@media (max-width: 575px) {
  .main_efficacy .container_accordion_mobile .accordion-button::after {
    right: 0;
  }
}

.main_efficacy .container_accordion_mobile .accordion-button:not(.collapsed)::after {
  background-image: url(../img/icon_minus_circle_white.svg);
  transition: none;
}

.main_efficacy .container_accordion_mobile .accordion .accordion-body {
  padding: 0 0 0 0;
}

.main_efficacy .reactions_table_content_extra.reactions_table_content .reactions_table_column:last-of-type {
  padding: 0 0 0 30px;
}

@media (max-width: 575px) {
  .main_efficacy .reactions_table_content_extra.reactions_table_content .reactions_table_column:last-of-type {
    padding: 0 0 0 20px;
  }
}

@media (max-width: 355px) {
  .main_efficacy .reactions_table_content_extra.reactions_table_content .reactions_table_column:last-of-type {
    padding: 0 0 0 10px;
  }
}

.reactions_table_reference_wrapper {
  position: relative;
  padding: 0 0 0 3px;
}

@media (min-width: 992px) {
  .reactions_table_reference_wrapper {
    padding: 0 0 0 6px;
  }
}

.reactions_table_reference::before {
  color: #ffffff;
  margin-right: 8px;
  position: absolute;
  left: -3px;
  top: 0;
  content: "*";
  font-size: 14px;
  font-weight: 500;
  font-family: var(--montserrat);
}

@media (min-width: 992px) {
  .reactions_table_reference::before {
    left: 0;
  }
}

.reactions_table_reference {
  font-size: 14px;
  line-height: 128.5714285714%;
  margin: 10px 0 0 0;
}

.reaction_table_disclaimer {
  background-image: url(../img/bg_reaction_table_disclaimer.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 407px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  border-radius: 40px 0 40px 0;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
  align-self: end;
  margin: 0 0 28px 0;
}

@media (max-width: 991px) {
  .reaction_table_disclaimer {
    margin: 0 0 0 0;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    align-self: revert;
  }
}

@media (max-width: 991px) {
  .reaction_table_disclaimer_desktop {
    display: none;
  }
}

.reaction_table_disclaimer_mobile {
  background-image: url(../img/icon_reaction_table_disclaimer_mobile_new.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 40px 0 0 0;
  padding: 80px 15px;
  height: revert;
}

@media (min-width: 992px) {
  .reaction_table_disclaimer_mobile {
    display: none;
  }
}

.reaction_table_disclaimer_mobile .reaction_table_disclaimer_text {
  font-size: 26px;
  line-height: 138.4615384615%;
}

.reaction_table_disclaimer_text {
  font-size: 26px;
  line-height: 138.4615384615%;
}

.revuforj_professional_check.special_modals .modal-header,
.revuforj_professional_check.special_modals .modal-content,
.revuforj_third_party_leaving.special_modals .modal-header,
.revuforj_third_party_leaving.special_modals .modal-content {
  border-radius: 30px 5px 30px 5px;
}

.revuforj_professional_check.special_modals .modal-button-accept,
.revuforj_third_party_leaving.special_modals .modal-button-accept {
  max-width: 175px;
  border-radius: 10px 2px 10px 2px;
  font-family: var(--montserrat);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 991px) {

  .revuforj_professional_check.special_modals .modal-button-accept,
  .revuforj_third_party_leaving.special_modals .modal-button-accept {
    max-width: 175px;
  }
}

.revuforj_professional_check.special_modals .modal-button-cancel,
.revuforj_third_party_leaving.special_modals .modal-button-cancel {
  max-width: 175px;
  border-radius: 10px 2px 10px 2px;
  border: solid 2px var(--wine);
  font-family: var(--montserrat);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.revuforj_professional_check.special_modals .modal-body p,
.revuforj_third_party_leaving.special_modals .modal-body p {
  font-size: 18px;
  line-height: 175%;
  margin: 20px 0 0 0;
}

.revuforj_professional_check.special_modals .modal-body h2,
.revuforj_third_party_leaving.special_modals .modal-body h2 {
  font-size: 26px;
  line-height: 123.0769230769%;
  margin: 0 0 0 0;
}

.revuforj_professional_check.special_modals .modal-footer,
.revuforj_third_party_leaving.special_modals .modal-footer {
  padding: 16px 0 76px 0;
}

@media (max-width: 991px) {

  .revuforj_professional_check.special_modals .modal-footer,
  .revuforj_third_party_leaving.special_modals .modal-footer {
    padding: 16px 0 40px 0;
    gap: 30px;
  }
}

.revuforj_professional_check.special_modals .modal-dialog,
.revuforj_third_party_leaving.special_modals .modal-dialog {
  max-width: 879px;
}

.revuforj_professional_check.special_modals .modal-body,
.revuforj_third_party_leaving.special_modals .modal-body {
  padding: 51px 12px 12px 12px;
}

@media (max-width: 991px) {

  .revuforj_professional_check.special_modals .modal-body,
  .revuforj_third_party_leaving.special_modals .modal-body {
    padding: 0 12px 12px 12px;
  }
}

.revuforj_site_map .site_map {
  padding: 73px 0 45px 0;
}

@media (max-width: 991px) {
  .revuforj_site_map .site_map {
    padding: 50px 0 20px 0;
  }
}

.revuforj_site_map .site_map .parent {
  list-style: none;
}

.revuforj_site_map .site_map li {
  position: relative;
}

.revuforj_site_map .site_map li::before {
  content: "•";
  color: var(--magenta);
  font-family: var(--kallisto);
  font-size: 18px;
  position: absolute;
  left: -9px;
  top: -1px;
}

.revuforj_site_map .site_map .child li::before {
  content: "o";
  color: var(--magenta);
  font-family: var(--kallisto);
  font-size: 18px;
  position: absolute;
  left: -5px;
  top: -1px;
  font-weight: 800;
}

.revuforj_site_map .site_map .child {
  padding: 0 0 0 35px;
  position: relative;
}

.revuforj_site_map .site_map_wrapper {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 18px;
  line-height: 122.22222%;
  color: var(--teal_2);
  padding-left: 0;
}

.revuforj_site_map .site_map a {
  color: var(--gray_1);
  margin: 0 0 11px 10px;
  display: inline-block;
}

.title_bar {
  min-height: 168px;
  display: grid;
  place-items: center;
}

.title_bar_wrapper {
  height: 100px;
  max-width: 473px;
  width: 100%;
  display: grid;
  place-items: center;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 991px) {
  .title_bar_wrapper {
    height: 80px;
    max-width: 355px;
  }
}

.main_KMT2Ar_AML_ALL .title_bar_wrapper {
  max-width: 525px;
}

@media (max-width: 991px) {
  .main_KMT2Ar_AML_ALL .title_bar_wrapper {
    padding: 15px 15px;
    min-height: 80px;
    height: auto;
  }
}

.main_mechanism_of_action .title_bar_wrapper {
  max-width: 433px;
}

.main_efficacy .title_bar_wrapper {
  max-width: 433px;
}

.main_safety .title_bar_wrapper {
  max-width: 433px;
}

.main_dosing_and_management .title_bar_wrapper {
  max-width: 473px;
}

.main_resources .title_bar_wrapper {
  max-width: 473px;
}

.main_access_and_patient_support .title_bar_wrapper {
  max-width: 553px;
}

.main_stay_connected .title_bar_wrapper {
  max-width: 473px;
}

.main_request_a_rep .title_bar_wrapper {
  max-width: 473px;
}

.main_site_map .title_bar_wrapper {
  max-width: 473px;
}

.title_bar_wrapper h1::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/title_bar_shape_top.svg);
  background-position: top left;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -30px;
}

@media (max-width: 991px) {
  .title_bar_wrapper h1::before {
    background-image: url(../img/title_bar_shape_top_mobile.svg);
    left: -10px;
  }
}

.title_bar_wrapper h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/title_bar_shape_bottom.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: -30px;
}

@media (max-width: 991px) {
  .title_bar_wrapper h1::after {
    background-image: url(../img/title_bar_shape_bottom_mobile.svg);
    right: -10px;
  }
}

.title_bar_yellow .title_bar_wrapper h1::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/title_bar_shape_top_yellow.svg);
  background-position: top left;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 991px) {
  .title_bar_yellow .title_bar_wrapper h1::before {
    background-image: url(../img/title_bar_shape_top_yellow_mobile.svg);
    left: -10px;
  }
}

.title_bar_yellow .title_bar_wrapper h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/title_bar_shape_bottom_yellow.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 991px) {
  .title_bar_yellow .title_bar_wrapper h1::after {
    background-image: url(../img/title_bar_shape_bottom_yellow_mobile.svg);
    right: -10px;
  }
}

.main_access_and_patient_support .title_bar_wrapper {
  max-width: 553px;
}

.title_bar_text {
  font-size: 32px;
  line-height: 112.5%;
}

@media (max-width: 991px) {
  .title_bar_text {
    font-size: 24px;
    line-height: 150%;
  }
}

.page_not_found_wrapper {
  padding: 0 0 100px 0;
}

.page_not_found_wrapper .generic_button {
  margin: 0 auto 0 auto;
}

.page_not_found_wrapper_title {
  font-size: 26px;
  line-height: 123.0769230769%;
}

@media (max-width: 991px) {
  .page_not_found_wrapper_title {
    font-size: 20px;
    line-height: 180%;
  }
}

.page_not_found_wrapper_text {
  margin: 35px auto 35px auto;
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (max-width: 575px) {
  .page_not_found_wrapper_text {
    padding: 0 18px;
  }
}

.not_found_img {
  max-width: 515px;
  margin: 75px auto 20px auto;
  display: block;
}

@media (max-width: 991px) {
  .not_found_img {
    max-width: 275px;
    margin: 50px auto 20px auto;
  }
}

.stay_connected_title,
.request_a_rep_title {
  margin: 80px 0 40px 0;
}

@media (max-width: 991px) {

  .stay_connected_title,
  .request_a_rep_title {
    margin: 50px 0 30px 0;
  }
}

.form_top_texts_subheader {
  margin: 0 0 40px 0;
}

@media (max-width: 991px) {
  .form_top_texts_subheader {
    margin: 0 0 30px 0;
  }
}

.form_button_wrapper {
  display: grid;
  place-items: center;
}

.form_button_wrapper p {
  max-width: 330px;
  width: 100%;
}

form .generic_button {
  border: none;
  max-width: 330px;
}

.navigation_bar {
  position: sticky;
  background-color: var(--white);
  top: 170px;
  z-index: 15;
  box-shadow: inset 0px 12px 8px -6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 991px) {
  .navigation_bar {
    top: 170px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navigation_bar {
    top: 144px;
  }
}

.navigation_bar:before {
  border-bottom: solid 6px rgba(110, 113, 133, 0.2);
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  width: 100%;
  height: 6px;
}

@media (max-width: 991px) {
  .navigation_bar:before {
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .navigation_bar .row>* {
    padding: 0;
  }
}

.navigation_bar_wrapper {
  display: flex;
  align-items: center;
  background-color: transparent;
}

@media (max-width: 991px) {
  .navigation_bar_wrapper {
    padding: 0 0 0 20px;
  }
}

.navigation_list {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
  padding: 0;
}

@media (max-width: 991px) {
  .navigation_list {
    height: 40px;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    padding-right: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

.navigation_list_item {
  position: relative;
  cursor: pointer;
}

.navigation_list_item_text {
  font-size: 14px;
  line-height: 18px;
}

.active-indicator {
  position: absolute;
  bottom: 0;
  height: 6px;
  background-color: var(--magenta);
  border-radius: 4px;
  transition: all 0.3s ease;
  width: 0;
  left: 0;
}

@media (max-width: 991px) {
  .active-indicator {
    bottom: 0;
  }
}

.navigation_list_link {
  min-height: 34px;
  display: grid;
  place-items: center;
}

@media (min-width: 992px) {
  .navigation_list_link {
    min-height: 38px;
  }
}

@media (max-width: 366px) {
  .header__professional .row_no_padding_mobile>* {
    padding-left: 0;
    padding-right: 0;
  }
}

.response_rates {
  padding: 80px 0 80px 0;
}

@media (max-width: 991px) {
  .response_rates {
    padding: 50px 0 50px 0;
  }
}

.response_ani_1 .response_ani_1_brick {
  max-width: 371px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    left: -100%;
  }

  to {
    left: 0;
  }
}

.response_ani_1 {
  height: 316px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
}

.response_ani_1_brick {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.response_ani_1.active .response_ani_1_brick {
  animation: fadeIn 0.25s forwards;
}

.response_ani_1.active .response_ani_1_brick_1 {
  animation-delay: 0s;
}

.response_ani_1.active .response_ani_1_brick_2 {
  animation-delay: 0s;
}

.response_ani_1.active .response_ani_1_brick_3 {
  animation-delay: 0s;
}

.response_ani_1.active .response_ani_1_brick_4 {
  animation-delay: 0s;
}

.response_ani_1.active .response_ani_1_brick_5 {
  animation-delay: 0s;
}

.response_ani_1.active .response_ani_1_brick_6 {
  animation-delay: 0s;
}

.response_ani_1.active .response_ani_1_brick_7 {
  animation-delay: 0.5s;
}

.response_ani_1_text_wrapper {
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 90px;
  top: 30px;
  opacity: 0;
}

.response_ani_1.active .response_ani_1_text_wrapper {
  animation: fadeIn 0.5s forwards;
  animation-delay: 0.5s;
}

.response_ani_1_extra {
  position: absolute;
  top: 125px;
  left: 340px;
  width: 300px;
  height: 161px;
  overflow: hidden;
}

.response_ani_1_extra_inner {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.response_ani_1.active .response_ani_1_extra_inner {
  animation: fadeIn 0.5s forwards, slideRight 0.5s forwards;
  animation-delay: 0.5s, 0.5s;
}

.response_ani_1_text_1 {
  font-size: 30px;
  line-height: 1;
}

.response_ani_1_text_2 {
  font-size: 20px;
  line-height: 1;
}

.response_ani_1_mobile_texts {
  display: flex;
  align-items: flex-end;
}

.response_ani_1_mobile_text_1 {
  font-size: 26px;
  line-height: 1;
}

.response_ani_1_mobile_text_2 {
  font-size: 17px;
  line-height: 1.2;
}

.response_ani_1_mobile {
  position: relative;
  min-height: 264px;
}

.response_ani_1_mobile_img {
  max-width: 331px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 355px) {
  .response_ani_1_mobile_img {
    max-width: 100%;
  }
}

.response_ani_1_mobile_texts {
  position: absolute;
  top: 23px;
  left: 81px;
}

@media (max-width: 355px) {
  .response_ani_1_mobile_texts {
    top: 16px;
    left: 61px;
  }
}

.response_ani_2 {
  height: 158px;
  width: 100%;
  max-width: 724px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
}

.response_ani_1_extra_img_desk {
  max-width: 300px;
}

@keyframes shake {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-1px);
  }

  50% {
    transform: translateY(1px);
  }

  75% {
    transform: translateY(-1px);
  }

  100% {
    transform: translateY(0);
  }
}

.response_ani_2.active .response_ani_2_equipment_bubbles {
  animation: shake 1s infinite;
  animation-delay: 1.5s;
}

.response_ani_2.active .response_ani_2_equipment_no_bubbles {
  left: 190px;
}

@media (max-width: 991px) {
  .response_ani_2.active .response_ani_2_equipment_no_bubbles {
    left: calc(50% - 131px);
  }
}

.response_ani_2.active .response_ani_2_equipment_bubbles {
  left: 190px;
}

@media (max-width: 991px) {
  .response_ani_2.active .response_ani_2_equipment_bubbles {
    left: calc(50% - 131px);
  }
}

.response_ani_2_equipment_no_bubbles {
  position: absolute;
  top: 0px;
  left: 20px;
  transition: ease all 1.5s;
}

@media (max-width: 991px) {
  .response_ani_2_equipment_no_bubbles {
    left: 0;
  }
}

.response_ani_2_equipment_bubbles {
  position: absolute;
  top: 0;
  left: 20px;
  transition: ease all 1.5s;
}

@media (max-width: 991px) {
  .response_ani_2_equipment_bubbles {
    left: 0;
  }
}

.response_ani_2_texts {
  position: absolute;
  top: 40px;
  left: 325px;
}

@media (max-width: 991px) {
  .response_ani_2_texts {
    left: 52%;
  }
}

.response_ani_2_texts_top {
  display: flex;
  align-items: flex-end;
}

.response_ani_2_texts_top_left {
  font-size: 60px;
  line-height: 1;
  letter-spacing: -15px;
  position: relative;
  left: -3px;
}

.main_kmt2a-aml .response_ani_2_texts_top_left {
  letter-spacing: 0px;
}

@media (max-width: 991px) {
  .response_ani_2_texts_top_left {
    font-size: 54px;
    left: -10px;
  }

  .main_kmt2a-aml .response_ani_2_texts_top_left {
    font-size: 54px;
    left: -3px;
  }
}

@media (max-width: 345px) {
  .response_ani_2_texts_top_left {
    letter-spacing: -2.5px;
  }
}

.response_ani_2_texts_top_middle {
  font-size: 30px;
  line-height: 1;
  position: relative;
  bottom: 4px;
}

.main_kmt2a-aml .response_ani_2_texts_top_middle {
  left: -3px;
}

@media (max-width: 991px) {
  .response_ani_2_texts_top_middle {
    font-size: 27px;
  }
}

.response_ani_2_texts_top_right {
  font-size: 16px;
  line-height: 1;
  position: relative;
  bottom: 7px;
}

.main_kmt2a-aml .response_ani_2_texts_top_right {
  left: -3px;
}

@media (max-width: 991px) {
  .response_ani_2_texts_top_right {
    position: absolute;
    bottom: -24px;
    left: -5px;
  }
}

.response_ani_2_texts_bottom_text {
  font-size: 18px;
  line-height: 111.1111111111%;
}

.response_ani_3 {
  width: 100%;
  height: 76px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .response_ani_3 {
    height: 100px;
  }
}

.response_ani_3 .yellow_line_wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
  .response_ani_3 .yellow_line_wrapper {
    height: 15px;
  }
}

.response_ani_3.active .response_ani_3_fist {
  top: 50%;
}

.response_ani_3.active .response_ani_3_rays {
  top: 50%;
  opacity: 1;
  transition-delay: 1.5s;
}

.response_ani_3 .response_ani_3_fist {
  width: 79px;
  height: 80px;
  position: absolute;
  top: 152%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: ease all 1.5s;
  z-index: 1;
}

.response_ani_3 .response_ani_3_rays {
  width: 79px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: ease all 1.5s;
  transition-delay: 0;
  opacity: 0;
  z-index: 1;
}

.response_ani_3_bubbles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
}

.response_title {
  font-size: 26px;
  line-height: 138.4615384615%;
}

.response_subtitle {
  font-size: 20px;
  line-height: 160%;
}

.response_disclaimer_text {
  font-size: 14px;
  line-height: 128.5714285714%;
}

.response_ani_1_disclaimer .response_disclaimer_list_item:not(:last-of-type) .response_disclaimer_text {
  margin: 0 0 10px 0;
}

.response_ani_2_disclaimer .response_disclaimer_list_item:not(:last-of-type) .response_disclaimer_text,
.response_ani_3_disclaimer .response_disclaimer_list_item:not(:last-of-type) .response_disclaimer_text {
  margin: 0 0 15px 0;
}

.response_ani_2_disclaimer {
  margin: 38px 0 0 0;
}

.response_shape {
  border-radius: 40px 0 40px 0;
  padding: 19px 15px;
  margin: 0 auto 0 auto;
}

@media (min-width: 992px) {
  .response_shape {
    max-width: 724px;
  }
}

.response_shape_text {
  font-size: 18px;
  line-height: 122.2222222222%;
}

.response_ani_1_top .response_subtitle {
  margin: 16px 0 29px 0;
}

.response_ani_2_top .response_subtitle {
  margin: 0 0 24px 0;
}

@media (max-width: 991px) {
  .response_ani_2_top .response_subtitle {
    margin: 0 0 27px 0;
  }
}

.response_ani_3_top .response_subtitle {
  margin: 56px 0 13px 0;
}

@media (max-width: 991px) {
  .response_ani_3_top .response_subtitle {
    margin: 50px 0 27px 0;
  }
}

.response_ani_1_disclaimer {
  margin: 37px 0 0 0;
}

@media (min-width: 992px) {
  .response_ani_1_disclaimer {
    margin: 0 0 0 0;
  }
}

.response_ani_1_disclaimer .response_disclaimer_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .response_ani_1_disclaimer .response_disclaimer_list_item:nth-child(1) {
    order: 2;
  }

  .response_ani_1_disclaimer .response_disclaimer_list_item:nth-child(1) .response_disclaimer_text {
    margin: 0 0 0 0;
  }
}

@media (max-width: 991px) {
  .response_ani_1_disclaimer .response_disclaimer_list_item:nth-child(2) {
    order: 0;
  }
}

@media (max-width: 991px) {
  .response_ani_1_disclaimer .response_disclaimer_list_item:nth-child(3) {
    order: 1;
  }

  .response_ani_1_disclaimer .response_disclaimer_list_item:nth-child(3) .response_disclaimer_text {
    margin: 0 0 10px 0;
    width: 100.1%;
  }
}

.response_ani_2_shape {
  margin: 37px auto 41px auto;
}

@media (max-width: 991px) {
  .response_ani_2_shape {
    margin: 29px auto 30px auto;
    padding: 22px 15px;
  }
}

.response_ani_2_bottom_list {
  margin: 19px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 991px) {
  .response_ani_2_bottom_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.response_ani_3_bottom_list_1 {
  margin: 20px 0 15px 0;
}

@media (min-width: 992px) {
  .response_ani_3_bottom_list_1 {
    display: flex;
    justify-content: center;
  }
}

.response_ani_3_bottom_list_2 {
  margin: 15px 0 37px 0;
}

@media (min-width: 992px) {
  .response_ani_3_bottom_list_2 {
    display: flex;
    justify-content: center;
  }
}

.response_ani_bottom_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.about__list_item {
  position: relative;
  padding: 0 0 0 12px;
}

.about__content_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: -1px;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.testing__list_item {
  position: relative;
  padding: 0 0 0 12px;
}

.testing__list_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: -1px;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.response_ani_2_bottom_list_item {
  position: relative;
  padding: 0 0 0 12px;
}

.response_ani_2_bottom_list_item .response_ani_bottom_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 0;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.response_ani_3_bottom_list_item {
  position: relative;
  padding: 0 0 0 12px;
}

.response_ani_3_bottom_list_item .response_ani_bottom_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: 0;
  top: 0;
  content: "•";
  font-size: 18px;
  font-weight: 700;
  font-family: var(--kallisto);
}

.moa_mob_img {
  max-width: 216px;
}

.moa_mob_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.moa_mob {
  padding: 50px 0 0 0;
}

.moa_mob_top,
.moa_mob_bottom {
  padding: 50px 12px 50px 12px;
  border-radius: 40px 0 40px 0;
}

.moa_mob_title {
  font-size: 18px;
  line-height: 155.5555555556%;
  margin: 0 0 25px 0;
}

.moa_mob_middle {
  display: grid;
  place-items: center;
  margin: 50px 0 50px 0;
}

.moa_mob_text {
  margin: 19px 0 0 0;
  font-size: 18px;
  line-height: 155.5555555556%;
}

.moa_mob_blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.main_efficacy .response_ani_2 .yellow_line_wrapper {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-template-rows: max-content;
  align-items: center;
  max-width: 724px;
  margin: 32px auto 40px auto;
}

@media (min-width: 992px) {
  .main_efficacy .response_ani_2 .yellow_line_wrapper {
    padding: 0 0 0 0;
  }
}

@media (max-width: 991px) {
  .main_efficacy .response_ani_2 .yellow_line_wrapper {
    margin: 0 auto 0 auto;
  }
}

.main_efficacy .response_ani_3 .yellow_line_wrapper {
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  grid-template-rows: max-content;
  align-items: center;
  max-width: 724px;
  margin: 32px auto 40px auto;
}

@media (min-width: 992px) {
  .main_efficacy .response_ani_3 .yellow_line_wrapper {
    padding: 0 0 0 0;
  }
}

@media (max-width: 991px) {
  .main_efficacy .response_ani_3 .yellow_line_wrapper {
    margin: 0 auto 0 auto;
  }
}

.response_disclaimer_list_item {
  padding: 0 0 0 0;
  position: relative;
}

.response_disclaimer_list_item .response_disclaimer_text_2::before {
  color: var(--gray_1);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -8px;
  top: -1px;
  content: "*";
  font-size: 14px;
  font-family: var(--kallisto);
}

.response_disclaimer_list_item .response_disclaimer_text_7::before {
  color: var(--gray_1);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -6px;
  top: -3px;
  content: "†";
  font-size: 10px;
  font-family: var(--montserrat);
}

.form_required_fields {
  font-size: 14px;
  line-height: 128.5714285714%;
  color: #6e7185;
  margin: 0 0 40px 0;
}

@media (max-width: 991px) {
  .form_required_fields {
    margin: 0 0 30px 0;
  }
}

.yellow_info_text {
  padding: 11px 0 17px 0;
  font-size: 15px;
  line-height: 133.3333333333%;
}

@media (max-width: 991px) {

  .page-template-hcp_efficacy,
  .page-template-hcp_KMT2Ar_AML_ALL,
  .page-template-hcp_mechanism_of_action,
  .page-template-hcp_safety,
  .page-template-hcp_dosing_and_management,
  .page-template-hcp_resources,
  .page-template-hcp_access_and_patient_support,
  .page-template-hcp_request_a_rep,
  .page-template-hcp_stay_connected,
  .page-template-hcp_404_error {
    padding: 0 0 0 0;
  }

  .page-template-hcp_efficacy .header_extra_mobile,
  .page-template-hcp_KMT2Ar_AML_ALL .header_extra_mobile,
  .page-template-hcp_mechanism_of_action .header_extra_mobile,
  .page-template-hcp_safety .header_extra_mobile,
  .page-template-hcp_dosing_and_management .header_extra_mobile,
  .page-template-hcp_resources .header_extra_mobile,
  .page-template-hcp_access_and_patient_support .header_extra_mobile,
  .page-template-hcp_request_a_rep .header_extra_mobile,
  .page-template-hcp_stay_connected .header_extra_mobile,
  .page-template-hcp_404_error .header_extra_mobile {
    display: none;
  }
}

.modal-backdrop {
  z-index: 2147483646;
}

.modal {
  z-index: 2147483647;
}

.following {
  padding: 80px 0 80px 0;
  background-color: rgb(197, 216, 175, 33%);
}

@media (max-width: 991px) {
  .following {
    padding: 58px 0 58px 0;
  }
}

@media (max-width: 991px) {
  .mod_faq .accordion-item_10 .accordion_list {
    width: 100%;
  }
}

.total {
  padding: 80px 0 80px 0;
}

@media (max-width: 991px) {
  .total {
    padding: 50px 0 50px 0;
  }
}

@media (max-width: 991px) {
  .total_faq .row-no-padding>.col-12 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .row.special_total_faq_row>* {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .row.special_total_faq_row .accordion .accordion-button {
    padding: 21px 38px 25px 20px;
  }
}

@media (max-width: 991px) {
  .row.special_total_faq_row .accordion .accordion-button::after {
    right: 20px;
  }
}

@media (max-width: 991px) {
  section.total .line_left::before {
    width: 12px;
    height: 1px;
    background-color: var(--white);
    left: 0;
    top: -1px;
    content: "";
    position: absolute;
  }
}

@media (max-width: 575px) {
  section.total .line_left::before {
    width: 20px;
  }
}

@media (max-width: 991px) {
  section.total .line_left::after {
    width: 12px;
    height: 1px;
    background-color: var(--white);
    left: 0;
    bottom: -1px;
    content: "";
    position: absolute;
  }
}

@media (max-width: 575px) {
  section.total .line_left::after {
    width: 20px;
  }
}

@media (max-width: 991px) {
  section.total .line_right::before {
    width: 12px;
    height: 1px;
    background-color: var(--white);
    right: 0;
    top: -1px;
    content: "";
    position: absolute;
  }
}

@media (max-width: 575px) {
  section.total .line_right::before {
    width: 20px;
  }
}

@media (max-width: 991px) {
  section.total .line_right::after {
    width: 12px;
    height: 1px;
    background-color: var(--white);
    right: 0;
    bottom: -1px;
    content: "";
    position: absolute;
  }
}

@media (max-width: 575px) {
  section.total .line_right::after {
    width: 20px;
  }
}

@media (max-width: 991px) {
  section.total {
    overflow: hidden;
  }
}

.total_table {
  margin: 25px 0 0 0;
  max-width: 983px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .total_table {
    margin: 20px 0 0 0;
  }
}

.total_table_hat {
  min-height: 60px;
  display: grid;
  grid-template-columns: repeat(4, 0.25fr);
}

.total_table_hat_inner {
  border-radius: 4px;
  grid-column: 2 / 5;
  display: grid;
  place-items: center;
}

.total_table_hat_text {
  text-align: center;
  font-size: 20px;
  line-height: 110%;
}

@media (max-width: 991px) {
  .total_table_hat_text {
    text-align: left;
    padding: 10px 12px;
  }
}

.total_table_header {
  display: grid;
  grid-template-columns: repeat(4, 0.25fr);
  justify-items: center;
  align-items: center;
}

.total_table_header_text_wrapper {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 991px) {
  .total_table_header_text_wrapper {
    min-height: 58px;
  }
}

.total_table_header_text_wrapper:not(:last-of-type) {
  position: relative;
}

.total_table_header_text {
  text-align: center;
  font-size: 20px;
  line-height: 110%;
}

@media (max-width: 991px) {
  .total_table_header_text {
    font-size: 18px;
    line-height: 111.1111111111%;
  }
}

@media (max-width: 350px) {
  .total_table_header_text {
    font-size: 16px;
  }
}

.total_table_row_text_wrapper {
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  border-bottom: solid 4px var(--white);
}

.total_table_row:last-of-type .total_table_row_text_wrapper {
  border-bottom: none;
}

.total_table_row_text_wrapper:not(:last-of-type) {
  position: relative;
}

.total_table_row_1 .total_table_row_text_wrapper:not(:last-of-type) .total_table_row_text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 1000px;
  border-right: dotted 1px var(--gray_6);
  z-index: 1;
}

.total_table_header_text_wrapper:not(:last-of-type) .total_table_header_text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  border-right: dotted 1px var(--white);
}

.total_table_row {
  display: grid;
  grid-template-columns: repeat(4, 0.25fr);
  justify-items: center;
  align-items: center;
}

.total_table_row_text {
  min-height: 40px;
  text-align: center;
  font-size: 18px;
  line-height: 155.5555555556%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .total_table_row_text {
    font-size: 16px;
    line-height: 112.5%;
    min-height: 60px;
  }
}

.total_block {
  margin: 58px auto 0 auto;
  border-radius: 40px 0 40px 0;
  padding: 40px 88px 36px 88px;
  max-width: 910px;
  width: 100%;
}

@media (max-width: 991px) {
  .total_block {
    max-width: calc(100% - 40px);
    margin: 40px auto 0 auto;
    padding: 23px 33px 27px 33px;
  }
}

.total_block_text {
  font-size: 18px;
  line-height: 122.2222222222%;
}

@media (max-width: 991px) {
  .total_block_text {
    line-height: 155.5555555556%;
  }
}

.swallow__title {
  font-size: 20px;
  line-height: 160%;
  margin: 0 auto 0 auto;
  max-width: 724px;
}

@media (max-width: 991px) {
  .swallow__title {
    margin: 0 auto 50px auto;
  }
}

@media (max-width: 991px) {
  .swallow_list {
    padding: 0 0 0 19px;
  }
}

.swallow_list_item {
  padding: 0 0 20px 0;
  position: relative;
}

.swallow_list_item .swallow_list_item_text::before {
  color: var(--magenta);
  margin-right: 8px;
  font-size: 9px;
  position: absolute;
  left: -12px;
  top: -1px;
  content: "•";
  font-size: 18px;
  font-family: var(--kallisto);
}

.swallow_list_item_text {
  font-size: 18px;
  line-height: 155.5555555556%;
}

.swallow_right_text {
  z-index: 1;
  position: relative;
  font-size: 18px;
  line-height: 155.5555555556%;
}

@media (min-width: 1200px) {
  .swallow_right_text {
    margin: 0 0 0 -13px;
    position: relative;
    top: -5px;
    left: 0;
  }
}

@media (max-width: 991px) {
  .swallow_right_text {
    width: 101.7%;
  }
}

@media (min-width: 1199px) {
  .swallow_left {
    position: relative;
    left: 10px;
    top: 15px;
  }
}

@media (max-width: 991px) {
  .swallow_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.swallow_left_disclaimer {
  font-size: 14px;
  line-height: 128.5714285714%;
  margin: -20px 0 0 0;
}

@media (min-width: 992px) {
  .swallow_left_disclaimer {
    position: relative;
    top: 30px;
    left: -25px;
  }
}

@media (min-width: 1200px) {
  .swallow_left_disclaimer {
    position: relative;
    top: 10px;
    left: 0;
  }
}

@media (max-width: 991px) {
  .swallow_left_disclaimer {
    margin: 15px 0 50px 0;
  }
}

.swallow_middle {
  display: grid;
  grid-template-columns: max-content 395px;
  align-items: center;
}

@media (min-width: 1200px) {
  .swallow_middle {
    margin: 20px 0 0 -171px;
  }
}

@media (max-width: 1199px) {
  .swallow_middle {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991px) {
  .swallow_middle {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .swallow {
    overflow: hidden;
  }
}

.swallow__img {
  max-width: 774px;
}

@media (max-width: 1199px) {
  .swallow__img {
    max-width: 400px;
    height: auto;
  }
}

@media (max-width: 991px) {
  .swallow__img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 575px) {
  .swallow__img {
    max-width: 160%;
  }
}

.swallow_top {
  margin: 0 0 22px 0;
}

@media (max-width: 991px) {
  .swallow_top {
    margin: 0 0 0 0;
  }
}

@media (min-width: 1200px) {
  .swallow_right {
    margin: 15px 0 0 -50px;
  }
}

.swallow_bottom {
  margin: 0 0 21px 0;
  display: flex;
  align-items: center;
}

@media (min-width: 1200px) {
  .swallow_bottom {
    position: relative;
    left: 0;
  }
}

@media (max-width: 991px) {
  .swallow_bottom {
    flex-direction: column;
    margin: 0 auto 0 auto;
  }
}

.swallow_bottom_text {
  font-size: 18px;
  line-height: 111.1111111111%;
  max-width: 510px;
}

@media (min-width: 992px) {
  .swallow_bottom_text {
    margin: -30px 0 0 -17px;
  }
}

@media (max-width: 991px) {
  .swallow_bottom_text {
    text-align: center;
    margin: -17px 0 0 0;
  }
}

.crash {
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .isi_btn_wrapper.isi_btn_wrapper_special {
    padding: 10px 0 10px 0;
  }
}

.error-label {
  color: red;
}

@media (min-width: 992px) {
  .download__block_1 {
    position: relative;
    margin: 0 -15px 0 0;
    z-index: 1;
  }
}

.download__block_1 img {
  max-width: 175px;
}

@media (min-width: 992px) {
  .download__block_2 {
    position: relative;
    z-index: 2;
  }
}

.download__block_2 img {
  max-width: 184px;
}

@media (min-width: 992px) {
  .download__block_3 {
    position: relative;
    z-index: 2;
    margin: 0 -32px 0 -18px;
  }
}

.download__block_3 img {
  max-width: 161px;
}

@media (min-width: 992px) {
  .download__block_4 {
    position: relative;
    z-index: 2;
    margin: 0 -18px 0 0;
  }
}

@media (max-width: 991px) {
  .getting_table_body_special .getting_table_body_text {
    margin: 0 auto;
  }
}

@media (max-width: 341px) {
  .getting_table_body_special .getting_table_body_text br {
    display: none;
  }
}

.moa_video_title {
  font-size: 28px;
  line-height: 128.5714285714%;
  margin: 56px 0 41px 0;
}

@media (max-width: 991px) {
  .moa_video_title {
    font-size: 20px;
    line-height: 150%;
    margin: 34px 0 24px 0;
    padding: 0 8px;
  }
}

sup {
  top: -0.5em;
  font-size: 0.6em;
}

/* Footer - Start */
.footer {
  padding: 50px 0 45px 0;
  border-top: solid 8px var(--yellow);
  position: relative;
  z-index: 1000;
}

@media (max-width: 991px) {
  .footer {
    padding: 30px 0 70px 0;
  }
}

.footer__wrapper {
  display: grid;
  grid-template-columns: 0.54fr 0.46fr;
  grid-template-rows: repeat(2, max-content);
  max-width: 1144px;
  margin: 0 auto 0 auto;
}

@media (max-width: 991px) {
  .footer__wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, max-content);
  }
}

.footer__wrapper>a {
  justify-self: start;
}

.footer_logo {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

@media (max-width: 991px) {
  .footer_logo {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
}

.footer__texts {
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  align-self: end;
}

@media (max-width: 991px) {
  .footer__texts {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
  }
}

.footer__links {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  justify-self: end;
  margin-right: 10px;
  position: relative;
  right: -50px;
}

@media (max-width: 1199px) {
  .footer__links {
    right: 0;
  }
}

@media (max-width: 991px) {
  .footer__links {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    margin: 28px 0 0;
    justify-self: revert;
  }
}

.footer__links li:not(:last-of-type) {
  margin-bottom: 5px;
}

.footer__link {
  line-height: 118.75%;
}

.footer__text {
  font-size: 14px;
  line-height: 171.4285714286%;
}

@media (max-width: 991px) {
  .footer__text_2 span {
    text-decoration: none;
  }
}

.footer__text:first-of-type {
  margin: 22px 0 16px;
}

/* Footer - End */
/* Modals - Start */
.modal .btn-close {
  background-image: url(../img/btn-modal-close.svg);
  background-size: 19px;
  opacity: 1;
}

#patient_page_healthcareProfessional_question_modal.modal .btn-close,
#hcp_page_healthcareProfessional_question_modal.modal .btn-close {
  background-image: none;
  pointer-events: none;
  cursor: none;
}

.btn-close:focus {
  box-shadow: none;
}

.modal-header,
.modal-footer {
  border: none;
}

.special_modals .modal-header,
.special_modals .modal-content {
  border-radius: 20px;
  border-radius: 20px;
}

.special_modals h5 {
  font-size: 28px;
  line-height: 132.14286%;
}

.special_modals p {
  font-size: 18px;
  line-height: 122.22222%;
  margin: 9px 0 20px 0;
}

@media (max-width: 991px) {
  .special_modals p {
    margin: 9px 0 8px 0;
  }
}

.special_modals .modal-button-accept {
  max-width: 142px;
}

@media (max-width: 991px) {
  .special_modals .modal-button-accept {
    max-width: 152px;
  }
}

.special_modals .modal-button-cancel {
  max-width: 150px;
  /* border: solid 2px var(--teal_2); */
  background-image: url(../img/btn_3rdparty_bg.svg);
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  .special_modals .modal-button-cancel {
    /* max-width: 150px; */
  }
}

.special_modals .modal-button-accept,
.special_modals .modal-button-cancel {
  margin: 0;
}

.special_modals .modal-footer {
  gap: 30px;
  padding: 12px 12px 80px 0;
}

@media (max-width: 991px) {
  .special_modals .modal-footer {
    flex-direction: column;
    gap: 20px;
    padding: 12px 12px 55px 0;
  }
}

.special_modals .modal-body {
  padding: 60px 12px 12px 12px;
}

@media (max-width: 991px) {
  .special_modals .modal-body {
    padding: 20px 12px 12px 12px;
  }
}

.modal button {
  outline: none;
  border: none;
}

.special_modals .modal-dialog {
  max-width: 745px;
}

/* Modals - End */
/* Header - Start */
@media (max-width: 991px) {
  .header_top_mobile {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .header_top_request_a_rep_icon {
    width: 75px;
    height: 75px;
    right: 11px;
    top: -11px;
    position: absolute;
  }

  .header_top_request_a_rep_wrapper {
    flex: 1;
  }

  .header_bottom_mobile.full-bleed {
    box-shadow: 0 0 0 100vmax #3e5d58;
    clip-path: inset(0 -100vmax);
  }

  .header_extra_mobile.full-bleed {
    box-shadow: 0 0 0 100vmax #e1cd00;
    clip-path: inset(0 -100vmax);
  }

  .submenu__wrapper__mobile.full-bleed {
    box-shadow: 0 0 0 100vmax #3e5d58;
    clip-path: inset(0 -100vmax);
  }

  .submenu__wrapper__mobile.full-bleed.full-bleed-wine {
    box-shadow: 0 0 0 100vmax var(--wine);
  }

  .header_bottom_mobile {
    padding: 7px 0 7px 0;
    text-align: center;
  }

  .header_extra_mobile {
    padding: 11px 0 17px 0;
  }

  .header_bottom_mobile_link {
    font-size: 14px;
    line-height: 114.2857142857%;
  }

  .header_extra_mobile_text {
    font-size: 15px;
    line-height: 133.3333333333%;
  }

  .header_bottom_mobile_text {
    font-size: 14px;
    line-height: 114.2857142857%;
    display: inline-block;
  }
}

@media (max-width: 991px) and (max-width: 991px) {
  .about__chart_headers.full-bleed {
    box-shadow: 0 0 0 100vmax #9b2242;
    clip-path: inset(0 -100vmax);
  }
}

@media (max-width: 991px) and (max-width: 991px) {
  .about__chart_row_item.full-bleed {
    box-shadow: 0 0 0 100vmax var(--gray_3);
    clip-path: inset(0 -100vmax);
  }
}

@media (max-width: 991px) and (max-width: 991px) {
  .about__chart_footer.full-bleed {
    box-shadow: 0 0 0 100vmax var(--gray_1);
    clip-path: inset(0 -100vmax);
  }
}

@media (max-width: 991px) and (max-width: 991px) {
  .reactions_tables_title_wrapper.full-bleed {
    box-shadow: 0 0 0 100vmax var(--wine);
    clip-path: inset(0 -100vmax);
  }
}

@media (max-width: 350px) {
  .header_top_request_a_rep_icon {
    width: 55px;
    height: 55px;
    right: 0;
    top: -10px;
  }
}

@media (max-width: 360px) {
  .header_bottom_mobile_text {
    font-size: 13px;
  }
}

.header__blue_outer {
  padding: 6px 0 6px 0;
}

@media (min-width: 992px) {
  .header__blue_outer {
    min-height: 30px;
    display: grid;
    place-items: center;
  }
}

@media (max-width: 991px) {
  .header__blue_outer {
    background-color: var(--white);
    padding: 0 0 2px 0;
  }
}

.header__blue_text {
  line-height: 128.5714285714%;
  font-size: 13px;
  color: var(--white);
}

@media (max-width: 991px) {
  .header__blue_text {
    text-align: center;
    max-width: 256px;
    color: var(--gray_1);
  }
}

@media (max-width: 991px) {
  .header_professional .header__blue_text {
    text-align: center;
    max-width: 277px;
  }
}

.header__blue_text span {
  font-size: 14px;
}

.header__blue_text a {
  color: #ffffff;
}

@media (max-width: 991px) {
  .header__blue_text a {
    color: var(--gray_1);
  }
}

.switch__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 991px) {
  .switch__wrapper {
    order: -1;
  }
}

.switch__text {
  width: max-content;
}

/* .header__blue_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

@media (max-width: 1199px) {
  .header_professional .header__blue_wrapper {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .header__blue_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
}

.header__content {
  padding: 24px 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .header__bottom {
    display: grid;
    place-items: center;
    min-height: 100px;
    border-bottom: solid 2px var(--teal_1);
  }
}

@media (max-width: 991px) {
  .header__bottom {
    background-color: var(--white);
  }
}

@media (max-width: 991px) {
  .header__content {
    flex-direction: column;
    gap: 0;
    padding: 40px 0 110px 0;
    max-width: 268px;
    margin: 0 auto 0 auto;
  }
}

.header__logo_light img {
  width: 173px;
}

@media (max-width: 991px) {
  .header__content_left .header__logo_light {
    display: none;
  }
}

.header__content_left {
  position: relative;
  left: -36px;
}

@media (max-width: 1020px) {
  .header__content_left {
    left: -15px;
  }
}

@media (max-width: 991px) {
  .header__content_left {
    position: revert;
    left: revert;
  }
}

header {
  transition: ease all 0.3s;
}

@media (max-width: 991px) {
  header {
    border-bottom: none;
  }
}

.header__nav_list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 70px;
}

.header_professional .header__nav_list {
  gap: 18px;
}

@media (max-width: 1199px) {
  .header__nav_list {
    gap: 30px;
  }
}

@media (max-width: 1199px) {
  .header_professional .header__nav_list {
    gap: 9px;
  }
}

@media (max-width: 991px) {
  .header_professional .header__nav_list {
    gap: 0;
    border-top: 1px solid var(--green_3);
  }
}

@media (max-width: 991px) {
  .header__nav_list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .header__nav_list li {
    padding: 5px 0;
    border-bottom: solid 1px var(--green_3);
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .header__content_middle {
    width: 100%;
  }
}

header .header__content_extra {
  display: none;
  grid-template-rows: 0fr;
  position: absolute;
  top: 50%;
  right: -10px;
  opacity: 0;
  transition: ease all 0.2s;
  transform: translate(100%, -50%);
}

header.scrolled .header__content_extra {
  grid-template-rows: 1fr;
  transition: ease all 0.2s;
  opacity: 1;
}

@media (max-width: 991px) {

  header .header__content_extra,
  header .header__extra_link {
    display: none;
  }
}

.header__content_extra_link {
  overflow: hidden;
}

.header__content_extra__img {
  height: auto;
  width: 80px;
}

.header__nav_link {
  color: var(--green);
  line-height: 1.2;
  font-size: 14px;
  padding-bottom: 10px;
}

@media (max-width: 991px) {
  .header__nav_link {
    padding-top: 10px;
  }
}

.header__nav_link.c_wine {
  color: var(--wine);
}

.header__nav_link.active {
  color: var(--green);
}

.header__nav_link:hover {
  color: var(--green);
}

.header__nav_link.c_wine:hover {
  color: var(--wine);
}

.header__nav_link.active:hover {
  color: var(--green);
}

.header__nav li {
  position: relative;
}

.header__nav_list_item {
  display: flex;
  align-items: flex-start;
}

.header__nav li .header__nav_link.active::after {
  content: "";
  position: absolute;
  height: 6px;
  background-color: var(--magenta);
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  z-index: 2;
  width: 100%;
}

.header__nav li.header__nav_list_item_1 .header__nav_link.active::after {
  width: 37px;
}


.header__nav li:hover .header__nav_link.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: var(--magenta);
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  z-index: 3;
}

.header__nav li:hover .header__nav_link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: var(--magenta);
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  z-index: 3;
}

.header__nav li.wine:hover .header__nav_link::after {
  background-color: var(--green);
}

@media (max-width: 991px) {
  .header__nav_link.active::after {
    display: none;
  }

  .header__nav_link::after {
    display: none;
  }
}

/* .header__nav li.header__nav_list_item_1:hover .header__nav_link::after {
  width: 90%;
} */

.header__nav li.header__nav_list_item_6:hover .header__nav_link::after {
  width: 100%;
}

.header__content_right a {
  font-size: 16px;
  max-width: 226px;
  padding: 7px 21px;
  text-align: center;
}

@media (max-width: 991px) {
  .header__content_right a {
    margin: 30px 0 0 0;
  }
}

@media (max-width: 1199px) {
  .header_professional .header__content_right a {
    padding: 7px 8px;
  }
}

@media (max-width: 991px) {
  .header_professional .header__content_right a {
    padding: 7px 21px;
  }
}

.header_professional .header__blue_texts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  justify-content: center;
  gap: 18px;
}

@media (max-width: 1199px) {
  .header_professional .header__blue_texts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .header_professional .header__blue_texts {
    flex-direction: column;
    gap: 10px;
  }
}

.header__extra {
  padding: 5px 0;
}

@media (max-width: 991px) {
  .header__extra_ball {
    display: none;
  }
}

.header__extra_wrapper {
  display: flex;
  align-items: center;
}

.header__extra_text {
  font-size: 18px;
  line-height: 133.3333333333%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .header__extra_text {
    font-size: 15px;
    width: 801px;
  }
}

@media (max-width: 991px) {
  .header__extra_text {
    font-size: 15px;
  }
}

.box_shadow {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.header__extra_link {
  height: 124px;
  width: 124px;
  background-image: url(../img/get-in-touch.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  right: 8px;
  top: -33px;
  display: none;
}

.header__extra_link_2 {
  height: 124px;
  width: 124px;
  background-image: url(../img/get-in-touch.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  right: -11px;
  top: -24px;
  transition: all ease 0.25s;
  z-index: 1;
}

/* .scrolled .header__extra_link_2 {
  height: 80px;
  width: 80px;
  background-image: url(../img/icon_request_a_rep_v3.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  right: -90px;
  top: -93px;
} */
/* @media (min-width: 1200px) and (max-width: 1299px) {
  .scrolled .header__extra_link_2 {
    right: -50px;
  }
} */

@media (max-width: 991px) {
  .scrolled .header__extra_link_2 {
    display: none;
  }
}

.submenu__wrapper {
  padding: 2px 16px 2px 16px;
  border-top-left-radius: 19px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 19px;
  min-width: 233px;
  width: max-content;
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%, 100%);
  z-index: 2;
  display: none;
}

.header__nav_list li:hover .submenu__wrapper {
  display: block;
}

.header__nav_list li:hover .submenu__wrapper .submenu__list_item:hover a {
  color: var(--yellow);
}

.submenu__wrapper__mobile {
  display: none;
}

@media (min-width: 1200px) {
  .text-xl-nowrap {
    white-space: nowrap !important;
  }
}

@media (max-width: 991px) {
  .header__nav_list li:hover .submenu__wrapper {
    display: none;
  }

  .submenu__wrapper {
    display: none;
  }

  .submenu__wrapper__mobile {
    border-top-left-radius: revert;
    border-top-right-radius: revert;
    border-bottom-left-radius: revert;
    border-bottom-right-radius: revert;
    max-width: revert;
    width: revert;
    position: revert;
    bottom: revert;
    left: revert;
    transform: revert;
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    padding: revert;
  }

  .submenu__wrapper__mobile>* {
    overflow: hidden;
  }

  .submenu__wrapper__mobile {
    grid-template-rows: 0fr;
    transition: ease all 0.2s;
    display: grid;
  }

  .submenu__wrapper__mobile.active {
    padding: 6px 16px 6px 16px;
    grid-template-rows: 1fr;
    transition: ease all 0.2s;
    position: relative;
    top: -2px;
  }
}

.submenu__list_link {
  display: block;
  padding: 11.85px 0 11.85px 0;
  color: var(--white);
}

.submenu__list_link:hover {
  color: var(--white);
}

.submenu__list_item:not(:last-of-type) {
  border-bottom: solid 1px var(--green_2);
}

@media (max-width: 991px) {
  .submenu__list_link {
    padding: 2px 0 2px 0;
  }

  .submenu__list_item:last-of-type {
    border-bottom: none;
  }

  .header__nav_link_mobile.item_active .active_bar::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    background-color: var(--magenta);
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 2;
  }

  .submenu__list_item a:active {
    color: var(--yellow);
  }
}

.submenu__list_link.active {
  color: var(--yellow);
}

.submenu__list_link.active:hover {
  color: var(--yellow);
}

/* Header - End */
/* cookies start */
.cookies-acceptance {
  position: fixed;
  width: 100%;
  bottom: -300px;
  z-index: 100;
  background: #fff;
  padding: 22px 0 22px 0;
  transition: ease all 0.4s;
}

.cookies-acceptance.active {
  bottom: 0;
}

@media (max-width: 991px) {
  .cookies-acceptance {
    bottom: -600px;
    padding: 47px 0 50px 0;
  }
}

.cookies__wrapper {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 965px 148px;
  grid-auto-flow: row;
  column-gap: 29px;
}

@media (max-width: 1199px) {
  .cookies__wrapper {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 148px;
    grid-auto-flow: row;
    align-items: center;
    column-gap: 29px;
  }
}

@media (max-width: 991px) {
  .cookies__wrapper {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    align-items: center;
    column-gap: 29px;
  }
}

.cookies__text {
  font-size: 18px;
  line-height: 122.22222%;
}

.cookies__buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 991px) {
  .cookies__buttons {
    justify-self: center;
    margin: 30px 0 0 0;
  }
}

.cookies-acceptance .button {
  font-weight: 700;
  max-width: 148px;
  padding: 7px 49px;
}

.cookies__title {
  font-size: 28px;
  line-height: 132.14286%;
  margin: 0 0 5px 0;
}

.cookies-acceptance .button.accept {
  color: var(--white);
}

.cookies-acceptance .button.reject {
  /* border: solid 2px var(--teal_2); */
  color: var(--teal_2);
  background-image: url(../img/btn_cookies_bg.png);
  background-size: cover;
  background-position: center;
}

body.cookie-backdrop::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  z-index: 99;
}

/* cookies end */
/* responsive menu - start */
body {
  padding: 0 0 0 0;
}

/* Classe para o body quando o header está fixo */
header {
  background: #ffffff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10001;
}

main.main__home .video-banner {
  background: #fff;
}

#header__extra .accordion-item:last-of-type {
  border: none;
}

#header__extra .accordion-button::after {
  background-image: url(../img/icon-plus-dark.svg);
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

#header__extra .accordion-button:not(.collapsed)::after {
  background-image: url(../img/icon-minus-dark.svg);
}

.indications-topbar .accordion-body {
  color: #3E5D58;
}

.indications-topbar .accordion-body {
  padding-top: 10px;
  padding-bottom: 10px;
}

.indications-topbar .accordion-body ul li {
  position: relative;
  padding-left: 12px;
}

.indications-topbar .accordion-body ul li::before {
  content: "•";
  color: #E1CD00;
  margin-right: 8px;
  font-size: 20px;
  line-height: 1;
  font-family: var(--kallisto);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 991px) {
  header .menu {
    width: 0;
    right: 0;
    background: #fff;
    border-radius: 20px 0 20px 0;
    position: absolute;
    display: block;
    top: 0;
    transition: ease all 0.6s;
    z-index: 100000;
    top: 0;
    padding-top: 60px;
    overflow: hidden;
  }

  .mobile-overflow {
    overflow-y: scroll;
    max-height: calc(100vh - 62px);
    width: 333px;
  }

  header .menu.active {
    right: 0;
    width: 333px;
  }

  body.active #header__extra {
    z-index: 10;
  }

  body.active {
    overflow: hidden;
  }

  body.active .header__professional:before {
    width: 100%;
    height: 100vh;
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    right: 0px;
    top: 0px;
    background: #6e7185;
    opacity: 0.6;
    z-index: 10;
  }
}

/* responsive menu - end */
/* bars animation - start */
header .abrirMenu {
  width: 40px;
  z-index: 10000000;
  position: relative;
  text-align: center;
  color: #000;
  font-size: 16px;
  height: 25px;
  margin-right: 12px;
}

header .abrirMenu span {
  position: absolute;
  left: 0;
}

header .abrirMenu.change span {
  opacity: 0;
}

header .abrirMenu div {
  width: 40px;
  height: 3px;
  background-color: #3e5d58;
  margin: 10px 0 0;
  transition: 0.4s;
  position: relative;
  transform: rotate(0deg);
  border-radius: 20px;
}

header .abrirMenu div.bar1 {
  margin-top: 0;
}

@keyframes topbarOpen {
  0% {
    top: 0px;
    transform: rotate(0deg);
    background: #3e5d58;
  }

  50% {
    top: 11px;
    transform: rotate(0deg);
    background: #3e5d58;
  }

  100% {
    top: 11px;
    transform: rotate(-45deg);
    background: #3e5d58;
  }
}

@keyframes middlebarOpen {
  0% {
    width: 40px;
    left: 0;
  }

  100% {
    width: 0px;
    left: 20px;
  }
}

@keyframes bottombarOpen {
  0% {
    top: 0px;
    transform: rotate(0deg);
    background: #3e5d58;
  }

  50% {
    top: -15px;
    transform: rotate(0deg);
    background: #3e5d58;
  }

  100% {
    top: -15px;
    transform: rotate(45deg);
    background: #3e5d58;
  }
}

header .abrirMenu.change .bar1 {
  animation: topbarOpen 1s;
  top: 11px;
  transform: rotate(-45deg);
  background: #3e5d58;
}

header .abrirMenu.change .bar2 {
  animation: middlebarOpen 0.25s;
  width: 0px;
  left: 11px;
  top: -2px;
}

header .abrirMenu.change .bar3 {
  animation: bottombarOpen 1s;
  top: -15px;
  transform: rotate(45deg);
  background: #3e5d58;
}

@keyframes topbarClose {
  0% {
    top: 6px;
    transform: rotate(-45deg);
    background: #fff;
  }

  50% {
    top: 6px;
    transform: rotate(0deg);
    background: #fff;
  }

  100% {
    top: 0px;
    transform: rotate(0deg);
    background: #fff;
  }
}

@keyframes middlebarClose {
  0% {
    width: 0px;
    left: 11px;
  }

  50% {
    width: 11px;
    left: 11px;
  }

  100% {
    width: 22px;
    left: 0px;
  }
}

@keyframes bottombarClose {
  0% {
    top: -6px;
    transform: rotate(45deg);
    background: #fff;
  }

  50% {
    top: -6px;
    transform: rotate(0deg);
    background: #000;
  }

  100% {
    top: 0px;
    transform: rotate(0deg);
    background: #000;
  }
}

header .abrirMenu.close .bar1 {
  animation: topbarClose 1s;
  top: 0px;
  transform: rotate(0deg);
  background: #000;
}

header .abrirMenu.close .bar2 {
  animation: middlebarClose 0.5s;
  width: 0px;
  left: 11px;
}

header .abrirMenu.close .bar3 {
  animation: bottombarClose 1s;
  top: 0px;
  transform: rotate(0deg);
  background: #000;
}

/* bars animation - end */
@media (min-width: 992px) and (max-width: 1199px) {
  .parent-pageid-28 {
    padding-top: 170px;
  }
}

body.active {
  /* overflow: hidden; */
}

@media (max-width: 1299px) and (min-width: 1200px) {
  .header_professional .header__nav_list {
    position: relative;
    left: -30px;
  }

  .header__content_extra_link {
    position: relative;
    left: -40px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .header__blue_text {
    font-size: 12px;
  }

  .header_professional .header__blue_texts {
    gap: 20px;
  }

  .header__bottom {
    min-height: 114px;
  }

  .header_professional .header__nav_list {
    font-size: 14px;
    gap: 10px;
  }
}

@media (max-width: 1119px) and (min-width: 992px) {
  .header_professional .header__nav_list {
    position: relative;
    left: -30px;
  }

  .header__content_extra_link {
    position: relative;
    left: -40px;
  }

  .header__content_extra__img {
    width: 60px;
  }

  .header__extra_link {
    width: 80px;
    height: 80px;
    top: -18px;
  }
}

.tooltip {
  --bs-tooltip-arrow-height: 1rem;
  --bs-tooltip-arrow-width: 2rem;
}

@media (min-width: 992px) and (max-width: 1020px) {

  .header__nav_link,
  .header__nav_link.wine {
    font-size: 13px;
  }
}

.fixed {
  position: fixed;
  bottom: 0;
  z-index: 100;
  height: 43px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .fixed {
    height: 70px;
  }
}

#isi {
  padding: 0 0 0;
  -webkit-box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1000;
  background: #fff;
}

#isi.closed {
  padding: 0 0 12px 0;
}

#isi.hcp {
  padding: 8px 0 35px;
}

.isi-tray {
  background: #fff;
  padding: 0 0 20px;
  /* transition: ease all 0.4s; */
}

.external.isi-tray.fixed {
  width: 100%;
  position: fixed;
  padding: 0 0 0 0;
  bottom: 0;
  height: 47px;
  z-index: 100;
  -webkit-box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.16);
  transition: ease all 0.4s;
}

@media (max-width: 991px) {
  .external.isi-tray.fixed {
    height: 47px;
  }
}

@media (max-width: 767px) {
  .external.isi-tray.fixed {
    height: 57px;
  }
}

@media (max-width: 355px) {
  .external.isi-tray.fixed {
    height: 147px;
  }
}

.external.isi-tray.fixed .row_1>* {
  padding-left: 20px;
  padding-right: 16px;
}

.external.isi-tray.fixed.top {
  height: 153px;
  padding: 0 0;
  z-index: 10000;
}

@media (max-width: 991px) {
  .external.isi-tray.fixed.top {
    min-height: 207px;
    padding: 0 0 0 0;
  }
}

.external.isi-tray.top .bottom {
  display: none;
}

.external.isi-tray:not(.top) .top {
  display: none;
}

.external.isi-tray.hcp.fixed.top {
  height: 150px;
}

.external.isi-tray.scroll-bottom {
  bottom: -400px;
}

.closed .isi-tray {
  height: 162px;
  padding: 0;
  overflow: hidden;
}

.closed .isi-tray.hcp {
  height: 190px;
  padding-top: 8px;
}

.isi-tray .btn-isi {
  width: 18px;
  height: 18px;
  background-image: url(../img/icon-feather-minus-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  transition: ease all 0.4s;
  position: absolute;
  top: 12px;
  right: 0;
}

@media (max-width: 991px) {
  .isi-tray .btn-isi {
    right: -10px;
  }
}

.top .isi-tray .btn-isi {
  background-image: url(../img/icon-feather-plus-circle.png);
}

.isi-tray.top .isi_btn_wrapper_initial .btn-isi {
  top: 9px;
  right: 12px;
}

@media (max-width: 991px) {
  .isi-tray.top .isi_btn_wrapper_initial .btn-isi {
    top: 9px;
    right: 20px;
  }
}

.isi-tray:not(.top) .isi_btn_wrapper_intermediate .btn-isi {
  top: 15px;
  right: 12px;
}

@media (max-width: 991px) {
  .isi-tray:not(.top) .isi_btn_wrapper_intermediate .btn-isi {
    top: 9px;
    right: 10px;
  }
}

.isi-tray.fixed .btn-isi,
.isi-tray .btn-isi.not-open {
  background-image: url(../img/icon-feather-plus-circle.png);
}

.isi-tray .container {
  position: relative;
}

@media (min-width: 992px) {
  #isi.closed {
    min-height: auto;
  }
}

@media (max-width: 991px) {
  .isi-tray.fixed {
    height: 40px;
    padding-top: 10px;
  }

  .isi-tray.fixed.top {
    height: 115px;
  }

  .closed .isi-tray {
    height: 115px;
  }

  .isi-tray.hcp.fixed.top {
    height: 210px;
  }

  #isi {
    padding: 0 0 0;
  }
}

@media (max-width: 767px) {
  .closed .isi-tray {
    height: 60px;
  }
}

@media (max-width: 378px) {
  .closed .isi-tray {
    height: 85px;
  }
}

.form_disclaimer_link {
  color: var(--gray_1);
}

.form_stay_connected .form-control {
  border-radius: 4px;
  border: 1px solid #6e7185;
  line-height: 163%;
}

.required-alert,
.wpcf7-not-valid-tip,
.wpcf7-response-output,
.wpcf7 br {
  display: none;
}

.error-label {
  color: #ff0000;
}

.wpcf7-form.invalid .required-alert {
  display: block;
}

.wpcf7-form.invalid .required-alert p {
  color: #ff0000;
}

.form_stay_connected .form-control.wpcf7-not-valid {
  border-color: #ff0000;
}

.wpcf7-spinner {
  margin: 10px auto;
  display: block;
}

.modal_form_success .green {
  color: var(--green_2);
}

.modal_form_success .close_modal {
  position: absolute;
  right: 20px;
  top: 20px;
}

.modal_form_success .modal-dialog {
  max-width: 880px;
}

.modal_form_success .modal-content {
  border-radius: 30px 5px 30px 5px;
}

.modal_form_success .modal-body {
  padding: 80px 20px 55px;
}

@media (max-width: 767px) {
  .modal_form_success .modal-dialog {
    max-width: 335px;
    margin: 0 auto;
  }

  .modal_form_success .modal-body {
    padding: 70px 20px 40px;
  }
}

/* Video animation */
.video {
  margin: 0 auto;
  margin-top: -80px;
  position: relative;
  max-width: 1600px;
}

@media (max-width: 991px) {
  .video {
    margin-top: 0;
  }
}

.video video {
  margin-top: 0;
}

@media (min-width: 992px) {
  .video video {
    margin-top: 0;
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  .video video {
    margin-top: 0;
    margin-left: revert;
  }
}

@media (min-width: 1350px) {
  .video video {
    margin-top: 0;
    margin-left: -40px;
  }
}

@media (min-width: 1400px) {
  .video video {
    margin-top: 0;
    margin-left: -40px;
  }
}

@media (max-width: 991px) {
  .video video {
    margin-left: -6px;
  }
}

.video-banner .first-step {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 41px;
  color: var(--green);
  font-family: var(--geom-graphic);
  font-weight: bold;
  text-align: center;
}

.video-banner .title {
  position: absolute;
  top: 105px;
  left: 0;
  font-size: 41px;
  color: var(--green);
  font-family: var(--geom-graphic);
  font-weight: bold;
  text-align: center;
  width: 100%;
}


@media (max-width: 1399px) {
  .video-banner .title {
    top: 120px;
  }
}

.video-banner .title .red {
  color: var(--magenta);
}

.video-banner .subtitle {
  position: absolute;
  top: 150px;
  width: 100%;
  font-size: 20px;
  color: var(--green);
  font-family: var(--geom-graphic);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.video-banner .subtitle span {
  text-transform: lowercase;
}

@media (max-width: 1399px) {
  .video-banner .subtitle {
    top: 170px;
  }
}

@media (max-width: 991px) {
  .video-banner .subtitle {
    width: 90%;
    margin: 0 auto 0 auto;
  }
}

.video .icon {
  position: absolute;
  top: 265px;
  left: 50%;
  transform: translateX(-50%);
}

.video-banner .first-step .molecule {
  font-size: 31px;
  color: #fff;
  border-radius: 6px;
  display: inline-block;
  width: 180px;
  text-align: center;
  padding: 9px 0;
}

.step {
  opacity: 0;
  transition: ease all 0.8s;
}

.video-banner .copytext {
  bottom: 160px;
  right: 75px;
  position: absolute;
  color: #6e7185;
  font-family: Montserrat;
  font-size: 12px;
  width: 100%;
  max-width: 330px;
}

@media (max-width: 1399px) {
  .video-banner .copytext {
    bottom: 160px;
  }
}

@media (max-width: 991px) {
  .video-banner .copytext {
    text-align: center;
    max-width: 100%;
    right: 50%;
    transform: translateX(50%);
  }
}

.video-banner .nccn {
  border-radius: 10px;
  height: 61px;
  bottom: 290px;
  background-color: var(--green);
  right: -120px;
  display: grid;
  transition: ease all 0.4s;
  place-items: center;
  position: absolute;
  padding: 13px 35px 13px 35px;
}

.video-banner .nccn.moveAnimate {
  opacity: 1;
  right: -20px;
}

@media (max-width: 1620px) {
  .video-banner .nccn {
    padding: 13px 50px 13px 35px;
  }
}

@media (max-width: 1399px) {
  .video-banner .nccn {
    bottom: 153px;
  }
}

.video-banner .nccn-mobile.moveAnimate {
  opacity: 1;
  right: -20px;
}

.nccn__title {
  font-size: 24px;
  line-height: 75%;
}

.animate {
  opacity: 1;
}

.video-banner {
  overflow: hidden;
}

.video-banner .first-step span.menin {
  background: #e0004d;
}

.video-banner .first-step span.kmt2a {
  background: #9b2242;
}

.mod_npm1 {
  padding: 80px 0 80px 0;
}

.mod_npm1 .about__content {
  gap: 107px;
}

.mod_npm1 .about__chart_headers,
.mod_npm1 .about__chart_row_item {
  grid-template-columns: auto
}

.mod_npm1 .about__chart_footer {
  padding: 15px 60px;
}

.main_disease_insights .block_icon_wrapper {
  width: auto;
  height: auto;
  padding: initial;
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.main_disease_insights .progression .block_icon_wrapper img {
  width: 84px;
}

.main_disease_insights .mod-menin .block_icon_wrapper img {
  width: 140px;
}


.main_disease_insights .spacing-boxes-text {
  margin-top: 82px;
}

@media (min-width: 1200px) {
  .main_disease_insights .spacing-boxes-text {
    min-width: 1120px;
  }
}

.main_disease_insights .block__wrapper {
  padding: 52px 16px 45px 16px;
}

.main_disease_insights .block__wrapper.first-block {
  padding: 62px 55px 41px 55px;
}

.main_disease_insights .block__wrapper.second__wrapper {
  padding: 40px 23px 40px 31px;
}

.main_disease_insights .block__wrapper.second__wrapper p {
  font-size: 18px;
}

.mod_kmt2a,
.mod-progression,
.mod-menin {
  padding: 80px 0 80px 0;
}

.mod_kmt2a .about__list {
  margin-bottom: 40px;
}

.mod_kmt2a .about__chart {
  max-width: 568px;
}

.mod_kmt2a .block__wrapper {
  padding: 40px 42px 38px 41px;
}

.mod_kmt2a .block__wrapper .block__title {
  font-size: 20px;
}

.mod_kmt2a .block__wrapper .block__text {
  font-size: 18px;
}

.mod_kmt2a .about__chart_headers {
  grid-template-columns: 0.49fr 0.32fr 0.3fr;
}

.mod-progression .spacing-box-to-text {
  margin-bottom: 6rem;
}

.mod-progression .box-target {
  margin-bottom: 75px;
}

@media (min-width: 1200px) {
  .mod-progression .block__wrapper {
    padding: 40px 58px 35px 59px;
    margin-bottom: 38px;
  }

  .mod-menin .spacing-inside-text-list {
    margin-left: 90px;
  }
}

.mod-progression .block__wrapper .magnifier {
  position: absolute;
  left: -42px;
  top: 25px;
}

.mod-menin .about__titles {
  margin-bottom: 20px;
}

.mod-menin p {
  font-size: 18px;
}

.main_disease_insights .highlight {
  padding-top: 0;
}

.mod-menin {
  padding-bottom: 0;
}

.main_disease_insights .highlight__text_wrapper {
  padding: 29px 25px 15px;
}

.main_disease_insights .highlight__text {
  max-width: 100%;
  font-size: 26px;
  line-height: 36px;
}

.moa_upper {
  margin-bottom: 40px;
}

.moa .spacing-text-to-list {
  margin-bottom: 22px;
}

.second__precautions__content {
  grid-template-columns: 49% 49%
}

.second__precautions__wrapper {
  padding-top: 80px;
}

@media (max-width: 991px) {
  .second__precautions__wrapper {
    padding-top: 40px;
  }
}

.main_dosing_and_management .highlight__text_wrapper {
  padding: 33px 60px 32px 50px;
}

.main_dosing_and_management .highlight__wrapper .highlight__text {
  max-width: 100%;
  font-size: 18px;
}

.main_dosing_and_management .monitoring_shape {
  border-radius: 40px 0 40px 0;
  padding: 24px 165px 24px;
  margin: 30px 0 0 0;
}

.main_dosing_and_management .monitoring_shape.first_shape {
  padding: 24px 135px 24px;
}

.main_dosing_and_management .monitoring_shape.second_shape {
  padding: 24px 135px 24px;
}

.main_stay_connected .wpcf7-checkbox .first {
  background: none;
  padding: 1rem 0;
}

.main_stay_connected .wpcf7 input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.main_stay_connected .wpcf7-list-item-label {
  position: relative;
  cursor: pointer;
  padding-left: 45px;
  display: inline-block;
}

.main_stay_connected input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.main_stay_connected .wpcf7-list-item-label {
  position: relative;
  padding-left: 36px;
  cursor: pointer;
}

.main_stay_connected .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 27px;
  height: 27px;
  border-radius: 4px;
  border: 1.5px solid var(--gray_1);
  /* cinza iOS */
  background: #fff;
}

.main_stay_connected input[type="checkbox"]:checked+.wpcf7-list-item-label::before {
  border: none;
  background-image: url("../img/ionic-ios-checkbox.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.main_npm1m-aml .reactions_table_body {
  border-bottom: solid 3px var(--green_2);
}

.main_npm1m-aml .reactions_table_body.last {
  border-bottom: 0;
}

.main_npm1m-aml .prespecified .reactions_table_body {
  border-bottom: solid 3px var(--white);
}



.main_npm1m-aml .reaction_table_disclaimer {
  background-image: url(../img/bg_reaction_table_disclaimer-npm1.png);
  grid-column: 2 / 2;
  margin: 0;
  background-size: cover;
  height: 383px;
}

.main_npm1m-aml .reaction_table_disclaimer_text {
  max-width: 342px;
}

.main_npm1m-aml .revuforj-info-box {
  border-radius: 40px 0 40px 0;
  padding: 31px 89px 31px 84px;
  max-width: 910px;
}

.main_npm1m-aml .revuforj-info-box-2 {
  border-radius: 40px 0 40px 0;
  padding: 20px 25px;
}

.main_npm1m-aml .revuforj-info-icon {
  flex-shrink: 0;
  margin-right: 16px;
}

.main_npm1m-aml .revuforj-info-icon img {
  width: 80px;
  object-fit: contain;
}

.main_npm1m-aml .revuforj-info-text {
  font-size: 26px;
  line-height: 32px;
}

.justify-self-center {
  justify-self: center;
}

.main_npm1m-aml .subgroups h2 {
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 10px;
}

.main_npm1m-aml .subgroups .description {
  font-size: 20px;
  margin-bottom: 10px;
}

.main_npm1m-aml .subgroups .description.two {
  font-size: 20px;
  margin-bottom: 30px;
}

.main_npm1m-aml .subgroups .description.one span.number {
  font-size: 36px;
  margin-bottom: 10px;
  margin-left: -6px;
}

.main_npm1m-aml .subgroups .description.two span.number {
  font-size: 26px;
  margin-bottom: 30px;
}

.main_npm1m-aml .subgroups .caption {
  max-width: 970px;
  font-size: 14px;
}

.prespecified {
  padding: 80px 0;
  margin-bottom: 40px;
  background-color: #6e71851a;
}

.prespecified h2 {
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 40px;
}

.prespecified h3 {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 19px;
}

.prespecified .custom-list,
.prespecified .custom-list ul {
  list-style: none;
  margin: 0;
  color: var(--green);
  font-size: 18px;
  padding-left: 3px;
}

/* NÍVEL 1 — bolinha cheia */
.prespecified .custom-list>li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.prespecified .custom-list>li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  background-color: var(--magenta);
  border-radius: 3px;
}

/* NÍVEL 2 — quadrado vazado */
.prespecified .custom-list ul li {
  position: relative;
  padding-left: 15px;
  margin-top: 12px;
}

.prespecified .custom-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  border: 2px solid var(--magenta);
  border-radius: 3px;
  background: transparent;
}

.box-data-patients {
  border-radius: 40px 0 40px 0;
  background-color: #ffffff;
  padding: 40px 0 40px;
  margin-top: 67px;
  margin-bottom: 39.5px;
}

.main_kmt2a-aml .box-data-patients {
  padding: 40px 36px 45px 90px;
}

.subbox-data-patients {
  padding: 0 54.5px 0 51.5px;
}

.subbox-data-patients .subbox-mobile {
  padding: 0 30px 0 30px;
}

/* .main_kmt2a-aml .subbox-data-patients .subbox-mobile {
  padding: 0;
} */

.line-subbox {
  margin: 0 39.5px 33px 42.5px;
}

.main_kmt2a-aml .box-data-patients .achieved_right .first-text {
  margin-bottom: 20px;
  margin-left: -13px;
  margin-right: 10px;
}

.main_dosing_and_management .administration {
  padding-top: 86px;
}

.main_dosing_and_management .administration .dosing_brick_top small {
  font-size: 16px;
}

.main_dosing_and_management .administration .highlight__wrapper {
  max-width: 724px;
}

.main_dosing_and_management #monitoring_faq_collapse1 .monitoring_shape.tertiary_shape {
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 90px;
  padding-right: 90px;
}

@media (min-width: 1200px) {
  .mod_kmt2a .about__chart_header_text__1 {
    padding-top: 10px;
  }

  .mod_kmt2a .about__content {
    gap: 113px;
  }

  .main_resources .connected__buttons {
    grid-template-columns: 330px;
  }

  .main_kmt2a-aml .box-data-patients {
    min-width: 1094px;
  }

  .main_kmt2a-aml .box-data-patients h4 {
    max-width: 100%;
    margin-top: 40px;
    margin-bottom: 38px;
  }

  .main_kmt2a-aml .subbox-data-patients {
    padding: 0;
  }

  .main_kmt2a-aml .line-subbox {
    margin: 0 92px 33px 0;
  }
}

.main_kmt2a-aml .title_bar_wrapper h1::before {
  left: -35px;
}

.main_kmt2a-aml .title_bar_wrapper h1::after {
  right: -35px;
}

.main_kmt2a-aml .revuforj-info-box {
  padding: 31px 80px 31px 80px;
}

.main_kmt2a-aml .box-data-patients {
  background-color: var(--gray_3);
}

@media (max-width: 1199px) {
  .subbox-data-patients {
    padding: 0 0 0 15px;
  }

}

.box-data-patients h4 {
  font-size: 20px;
  max-width: 845px;
  margin-bottom: 34px;
}

.box-data-patients h4.lower-margin-bottom {
  margin-bottom: 7px;
}

.box-data-patients .percents {
  font-size: 20px;
  margin-bottom: 5px;
}

.box-data-patients .percents .number {
  font-size: 26px;
}

.box-data-patients .reactions_tables_wrapper {
  margin-top: 40px;
  margin-bottom: 33px;
}

.box-data-patients .achieved_middle {
  display: grid;
  grid-template-columns: max-content 435px;
  column-gap: 32px;
}

.box-data-patients .achieved_middle .achieved_right {
  display: flex;
  align-items: center;
}

.box-data-patients .small_bricks .achieved__brick_shape {
  width: 222px;
  height: 190px;
  background-image: url(../img/shape_brick__bg_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  left: -40px;
}

.box-data-patients .small_bricks .achieved__brick_number {
  font-size: 46px;
  line-height: 120%;
}

.box-data-patients .small_bricks .achieved__brick_percentage {
  font-size: 27px;
}

.box-data-patients .small_bricks .achieved__brick_info {
  margin: -80px 0 0 -60px;
}

.box-data-patients .small_bricks .achieved__brick_info_top_text {
  font-size: 18px;
  line-height: 20px;
}

.box-data-patients .small_bricks .achieved__brick_info_bottom {
  position: relative;
  top: 5px;
}

.box-data-patients .achieved_middle.small_middle {
  display: grid;
  grid-template-columns: 417px 440px;
  column-gap: 42px;
}

.box-data-patients .achieved_middle.small_middle .achieved_right {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.box-data-patients .achieved_middle.small_middle .achieved_right p {
  font-size: 18px;
  line-height: 28px;
}

.box-data-patients .revuforj-info-box {
  padding: 33px 70px 21px;
}

.box-data-patients .revuforj-info-box p {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
}

.box-data-patients .revuforj-info-box p.fs-20 {
  font-size: 20px;
  line-height: 30px;
}

.main_kmt2a-aml .reaction_table_disclaimer {
  grid-column: 1 / 2;
  margin: 0;
}

.main_kmt2a-aml .subgroups .revuforj-info-box {
  max-width: 445px;
  font-size: 26px;
  padding: 56px 47px 55px 54px;
}

.mod-menin .about__list {
  margin-top: 20px;
  max-width: 905px;
}

.mod-menin .spacing-boxes-text {
  margin-bottom: 80px;
}

.mod-menin .block__wrapper.first-block {
  padding: 80px 45px 29px 45px;
  height: 100%;
}

.mod-menin .block__wrapper.second_wrapper {
  padding: 80px 23px 29px 31px;
}

.mod-menin .block_icon_wrapper {
  top: -18px;
}

.mod-menin .block__wrapper .block__title {
  font-size: 24px;
  line-height: 32px;
}

.mod-menin .block__wrapper p {
  font-size: 18px;
  line-height: 28px;
}

.mod-menin .spacing-boxes-text {
  margin-top: 160px;
}

.mod-menin h3 {
  font-size: 26px;
  line-height: 36px;
}


@media (max-width: 767px) {
  .mod-menin h3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

.mod-menin .dosing_bricks {
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.mod-menin .dosing_brick_texts {
  max-width: 100%;
  margin: 24px auto 0 auto;
}

.mod-menin .icon-genetic-material {
  position: absolute;
  top: -135px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

:root {
  --fixed-top: 200px;
  --leftColor: #e1005a;
  --rightColor: #7a1b3a;
  --borderColor: #e5cf00;
  --borderThickness: 16px;
}

.genetic-stage {
  height: 900px;
  position: relative;
  overflow: hidden;

  /* full-bleed sem cortar */
  width: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

}

/* base */
.tri {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
}

/* --- BORDA AMARELA --- */
.tri-border {
  background: var(--borderColor);
  opacity: 0;
  /* começa escondido */
  z-index: 1;
}

/* --- PREENCHIMENTO --- */
.tri-fill {
  z-index: 2;
}

/* Formas (iguais para border e fill) */
.tri-left {
  clip-path: polygon(0% -1%, 49% 50%, 0% 100%);
}

.tri-right {
  clip-path: polygon(100% 0, 51% 50%, 100% 100%);
}

/* Cor do fill */
.tri-left.tri-fill {
  background: var(--leftColor);
}

.tri-right.tri-fill {
  background: var(--rightColor);
}

/* A “mágica” da borda:
   faz o amarelo parecer um contorno ao “empurrar” o fill para dentro */
.tri-fill {
  /* reduz um pouco o fill para aparecer o amarelo nas bordas */
  transform-origin: center;
}

.tri-left.tri-fill {
  transform: translateX(-60%) scale(1);
  /* o translate inicial você já anima no GSAP */
}

.tri-right.tri-fill {
  transform: translateX(60%) scale(1);
}

/* Para criar espessura real da borda, a gente “inseta” o fill com um pseudo overlay:
   Mais simples: usamos mask via padding virtual com clip-path ajustado */

.tri-left.tri-fill {
  clip-path: polygon(0% 3%, 50% 50%, 0 97%);
}

.tri-right.tri-fill {
  clip-path: polygon(100% 3%, 50% 50%, 100% 97%);
}

.mod-menin .icon-genetic-material {
  position: absolute;
  top: 425px;
  left: 50%;
  transform: translateX(-54%);
  z-index: -1;
}

.mod-menin .icon-genetic-material.second-material {
  position: absolute;
  top: 444px;
  left: 50%;
  transform: translateX(-54%);
  z-index: -1;
}

/* .mod-menin .content-before-animation {
  margin-top: -145px;
} */

.insert-asterisk {
  position: relative;
}

.insert-asterisk::before {
  content: "*";
  font-size: 14px;
  margin-right: 8px;
  position: absolute;
  left: -6px;
  top: -1px;
}

.main_disease_insights .mod-progression .box-target .block__title {
  max-width: 685px;
  margin-bottom: 23px;
}

.between_acordion {
  max-width: 834px;
  margin: 0 auto;
}

.main_safety .reactions_disclaimer {
  margin: 8px 0 0 0;
}

.main__home .block__resources .block__title {
  margin-bottom: 40px;
}

.main_npm1m-aml .trial_shape_2 .shape_title {
  font-size: 18px;
}

.main_npm1m-aml .subgroups {
  background-image: none;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  background-color: #ecf2e5;
  padding: 0;
}

.main_kmt2a-aml .subgroups {
  background-image: url(../img/bg_subgroups.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  background-color: var(--green_2);
  padding: 61px 0 61px 0;
}

.main_npm1m-aml .subgroups hr {
  margin-bottom: 50px;
}

.main_npm1m-aml .description_reactions {
  margin-top: 22.5px;
  border-radius: 40px 0 40px 0;
  padding: 50px 32px 50px 32px;
}

.main_npm1m-aml .description_reactions h3 {
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}

.main_npm1m-aml .subbox-data-patients .revuforj-info-box {
  flex-direction: column;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.revuforj-info-box.first-info-box .text-with-percert {
  font-size: 20px;
  line-height: 30px;
}

.revuforj-info-box.first-info-box .text-with-percert .number {
  font-size: 26px;
}

.monitoring_faq .accordion-item.accordion-item_2.accordion-item__open {
  border-bottom: none;
}

.monitoring_faq #monitoring_faq_collapse2 .revuforj-info-box {
  margin-top: 30px;
}

.monitoring_faq #monitoring_faq_collapse2.show {
  border-bottom: solid 1px #ffffff;
  margin-bottom: 30px;
}

.main_npm1m-aml ul.achieved_list.first_achieved_list {
  margin-bottom: 30px;
}

.main_npm1m-aml ul.achieved_list.second_achieved_list {
  margin-top: 12px;
}

@media (max-width: 991px) {
  .mod_kmt2a .about__chart_headers {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about__chart_row_item {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 22px 0;
    min-height: 120px;
  }

  .about__chart_row_text {
    font-size: 22px;
    line-height: 155.5555555556%;
  }

  .precautions__content {
    row-gap: 20px;
  }

  .second__precautions__content {
    grid-template-columns: 1fr;
  }

  .precautions__left.no-border-right {
    border: none;
    grid-row: 1;
    padding: 0;
  }

  .precautions__left.no-border-right p {
    margin: -24px 0 0 0;
    text-align: center;
  }

  .precautions__right.no-border-right {
    border: none;
    grid-row: 2;
  }

  .highlight__text {
    font-size: 18px;
    line-height: 22px;
  }

  .main_kmt2a-aml .subgroups .revuforj-info-box {
    padding: 45px 10px 36px 31px;
    margin-bottom: 42px;
  }

  .main_kmt2a-aml .reactions_tables_left,
  .main_npm1m-aml .reactions_tables_left {
    margin-bottom: 55px;
  }

  .main_kmt2a-aml .title_bar_wrapper h1::before {
    left: -10px;
  }

  .main_kmt2a-aml .title_bar_wrapper h1::after {
    right: -10px;
  }

  .box-data-patients .achieved_middle.small_middle {
    grid-template-columns: 100%;
  }

  .box-data-patients .achieved_middle {
    grid-template-columns: 100%;
  }

  .achieved_middle.small_middle .achieved__bricks {
    display: flex;
    margin: 0 auto 30px auto;
    flex-flow: column;
  }

  .box-data-patients .small_bricks .achieved__brick_info {
    margin: 0px 0px 0px -75px;
    text-align: center;
  }


  /* =========================
     TRIAL
  ========================== */

  .main_npm1m-aml .trial_middle {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    row-gap: 12px;
    background-color: var(--green_2);
  }

  .main_npm1m-aml .trial_middle_1,
  .main_npm1m-aml .trial_middle_2,
  .main_npm1m-aml .trial_middle_3 {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
  }

  .main_npm1m-aml .trial_middle_1 {
    border-radius: 24px;
    padding: 20px 20px 32px 20px;
    position: relative;
  }

  .main_npm1m-aml .icon-arrow-right-trial {
    position: absolute;
    left: 50%;
    top: 215px;
    transform: translateX(-50%) rotate(90deg);
    width: 38px;
    height: auto;
    z-index: 3;
  }

  .main_kmt2a-aml .icon-arrow-right-trial {
    position: absolute;
    left: 50%;
    top: 235px;
    transform: translateX(-50%) rotate(90deg);
    width: 38px;
    height: auto;
    z-index: 3;
  }

  .main_npm1m-aml .trial_middle_2 {
    padding: 20px 30px;
    background-color: var(--white);
  }

  .main_npm1m-aml .trial_middle_2 .trial_middle_text {
    text-align: left;
    line-height: 1.55;
  }

  .main_npm1m-aml .trial_middle_text {
    font-size: 16px;
  }

  .main_npm1m-aml .trial_middle_text span {
    font-size: 16px;
  }

  /* =========================
    PARENT
  ========================== */

  .main_npm1m-aml .trial_middle_1 .parent {
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 10px;
    width: 100%;
    height: auto;
  }

  /* cards */

  .main_npm1m-aml .trial_middle_1 .parent .action.one {
    display: flex;
  }

  .main_npm1m-aml .trial_middle_1 .parent .action.two {
    padding: 29px 0 30px 29px;
    display: flex;
  }

  /* card verde */
  .main_npm1m-aml .trial_middle_1 .parent .text-action {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: none;
  }

  /* garante que o texto interno não encolha */
  .main_npm1m-aml .trial_middle_1 .parent .action.one p,
  .main_npm1m-aml .trial_middle_1 .parent .action.two p {
    width: 100%;
  }

  .main_npm1m-aml .icon-plus-trial {
    position: absolute;
    left: 50%;
    top: 123px;
    width: 38px;
    transform: translate(-50%, 0);
  }

  .main_kmt2a-aml .icon-plus-trial {
    position: absolute;
    left: 50%;
    top: 138px;
    width: 38px;
    transform: translate(-50%, 0);
  }

  .c_green_2_mobile {
    color: var(--green_2);
  }

  .main_npm1m-aml .monitoring_faq:first {
    margin: 73px 0 30px 0;
  }

  .main_npm1m-aml .monitoring_faq.monitoring_faq_special {
    margin: 30px 0 40px 0;
  }

  .main_npm1m-aml .revuforj-info-box {
    flex-direction: column;
    padding: 25px 13px 31px 20px;
  }

  .main_npm1m-aml .revuforj-info-icon img {
    margin-bottom: 15px;
  }

  .main_npm1m-aml .network_right_text {
    text-align: left;
  }

  .subbox-data-patients {
    padding: 0;
  }

  .subbox-mobile {
    padding: 0 31px 0 20px;
  }

  .box-data-patients h4 {
    margin-bottom: 20px;
  }

  .main_npm1m-aml .subbox-mobile .achieved__bricks:not(.small_bricks) .achieved__brick_shape {
    top: 0;
    left: -25px;
    width: 185px;
    height: 160px;
  }

  .main_npm1m-aml .subbox-mobile .achieved__bricks:not(.small_bricks) .achieved__brick_info {
    margin: -40px 0 0 -45px;
  }

  .main_npm1m-aml .subbox-mobile .achieved__bricks:not(.small_bricks) .achieved__brick_number {
    font-size: 40px;
    line-height: 121.4285714286%;
  }

  .main_npm1m-aml .subbox-mobile .achieved__bricks:not(.small_bricks) .achieved__brick_percentage {
    top: -5px;
    font-size: 20px;
    line-height: 121.4285714286%;
    left: 0px;
  }

  .line-subbox {
    margin: 0 20px 33px;
  }

  .box-data-patients .small_bricks .achieved__brick_shape {
    left: auto;
  }

  .main_kmt2a-aml .box-data-patients {
    padding: 40px 0 20px 0;
    margin-top: 40px;
  }

  .main_kmt2a-aml .box-data-patients .subbox-data-patients {
    padding: 0;
  }

  .main_dosing_and_management .monitoring_shape {
    padding: 18px 10px;
    margin: 40px 0;
  }

  .main_dosing_and_management .monitoring_shape.first_shape {
    padding: 20px 25px;
    margin: 40px 0;
  }

  .main_dosing_and_management .monitoring_shape.second_shape {
    padding: 18px 15px;
  }

  .main_dosing_and_management #monitoring_faq_collapse1 .monitoring_shape.tertiary_shape {
    padding: 20px 35px;
  }

  #collapse-header .accordion-body {
    line-height: 20px;
  }

  #collapse-header .accordion-body p {
    margin-bottom: 5px;
  }

  .about__chart_icon_wrapper .special-align-2 {
    position: relative;
    left: 0;
  }
}


@media (max-width: 575px) {
  .box-data-patients .small_bricks .achieved__brick_info {
    margin: 0;
    text-align: center;
  }

  .main_npm1m-aml .revuforj-info-box {
    padding: 30px 13px 30px 20px;
  }

  .main_npm1m-aml .subbox-mobile .revuforj-info-box {
    flex-direction: column;
    padding: 35px 15px 35px 16px;
    margin-bottom: 0;
  }

  .prespecified {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1200px) {

  .nonclinical .nonclinical__wrapper {
    margin-left: 137px;
  }

  .isi-tray .container,
  .isi-tray .container-lg,
  .isi-tray .container-md,
  .isi-tray .container-sm,
  .isi-tray .container-xl,
  .isi-tray .container-xxl {
    max-width: 1124px;
  }
}

.main_stay_connected .wpcf7 input[type="checkbox"]:checked+.wpcf7-list-item-label::after {
  visibility: visible;
}

@media (max-width: 991px) {
  header .accordion-item:last-of-type {
    width: 100%;
  }

  header .accordion-button::after {
    position: absolute;
    right: 0;
  }
}

@media (max-width: 1199px) {
  .video-banner .title {
    font-size: 35px;
    top: 98px;
  }

  .video-banner .subtitle {
    top: 145px;
    font-size: 13px;
  }

  .video-banner .copytext,
  .video-banner .nccn {
    bottom: 30px;
  }
}

@media (max-width: 991px) {
  .video-banner .first-step {
    top: 17%;
  }

  .video-banner .video {
    overflow: hidden;
    margin-bottom: 0;
    padding: 0 0 80px 0;
  }

  .first-step {
    font-size: 16px;
    top: 32px;
  }

  .video-banner .title {
    position: relative;
    display: block;
    font-size: 20px;
    top: initial;
  }

  .video-banner .subtitle {
    position: relative;
    top: initial;
  }

  .video-banner .nccn {
    display: none;
  }

  .nccn-mobile {
    height: 135px;
    position: relative;
    right: -22px;
    display: grid;
    margin-top: 20px;
    float: right;
  }

  .nccn-mobile_content {
    height: 49px;
    display: grid;
    place-items: center;
    padding: 13px 35px 13px 15px;
    background-color: var(--green);
    border-radius: 10px;
    margin: 30px 0 0 0;
  }

  .nccn-mobile .nccn__title {
    font-size: 16px;
  }

  .video-banner .copytext {
    bottom: 23px;
  }

  .video-banner .first-step {
    font-size: 16px;
  }

  .video-banner .first-step .molecule {
    font-size: 14px;
    width: 80px;
    padding: 5px 0;
  }

  .video .icon {
    width: 31px;
    top: 55px;
  }
}

@media (max-width: 991px) and (max-width: 340px) {
  .nccn-mobile {
    right: -35px;
  }
}

/* Animação Mechanism of Action */
.moa_block .animations {
  position: relative;
  max-width: 233px;
  height: 188px;
}

.moa_animation_outer {
  position: sticky;
  overflow: hidden;
  top: 270px;
}

.moa_animation_outer {
  background: #18332f;
}

.moa_animation_outer .moa_animation_title_1 {
  z-index: 10;
  position: relative;
  transition: ease all 0.4s;
  opacity: 1;
}

.moa_animation_outer .moa_animation_title_2 {
  z-index: 2;
  position: absolute;
  width: 100%;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
}

.moa_animation_outer .secondary-bg {
  background: #3e5d58;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transition: ease all 0.4s;
  z-index: 4;
}

.moa_animation_outer .secondary-bg.step1 {
  width: calc(100% - 302px);
}

.moa_animation_outer .secondary-bg.step2 {
  width: calc(100% - 548px);
}

.moa_animation_outer .secondary-bg.step3 {
  width: calc(100% - 798px);
}

.moa_animation_outer .secondary-bg.step4 {
  width: 0;
}

.animations {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-radius: 8px 0 8px 0;
}

.animations img {
  position: relative;
  z-index: 5;
  transition: ease all 0.4s;
  opacity: 0;
  transform: rotateY(0);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.animations .absolute {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  transform: rotateY(180deg);
  z-index: 1;
  opacity: 0;
}

.text-box {
  position: relative;
  z-index: 4;
  display: block;
  width: 100%;
}

.text-box .second-text {
  position: absolute;
  top: -170px;
  z-index: 5;
  width: 100%;
  transition: ease all 0.4s;
}

.text-box .second-text.down {
  top: 0;
  opacity: 1;
}

.moa_block_text {
  display: block;
  opacity: 0;
}

.animatin-box-div {
  height: 2750px;
}

.moa_block.animation1,
.moa_block.animation2,
.moa_block.animation3,
.moa_block.animation4 {
  position: relative;
  top: 30px;
  transition: ease all 0.4s;
}

.animate .animations img:not(.absolute),
.animate .first-text,
.animations .absolute.animate {
  opacity: 1;
}

.moa_animation_outer .moa_animation_title_1.fadeOut,
.animate .first-text.fadeOut {
  opacity: 0;
}

.moa_block.animate {
  top: 0;
}

.animations img:not(.absolute).rotate {
  transform: rotateY(180deg);
}

.animations .absolute.rotate {
  transform: rotateY(0);
}

@media (max-width: 1199px) {
  .moa_animation_outer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .moa_block .animations {
    max-width: 220px;
  }

  .moa_block_text {
    font-size: 16px;
  }

  .moa_animation_outer .secondary-bg.step1 {
    width: calc(100% - 242px);
  }

  .moa_animation_outer .secondary-bg.step2 {
    width: calc(100% - 467px);
  }

  .moa_animation_outer .secondary-bg.step3 {
    width: calc(100% - 693px);
  }

  .moa_animation_outer .secondary-bg.step4 {
    width: 0;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1090px;
  }

  /* header .container,
  header .container-lg,
  header .container-md,
  header .container-sm,
  header .container-xl,
  header .container-xxl,
  .indications-topbar  .container {
    max-width: 1158px;
  } */
}

/* Mod animation */

.mod-animation-desktop {
  position: relative;
  z-index: 1;
  margin-top: -570px;
  padding-bottom: 80px;
}

.spacing-boxes-text {
  position: relative;
  z-index: 2;
}

.dna-images {
  position: relative;
  width: 123px;
  margin: 0 auto;
}

.dna-images .dna {
  top: 0;
  position: absolute;
  transition: ease all 0.4s;
  opacity: 0;
  width: 123px;
  height: 100%;
  background-position: bottom center;
  transition: ease all 0.4s;
}

.dna.active {
  opacity: 1;
}

.rna-left,
.rna-right {
  position: absolute;
  bottom: 0;
  height: 0;
  transition: ease all 0.4s;
  width: 123px;
  background-position: bottom center;
  background-size: 100%;
}


.mod-animation-desktop .bg-dna {
  margin: 0 auto;
}

.triangle-red {
  position: absolute;
  transform: translateY(-50%);
  /* Mantém proporção baseada em 1366px = 927px */
  height: calc(100vw * (927 / 1366));
  width: 49.6vw;
  /* vai até o meio da tela */
  top: calc(100vw * (905 / 1905));
  z-index: 5;
  transition: ease all 0.4s;
}

/* Triângulo da esquerda */
.left {
  left: -49.4vw;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/* Triângulo da direita */
.right {
  right: -49.4vw;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.left.active {
  left: 0;
}

.right.active {
  right: 0;
}

.no-overflow-x {
  overflow-x: hidden;
}

/* Cores (você pode trocar depois) */
.triangle-red.red {
  background: #E0004D;
  /* vermelho temporário */
  z-index: 2;
}

.triangle-red.red2 {
  background: #9B2242;
}

.triangle-yellow {
  position: absolute;
  /* Um pouco mais alto que o vermelho */
  height: calc(100vw * (1020 / 1366));
  /* 👉 SEU NOVO WIDTH */
  width: 49vw;
  /* 👉 NOVO TOP RESPONSIVO (baseado nos seus 195px em 1905px) */
  top: calc(100vw * (195 / 1905));
  background: #E1CD00;
  z-index: 1;
  transition: ease all 0.4s;
}

.rna-left.step1 {
  height: 380px;
}

.rna-right.step2 {
  height: 485px;
}

.rna-left.step3,
.rna-right.step3 {
  height: 100%;
}

#lock-screen {
  z-index: 10;
  position: relative;
}

.content-before-animation {
  margin-top: 50px
}

@media (max-width: 1620px) {
  .triangle-red {
    top: calc(105vw * (905 / 1905));
  }

  .triangle-yellow {
    top: calc(123vw * (195 / 1905));
  }
}

@media (max-width: 1554px) {
  .triangle-red {
    top: calc(123vw * (905 / 1905));
  }

  .triangle-yellow {
    top: calc(206vw * (195 / 1905));
  }
}

@media (max-width: 1335px) {
  .triangle-red {
    top: calc(144vw * (905 / 1905));
  }

  .triangle-yellow {
    top: calc(303vw * (195 / 1905));
  }
}

@media (max-width: 1190px) {
  .triangle-red {
    top: calc(165vw * (905 / 1905));
  }

  .triangle-yellow {
    top: calc(400vw * (195 / 1905));
  }
}

.mod_npm1 .first__block__wrapper {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-direction: row;
  padding: 43px 63px;
  align-items: center;
}

.mod_npm1 .first__block__wrapper h2 {
  font-size: 20px;
}

.mod_npm1 .first__block__wrapper p {
  font-size: 18px;
}

.mod_npm1 .first__block__wrapper .block_wrapper_image {
  flex: none;
}

.accordion-button:not(.collapsed) {
  color: var(--green);
}

.reduce-ml-text {
  margin-left: -7px;
}

@media (max-width: 991px) {
  .mod_npm1 .first__block__wrapper {
    gap: 20px;
    padding: 43px 25px 22px 45px;
    align-items: start;
  }


  .mod-menin .dosing_bricks {
    grid-template-columns: auto;
  }

  .mod-menin .spacing-boxes-text {
    margin-top: 165px;
  }

  .bg-dna-mobile {
    margin-top: -510px;
  }


  #menin-interactions {
    padding: 80px 0 0 0;
  }

  .main_disease_insights .highlight__text_wrapper {
    padding: 29px 19px 41px;
  }

  .main_disease_insights .highlight__text_wrapper h3 {
    font-size: 26px;
    line-height: 36px;
  }

  .reactions_table_reference {
    margin: 10px 0 0 20px;
  }


  .reactions_table_reference::before {
    left: 17px;
  }

  .triangle-yellow {
    top: auto;
    bottom: calc(-120vw * (195 / 1905));
  }

  .triangle-red {
    top: auto;
    bottom: calc(-90vw * (905 / 1905));
  }

  .mod-menin .block_icon_wrapper {
    top: 0px;
  }

  .main_disease_insights .block__wrapper.first-block {
    padding: 80px 20px 40px;
    margin-bottom: 110px;
    height: auto;
  }

  .main_disease_insights .progression .block__wrapper.first-block {
    margin-bottom: 82px;
    padding: 60px 45px 40px;
    height: auto;
  }

  .main_disease_insights .progression .block__wrapper.second__wrapper {
    padding: 60px 56px 40px;
  }

  .mod-progression .block__wrapper .magnifier {
    left: 50%;
    top: -75px;
    transform: translateX(-50%);
  }

  .mod-progression .block__wrapper.second__wrapper {
    padding: 50px 22px 40px;
    margin-bottom: 40px;
  }

  .mod-progression .progression__content_item {
    grid-template-columns: .5fr 1fr;
    grid-auto-flow: row;
    justify-items: center;
    gap: 20px;
  }

  .progression .progression__content_item {
    grid-template-columns: .5fr 1fr;
    gap: 10px;
  }

  .mod-progression .progression__content_text,
  .progression .progression__content_text {
    text-align: left;
  }

  .mod_kmt2a .block__wrapper {
    padding: 40px 30px;
  }

  .mod_kmt2a .about__info,
  .mod_npm1 .about__info {
    grid-row: 1 / 3;
    padding: 0 0 0 0;
  }

  .mod_npm1 {
    padding: 40px 0 40px 0;
  }

  .mod_npm1 .about__content {
    gap: 40px;
  }

  .moa .about__list.first__about__list {
    margin-bottom: 20px;
  }

  .trial .trial_top_subtitle {
    max-width: 99%;
  }

  /* .monitoring_faq .accordion-item.accordion-item__open {
    border-bottom: none;
  } */

  .main_npm1m-aml .reaction_table_disclaimer_mobile {
    background-image: url(../img/bg_reaction_table_disclaimer-npm1_mobile.png);
    margin-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
    height: 335px;
  }

  .main_kmt2a-aml .reaction_table_disclaimer_text {
    max-width: 260px;
  }

  .main_kmt2a-aml .subgroups {
    background-image: url(../img/bg_subgroups_mobile.png);
    background-size: cover;
    background-position: top;
    padding: 126px 0 51px 0;
  }

  .monitoring_faq #monitoring_faq_collapse2.show {
    margin-bottom: 40px;
  }

  .main_npm1m-aml .reactions_tables_left {
    margin-bottom: 0;
  }

  .main_npm1m-aml .description_reactions {
    margin-top: 22.5px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 40px 0 40px 0;
    padding: 50px 35px 50px 35px;
  }

  .subbox-mobile .spacing-title-mobile {
    margin-top: 33px;
  }

  .box-data-patients .achieved_middle.small_middle .achieved_right p.first-text {
    margin-left: 0;
  }

  .left-less-10 {
    position: relative;
    left: -10px;
  }

  .about__chart_row_item:nth-of-type(3) .about__chart_icon_wrapper {
    gap: 7px;
  }

  .about__chart_row_item:nth-of-type(2) .about__chart_icon_wrapper.special-gap {
    gap: 7px;
  }

  .about__chart_row_item:nth-of-type(1) .about__chart_icon_wrapper {
    gap: 7px;
  }
}

@media (max-width: 767px) {
  .mod-animation-desktop {
    position: relative;
    z-index: 1;
    margin-top: -620px;
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .mod-animation-desktop {
    position: relative;
    z-index: 1;
    margin-top: -575px;
    padding-bottom: 40px;
  }

  .triangle-yellow {
    top: auto;
    bottom: calc(530vw * (195 / 1905));
  }

  .triangle-red {
    top: auto;
    bottom: calc(50vw * (905 / 1905));
  }

  .content-before-animation {
    margin-top: 0;
  }

  .mod_npm1 .about__subtitle,
  .moa_mob .moa__upper_subtitle,
  .moa .moa__upper_subtitle:first-child {
    max-width: 310px;
  }

  .moa .about__list.second__about__list {
    margin-right: 20px;
  }

  .trial_shape_1 {
    padding: 17px 40px;
  }

  .trial_shape_2 {
    padding: 22px 44px 22px 32px;
  }

  #collapse-header .accordion-body {
    padding-left: 10px;
    padding-right: 30px;
  }

  .hover-active-mobile,
  .hover-active-mobile {
    transition: none !important;
  }

  .hover-active-mobile:hover,
  .hover-active-mobile:active {
    background-color: #ffffff !important;
    color: var(--magenta) !important;
    transition: none !important;
  }

  .hover-active-mobile:hover p,
  .hover-active-mobile:active p {
    color: var(--magenta) !important;
    transition: none !important;
  }

  .box-data-patients h4 {
    line-height: 32px;
    max-width: 300px;
  }

  .accordion-header {
    margin-left: 2px;
  }

  .subbox-data-patients .subbox-mobile {
    padding: 0 20px;
  }

  .box-data-patients h4.lower-margin-bottom {
    margin-bottom: 0;
  }

  .generic_button.bg_wine {
    transition: none;
  }


  .generic_button.bg_wine.no-hover-active-mobile:hover,
  .generic_button.bg_wine.no-hover-active-mobile:active {
    background-color: var(--wine);
    border: solid 2px var(--wine);
  }
}

@media (max-width: 405px) {
  .bg-dna-mobile {
    margin-top: -550px;
  }
}

@media (max-width: 505px) {
  .mod-animation-desktop {
    position: relative;
    z-index: 1;
    margin-top: -685px;
    padding-bottom: 40px;
  }
}

@media (max-width: 390px) {
  .bg-dna-mobile {
    margin-top: -615px;
  }

  .triangle-yellow {
    top: auto;
    bottom: calc(30vw);
  }

  .triangle-red {
    top: auto;
    bottom: 0vw;
  }
}

@media (max-width: 381px) {
  .bg-dna-mobile {
    margin-top: -655px;
  }
}

@media (max-width: 362px) {
  .bg-dna-mobile {
    margin-top: -700px;
  }
}


@media (max-width: 322px) {
  .bg-dna-mobile {
    margin-top: -740px;
  }
}



@media (min-width: 1200px) {
  .main_npm1m-aml .prespecified .achieved_list_desktop {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .mod_kmt2a {
    padding-bottom: 40px;
  }

  header .bg-white.box_shadow .container {
    padding: 0 20px;
  }
}