/*********************** GIST ROOT ROUTE ***********************/
/* HERO BLOCK */ /* -ALT is for hero's with no .gist-hero-copy content*/
.gist-hero-wrapper {
  display: grid;
  grid-template-areas: "hero-heading hero-image" "hero-copy hero-image";
  grid-template-columns: 1.5fr minmax(300px, 1fr);
  min-height: 220px;
  width: 100%;
  overflow: hidden;
}
.gist-hero-wrapper-alt {
  display: flex;
  justify-content: space-between;
  height: 220px;
  width: 100%;
  overflow-y: visible;
  overflow-x: clip;
 }
.gist-hero-wrapper-noheading {
  display: grid;
  grid-template-areas: "hero-copy hero-image";
  grid-template-columns: 1.5fr minmax(300px, 1fr);
  min-height: 220px;
  width: 100%;
  overflow: hidden;
}
/*******/
.gist-hero-wrapper h1 {
  grid-area: hero-heading;
  padding-inline: 2rem 1rem;
  padding-bottom: 1rem;
  align-self: flex-end;
  padding-top: 0;
}
.gist-hero-wrapper-alt h1 {
  padding-inline: 2rem;
  padding-bottom: 0;
  align-self: center;
  padding-top: 0;
}
/*******/
.gist-hero-wrapper .gist-hero-copy {
  grid-area: hero-copy;
  position: relative;
  align-self: start;
  padding-inline: 2rem 1rem;
  z-index: 5;
}
.gist-hero-wrapper-noheading .gist-hero-copy {
  grid-area: hero-copy;
  position: relative;
  align-self: center;
  padding-inline: 0 1rem;
  z-index: 5;
}
/*******/
.gist-hero-wrapper .gist-hero-copy .gist-bgstripe-copy-container {
  background: url('/img/gist-hero-teal-hash.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 20px top 0;
  max-width: 444px;
  padding-right: 20px;
  padding-block: 20px;
}
.gist-hero-wrapper-noheading .gist-hero-copy .gist-bgstripe-copy-container {
  background: url('/img/gist-hero-teal-hash.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 50px top 0;
  max-width: 323px;
  padding-right: 20px;
  padding-block: 20px;
}
/*******/
.gist-hero-wrapper .gist-hero-copy .gist-bgstripe-copy-container .gist-bgstripe-copy {
  padding-block: 10px;
  padding-inline: 15px;
  border-radius: 5px;
}
.gist-hero-wrapper-noheading .gist-hero-copy .gist-bgstripe-copy-container .gist-bgstripe-copy {
  padding-block: 1.25rem;
  padding-inline: 1rem;
  border-radius: 0 5px 5px 0;
  text-align: center;
}
/*******/
.gist-hero-wrapper .hero-image,
.gist-hero-wrapper-noheading .hero-image {
  grid-area: hero-image;
}
/*.gist-hero-wrapper-alt .hero-image {*/
/*  position: relative;*/
/*}*/
/*.gist-hero-wrapper-noheading .hero-image {*/
/*  position: relative;*/
/*}*/
/*******/
.gist-hero-wrapper .hero-image picture {
  display: initial;
  position: relative;
  z-index: 5;
}
.gist-hero-wrapper-noheading .hero-image picture {
  display: initial;
  position: absolute;
  left: 0;
  z-index: 5;
}
.gist-hero-wrapper-alt .hero-image picture {
  display: grid;
  /*justify-content: end;*/
  position: relative;
  padding-right: 25px;
  /*right: 0;*/
  overflow-y: visible;
  z-index: 5;
}
/*******/
.gist-hero-wrapper .hero-image .gist-hero-backround-shape {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 420px;
  z-index: 1;
}
.gist-hero-wrapper-noheading .hero-image .gist-hero-backround-shape {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  height: auto;
  z-index: 1;
  width: 100%;
}
.gist-hero-wrapper-alt .hero-image .gist-hero-backround-shape {
  display: block;
  position: absolute;
  bottom: 0;
  right: -191px;
  height: 420px;
  z-index: 1;
}
.gist-hero-wrapper .hero-image-temporary { justify-self: flex-end; }




/*2 COL BLOCK - WHAT IS AYVAKIT*/
.gist-two-column-container {
  padding-inline: 1rem;
  padding-block: 3.75rem;
}
.gist-two-column-container .gist-two-column-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  max-width: 1150px;
  margin: auto;
  height: 505px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.gist-two-column-container .gist-two-column-block img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 10px 0 0 10px;
}
.gist-two-column-container .gist-two-column-block .two-column-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 2rem;
  padding-inline: 2rem;
}
.gist-patient-port-upper { display: none; }
.gist-patient-port-lower {
  position: absolute;
  bottom: 10px;
  left: 10px;
}



/*3 COL CTA*/
.three-column-cta {
  padding-block: 2.5rem;
  padding-inline: 1rem;
}
.three-column-cta .three-column-cta-wrapper {
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
  max-width: 1150px;
  border-radius: 10px;
  background: url('/img/gist-hero-teal-hash-desktop.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 0 top 0;
  background-color: #037D99;
}
.three-column-cta .three-column-cta-wrapper .three-column-cta-block {
  display: grid;
  grid-template-columns: 1fr 2.5fr 1fr;
  background-color: #fff;
  align-items: center;
  justify-items: center;
  grid-column-gap: 30px;
  min-height: 200px;
  margin: auto;
  padding-right: 41px;
  border-radius: 10px;
}
.three-column-cta .three-column-cta-wrapper .three-column-cta-block img {
  width: 99px;
  height: 91px;
}


/**** BROCHURE DOWNLOAD MODULE ****/
.gist-brochure-download-module {
  /* display: grid; */
  display: flex;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  /* grid-template-columns: 280px 375px; */
  grid-column-gap: 75px;
  justify-content: center;
  /* padding-inline: 1rem;
  padding-block: 3rem; */
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .gist-brochure-download-module {
    padding-bottom: 90px;
  }
}
.gist-brochure-download-module .gist-brochure {
  display: flex;
  justify-content: flex-end;
}
.gist-brochure-download-module .gist-brochure img {
  width: 304px;
  height: 384px;
  z-index: 2;
}
.gist-brochure-download-module .brochure-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* max-width: 430px; */
}
.gist-brochure-download-module .brochure-copy div a img {
  position: relative;
  top: -2px;
  height: 22px;
  margin-left: 10px;
}



/*********************** GIST ABOUT ROUTE ***********************/
/* WHAT MAY HAPPEN BLOCK */
.vert-color-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
}
.what-happens-copy-wrapper {
  max-width: 1200px;
  margin: auto;
  /* padding-inline: 3rem 1rem; */
  padding-block: 2rem;
}
.what-happens-copy-wrapper .what-happens-sub-copy {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  grid-gap: 20px;
  margin-top: 4rem;
}
.what-happens-copy-wrapper .what-happens-sub-copy .wh-bgstripe-copy-container {
  background: url('/img/gist-square-hash-desktop.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 20px top 0;
  width: 250px;
  padding-right: 20px;
  padding-block: 20px;
}
.what-happens-copy-wrapper .what-happens-sub-copy  .wh-bgstripe-copy-container .wh-bgstripe-copy {
  padding-block: 20px;
  padding-inline: 20px;
  background: linear-gradient(90deg, #0D94B4 34.59%, #087E9A 91.84%);
}
.what-happens-copy-wrapper .what-happens-sub-copy .wh-bullets {
  display: flex;
  align-items: center;
  position: relative;
  top: 65px;
  height: 200px;
  max-width: 600px;
  padding-inline: 2rem;
}



/*COMMON SYMPTOMS BLOCK*/
.gist-common-symptoms-container {
  padding-block: 3.75rem;
  padding-inline: 1rem;
}
.gist-common-symptoms-container .gist-common-symptoms-inner {
  padding-block: 3.75rem 5rem;
  padding-inline: 1rem;
  max-width: 1150px;
  margin: 0 auto 30px;
  border-radius: 20px;
}
.gist-common-symptoms-container .gist-common-symptoms-inner h2 {
  padding-bottom: 3.75rem;
}
.gist-common-symptoms-inner .gist-common-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
}
.gist-common-symptoms-inner .gist-common-symptoms-grid .gist-symptom {
  border-right: 3px solid #CDE5EB;
  text-align: center;
  padding-inline: 8px;
}
.gist-common-symptoms-inner .gist-common-symptoms-grid .gist-symptom:last-of-type {
  border: none;
}
.gist-common-symptoms-inner .gist-common-symptoms-grid .gist-symptom img {
  justify-self: center;
  align-self: flex-start;
}
.gist-common-symptoms-inner .gist-common-symptoms-grid .gist-symptom p {
  text-align: center;
  align-self: flex-end;
}
.gist-common-symptoms-container .common-symptoms-legal {
  max-width: 505px;
  margin: auto;
  text-align: center;
}



/* FAQs*/
.gist-faqs {
  padding-block: 0 4rem;
  padding-inline: 1rem;
}
.gist-faqs-inner {
  max-width: 1150px;
  margin: auto;
}
.gist-faqs .gist-faqs-inner .faq--accordion {
  position: relative;
  width: 100%;
  text-align: left;
  background: none;
  cursor: pointer;
  padding-block: 2rem;
  padding-right: 2.5rem;
  border-top: 1px solid #9CD0EE;
  border-bottom: none;
  border-left: none;
  border-right: none;
}
.gist-faqs .gist-faqs-inner .faq--accordion:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 3px;
  background-color: #037D99;
}
.gist-faqs .gist-faqs-inner .faq--accordion[aria-expanded="false"]:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 3px;
  rotate: -90deg;
  background-color: #037D99;
  transition: rotate .2s ease-in;
}
.gist-faqs .gist-faqs-inner .faq--accordion[aria-expanded="true"]:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 3px;
  rotate: 0deg;
  background-color: #037D99;
  transition: rotate .2s ease-in;
}
.gist-faqs .gist-faqs-inner .panel {
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.gist-faqs .gist-faqs-inner .panel:last-of-type {
  border-bottom: 1px solid #9CD0EE;
}


/*********************** GIST WHAT IS AYVAKIT ROUTE ***********************/
/*AYVAKIT TARGETS BLOCK*/
.gist-ayvakit-targets-wrapper {
  padding-block: 6rem 3rem;
  padding-inline: 1rem;
}
.gist-ayvakit-targets-wrapper picture {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.gist-ayvakit-targets-wrapper .targets-copy-container {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-gap: 45px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-block: 2.5rem;
  padding-inline: 2rem;
  border-radius: 30px;
  z-index: 5;
}


/*WHO IS AYVAKIT FOR BLOCK*/
.gist-who-for-container {
  padding-block: 3rem;
  padding-right: 1rem;
}
.gist-who-for-container .gist-who-for-inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  grid-gap: 125px;
  max-width: 1000px;
}
.gist-who-for-container .horiz-color-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 13px;
  width: 100%;
  background: linear-gradient(270deg, #FFFFFF 0%, #00B5DF 39.25%, #FDB71A 100%);
}




  /*HOW IT WORKS*/
/* HOW DOES AYVAKIT WORK BLOCK */
.how-does-it-work-wrapper {
  padding-block: 4rem;
  padding-inline: 1rem;
  max-width: 1150px;
  margin: auto;
}
.how-does-it-work-wrapper .compare-contrast-block {
  max-width: 1114px;
  margin: 0 auto 50px;
}
.how-does-it-work-wrapper .compare-contrast-block .contrast-module-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 430px));
  grid-gap: 40px;
  justify-content: center;
  align-content: center;
}
.how-does-it-work-wrapper .compare-contrast-block .contrast-module-container .contrast-module {
  text-align: center;
}
.how-does-it-work-wrapper .compare-contrast-block .contrast-module-container .contrast-module p {
  position: relative;
  top: 2px;
}
.how-does-it-work-wrapper .compare-contrast-block .contrast-module-container .contrast-module .contrast-module-copy {
  border: 2px solid #1F5781;
  border-radius: 0 0 30px 30px;
  background-color: white;
}
.how-does-it-work-wrapper .compare-contrast-block .contrast-module-container .contrast-module p {
  padding-block: 1rem;
  padding-inline: 1rem;
}
.how-does-it-work-wrapper .compare-contrast-block .contrast-module-container .contrast-module .contrast-module-copy p:first-of-type {
  padding-block: 1rem .5rem;
  padding-inline: 0.9rem;
}
.how-does-it-work-wrapper .compare-contrast-block .contrast-module-container .contrast-module p:nth-of-type(2) {
  padding-inline: 1rem;
}
.how-does-it-work-wrapper .compare-contrast-block .contrast-module-container .contrast-module .contrast-module-copy p:last-of-type {
  padding-block: 0 1rem;
  padding-inline: 1.875rem;
}
.how-does-it-work-wrapper .compare-contrast-block .contrast-module-container .contrast-module img {
  height: 73px;
  width: 53px;
  margin: 1rem auto;
}



/*********************** GIST TAKING AYVAKIT ROUTE ***********************/
/*CHART & STATISTIC BLOCK*/
.gist-stats-container {
  /* padding-block: 6.25rem;
  padding-inline: 1rem; */
}
.gist-stats-container .gist-stats-inner {
  /* max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 10px; */
}
.gist-stats-container .gist-stats-inner .gist-stats-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 30px;
  align-items: center;
  justify-items: left;
}
.diagram-swatch {
  display: flex;
}
.diagram-swatch .swatch {
  height: 23px;
  min-width: 23px;
  margin-right: 10px;
}
.gist-stats-container .gist-stats-legal {
  /* max-width: 900px; */

  margin: 30px auto 0;
}


/*HOW DO I TAKE*/
.gist-how-to-take-container {
  padding-block: 0rem 3.75rem;
  padding-inline: 1rem;
}
.gist-how-to-take-container .gist-how-to-inner-copy {
  max-width: 1150px;
  margin: 0 auto 40px;
  border-radius: 20px;
  padding-block: 2.5rem;
  padding-inline: 1rem;
}
.gist-how-to-take-container .gist-how-to-inner-copy p {
  max-width: 415px;
  margin: 0 auto 30px;
}
.gist-how-to-take-container .gist-how-to-inner-copy .gist-how-to-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
}
.gist-how-to-take-container .gist-how-to-inner-copy .gist-how-to-grid .gist-howto {
  border-right: 3px solid #F2FBFD;
  text-align: center;
  padding-inline: 8px;
}
.gist-how-to-take-container .gist-how-to-inner-copy .gist-how-to-grid .gist-howto:last-of-type {
  border: none;
}
.gist-how-to-take-container .gist-how-to-inner-copy .gist-how-to-grid .gist-howto img {
  justify-self: center;
  align-self: flex-start;
}
.gist-how-to-take-container .gist-how-to-inner-copy .gist-how-to-grid .gist-howto p {
  text-align: center;
  align-self: flex-end;
  max-width: 220px;
}
.gist-how-to-take-container .gist-how-to-instructions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px 40px;
  max-width: 1150px;
  margin: auto;
}


/*CRM SPLIT COLOR*/
.crm-split-color .gist-color-spacer {
  height: 150px;
  width: 100%;
}
.crm-split-color .gist-color-spacer:last-of-type {
  height: 200px;
}
.crm-split-color .gist-floater-wrapper {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  padding-block: 0;
  background-color: transparent;
}
.crm-split-color .gist-floater-block {
  background-color: #FFF4DD;
}

.crm-split-color .gist-floater-block img{
    width:77px;
    height:87px;
}


/*MONITORING*/
.gist-monitoring-wrapper {
  padding-block: 3.75rem 1rem;
  padding-inline: 1rem;
}
.gist-monitoring-wrapper .gist-monitoring-inner {
  max-width: 1150px;
  margin: auto;
}
.gist-monitoring-wrapper .gist-monitoring-inner .gist-mon-copy-top {
  /* max-width: 525px; */
  /* margin-bottom: 25px; */
  margin-bottom: 0;
}
.gist-monitoring-wrapper .gist-monitoring-inner .gist-mon-copy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px 40px;
  margin-bottom: 20px;
}
.gist-monitoring-wrapper .gist-monitoring-inner .gist-disclose-med {
  display: flex;
  padding-block: 2.5rem;
  padding-inline: 1rem;
  max-width: 900px;
  margin: auto;
  border-radius: 10px;
}
.gist-monitoring-wrapper .gist-monitoring-inner .gist-disclose-med img {
  margin-right: 30px;
}


/*IS AYVAKIT RIGHT FOR YOU*/
.gist-is-right-container {
  padding-block: 3.75rem;
  padding-top: 0rem;
}
.gist-is-right-container  .gist-is-right-shapes {
  position: absolute;
  top: 30px;
  left: 0;
}
.gist-is-right-container .gist-is-right-heading-grid {
  display: grid;
  grid-template-columns: 2fr minmax(300px, 0.6fr);
  grid-column-gap: 20px;
  align-items: center;
  margin-top: 10px;
  overflow-x: clip;
}
.gist-is-right-container .gist-is-right-heading-grid .gist-is-right-bgstripe-copy-container {
  background: url('/img/gist-is-right-bgstripe.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left 0 top 0;
  max-width: 680px;
  padding-right: 20px;
  padding-block: 20px;
}
.gist-is-right-container .gist-is-right-heading-grid .gist-is-right-bgstripe-copy-container .gist-bgstripe-copy {
  padding-inline: 90px 1rem;
  padding-block: 20px;
}
.gist-is-right-container .gist-is-right-heading-grid .gist-is-right-bgstripe-copy-container .gist-bgstripe-copy h4 span {
  text-decoration: underline;
  text-decoration-color: #FFB71B;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}
.gist-is-right-container .gist-is-right-heading-grid .gist-is-right-headshot {
  position: relative;
  top: -45px;
  justify-self: flex-end;
  width: 100%;
}
.gist-is-right-container .gist-is-right-effects-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px 50px;
  max-width: 1150px;
  margin: 20px auto;
  /* padding-inline: 1rem; */
}



/*********************** GIST RESOURCES ROUTE ***********************/
/*SUPPORT BLOCK*/
.gist-support-container {
  padding-block: 3.75rem;
}
.gist-support-container .gist-support-inner {
  max-width: 1150px;
  margin: auto;
  padding-inline: 0;
}
.gist-support-container .gist-support-inner .gist-support-p {
  max-width: 750px;
  margin: 0 auto 40px;
}
.gist-support-container .gist-support-inner .gist-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  padding-block: 2rem;
  padding-inline: 1rem;
  border-radius: 10px;
}
.gist-support-container .gist-support-inner .gist-support-grid .gist-support {
  border-right: 3px solid #EBF6FC;
  text-align: center;
  justify-self: center;
  padding-inline: 8px;
  width: 100%;
}
.gist-support-container .gist-support-inner .gist-support-grid .gist-support:last-of-type {
  border: none;
}
.gist-support-container .gist-support-inner .gist-support-grid .gist-support img {
  justify-self: center;
  align-self: flex-start;
}
.gist-support-container .gist-support-inner .gist-support-grid .gist-support h3 {
  margin: 0 auto 10px;
}
.gist-support-container .gist-support-inner .gist-support-grid .gist-support h3,
.gist-support-container .gist-support-inner .gist-support-grid .gist-support p {
  max-width: 220px;
}


.support-cta-block {
  display: grid;
  grid-template-columns: 190px 1fr 2fr;
  grid-gap: 55px;
  align-items: center;
}
.support-cta-block .gist-support-image-one {
  width: 190px;
  height: 204px;
}
.support-cta-block .gist-support-image-two {
  width: 257px;
  height: 104px;
  margin: auto;
}
.support-cta-block .support-cta-copy {
  padding-inline: 1rem;
  max-width: 365px;
}

/**** INSURENCE COST MODULE****/

.insurencecover-block-container {
    padding-block: 6.25rem 4.063rem;
    padding-inline: 1rem;
    max-width: 1150px;
    margin: auto;
}

    .insurencecover-block-container p {
        max-width: 700px;
        margin: auto;
    }

    .insurencecover-block-container .insurencecover-body-block {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
        grid-gap: 25px;
        justify-content: center;
        align-content: center;
        padding-block: 3.75rem 3.75rem;
        padding-inline: 1.875rem;
        border-radius: 20px;
    }



/******* RESOURCES BOXES AND LINKS SECTION FROM RESOURCES PAGE *******/
.resources-wrapper {
    max-width: 1150px;
    margin: auto;
    padding-block: 3.75rem;
    padding-inline: 1rem;
}

    .resources-wrapper .odd-resources-grid-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 45px;
        justify-content: center;
        align-content: center;
        padding-block: 2.5rem;
    }

    .resources-wrapper .odd-resources-grid-container-centered {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 45px;
        justify-content: center;
        align-content: center;
        padding-left: 10rem;
        padding-right: 10rem;
        padding-bottom: 2rem;
    }

    .resources-wrapper .odd-resources-grid-container:nth-of-type(3) {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 45px;
        justify-content: center;
        align-content: center;
        padding-block: 0 2.5rem;
    }

    .resources-wrapper .odd-resources-grid-container .resource-item,
    .resources-wrapper .odd-resources-grid-container-centered .resource-item {
        display: grid;
        background-color: #FFFFFF;
        border-radius: 30px;
    }
    
    .resources-wrapper .odd-resources-grid-container .resource-item-border-advsm, .resources-wrapper .odd-resources-grid-container-centered .resource-item-border-advsm {
        /* border: 3px solid #2F7CB4; */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    }

    .resources-wrapper .odd-resources-grid-container .resource-item .resource-inner, .resources-wrapper .odd-resources-grid-container-centered .resource-item .resource-inner {
        padding-top: 1rem;
        padding-inline: 1rem;
    }

        .resources-wrapper .odd-resources-grid-container .resource-item .resource-inner img, .resources-wrapper .odd-resources-grid-container-centered .resource-item .resource-inner img {
            display: block;
            margin: 0 auto 20px;
        }

    .resources-wrapper .odd-resources-grid-container .resource-item .resource-modal-trigger, .resources-wrapper .odd-resources-grid-container-centered .resource-item .resource-modal-trigger {
        background-color: #fff;
        align-self: flex-end;
        padding-block: 0.938rem;
        padding-inline: 1rem;
        border: none;
        border-radius: 10px;
        /* width: 100%; */
        cursor: pointer;
    }

    .resources-wrapper .odd-resources-grid-container .resource-item button img, .resources-wrapper .odd-resources-grid-container-centered .resource-item button img {
        position: relative;
        top: 4px;
        margin-left: 5px;
    }

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




/******* SITEMAP BLOCK *******/
.site-map-links {
  display: flex;
  flex-direction: column;
  padding-block: 4rem;
  width: 220px;
  margin-left: 150px;
}
.site-map-links a {
  font-family: 'Barlow', Helvetica, serif;
}








@media (max-width: 767px) {
  /* HERO BLOCK */
  .gist-hero-wrapper {
    grid-template-columns: 2fr 1fr;
    grid-template-areas: "hero-heading hero-image" "hero-copy hero-copy";
  }
  .gist-hero-wrapper-noheading {
    display: flex;
    justify-content: space-between;
    min-height: 240px;
  }
  .gist-hero-wrapper-alt {
    height: 240px;
  }
  /*******/
  .gist-hero-wrapper h1 {
    grid-area: hero-heading;
    padding-inline: 1rem;
    padding-top: 3.75rem;
    padding-bottom: 0;
  }
  .gist-hero-wrapper-alt h1 {
    padding-inline: 1rem;
    padding-top: 3.75rem;
  }
  /*******/
  .gist-hero-wrapper .gist-hero-copy {
    padding-block: 2rem;
    padding-inline: 1rem;
  }
  /*******/
  .gist-hero-wrapper-noheading .gist-hero-copy .gist-bgstripe-copy-container {
    background-position: left 16px top 0;
  }
  /*******/
  .gist-hero-wrapper-noheading .gist-hero-copy .gist-bgstripe-copy-container .gist-bgstripe-copy {
    padding-inline: 3rem;
  }
  /*******/
  .gist-hero-wrapper .hero-image picture {
    display: flex;
    justify-content: flex-end;
  }
  .gist-hero-wrapper-alt .hero-image picture {
    padding-right: 0;
  }
  .gist-hero-wrapper-noheading .hero-image picture {
    display: block;
    position: relative;
    z-index: 5;
  }
  /*******/
  .gist-hero-wrapper .hero-image .gist-hero-backround-shape {
    display: none;
  }
  .gist-hero-wrapper-noheading .hero-image .gist-hero-backround-shape {
    display: block;
    position: absolute;
    bottom: 0;
    /*right: 0;*/
    /*height: 241px;*/
    width: 290%;
    z-index: 1;
  }
  .gist-hero-wrapper-alt .hero-image .gist-hero-backround-shape {
    height: 320px;
  }


  /*2 COL BLOCK - WHAT IS AYVAKIT*/
  .gist-two-column-container {
    padding-inline: 1rem;
    padding-block: 3.75rem;
  }
  .gist-two-column-container .gist-two-column-block {
    grid-template-columns: 1fr;
    height: auto;
  }
  .gist-two-column-container .gist-two-column-block img {
    border-radius: 10px 10px 0 0;
  }
  .gist-patient-port-upper { display: block; }
  /* .gist-patient-port-lower { display: none;} */


  /*3 COL CTA*/
  .three-column-cta {
    padding-block: 3rem;
  }
  .three-column-cta .three-column-cta-wrapper .three-column-cta-block  {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    min-height: 270px;
    max-width: 100%;
    padding-block: 2rem;
    padding-inline: 0;
  }
  .three-column-cta .three-column-cta-wrapper .three-column-cta-block img {
    width: 86px;
    height: 78px;
  }
  .three-column-cta .three-column-cta-wrapper .three-column-cta-block h2 {
    max-width: 400px;
  }


  /**** BROCHURE DOWNLOAD MODULE ****/
  .gist-brochure-download-module {
    /* grid-template-columns: 1fr;
    grid-row-gap: 30px; */
    display: block;
    padding-right: 24px;
    padding-left: 24px;
  }
  .gist-brochure-download-module .gist-brochure {
    display: flex;
    justify-content: center;
  }
  .gist-brochure-download-module .brochure-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
  }



  /*********************** GIST ABOUT ROUTE ***********************/
  /* WHAT MAY HAPPEN BLOCK */
  .vert-color-bar {
    width: 10px;
  }
  .what-happens-copy-wrapper {
    padding-inline: 2rem 1rem;
    padding-block: 3rem;
  }
  .what-happens-copy-wrapper h2 {
    max-width: 100%;
    margin-bottom: 25px;
  }
  .what-happens-copy-wrapper .what-happens-sub-copy {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }
  .what-happens-copy-wrapper .what-happens-sub-copy .wh-bgstripe-copy-container {
    justify-self: center;
    max-width: 260px;
  }
  .what-happens-copy-wrapper .what-happens-sub-copy .wh-bullets {
    position: initial;
    height: auto;
    max-width: 100%;
    padding-inline: 1rem;
    padding-block: 2rem;
  }


  /*COMMON SYMPTOMS BLOCK*/
  .gist-common-symptoms-container .gist-common-symptoms-inner {
    padding-block: 2rem;
  }
  .gist-common-symptoms-container .gist-common-symptoms-inner h2 {
    padding-bottom: 1.5rem;
  }
  .gist-common-symptoms-inner .gist-common-symptoms-grid {
    grid-template-columns: 1fr;
  }
  .gist-common-symptoms-inner .gist-common-symptoms-grid .gist-symptom {
    border-right: none;
    padding-inline: 0;
  }
  .gist-common-symptoms-inner .gist-common-symptoms-grid .gist-symptom:after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 20%;
    border-bottom: 3px solid #CDE5EB;
    padding-bottom: 30px
  }
  .gist-common-symptoms-inner .gist-common-symptoms-grid .gist-symptom:last-of-type:after {
    border: none;
  }
  .gist-common-symptoms-inner .gist-common-symptoms-grid .gist-symptom img {
    justify-self: center;
    align-self: flex-start;
  }
  .gist-common-symptoms-inner .gist-common-symptoms-grid .gist-symptom p {
    text-align: center;
    align-self: flex-end;
  }


  /*********************** GIST WHAT IS AYVAKIT ROUTE ***********************/
  /*AYVAKIT TARGETS BLOCK*/
  .gist-ayvakit-targets-wrapper {
    padding-block: 0.5rem 2.5rem;
    padding-inline: 1rem;
  }
  .gist-ayvakit-targets-wrapper .targets-copy-container {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: 0;
    padding-inline: 1rem;
    margin-top: 45px;
  }
  .gist-ayvakit-targets-wrapper .targets-copy-container .bullseye-icon {
    justify-self: center;
  }


  /*WHO IS AYVAKIT FOR BLOCK*/
  .gist-who-for-container {
    padding-block: 3rem;
    padding-right: 0;
  }
  .gist-who-for-container .gist-who-for-inner {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    max-width: 100%;
  }
  .gist-who-for-container .gist-who-for-inner div {
    padding-inline: 1rem;
  }


  /*HOW IT WORKS*/
  .gist-how-it-works-container .gist-how-it-works-inner .contrast-module-container {
    justify-content: center;
  }



  /*********************** GIST TAKING AYVAKIT ROUTE ***********************/
  /*CHART & STATISTIC BLOCK*/
  .gist-stats-container .gist-stats-inner .gist-stats-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }


  /*HOW TO*/
  .gist-how-to-take-container {
    padding-block: 3rem;
  }
  .gist-how-to-take-container .gist-how-to-inner-copy .gist-how-to-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .gist-how-to-take-container .gist-how-to-inner-copy .gist-how-to-grid .gist-howto {
    border-right: none;
    padding-inline: 0;
  }
  .gist-how-to-take-container .gist-how-to-inner-copy .gist-how-to-grid .gist-howto:after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 20%;
    border-bottom: 3px solid #F2FBFD;
    padding-bottom: 30px
  }
  .gist-how-to-take-container .gist-how-to-inner-copy .gist-how-to-grid .gist-howto:last-of-type:after {
    border: none;
  }
  .gist-how-to-take-container .gist-how-to-inner-copy .gist-how-to-grid .gist-howto:last-of-type {
    border: none;
  }


  /*CRM SPLIT COLOR*/
  .crm-split-color .gist-color-spacer {
    height: 210px;
  }
  .crm-split-color .gist-floater-wrapper {
    top: 30px;
  }


  /*MONITORING*/
  .gist-monitoring-wrapper .gist-monitoring-inner .gist-disclose-med {
    flex-direction: column;
  }
  .gist-monitoring-wrapper .gist-monitoring-inner .gist-disclose-med img {
    margin-right: 0;
    margin-bottom: 20px;
    align-self: center;
  }


  /*IS AYVAKIT RIGHT FOR YOU*/
  .gist-is-right-container .gist-is-right-heading-grid {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
    margin-top: 0;
    margin-bottom: 40px;
  }
  .gist-is-right-container .gist-is-right-heading-grid .gist-is-right-bgstripe-copy-container {
    margin-right: 1.5rem;
  }
  .gist-is-right-container .gist-is-right-heading-grid .gist-is-right-bgstripe-copy-container .gist-bgstripe-copy {
    padding-inline: 1rem;
    padding-block: 20px;
  }
  .gist-is-right-container .gist-is-right-heading-grid .gist-is-right-headshot {
    position: relative;
    top: -9px;
    grid-row: 1/2;
    max-width: 274px;
  }


  /*********************** GIST RESOURCES ROUTE ***********************/
  /*SUPPORT BLOCK*/
  .gist-support-container .gist-support-inner {
    padding-inline: 1rem;
  }
  .gist-support-container .gist-support-inner .gist-support-grid {
    grid-template-columns: 1fr;
  }
  .gist-support-container .gist-support-inner .gist-support-grid .gist-support {
    border-right: none;
    padding-inline: 0;
  }
  .gist-support-container .gist-support-inner .gist-support-grid .gist-support:after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 20%;
    border-bottom: 3px solid #EBF6FC;
    padding-bottom: 30px
  }
  .gist-support-container .gist-support-inner .gist-support-grid .gist-support:last-of-type:after {
    border: none;
  }
  .gist-support-container .gist-support-inner .gist-support-grid .gist-support img {
    justify-self: center;
    align-self: flex-start;
  }
  .gist-support-container .gist-support-inner .gist-support-grid .gist-support p {
    text-align: center;
    align-self: flex-end;
  }


  .support-cta-block {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding-bottom: 2.5rem;
  }
  .support-cta-block .gist-support-image-one {
    display: none;
  }
  .support-cta-block .gist-support-image-two {
    width: 187px;
    height: 76px;
  }
  .support-cta-block .support-cta-copy {
    padding-inline: 1rem;
    max-width: 100%;
  }

    /******* RESOURCES BOXES AND LINKS SECTION FROM RESOURCES PAGE *******/
    .resources-wrapper .odd-resources-grid-container:nth-of-type(2) {
        grid-template-columns: 1fr;
    }

    .resources-wrapper .odd-resources-grid-container-centered {
        grid-template-columns: 1fr;
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .resources-wrapper .odd-resources-grid-container:nth-of-type(3) {
        grid-template-columns: 1fr;
    }

    .resources-wrapper .odd-resources-grid-container:nth-of-type(2) .resource-item:first-of-type {
        grid-column: unset;
    }

    .resources-wrapper .odd-resources-grid-container:nth-of-type(2) .resource-item:last-of-type {
        grid-column: unset;
    }

    .resources-wrapper .odd-resources-grid-container:nth-of-type(3) .resource-item {
        grid-column: unset;
    }


  /******* SITEMAP BLOCK *******/
  .site-map-links {
    width: 100%;
    padding-block: 3rem;
    margin-left: 0;
    padding-inline: 1rem;
  }















}





