/* jquery tooltipster plugin css */
.tooltipster-fall,
.tooltipster-grow.tooltipster-show {
  -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1);
  -moz-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
  -ms-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
  -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
}
.tooltipster-base {
  display: flex;
  pointer-events: none;
  position: absolute;
}
.tooltipster-box {
  flex: 1 1 auto;
}

.tooltipster-content {
  box-sizing: border-box;
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}

.hifen-span {
  visibility: hidden;
  margin-left: -5px;
}

.tooltipster-ruler {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
  opacity: 1;
}
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
  transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
}

.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0);
  -moz-transform: rotateZ(0);
  -o-transform: rotateZ(0);
  -ms-transform: rotateZ(0);
  transform: rotateZ(0);
  -webkit-transition-timing-function: cubic-bezier(.23, .635, .495, 1);
  -webkit-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
  -moz-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
  -ms-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
  -o-transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
  transition-timing-function: cubic-bezier(.23, .635, .495, 2.4);
}

.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
  transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
  top: 0!important;
}

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0!important;
  opacity: 0;
}

.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1);
  -webkit-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
  -moz-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
  -ms-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
  -o-transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
  transition-timing-function: cubic-bezier(.175, .885, .32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
  left: -40px!important;
}

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0!important;
  opacity: 0;
}

@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.tooltipster-update-fade {
  animation: tooltipster-fading .4s;
}

@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}

.tooltipster-update-rotate {
  animation: tooltipster-rotating .6s;
}

@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.tooltipster-update-scale {
  animation: tooltipster-scaling .6s;
}

.tooltipster-sidetip .tooltipster-box {
  background: #565656;
  border: 2px solid #000;
  border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}

.tooltipster-sidetip .tooltipster-content {
  color: #fff;
  line-height: 18px;
  padding: 6px 14px;
}

.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  margin-left: -10px;
  top: 0;
  width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}

.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #565656;
  left: 0;
  top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #565656;
  left: -3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #565656;
  left: 3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #565656;
  left: 0;
  top: -3px;
}

.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #000;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #000;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #000;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #000;
}

.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}


/*./jquery tooltipster plugin css */


/*Fonts*/

@font-face {
  font-family: 'Nunito-Black';
  src: url("../fonts/Nunito-Black.eot");
  src: url("../fonts/Nunito-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-Black.woff") format("woff"), url("../fonts/Nunito-Black.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-BlackItalic';
  src: url("../fonts/Nunito-BlackItalic.eot");
  src: url("../fonts/Nunito-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-BlackItalic.woff") format("woff"), url("../fonts/Nunito-BlackItalic.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-Bold';
  src: url("../fonts/Nunito-Bold.eot");
  src: url("../fonts/Nunito-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-Bold.woff") format("woff"), url("../fonts/Nunito-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-BoldItalic';
  src: url("../fonts/Nunito-BoldItalic.eot");
  src: url("../fonts/Nunito-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-BoldItalic.woff") format("woff"), url("../fonts/Nunito-BoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-ExtraBold';
  src: url("../fonts/Nunito-ExtraBold.eot");
  src: url("../fonts/Nunito-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-ExtraBold.woff") format("woff"), url("../fonts/Nunito-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-ExtraBoldItalic';
  src: url("../fonts/Nunito-ExtraBoldItalic.eot");
  src: url("../fonts/Nunito-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-ExtraBoldItalic.woff") format("woff"), url("../fonts/Nunito-ExtraBoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-ExtraLight';
  src: url("../fonts/Nunito-ExtraLight.eot");
  src: url("../fonts/Nunito-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-ExtraLight.woff") format("woff"), url("../fonts/Nunito-ExtraLight.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-ExtraLightItalic';
  src: url("../fonts/Nunito-ExtraLightItalic.eot");
  src: url("../fonts/Nunito-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-ExtraLightItalic.woff") format("woff"), url("../fonts/Nunito-ExtraLightItalic.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-Italic';
  src: url("../fonts/Nunito-Italic.eot");
  src: url("../fonts/Nunito-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-Italic.woff") format("woff"), url("../fonts/Nunito-Italic.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-Light';
  src: url("../fonts/Nunito-Light.eot");
  src: url("../fonts/Nunito-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-Light.woff") format("woff"), url("../fonts/Nunito-Light.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-LightItalic';
  src: url("../fonts/Nunito-LightItalic.eot");
  src: url("../fonts/Nunito-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-LightItalic.woff") format("woff"), url("../fonts/Nunito-LightItalic.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-Regular';
  src: url("../fonts/Nunito-Regular.eot");
  src: url("../fonts/Nunito-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-Regular.woff") format("woff"), url("../fonts/Nunito-Regular.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-SemiBold';
  src: url("../fonts/Nunito-SemiBold.eot");
  src: url("../fonts/Nunito-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-SemiBold.woff") format("woff"), url("../fonts/Nunito-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: 'Nunito-SemiBoldItalic';
  src: url("../fonts/Nunito-SemiBoldItalic.eot");
  src: url("../fonts/Nunito-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Nunito-SemiBoldItalic.woff") format("woff"), url("../fonts/Nunito-SemiBoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: 'CaeciliaLTStd-Bold';
  src: url("../fonts/CaeciliaLTStd-Bold.eot");
  src: url("../fonts/CaeciliaLTStd-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/CaeciliaLTStd-Bold.woff") format("woff"), url("../fonts/CaeciliaLTStd-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'CaeciliaLTStd-Heavy';
  src: url("../fonts/CaeciliaLTStd-Heavy.eot");
  src: url("../fonts/CaeciliaLTStd-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/CaeciliaLTStd-Heavy.woff") format("woff"), url("../fonts/CaeciliaLTStd-Heavy.ttf") format("truetype");
}

@font-face {
  font-family: 'CaeciliaLTStd-Roman';
  src: url("../fonts/CaeciliaLTStd-Roman.eot");
  src: url("../fonts/CaeciliaLTStd-Roman.eot?#iefix") format("embedded-opentype"), url("../fonts/CaeciliaLTStd-Roman.woff") format("woff"), url("../fonts/CaeciliaLTStd-Roman.ttf") format("truetype");
}


/*./Fonts*/


/*General Style*/

a:active,
a:focus {
  outline: 0;
  border: none;
  -moz-outline-style: none;
}

.isi span.dark.visible-lg-inline {
  text-transform: uppercase;
}

.overflow-hidden {
  overflow: hidden;
}

.display-inline {
  display: inline;
}

.display-inline-block {
  display: inline-block;
}

.display-table {
  display: table;
}

.fixed {
  position: fixed;
}

.nowrap {
  white-space: nowrap;
}

.noUnderline {
  text-decoration: none !important;
}

.underline {
  text-decoration: underline !important;
}

.clearFix {
  clear: both;
}

.noPadding {
  padding-left: 0;
  padding-right: 0;
}

.max-560 {
  max-width: 560px;
}

.max-825 {
  max-width: 825px;
}

.max-830 {
  max-width: 830px;
}

.max-860 {
  max-width: 860px;
}

.max-970 {
  max-width: 960px;
}

.max-930 {
  max-width: 930px;
}

.grid>div {
  display: table;
  clear: both;
  width: 100%;
}

.content-center {
  margin: 0 auto;
}

h2,
h3 {
  font-size: 28px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Nunito-Regular';
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

strong {
  font-family: 'Nunito-ExtraBold';
}

.font-12 {
  font-size: 12px;
}

.font-14 {
  font-size: 14px;
}

.font-18 {
  font-size: 18px;
}

.white {
  color: #fff;
}

.magenta {
  color: #7e00c5;
}

.light-black {
  color: #464646;
}

.dark {
  color: #000;
}

.warm-grey {
  color: #9b9b9b;
}

.marginTop-20 {
  margin-top: 20px;
}

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

.marginTopBottom-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.paddingTop-20-Bottom-10 {
  padding-top: 20px;
  padding-bottom: 10px;
}

.paddingTop-40-Bottom-30 {
  padding-top: 40px;
  padding-bottom: 30px;
}

.paddingTop-40-Bottom-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.nextraBold {
  font-family: 'Nunito-ExtraBold';
}

.nBold {
  font-family: 'Nunito-Bold';
}

.nSemiBold {
  font-family: 'Nunito-SemiBold';
}

.nItalic {
  font-family: 'Nunito-Italic';
}

.nextraBoldItalic {
  font-family: 'Nunito-ExtraBoldItalic';
}

.h2super {
  font-size: 14px;
  position: relative;
  top: -0.5em;
}


/*./General Style*/


/*Global Style*/

body {
  overflow-x: hidden;
  background-color: #f8f8f8;
}

body p,
ul li,
ul li a {
  font-family: 'Nunito-Regular';
  font-size: 16px;
  line-height: 26px;
  color: #000;
  letter-spacing: 0.2px;
}

#header {
  padding-left: 0;
  padding-right: 0;
  background-color: #fff;
}

.fullheader {
  display: flex;
  flex-direction: column;
}

.fullheader ul.list-inline {
  order: 1;
  background-color: rgba(155, 155, 155, 0.1);
  margin-left: 0;
  padding-left: 8px;
  padding-right: 7px;
  text-align: center;
}

.fullheader ul.list-inline li {
  padding-left: 0;
  padding-right: 0;
}

.logos {
  order: 2;
  width: 115px;
  padding-top: 10px;
  padding-left: 15px;
}

.logos img {
  width: 115px;
}

.fullheader ul li:after {
  content: '|';
  cursor: default;
  pointer-events: none;
  margin-left: 6px;
  margin-right: 4px;
  color: #7e7c7f;
}

.fullheader ul.list-inline li:first-child,
.fullheader ul.list-inline li:nth-child(4),
.fullheader ul.list-inline li:nth-child(5),
.fullheader ul.list-inline li:nth-child(6),
.fullheader ul li:nth-child(3):after,
.fullheader ul li:nth-child(4):after,
.fullheader ul li:nth-child(5):after,
.fullheader ul li:nth-child(6):after,
.fullheader ul.list-inline-cloned li:after {
  display: none;
}

.fullheader ul.list-inline li,
.fullheader ul.list-inline li a,
.fullheader ul.list-inline li p,
.fullheader ul.list-inline-cloned li,
.fullheader ul.list-inline-cloned li a {
  font-size: 13px;
  font-family: 'Nunito-SemiBold';
  color: #7e7c7f;
  letter-spacing: normal;
}

.headerFlagline {
  background: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/global/american_flag.svg) no-repeat;
}

.btn-facebook-header,
.btn-facebook-header:hover {
  background: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/global/facebook-icon.svg) no-repeat;
  background-size: contain;
}

.btn-youtube-header,
.btn-youtube-header:hover {
  background: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/global/youtube-icon.svg) no-repeat;
  background-size: contain;
}

.btn.btn-signup-header {
  background-color: #833d97;
}

.fullheader ul.list-inline-cloned {
  order: 3;
  list-style: none;
  margin-top: -32px;
  margin-left: calc(100% - 184px);
  margin-bottom: 0;
}

.fullheader ul.list-inline-cloned li a {
  color: #fff;
  border-radius: 0;
  white-space: normal;
  width: 82px;
  padding: 4px 4px;
  border: none;
}

.container>.navbar-header {
  margin-left: 0;
  margin-right: 0;
}

.navbar {
  min-height: 10px;
}

.navbar-default {
  background: none;
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.navbar-default .navbar-brand {
  height: 10px;
  padding: 5px;
}

.navbar-default .navbar-collapse {
  border: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  position: fixed;
  top: 0px;
  background: rgb(249, 249, 250);
  width: 100vw;
  height: 100vh;
  z-index: 8000;
}

.navbar-nav {
  margin-top: 116px !important;
}

.navbar-default .navbar-toggle,
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background: none;
  border: none;
  padding: 0;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  margin-top: -30px;
  margin-right: 15px;
  border-radius: 0;
  z-index: 8001;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #5b1179;
  width: 26px;
  height: 3px;
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 7px;
}

.navbar-default .navbar-toggle span.icon-bar:nth-child(3) {
  width: 26px;
}

.navbar-toggle>span:nth-child(2).active {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 500ms ease-in-out;
  position: absolute;
  margin-top: -4px;
}

.navbar-toggle>span:nth-child(3).active {
  opacity: 0;
}

.navbar-toggle>span:nth-child(4).active {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 500ms ease-in-out;
  margin-top: -14px;
  position: absolute;
}

.navbar-default .navbar-nav>li>a {
  color: #fff;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
  color: #2ec5cc;
}

.navbar-nav>li>a {
  width: 100% !important;
  text-align: right;
  padding-right: 15px !important;
  font-family: 'Nunito-SemiBold';
  font-size: 16px;
}

.navbar-nav>li>span {
  position: relative;
  top: -26px !important;
  margin-bottom: -20px;
  background: none !important;
  color: #7e7c7f;
  margin-top: -6px;
  height: 32px;
  width: 100% !important;
  opacity: 0;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  right: 0;
}

.navbar-nav>li.open>span {
  color: #fff;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  top: -30px !important;
}

.close-image,
.open-image {
  float: right;
  margin-top: 11px;
  margin-left: 8px;
}

.navbar-default .navbar-nav a img.open-image,
.navbar-default .navbar-nav>.open>a img.close-image {
  display: none;
}

.navbar-default .navbar-nav a img.close-image,
.navbar-default .navbar-nav>.open>a img.open-image {
  display: block;
}

.navbar-default .navbar-nav>.open>a img.open-image {
  margin-top: 15px;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-nav .open .dropdown-menu.multi-level,
.navbar-nav .open .dropdown-menu.multi-level li a {
  background-color: #5b1179;
  color: #fff;
  font-family: 'Nunito-Bold';
}

.navbar-default .navbar-nav>.open>a {
  margin-top: 20px;
}

.navbar-nav .open .dropdown-menu.multi-level {
  padding: 0 !important;
  border-radius: 0;
  margin-bottom: 20px;
  margin-top: -6px;
}

.navbar-nav .support.open .dropdown-menu.multi-level {
  margin-bottom: 0;
}

.navbar-nav .open .dropdown-menu.multi-level li {
  padding-top: 6px;
  padding-bottom: 6px;
}

.navbar-nav .open .dropdown-menu.multi-level li a {
  float: right;
  margin-right: 12px;
}

.navbar-nav .open .dropdown-menu.multi-level li a img.close-image {
  margin-top: 6px;
}

i.arrow {
  border: solid #fff;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 10px;
  display: none;
}

.rightArrow {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#signup-header-nav-cloned {
  color: #fff;
  width: 214px !important;
  float: right;
  margin-right: 15px;
  border-radius: 0;
  margin-top: 25px;
  padding: 0 1.7em 0 1em !important;
}

.btn-facebook-header-cloned,
.btn-facebook-header-cloned:hover {
  //background: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/mobile/FB.svg) no-repeat;
}

.btn-youtube-header-cloned,
.btn-youtube-header-cloned:hover {
  //background: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/global/YT@2x.svg) no-repeat;
}

#shareonfacebook-header-cloned,
#shareonyoutube-header-cloned {
  height: 37px;
  display: inline-block !important;
  float: right;
  margin-top: 30px;
  padding-right: 60px !important;
}

#shareonfacebook-header-cloned {
  width: 12% !important;
}

#shareonyoutube-header-cloned {
  width: 16% !important;
  clear: both;
}

a#shareonyoutube-header {
  box-shadow: none;
}

#maincontent,
#sitemap {
  max-width: 1440px;
  background-color: #fff;
}

.tagrisso-help .parsys1 img {
  margin: 0 auto;
  max-width: 70% !important;
}

.patient-support-sticky-isi-wrapper {
  position: fixed;
  background: #fff;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 10;
  box-shadow: 0 -2px 34px 10px rgba(0, 0, 0, 0.08);
  height: 140px;
}

.patient-support-sticky-isi {
  /*max-width: 960px;*/
  max-width: 100%;
  margin: 0px auto;
  padding: 8px 0px;
  padding-bottom: 0;
}

.patient-support-sticky-isi-content {
  padding-left: 15px;
  padding-right: 15px;
}

.page-content.isi h5,
.page-content.isi p,
.page-content.isi ul,
.page-content.isi ul li a,
.patient-support-sticky-isi-content h5,
.patient-support-sticky-isi-content p,
.patient-support-sticky-isi-content ul,
.patient-support-sticky-isi-content ul li,
.patient-support-sticky-isi-content ul li a {
  font-size: 16px;
  line-height: 20px;
}

.page-content.isi ul li {
  font-size: 16px;
  line-height: 26px;
}

#plus_btn {
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  background-color: #076e72;
  padding: 4px 6px 2px 6px;
}

#footer {
  background-color: #076e72;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

#footer,
.footer-grid {
  width: 100%;
}

.logo-grid img {
  margin: 30px auto;
}

.footer-grid .col-sm-4:last-child {
  padding-left: 12px;
  padding-right: 0;
}

#footer ul li,
#footer ul li a,
#footer p {
  color: #fff;
}

#footer p.footerFlagline {
  line-height: 16px;
}

span.last_updated {
  width: 82%;
  display: inline-block;
}

.footer-social-icon-group {
  padding: 0;
}

.footer-social-icon-group li {
  list-style: none;
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
}

.footer-social-icon-group li:last-child {
  display: block;
  padding-top: 30px;
  padding-bottom: 20px;
}

.btn-facebook-footer,
.btn-facebook-footer:hover {
  background-image: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/global/f-social-facebook_white.svg);
  background-repeat: no-repeat;
  background-size: 13px 25px;
  padding: 16px 16px 16px 0px;
  display: inline-block;
}

.btn-youtube-footer,
.btn-youtube-footer:hover {
  background-image: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/global/YT_white.svg);
  background-repeat: no-repeat;
  display: inline-block;
  background-size: 35px 25px;
  padding: 16px 16px 16px 18px;
}

.dropDown-logo {
  display: none !important;
}

.footerFlagline {
  background: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/global/american_flag_white.svg) no-repeat;
  background-position: 22% 20%;
  padding-left: 2.5em;
  max-width: 262px;
  margin: 0 auto;
}

#footer .list-unstyled {
  margin-bottom: 30px;
}

#footer .list-unstyled li {
  margin-bottom: 4px;
}

.copyRight-Texts>p {
  line-height: 26px;
}

.page-content.isi {
  margin: 0 auto;
  padding: 60px 0;
}

.safety-information-isi ul ul>li.male-disc:nth-child(2) {
  list-style-type: disc;
}

.page-content.isi ul,
.patient-support-sticky-isi-content ul,
.safety-information-isi ul {
  padding-left: 20px;
}

.safety-information-isi ul ul,
.page-content.isi ul ul {
  list-style: none;
  padding-left: 0;
}

.safety-information-isi ul ul>li,
.page-content.isi ul ul>li {
  text-indent: -2px;
  margin-left: 18px;
  list-style-type: circle;
}

.page-content.isi ul ul>li:nth-child(2) {
  list-style-type: disc;
}

li.solid-bul {
  list-style-type: disc;
}

.page-content.isi ul ul>li:before {
  position: relative;
  left: -20px;
}

.safety-information-isi ul ul>li:before {
  display: none;
}

ul.discstyle li::before {
  content: "○" !important;
}

span.pdg-left {
  margin-left: -18px;
}

#backToTop,
#scrollDown {
  visibility: hidden;
  top: calc(100% / 1.5);
  top: -moz-calc(100% / 2);
  top: -o-calc(100% / 2);
  position: fixed;
  right: 34px;
  display: none;
  cursor: pointer;
}

#scrollDown {
  visibility: visible;
}


/* This is how you would create a custom secondary theme on top of tooltipster-noir: */

.tooltip_templates {
  display: none;
}

.tooltip_templates p {
  color: #fff;
}

.tooltiptext.tooltipstered {
  border-bottom: 1px dotted #000;
  line-height: 15px;
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box {
  border-radius: initial;
  background: #5b1179;
  border: 1px solid #5b1179;
  position: relative;
  top: 5px;
  margin-top: 5px;
  max-width: 290px;
  box-shadow: 2px 3px 7px 1px rgba(0, 0, 0, 0.34);
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-content {
  color: #fff;
  padding: 8px;
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-content p {
  color: #fff;
  font-size: 12px;
  line-height: 16px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: transparent;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #5b1179;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #5b1179;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #5b1179;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: -7px;
}

.caregiver-resources #footer .copyRight-Texts p span.access360-trademark,
.clinical-trial-results .copyRight-Texts p span.access360-trademark,
.financial #footer .copyRight-Texts p span.access360-trademark {
  display: block;
}


/* VIDEO POPUP STYLES ================================================== */

.movie {
  display: none;
  position: fixed;
  margin: 30px 10px;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 9999;
  background: #ffff;
  background-image: linear-gradient(44deg, #eaeaea, #ffffff);
  box-shadow: 1px 8px 20px 1px rgba(0, 0, 0, 0.16);
}

.movie object {
  width: 100%;
}

.movie.view {
  display: block !important;
}

.movie .closebtn {
  position: absolute;
  background: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/mobile/close.svg) left top no-repeat;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  z-index: 9999;
  cursor: pointer;
  padding: 14px;
  background-position: center;
  background-size: 100%;
  display: inline-block;
}

.mask.video-mask.view {
  opacity: 0.67 !important;
  background-color: #ededed !important;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  z-index: 9000;
  height: 6060px;
  width: 100%;
}

a.modal-page-link.play-button.li-span.watch-video {
  cursor: pointer;
}


/* VIDEO POPUP STYLES ENDS ================================================== */

span.hidden-chinese-link {
  display: none;
}


/*Home Page Style*/

.home #maincontent {
  padding-left: 0;
  padding-right: 0;
}

p.marginTopBottom-20.home-para {
  font-size: 14px;
}

h2.dark.home-headline {
  font-size: 26px;
}

.home .intro-bg-content-wrapper,
.home .intro-bg-content-footer-wrapper {
  opacity: 0.9;
  background-image: linear-gradient(56deg, #eaeaea, #ffffff);
  padding-left: 15px;
  padding-right: 15px;
}

.home .intro-bg-content-wrapper p.font-14 {
  line-height: 21px;
}

.home .intro-bg-content-footer-wrapper p.font-12,
.home .intro-bg-content-wrapper p.font-12 {
  line-height: 16px;
}

.home .intro-bg-content-wrapper p.font-12:nth-of-type(2) {
  padding-bottom: 10px;
}

.home .doseSection-content-wrapper {
  background-image: linear-gradient(113deg, #dcdcdc, #e6e6e6 8%, #ffffff);
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.18);
  padding-left: 5px;
  padding-right: 5px;
}

.home .resultsSection .doseSection-content-wrapper {
  background-image: linear-gradient(145deg, #dddddd, #e6e6e6 13%, #ffffff);
  box-shadow: 2px 5px 28px 0 rgba(0, 0, 0, 0.2);
}

.home .cancerTypeSection .doseSection-content-wrapper {
  background-image: linear-gradient(140deg, #dddddd, #e6e6e6 13%, #ffffff);
  box-shadow: 2px 5px 28px 0 rgba(0, 0, 0, 0.2);
}

.home .connectSection .doseSection-content-wrapper {
  background-image: linear-gradient(64deg, #eaeaea, #ffffff);
  box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.16);
  padding-left: 18px;
  padding-right: 17px;
}

img.img-responsive.Lung-Cancer-thumb {
  display: none;
}

a.btn.btn-info.nBold.learn-more-now {
  margin-bottom: 35px;
}

.home .startTodaySection .col-sm-6,
.home .doseSection .col-sm-6:nth-of-type(1) {
  padding-left: 0;
  padding-right: 0;
}

.home .doseSection .col-sm-6:nth-of-type(1) {
  margin-top: -10px;
}

.home .startTodaySection .doseSection-content-wrapper {
  background-image: none;
  box-shadow: none;
  padding-left: 13px;
  padding-right: 13px;
}

.home .intro-bg-content-wrapper {
  padding-top: 20px;
  padding-bottom: 10px;
}

.home .kWidgetIframeContainer {
  width: 100% !important;
  padding: 57px 20px;
}

.home .doseSection.doseSection-body.max-930.content-center.bg-copy {
  padding-bottom: 35px;
}

.intro-footer {
  margin-top: -10px;
}

.home .doseSection-content-wrapper h2 {
  padding-bottom: 20px;
}

.home .startTodaySection .doseSection-content-wrapper h2 {
  padding-left: 41px;
  padding-right: 41px;
}

.home .doseSection-content-wrapper a,
.types-of-lung-cancer .doseSection-content-wrapper a.btn,
.diagnosis-and-testing .doseSection-content-wrapper a,
.what-is-tagrisso .connectSection .doseSection-content-wrapper a,
.how-to-take-tagrisso .connectSection .doseSection-content-wrapper a,
.clinical-trial-results .connectSection .doseSection-content-wrapper a,
.safety-information .connectSection .doseSection-content-wrapper a,
.patient-resources .doseSection-content-wrapper a.btn,
.financial .connectSection .doseSection-content-wrapper a,
.support-for-loved-ones .connectSection .doseSection-content-wrapper a,
#exitdialog p.btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  margin-right: 7px;
  border-radius: 0;
  background-image: linear-gradient(280deg, #3d589e, #0ec8d8);
  box-shadow: 0 9px 20px 0 rgba(45, 129, 179, 0.25);
  padding: 9px 12px;
  width: 256px;
  margin: 0 auto;
  border: none;
}

.home .resultsSection .doseSection-content-wrapper a,
.home .doseSection-content-wrapper.purple a,
.home .cancerTypeSection .doseSection-content-wrapper a,
.home .startTodaySection .doseSection-content-wrapper a,
.types-of-lung-cancer .doseSection-content-wrapper a.btn,
.patient-resources .doseSection-content-wrapper a.btn,
#exitdialog p.btns a {
  background-image: linear-gradient(279deg, #6212c6, #e196e0);
  box-shadow: 0 9px 20px 0 rgba(102, 23, 199, 0.28);
}

.home .doseSection-content-wrapper p {
  padding-bottom: 20px;
  line-height: 26px;
}

.home .doseSection .col-sm-6:nth-of-type(2),
.home .connectSection .col-sm-6:nth-of-type(1) {
  margin-top: -50px;
}

.home .resultsSection .col-md-9:nth-of-type(1),
.home .cancerTypeSection .col-md-7:nth-of-type(1) {
  margin-top: -80px;
}

.home .resultsSection,
.home .cancerTypeSection,
.home .startTodaySection,
.home .connectSection {
  margin-top: 60px;
}

.home .grid .connectSection {
  margin-top: 0;
}

.home .connectSection .doseSection-content-wrapper h4,
.types-of-lung-cancer .connectSection .doseSection-content-wrapper h4,
.diagnosis-and-testing .connectSection .doseSection-content-wrapper h4,
.what-is-tagrisso .connectSection .doseSection-content-wrapper h4,
.how-to-take-tagrisso .connectSection .doseSection-content-wrapper h4,
.clinical-trial-results .connectSection .doseSection-content-wrapper h4,
.safety-information .connectSection .doseSection-content-wrapper h4,
.financial .connectSection .doseSection-content-wrapper h4,
.support-for-loved-ones .connectSection .doseSection-content-wrapper h4 {
  letter-spacing: 3px;
  line-height: 27px;
  margin-top: 20px;
}

.what-is-tagrisso .connectSection .doseSection-content-wrapper img.mobileContent {
  padding-top: 40px;
}

.home .connectSection .doseSection-content-wrapper img.mobileContent {
  margin-top: 40px;
}

.safety-information .connectSection .doseSection-content-wrapper img.mobileContent,
.support-for-loved-ones .connectSection .doseSection-content-wrapper img.mobileContent {
  padding-top: 60px;
}

.home .connectSection .doseSection-content-wrapper h4.mobileContent {
  padding-left: 24px;
  padding-right: 25px;
}


/*./Home Page Style*/


/*understanding-lung-cancer/types-of-lung-cancer.html*/

.types-of-lung-cancer .intro-bg-content-wrapper {
  background-image: linear-gradient(143deg, #dcdcdc, #e6e6e6 13%, #ffffff);
  float: left;
  padding: 40px 49px 34px 15px;
}

.types-of-lung-cancer .intro-bg-content-wrapper p {
  padding-top: 20px;
}

.understand-cancer .doseSection-content-wrapper {
  padding: 45px 0 10px 0;
}

.understand-cancer .parsys1 h2 {
  padding-bottom: 30px;
}

.understand-cancer .parsys1 p {
  padding-right: 29px;
  letter-spacing: 0.2px;
}

.understand-cancer .parsys2 img {
  margin: 0 auto;
  padding-left: 5px;
  padding-right: 5px;
}

.understand-cancer .parsys2 p,
.understand-cancer .parsys1 p:last-child {
  padding-top: 20px;
  padding-bottom: 20px;
}

.biomarkerSection h3 {
  margin-bottom: 10px;
  padding-right: 57px;
}

.biomarkerSection p {
  padding-bottom: 35px;
}

.diagnosis.types-of-lung-cancer .col-xs-12.col-sm-2.col-md-2.col-md-offset-1 {
  text-align: center !important;
  padding-top: 50px;
  padding-bottom: 30px;
}

li.nBold.display-inline-block.kras-display {
  display: none;
}

ul.results-ul {
  margin: 0px;
  padding: 0px;
  margin-left: 18px;
  margin-right: 15px;
}

p.nBold.kras-display {
  display: none;
}

p.kras-display {
  display: none;
}

.stageiv-pad {
  padding-bottom: 30px;
}

.types-of-lung-cancer .maincontent>.parsys {
  background-image: linear-gradient(55deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
}

.lung-cancer-info .parsys1 img {
  margin: 0 auto;
  padding-top: 30px;
  padding-left: 87px;
  padding-right: 87px;
}

.lung-cancer-info .parsys2 h2 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.lung-cancer-info .parsys2 p:nth-of-type(1) {
  padding-bottom: 10px;
}

.lung-cancer-info .parsys2 p:nth-of-type(2) {
  padding-top: 30px;
  padding-bottom: 20px;
}

.types-of-lung-cancer .connectSection .doseSection-content-wrapper {
  background-image: linear-gradient(64deg, #eaeaea, #ffffff);
  box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.16);
  padding-left: 17px;
  padding-right: 17px;
}

.types-of-lung-cancer .connectSection .doseSection-content-wrapper img.mobileContent,
.diagnosis-and-testing .connectSection .doseSection-content-wrapper img.mobileContent,
.how-to-take-tagrisso .connectSection .doseSection-content-wrapper img.mobileContent,
.financial .connectSection .doseSection-content-wrapper img.mobileContent {
  padding-top: 60px;
}

.types-of-lung-cancer .connectSection .col-sm-6:nth-of-type(1) h4:nth-of-type(2),
.diagnosis-and-testing .connectSection .col-sm-6:nth-of-type(1) h4:nth-of-type(2) {
  padding-left: 0;
  padding-right: 0;
  margin-left: -7px;
  margin-right: -7px;
}

.types-of-lung-cancer .connectSection .doseSection-content-wrapper a.btn {
  background-image: linear-gradient(280deg, #3d589e, #0ec8d8);
  box-shadow: 0 9px 20px 0 rgba(45, 129, 179, 0.25);
}


/*./understanding-lung-cancer/types-of-lung-cancer.html*/


/*understanding-lung-cancer/diagnosis-and-testing.html*/

.diagnosis-and-testing .intro-bg-content-wrapper {
  background-image: linear-gradient(155deg, #dcdcdc, #e6e6e6 13%, #ffffff);
  float: left;
  padding: 30px 44px 20px 15px;
}

.diagnosis-and-testing .intro-bg-content-wrapper p {
  padding-top: 30px;
}

.stagingSection h2 {
  padding-top: 40px;
  padding-bottom: 30px;
}

.staging-desc img {
  padding-top: 40px;
  padding-bottom: 20px;
}

.staging-desc.part-2 .parsys2 p:nth-of-type(1) {
  padding-top: 16px;
}

.staging-desc.part-2 {
  padding-bottom: 35px;
}

.biomarker-testing-bg {
  background-image: linear-gradient(31deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
}

.biomarker-testing-sec img {
  padding: 31px 102px 32px 103px;
}

.biomarker-testing-sec .doseSection-content-wrapper {
  padding-bottom: 10px;
}

.biomarker-testing-sec .parsys2 h2 {
  padding-bottom: 20px;
}

.biomarker-testing-sec .parsys2 p {
  padding-bottom: 10px;
}

.biomarker-testing-sec ul {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.biomarker-testing-sec ul li {
  margin-right: 9%;
}

.biomarker-testing-why img {
  padding: 50px 65px 40px 65px;
}

.biomarker-testing-why .doseSection-content-wrapper {
  padding-bottom: 30px;
}

.biomarker-testing-why .parsys2 h2 {
  padding-bottom: 23px;
}

.biomarker-testing-why .parsys2 p {
  padding-bottom: 10px;
}

.diagnosis-and-testing .connectSection .doseSection-content-wrapper {
  background-image: linear-gradient(64deg, #eaeaea, #ffffff);
  box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.16);
  padding-left: 17px;
  padding-right: 17px;
}


/*./understanding-lung-cancer/diagnosis-and-testing.html*/


/*about-tagrisso/what-is-tagrisso.html Style*/

.types-of-lung-cancer #maincontent,
.diagnosis-and-testing #maincontent,
.what-is-tagrisso #maincontent,
.how-to-take-tagrisso #maincontent,
.clinical-trial-results #maincontent,
.safety-information #maincontent,
.patient-resources #maincontent,
.sign-up-for-support #maincontent,
.financial #maincontent,
.support-for-loved-ones #maincontent,
.tagrisso-as-a-second-treatment #maincontent,
.glossary #maincontent,
.no-page #maincontent,
.error-page #maincontent,
.contact-us #maincontent,
.sitemap #maincontent,
.thank-you #maincontent {
  padding-left: 0;
  padding-right: 0;
}

.no-page #maincontent,
.error-page #maincontent {
  border: 1px solid #fff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

#topBanner {
  background-image: linear-gradient(275deg, #6212c6, #e196e0);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
}

.page-title {
  color: #fff;
  margin-bottom: 0;
  padding: 6px 0;
  line-height: 1.5;
}

.what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper {
  background-image: linear-gradient(72deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
  padding: 40px 25px;
}

.what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper p:nth-of-type(1) {
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper p:nth-of-type(2) {
  text-indent: -4px;
}

.sideContent-1 {
  padding-top: 60px;
}

.sideContent-2,
.sideContent-3 {
  padding-top: 50px;
}

.sideContent-3 {
  padding-bottom: 60px;
}

.sideContent-1 h3,
.sideContent-1 p,
.sideContent-2 h3,
.sideContent-2 p,
.sideContent-3 h3,
.sideContent-3 p {
  margin-top: 25px;
}

.sideContent-1 p,
.sideContent-2 p,
.sideContent-3 p {
  margin-bottom: 0;
  line-height: 26px;
  letter-spacing: 0.2px;
  width: 100%;
}

.what-is-tagrisso .connectSection .doseSection-content-wrapper {
  background-image: linear-gradient(64deg, #eaeaea, #ffffff);
  box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.16);
  padding-left: 17px;
  padding-right: 17px;
}

.types-of-lung-cancer .connectSection .doseSection-content-wrapper h4,
.diagnosis-and-testing .connectSection .doseSection-content-wrapper h4,
.what-is-tagrisso .connectSection .doseSection-content-wrapper h4,
.how-to-take-tagrisso .connectSection .doseSection-content-wrapper h4,
.clinical-trial-results .connectSection .doseSection-content-wrapper h4,
.safety-information .connectSection .doseSection-content-wrapper h4,
.financial .connectSection .doseSection-content-wrapper h4,
.support-for-loved-ones .connectSection .doseSection-content-wrapper h4 {
  margin-bottom: 20px;
  padding-left: 13px;
  padding-right: 13px;
}

.how-to-take-tagrisso .connectSection .doseSection-content-wrapper h4,
.financial .connectSection .doseSection-content-wrapper h4,
.support-for-loved-ones .connectSection .doseSection-content-wrapper h4 {
  padding-left: 0;
  padding-right: 0;
}

.what-is-tagrisso .connectSection .doseSection-content-wrapper h4.mobileContent {
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 2.5px;
}

.what-is-tagrisso .connectSection .col-sm-6:nth-of-type(1),
.support-for-loved-ones .connectSection .col-sm-6:nth-of-type(1) {
  margin-top: -50px;
}


/*./about-tagrisso/what-is-tagrisso.html Style*/


/*about-tagrisso/how-to-take-tagrisso.html*/

.how-to-take-tagrisso .intro-bg-content-wrapper {
  background-image: linear-gradient(156deg, #eaeaea, #ffffff);
  float: left;
  padding: 26px 15px 16px 15px;
}

.how-to-take-tagrisso .intro-bg-content-wrapper p {
  padding-top: 38px;
}

.how-to-take-tagrisso .stagingSection h2 {
  padding-top: 30px;
  padding-bottom: 0;
}

.how-to-take-tagrisso .staging-desc img {
  padding-top: 30px;
}

.how-to-take-tagrisso .staging-desc .parsys3 p {
  padding-bottom: 20px;
}

.dose-miss-bg {
  background-image: linear-gradient(55deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
}

.dose-miss img {
  padding: 30px 104px 30px 103px;
}

.dose-miss .parsys2 h2 {
  padding-bottom: 30px;
}

.dose-miss .parsys2 p {
  padding-bottom: 20px;
}

.how-to-take-tagrisso .stagingSection.part-2 h2 {
  padding-top: 50px;
  padding-bottom: 5px;
}

.swallo-steps img {
  padding-top: 20px;
  padding-bottom: 20px;
}

.swallo-steps.part-1 .parsys1 p {
  padding-right: 27px;
}

.swallo-steps.part-1 .parsys2 p {
  padding-right: 13px;
}

.swallo-steps.part-2 {
  padding-bottom: 40px;
}

.how-to-take-tagrisso .connectSection .doseSection-content-wrapper {
  background-image: linear-gradient(64deg, #eaeaea, #ffffff);
  box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.16);
  padding-left: 17px;
  padding-right: 17px;
}


/*./about-tagrisso/how-to-take-tagrisso.html*/


/*results-with-tagrisso/how-tagrisso-may-help.html Style*/

.clinical-trial-results .intro-bg-content-wrapper {
  background-image: linear-gradient(162deg, #eaeaea, #ffffff);
  float: left;
  padding: 20px 15px 10px 15px;
}

.clinical-trial-results .intro-bg-content-wrapper p {
  padding-top: 20px;
}

.lifeSpan-bg {
  background-image: linear-gradient(40deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
}

.life-span .parsys1 img {
  margin: 0 auto;
  padding-top: 40px;
  padding-left: 23px;
  padding-right: 22px;
  max-width: 290px;
}

.life-span .parsys2 h2 {
  padding-top: 30px;
  padding-bottom: 20px;
}

.life-span .parsys2 p:nth-of-type(1) {
  padding-bottom: 17px;
}

.life-span .doseSection-content-wrapper {
  padding-bottom: 30px;
}

.shrink-tumor .parsys1 img {
  margin: 0 auto;
  padding-top: 60px;
  padding-left: 35px;
  padding-right: 34px;
  max-width: 290px;
}

.shrink-tumor .parsys2 h2 {
  padding-top: 40px;
  padding-bottom: 20px;
}

.shrink-tumor .parsys2 p:nth-of-type(1) {
  //padding-bottom: 17px;
}

.shrink-tumor .doseSection-content-wrapper {
  padding-bottom: 50px;
}

.helpTumor-bg {
  background-image: linear-gradient(37deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
}

.help-with-tumor .parsys1 img {
  margin: 0 auto;
  padding-top: 60px;
  padding-left: 51px;
  padding-right: 50px;
  display: none;
}

.help-with-tumor .parsys2 h2 {
  padding-top: 40px;
  padding-bottom: 20px;
}

.help-with-tumor .parsys2 p:nth-of-type(1) {
  padding-bottom: 17px;
}

.help-with-tumor .doseSection-content-wrapper {
  padding-bottom: 50px;
  max-width: 812px;
}

.clinical-trial-results .connectSection .doseSection-content-wrapper {
  background-image: linear-gradient(151deg, #dddddd, #e6e6e6 13%, #ffffff);
  box-shadow: 2px 5px 28px 0 rgba(0, 0, 0, 0.2);
  padding-left: 17px;
  padding-right: 17px;
}

.clinical-trial-results .connectSection .doseSection-content-wrapper img.mobileContent {
  padding-top: 50px;
}

.types-of-lung-cancer .connectSection .col-sm-6:nth-of-type(1),
.diagnosis-and-testing .connectSection .col-sm-6:nth-of-type(1),
.how-to-take-tagrisso .connectSection .col-sm-6:nth-of-type(1),
.clinical-trial-results .connectSection .col-sm-6:nth-of-type(1),
.safety-information .connectSection .col-sm-6:nth-of-type(1),
.financial .connectSection .col-sm-6:nth-of-type(1) {
  margin-top: -50px;
}


/*results-with-tagrisso/how-tagrisso-may-help.html Style*/


/*results-with-tagrisso/safety-information.html Style*/

.safety-information .intro-bg-content-wrapper {
  background-image: linear-gradient(160deg, #eaeaea, #ffffff);
  float: left;
  padding: 20px 15px;
}

.safety-information .intro-bg-content-wrapper p {
  padding-top: 30px;
}

.safety-information .stagingSection h2 {
  padding-top: 30px;
  padding-bottom: 20px;
}

.safety-information-isi {
  padding-bottom: 10px;
}

.safety-information .connectSection .doseSection-content-wrapper {
  background-image: linear-gradient(64deg, #eaeaea, #ffffff);
  box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.16);
  padding-left: 17px;
  padding-right: 17px;
}

.safety-information .connectSection .col-sm-6:nth-of-type(1) {
  margin-bottom: 0;
}


/*./results-with-tagrisso/safety-information.html Style*/


/*support/resources.html*/

.patient-resources .intro-bg-content-wrapper {
  background-image: linear-gradient(159deg, #eaeaea, #ffffff);
  float: left;
  padding: 20px 15px 10px 15px;
}

.patient-resources .intro-bg-content-wrapper p {
  padding-top: 20px;
}

.tagrisso-help-bg {
  background-image: linear-gradient(43deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
}

.tagrisso-help .parsys2 h2 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.tagrisso-help .parsys2 p:nth-of-type(1) {
  padding-bottom: 10px;
}

.tagrisso-help .parsys2 p:nth-of-type(2) {
  padding-top: 20px;
  padding-bottom: 20px;
}

.tagrisso-help .parsys2 p:nth-of-type(3) {
  padding-bottom: 10px;
}

.patient-resources .stagingSection h2 {
  padding-bottom: 0;
}

.org-info .parsys1 img {
  padding: 40px 100px 20px 100px;
}

.org-info .parsys2 p {
  padding-top: 20px;
  padding-bottom: 10px;
}

.org-info .parsys2 .doseSection-content-wrapper a {
  margin-bottom: 10px;
}

.org-info.part-1 .parsys1 img {
  padding: 25px 0 0 0;
  width: 180px;
}

.org-info.part-2 .parsys1 img {
  padding-left: 75px;
  padding-right: 64px;
}

.lung-community-bg {
  background-image: linear-gradient(20deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
  margin-top: 40px;
}

.lung-community .doseSection-content-wrapper {
  padding-bottom: 20px;
}

.lung-community .doseSection-content-wrapper,
.lung-community .doseSection-content-wrapper p {
  padding-top: 30px;
}

.patient-resources .stagingSection.accord-heading h2 {
  padding-top: 50px;
  padding-bottom: 7px;
}

.patient-support-faq-accordion {
  padding-left: 15px;
  padding-right: 15px;
}

.accordion-list-item>h3 {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.2px;
  font-family: 'Nunito-ExtraBold';
  color: #000;
  margin-top: 0;
  margin-bottom: 2px;
  padding: 23px 16px 23px 0;
  background: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/mobile/plus.png) no-repeat;
  background-position: 100% center;
  cursor: pointer;
  background-size: 15px;
  border-bottom: 1px solid #d8d8d8;
}

.accordion-list-item.active>h3 {
  background: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/mobile/minus.png) no-repeat;
  background-position: 100% center;
  background-size: 20px 3px;
}

.accordion-list-item.active>h3 {
  border-bottom: none;
  padding-bottom: 20px;
}

.accordion-list-item.active+.accordion-list-item {
  border-top: 1px solid #d8d8d8;
}

.accordion-list-content ul {
  padding-left: 30px;
}

.accordion-list-content p {
  padding-bottom: 12px;
}


/*./support/resources.html*/


/*support/sign-up-for-support.html Style*/

.sign-up-for-support .intro-bg-content-wrapper {
  background-image: linear-gradient(156deg, #eaeaea, #ffffff);
  float: left;
  padding: 26px 15px 16px 15px;
}

.sign-up-for-support .intro-bg-content-wrapper p {
  padding-top: 20px;
}

.signup-kit-heading h2 {
  padding: 40px 25px 0;
}

.signup-kit img {
  padding: 30px 0;
}

.signup-kit-content p {
  padding: 20px 15px 50px 15px;
  letter-spacing: 0.2px;
}


/*./support/sign-up-for-support.html Style*/


/*support/financial-support.html Style*/

.financial .intro-bg-content-wrapper {
  background-image: linear-gradient(147deg, #dcdcdc, #e6e6e6 13%, #ffffff);
  float: left;
  padding: 30px 15px 20px 15px;
}

.financial .intro-bg-content-wrapper h2 {
  padding-top: 20px;
  padding-bottom: 33px;
  color: #000;
}

.financial .intro-bg-content-wrapper h2 sup {
  top: -.2em;
}

.financial .intro-bg-content-wrapper p sup {
  top: -.2em;
}

.financial .stagingSection p {
  padding-top: 30px;
}

.financial .stagingSection ul {
  padding-left: 30px;
  max-width: 568px;
  padding-bottom: 20px;
}

.financial .contactSection-content-wrapper {
  background-image: linear-gradient(129deg, #dcdcdc, #e6e6e6, #ffffff);
  box-shadow: 2px 5px 28px 0 rgba(0, 0, 0, 0.2);
  padding: 40px 0 30px 0;
}

.financial .contactSection-content-wrapper h3 {
  letter-spacing: 0.3px;
  color: #000;
}

.financial .contactSection-content-wrapper h3 sup {
  top: -.27em;
}

.financial .contactSection-content-wrapper p {
  padding-top: 20px;
}

.financial .stagingSection.copy p:nth-of-type(1) {
  padding-top: 30px;
}

.financial .stagingSection.copy p:nth-of-type(2) {
  padding-top: 0;
  padding-bottom: 20px;
}

.financial .connectSection .doseSection-content-wrapper {
  background-image: linear-gradient(64deg, #eaeaea, #ffffff);
  box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.16);
  padding-left: 17px;
  padding-right: 17px;
}


/*./support/financial-support.html Style*/


/*tagrisso-as-a-second-treatment.html*/

.tagrisso-as-a-second-treatment .intro-bg-content-wrapper {
  background-image: linear-gradient(163deg, #eaeaea, #ffffff);
  float: left;
  padding: 20px 15px 7px 15px;
}

.tagrisso-as-a-second-treatment .intro-bg-content-wrapper p {
  padding-top: 30px;
}

.tagrisso-as-a-second-treatment .stagingSection h2 {
  padding-top: 30px;
  padding-bottom: 26px;
}

.tagrisso-as-a-second-treatment .staging-desc img {
  padding-top: 22px;
}

.tagrisso-as-a-second-treatment .staging-desc .parsys3 img {
  padding-top: 40px;
}

.tagrisso-as-a-second-treatment .stagingSection p {
  padding-top: 40px;
  padding-bottom: 20px;
}

.tagrisso-as-a-second-treatment .cancerTypeSection .doseSection-content-wrapper {
  background-image: linear-gradient(152deg, #dcdcdc, #e6e6e6 13%, #ffffff);
  box-shadow: 2px 5px 28px 0 rgba(0, 0, 0, 0.2);
  padding-left: 14px;
  padding-right: 14px;
}

.tagrisso-as-a-second-treatment .cancerTypeSection .col-md-9:nth-of-type(1) {
  margin-top: -50px;
}

.tagrisso-as-a-second-treatment .doseSection-content-wrapper h2 {
  padding-bottom: 20px;
}

.tagrisso-as-a-second-treatment .doseSection-content-wrapper p:not(.font-12) {
  padding-bottom: 18px;
}

.tagrisso-as-a-second-treatment .doseSection-content-wrapper p.font-12 {
  line-height: 16px;
}

.shrink-tumor-clone .parsys2 img {
  margin: 0 auto;
}

.shrink-tumor-clone .doseSection-content-wrapper {
  padding: 50px 0 0 0;
}

.shrink-tumor-clone .parsys1 h2 {
  padding-bottom: 28px;
}

.shrink-tumor-clone .parsys2 p:nth-of-type(1) {
  line-height: 16px;
  padding-top: 17px;
  padding-bottom: 40px;
}

.tagrisso-as-a-second-treatment .shrink-tumor-clone .doseSection-content-wrapper p {
  padding-bottom: 0;
}

.tagrisso-as-a-second-treatment .helpTumor-bg {
  background-image: linear-gradient(55deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
}

.tagrisso-as-a-second-treatment .help-with-tumor .doseSection-content-wrapper h2 {
  padding-bottom: 30px;
}

.tagrisso-as-a-second-treatment .help-with-tumor .doseSection-content-wrapper p:not(.font-12) {
  padding-bottom: 0;
}

.tagrisso-as-a-second-treatment .help-with-tumor .doseSection-content-wrapper {
  padding-bottom: 30px;
}


/*./tagrisso-as-a-second-treatment.html*/


/*glossary.html*/

.glossary .tooltip_templates p {
  color: #000;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 648px;
}

.glossary .tooltip_templates {
  display: block;
}

.glossary .stagingSection p {
  margin-bottom: 0;
}

.glossary .firstChild {
  padding-top: 70px;
}

.glossary .lastChild p {
  padding-bottom: 0;
}

/*./glossary.html*/

/*Error Pages*/

.no-page .stagingSection h2,
.error-page .stagingSection h2 {
  padding-top: 80px;
  color: #000;
}

/*./Error Pages*/

/*Contact Us Page*/

.contact-us .stagingSection img {
  padding-top: 50px;
  max-width: 140px;
}

.contact-us span.smallCaps,
.financial span.smallCaps {
  font-size: 10px;
}

.contact-us .stagingSection h2 {
  color: #000;
  padding-top: 30px;
}


/*./Contact Us Page*/


/*sitemap.html*/

.sitemap .stagingSection h2 {
  padding-top: 50px;
}

.sitemap .row .sitemap {
  max-width: 860px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.sitemap .page-spacer+.row {
  margin: 0;
}

dt {
  font-weight: normal;
}

.sitemap.grid-12 a {
  color: #7e00c5;
  font-family: 'Nunito-Regular';
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.2px;
  text-decoration: underline;
}

.sitemap .isi {
  display: none;
}

dl.sitemap-list:last-child {
  margin-bottom: 50px;
}

.column.grid-12.sitemap dl.sitemap-list:nth-of-type(4) dt a[title="Video Library"] {
  text-decoration: underline;
  pointer-events: auto;
  cursor: pointer;
}

/*./sitemap.html*/


/*support/support-for-loved-ones.html*/

.support-for-loved-ones .intro-bg-content-wrapper {
  background-image: linear-gradient(140deg, #dcdcdc, #e6e6e6 13%, #ffffff);
  float: left;
  padding: 30px 44px 20px 15px;
}

.support-for-loved-ones .intro-bg-content-wrapper p {
  padding-top: 30px;
}

.support-for-loved-ones .shrink-tumor {
  background-color: #f0f0f0;
  box-shadow: 2px 5px 28px 0 rgba(0, 0, 0, 0.2);
  clear: both;
}

.support-for-loved-ones .shrink-tumor .col-xs-12.col-sm-2.col-md-2 {
  clear: both;
  text-align: center;
}

.helping-your-loved-o {
  padding: 50px 126px 10px 15px;
}

.support-for-loved-ones .shrink-tumor img {
  padding-top: 30px;
  padding-bottom: 20px;
}

.Celebrate-milestones {
  padding-bottom: 66px;
}

.support-for-loved-ones .helpTumor-bg {
  background: none;
}

.support-for-loved-ones .help-with-tumor .parsys1 h2 {
  padding-top: 50px;
  padding-bottom: 20px;
}

.support-for-loved-ones .help-with-tumor .parsys1 img {
  display: block;
  padding: 30px 0 20px 0;
  margin: 0;
}

.extraPadding {
  padding-bottom: 10px;
}

.extraPadding+p {
  padding-bottom: 40px;
}

.support-for-loved-ones .connectSection .doseSection-content-wrapper {
  background-image: linear-gradient(64deg, #eaeaea, #ffffff);
  box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.16);
  padding-left: 17px;
  padding-right: 17px;
}

/*./support/support-for-loved-ones.html*/

/*Exit Ramp*/

#empoverlay .mask {
  opacity: 0.67 !important;
  background-color: #ededed !important;
  filter: blur(10px);
  -webkit-filter: blur(10px);
}

#exitdialog p {
  font-size: 16px !important;
  margin: 0 !important;
}

#exitdialog h3 {
  margin-bottom: 20px;
  padding-right: 40px;
}

#exitdialog p.spacerBlock {
  margin: 20px 0 !important;
}

div#exitdialog>h2,
div#exitdialog>p.btns {
  display: none;
}

.exitclose {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 15px;
  right: 15px;
  float: right;
  cursor: pointer;
  text-align: left;
  background: url("/content/dam/website-services/us/513-tagrissodtc-rwd-com/mobile/close.svg") no-repeat;
}

p.btns a {
  width: 100%;
  padding: 7px 0 4px;
}

div#exitdialog {
  top: 62px !important;
  left: 5% !important;
  padding: 30px 15px 30px !important;
  width: 90.7% !important;
  max-width: 650px;
  margin: 0 auto;
  position: fixed !important;
  background-image: linear-gradient(44deg, #eaeaea, #ffffff);
  box-shadow: 1px 8px 20px 1px rgba(0, 0, 0, 0.16);
}

#empoverlay .mask {
  width: 100% !important;
}

#exitdialog p.btns a.no {
  margin-top: 20px;
}
/*./Exit Ramp*/


/*Thank You Page*/

.thank-you .stagingSection h2 {
  padding-top: 74px;
  max-width: 290px;
  padding-right: 30px;
}

.thank-you .stagingSection p {
  max-width: 290px;
}

.thank-you .patient-support-sticky-isi-wrapper,
.no-page .patient-support-sticky-isi-wrapper,
.error-page .patient-support-sticky-isi-wrapper,
.contact-us .patient-support-sticky-isi-wrapper {
  display: none !important;
}

/*./Thank You Page*/

.home .video-link {
  text-align: center;
  padding-bottom: 15px;
}

.home .modal-dialog {
  top: 14%;
}

.home .modal-header {
  border-bottom: 0;
}

.home .modal-body .html-textarea iframe {
  width: 100%;
  margin-bottom: -5px;
}

.home .modal-dialog .modal-title {
  display: none;
}

.home .modal-header .close {
  opacity: 8;
  color: #5b1179;
  font-size: 18px;
}

.home .modal-content {
  background-image: linear-gradient(44deg, #eaeaea, #ffffff);
  box-shadow: 1px 8px 20px 1px rgba(0, 0, 0, 0.16);
  border: none !important;
  border-radius: 0;
}

.home .modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .85 !important;
  background-color: #1F1E1E !important;
}

.home .modal-dialog {
  width: 95%;
}

.home .modal-header span.glyphicon.glyphicon-remove {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 11px;
  right: 15px;
  float: right;
  cursor: pointer;
  text-align: left;
  background: url(/content/dam/website-services/us/513-tagrissodtc-rwd-com/mobile/close.svg) no-repeat;
}

.home .modal-header span.glyphicon.glyphicon-remove:before {
  display: none;
}

.sign-up-for-support input.form_button_submit {
  padding: 7px;
}

.patient-resources a.btn.btn-info.nBold.sign-up-purple {
  width: 168px;
  margin-bottom: 30px;
}

.patient-resources a.brochure-links {
  color: #7e00c5;
  font-family: 'Nunito-ExtraBold';
  text-decoration: underline;
}

.TAGRISSO-is-changing h2.text-right,
.TAGRISSO-is-changing p.text-right {
  font-weight: bold;
  color: #5b1179;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 30px;
  text-align: left;
  font-family: 'Nunito-Regular';
  font-size: 16px;
  font-weight: bold;
  line-height: normal;
}

.TAGRISSO-is-changing p.text-right {
  font-size: 18px;
  padding-top: 5px;
  margin-bottom: -5px;
}

.callout-mob p {
  margin: 15px 0;
}

.callout-mob a.btn.btn-info.nBold {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  margin-right: 7px;
  border-radius: 0;
  background-image: linear-gradient(280deg, #3d589e, #0ec8d8);
  box-shadow: 0 9px 20px 0 rgba(45, 129, 179, 0.25);
  padding: 9px 12px;
  width: 256px;
  margin: 0 auto;
  border: none;
  background-image: linear-gradient(279deg, #6212c6, #e196e0);
  box-shadow: 0 9px 20px 0 rgba(102, 23, 199, 0.28);
}

.callout-mob {
  margin: 35px auto 0;
  width: 90%;
}

.TAGRISSO-is-changing.paddingTop-40-Bottom-30 {
  padding-top: 26px;
  padding-bottom: 26px;
}

.strips_sprite3 .mobile-TAGRISSO-is-changing {
  top: 3px;
  position: absolute;
  left: 15px;
  right: 0px;
  line-height: 1.9;
  font-family: CaeciliaLTStd-Bold;
  font-weight: normal;
  z-index: 2;
}

.Rectangle-Copy-4 {
  height: 10px;
  object-fit: contain;
  background-color: #5b1179;
}

.home p.for-people {
  padding: 20px 15px 0px;
  font-family: 'Nunito-Regular';
  line-height: 1.27;
  letter-spacing: -0.1px;
  opacity: 0.99;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}

.home h4.TAGRISSO-osimertini {
  padding: 5px 15px 20px;
  margin: 0;
  font-size: 15px;
  font-family: CaeciliaLTStd-Bold;
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.28;
  letter-spacing: -0.1px;
}

.home p.TAGRISSO-is-a-once-d {
  padding: 0 15px;
  font-family: 'Nunito-Regular';
  line-height: 1.27;
  letter-spacing: -0.1px;
  opacity: 0.99;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
}

.home p.TAGRISSO-is-a-once-d-footnote {
  padding: 0 15px;
  font-size: 12px;
  font-family: 'Nunito-Regular';
  line-height: 1.73;
  letter-spacing: 0px;
}

.life-span .doseSection-content-wrapper h2 {
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 30px;
  clear: both;
}

.life-span .doseSection-content-wrapper p {
  padding-left: 15px;
  padding-right: 15px;
}

.Mobile-dosing {
  padding-top: 35px;
  cursor: pointer;
  margin-top: 70px;
}

.strips_sprite3 {
  top: 18px;
  position: absolute;
  right: 22px;
}

.strips_sprite3 .mobile-sprite31 {
  width: 225px;
  height: 38px;
  z-index: 1;
  position: relative;
}


.strips_sprite3 .mobile-sprite3 {
  width: 200px;
  height: 38px;
  margin-left: 126px;
  margin-top: -9px;
}

.strips_sprite3 .mobile-TAGRISSO-is-changing span {
  margin-left: 128px;
}

.home .video-link {
  text-align: center;
  padding-bottom: 15px;
}

.home .video-link img {
  width: 200px;
}


/*************** FACEBOOK SECTION UPDATE  ********************/

.faceBookSection-content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 55px 20px 60px 20px;
  background: #eaeaea;
  /* Old browsers */
  background: -moz-linear-gradient(left, #eaeaea 0%, #eaeaea 37%, #ffffff 59%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #eaeaea 0%, #eaeaea 37%, #ffffff 59%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #eaeaea 0%, #eaeaea 37%, #ffffff 59%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* -webkit-box-shadow: 10px 10px 34px 2px rgba(0,0,0,0.16); */
  -moz-box-shadow: 10px 10px 34px 2px rgba(0, 0, 0, 0.16);
  /* box-shadow: 10px 10px 34px 2px rgba(0,0,0,0.16); */
  /* -webkit-box-shadow: 3px 3px 34px 6px rgba(0,0,0,0.16); */
  -moz-box-shadow: 3px 3px 34px 6px rgba(0, 0, 0, 0.16);
  /* box-shadow: 3px 3px 34px 6px rgba(0,0,0,0.16); */
  /* text-align: left; */
}

.faceBookSection-content-wrapper img {
  width: 63px;
}

.faceBookSection-content-wrapper h2 {
  margin: 40px 0 20px 0;
  text-align: left;
}

.faceBookSection-content-wrapper p {
  width: 100%;
  margin: 0 auto 31px auto;
  text-align: left;
}

.faceBookSection-content-wrapper a.btn {
  background-image: linear-gradient(279deg, #6212c6, #e196e0);
  box-shadow: 0 9px 20px 0 rgba(102, 23, 199, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  margin-right: 7px;
  border-radius: 0;
  padding: 9px 12px;
  width: 100%;
  margin: 0 auto;
  border: none;
}

.patient-resources .faceBookSection-content-wrapper a.btn,
.support-for-loved-ones .faceBookSection-content-wrapper a.btn {
  background-image: linear-gradient(279deg, #6212c6, #e196e0);
  box-shadow: 0 9px 20px 0 rgba(102, 23, 199, 0.28);
  justify-content: center;
  margin-left: 7px;
  margin-right: 7px;
  border-radius: 0;
  padding: 6px 5px;
  width: 20%;
  margin: 0 auto;
  border: none;
}

.financial .stagingSection p.paddingTopZero {
  padding-top: 0;
}

@media (min-width: 641px) and (max-width: 767px) {
  img.scale {
    object-fit: cover;
    width: 100vw;
  }
  .mostnslcWrap {
    padding: 100px 0px 55px 0px;
  }
}

@media (min-width: 768px) {
  .callout-mob {
    margin: 50px auto 0;
  }
  /*Global Style*/
  .h2super {
    font-size: 20px;
    vertical-align: top;
    top: 0;
  }
  .biomarker-testing-sec ul li {
    margin-right: 6%;
  }
  p.marginTopBottom-20.home-para {
    font-size: 16px;
  }
  h2.dark.home-headline {
    font-size: 40px;
  }
  .tagrisso-help .parsys1 img {
    margin: 0 auto 0 25px;
    max-width: 100% !important;
  }
  .patient-resources .col-sm-8 {
    width: 55.666667%;
  }
  .patient-resources .tagrisso-help.max-860.content-center .col-xs-12.col-sm-4 {
    width: 44.33% !important;
    padding: 0px !important;
  }
  img.img-responsive.Lung-Cancer-thumb {
    display: none;
  }
  .diagnosis .doseSection-content-wrapper.paddingTop-40-Bottom-30 {
    padding-bottom: 70px !important;
  }
  ul.results-ul {
    margin: 0px;
    padding: 0px;
    margin-left: 20px;
    margin-right: 15px;
  }
  .diagnosis.types-of-lung-cancer .col-xs-12.col-sm-2.col-md-2.col-md-offset-1 {
    text-align: left !important;
    padding: 0;
    margin-left: 5px;
  }
  .diagnosis.types-of-lung-cancer .nsclc-pad {
    padding-bottom: 20px;
  }
  .diagnosis.types-of-lung-cancer .col-md-2 {
    width: 7%;
  }
  .diagnosis.types-of-lung-cancer .col-md-9 {
    width: 90%;
  }
  .diagnosis.types-of-lung-cancer .stage-text {
    margin-bottom: 30px;
    margin-top: 10px;
  }
  .register.sign-up-for-support .heart-pad {
    padding-left: 38px;
  }
  .register.sign-up-for-support .brochure-pad {
    padding-right: 38px;
  }
  .safety-information .doseSection-content-wrapper.paddingTop-40-Bottom-40 {
    padding-bottom: 70px !important;
  }
  .two-col-callouts .doseSection-content-wrapper {
    position: relative;
  }
  .sign-up-for-support img.img-responsive.content-center.docum-img {
    height: 113px;
  }
  .clinical-trial-results .doseSection-content-wrapper.paddingTop-40-Bottom-40 {
    padding-bottom: 60px !important;
  }
  #survey_text_0 .form_leftcollabel {
    line-height: 14px;
  }
  #shareonfacebook-header.btn:focus {
    outline: none;
    outline: 0;
    outline-offset: 0;
  }
  #shareonfacebook-header.btn {
    border: 0;
    border-radius: 0;
    margin: 0 5px;
  }
  .navbar-default .navbar-nav>li>a.activeColor {
    color: #7e00c5;
  }
  .navbar-default .navbar-nav a img.close-image,
  .navbar-default .navbar-nav>.open>a img.open-image {
    display: none;
  }
  .fullheader {
    display: block;
  }
  .logos {
    float: left;
  }
  .fullheader ul.list-inline {
    float: right;
    padding-left: 0;
    padding-right: 0;
    background: none !important;
    padding-top: 21px;
  }
  .fullheader ul.list-inline li:nth-child(4),
  .fullheader ul.list-inline li:nth-child(5),
  .fullheader ul.list-inline li:nth-child(6) {
    display: inline-block;
  }
  .fullnavigation {
    clear: both;
    padding-top: 20px;
  }
  .navbar-header,
  .fullheader ul.list-inline-cloned,
  .navbar-nav>li:nth-child(5),
  .navbar-nav>li:nth-child(6),
  .navbar-nav>li:nth-child(7) {
    display: none;
  }
  .navbar-default .navbar-collapse {
    display: flex !important;
    align-items: center;
    flex-direction: column;
    position: static;
    background: none;
  }
  .navbar-nav {
    margin-top: 0 !important;
  }
  .navbar-nav>li {
    margin: 0 !important;
    padding-bottom: 15px;
  }
  .navbar-nav>li>a {
    padding: 0 0 0 0.5em!important;
    text-align: left;
    font-size: 17px;
  }
  .navbar-nav>li>span {
    display: none !important;
  }
  .navbar-nav>li>a:after {
    content: '|';
    cursor: default;
    pointer-events: none;
    margin-left: 10px;
    margin-right: 2px;
    color: #7e7c7f;
    font-size: 17px;
  }
  .navbar-nav>li:nth-child(4)>a:after {
    display: none;
  }
  .logos img {
    width: 205px;
  }
  #signup-header {
    color: #fff;
    border-radius: 4px;
    padding: 6px 10px;
  }
  a#signup-header:focus,
  a#signup-header:active {
    border: 1px solid transparent;
    outline: none;
  }
  .headerFlagline {
    padding-left: 2em;
    background-position: 0 2px;
  }
  .container {
    width: 100%;
  }
  .logo-grid {
    text-align: left;
  }
  .logo-grid img {
    margin-left: 0;
    margin-right: 0;
  }
  #shareonfacebook-header {
    padding: 9px 10px;
  }
  #shareonyoutube-header {
    padding: 7px 14px;
    margin: 0 5px;
  }
  .dropDown-logo {
    display: block !important;
  }
  .navbar-nav>li>.dropdown-menu {
    border: none;
    background-color: #fff;
  }
  .navbar-nav>li:nth-child(1)>.dropdown-menu {
    width: 208px;
    margin-left: 8px;
  }
  .navbar-nav>li:nth-child(2)>.dropdown-menu {
    width: 245px;
    margin-left: -25px;
  }
  .navbar-nav>li:nth-child(3)>.dropdown-menu {
    width: 250px;
    margin-left: -20px;
  }
  .navbar-nav>li:nth-child(4)>.dropdown-menu {
    width: 206px;
    margin-left: -75px;
  }
  .dropdown-menu>li>a {
    padding: 8px 0 2px 0 !important;
    font-size: 17px;
  }
  .dropdown-menu>li>a,
  .dropdown-menu>li>a:hover,
  .dropdown-menu>li>a:focus {
    color: #7e7c7f;
    text-decoration: none;
    background-color: #fff;
  }
  .dropdown-menu>li>a:hover,
  .dropdown-menu>li>a:focus {
    color: #000;
  }
  i.arrow {
    border: solid #7e7c7f;
    border-width: 0 2px 2px 0;
    display: none;
  }
  .dropdown-menu>li>a:hover i.arrow,
  .dropdown-menu>li>a:focus i.arrow {
    border: solid #464646;
    border-width: 0 2px 2px 0;
  }
  .dropdown-menu.multi-level>li {
    width: 80% !important;
  }
  .navbar-nav>li>.dropdown-menu.multi-level>li {
    padding-left: 20px;
  }
  .dropdown-menu.multi-level>li:first-child {
    padding-top: 14px;
  }
  .dropdown-menu.multi-level>li:last-child {
    padding-bottom: 22px;
  }
  /************* NEW UPDATE   *****************/
  .collapse.navbar-collapse {
    background: #0c2771;
    border-top: 1px solid rgba(162, 162, 162, 0.3);
   /* border-bottom: 5px solid #0d797d;*/
    //border-left: 1px solid rgba(162,162,162,0.3);
    //border-right: 1px solid rgba(162,162,162,0.3);
  }
  .navbar-nav>li {
    border-left: 1px solid rgba(162, 162, 162, 0.3);
    padding: 10px 10px;
  }
  .navbar-nav>li:nth-child(4) {
    border-right: 1px solid rgba(162, 162, 162, 0.3);
  }
  .navbar-nav>li>a:after {
    content: '';
  }
  .biomarker-testing-why:first-child .parsys2 .doseSection-content-wrapper p:nth-child(2) {
    padding-bottom: 40px;
  }
  .biomarker-testing-why:first-child .parsys2 .doseSection-content-wrapper.whyitCriticalWrap p:nth-child(2) {
    padding-bottom: 10px;
  }
  .biomarker-testing-bg .mostnslcWrap {
    padding: 100px 0px 80px 0px;
  }
  .doseSection-content-wrapper.lungCancerWrap {
    padding: 120px 20px 100px 20px;
    margin-bottom: 75px;
  }
  .tagrissoDefSection-body .tagrissopgcallout {
    padding: 25px 35px 15px 70px;
    margin: -1px auto;
  }
  .biomarkerCallouttwoWrap .biomarkercallouttwo {
    padding: 25px 50px 25px 20px;
    display: table;
  }
  .biomarkerCallouttwoWrap .biomarkercallouttwo .tagnotepadIcon {
    margin-left: 0;
    padding: 0px 0px 0 30px;
    vertical-align: middle;
    display: table-cell;
  }
  .biomarkerCallouttwoWrap .biomarkercallouttwo .copyBandTxt {
    padding: 0 0 0 32px;
    display: table-cell;
    vertical-align: middle;
  }
  .howtrailWrap p.moreabtWrap {
    margin: 35px 0 30px 0;
  }
  .maincontent .clinicaltrialCallout {
    padding: 45px 10px;
  }
  .lung-community .col-sm-6.noPadding.padding-bottom-first {
    padding-bottom: 104px;
  }
  .page-content.isi {
    padding: 100px 0;
  }
  .footer-social-icon-group li {
    margin-left: 0;
    margin-right: 18px;
  }
  .footerFlagline {
    background-position: initial;
    padding-left: 2em;
    max-width: initial;
    margin: 0 auto;
  }
  #footer .list-unstyled {
    margin-top: 30px;
    margin-bottom: 0;
  }
  #footer .list-unstyled li {
    text-align: left;
    margin-bottom: 0;
  }
  .footerFlagline {
    background-position: 0;
  }
  .copyRight-Texts>p {
    margin-top: 30px;
    text-align: left;
  }
  h2 {
    font-size: 34px;
    line-height: 38px;
  }
  h3 {
    font-size: 26px;
    line-height: 1.23;
  }
  .font-12 {
    font-size: 12px;
  }
  .font-14 {
    font-size: 18px;
  }
  .font-18 {
    font-size: 18px;
  }
  .max-930 {
    max-width: 670px;
  }
  .max-930.isi {
    max-width: 930px;
  }
  /*./Global Style*/
  /*Home Page Style*/
  .home1 .intro-bg-wrapper.background-desktop-only {
    background: url(../img/nindanix.jpg);
    background-size: cover;
    background-position-y: -86px;
    border-bottom: 3px solid #5d1177;
    padding: 17% 0%;
  }
  .home .intro-bg-content-wrapper,
  .home .intro-bg-content-footer-wrapper {
    max-width: 490px;
    padding-left: 41px;
    padding-right: 51px;
  }
  .home .intro-bg-content-wrapper {
    padding-bottom: 0px;
  }
  .home .intro .intro-bg-content-wrapper {
    margin-top: -81%;
  }
  .movie.section {
    /* margin: 0 auto;*/
    max-width: 670px;
    top: 120px;
  }
  div#myEmbedTarget_1_v6njbnr4,
  div#myEmbedTarget_1_97b62v1w {
    height: 450px !important;
  }
  .home .doseSection-body {
    padding-top: 95px;
  }
  .home .doseSection .col-sm-6:nth-of-type(1) {
    margin-top: 0;
  }
  .home .intro-bg-content-wrapper,
  .home .intro-bg-content-footer-wrapper {
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
  }
  .home .doseSection .col-sm-6:nth-of-type(2),
  .home .resultsSection .col-md-9:nth-of-type(1),
  .home .cancerTypeSection .col-md-7:nth-of-type(1) {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .home .doseSection-content-wrapper {
    padding: 35px 46px 34px 47px;
  }
  .home .doseSection-content-wrapper h2,
  .home .doseSection-content-wrapper p {
    text-align: left;
  }
  .home .doseSection-content-wrapper p {
    padding-bottom: 10px;
  }
  .home .doseSection-content-wrapper a,
  .types-of-lung-cancer .connectSection .doseSection-content-wrapper a,
  .what-is-tagrisso .connectSection .doseSection-content-wrapper a,
  .clinical-trial-results .connectSection .doseSection-content-wrapper a {
    padding: 6px 12px;
    width: 168px;
  }
  .clinical-trial-results .connectSection .doseSection-content-wrapper a {
    position: absolute;
    bottom: 70px;
    left: calc(50% - 84px);
  }
  .clinical-trial-results .connectSection .doseSection-content-wrapper h4 {
    margin-bottom: 70px !important;
  }
  .home .resultsSection .col-md-8:nth-of-type(1) {
    float: right !important;
    max-width: 462px;
  }
  .home .resultsSection .col-md-9:nth-of-type(1) {
    max-width: 442px;
    margin-top: -357px;
  }
  .home .resultsSection,
  .home .cancerTypeSection,
  .home .connectSection {
    margin-top: 114px;
  }
  .home .startTodaySection {
    margin-top: 100px;
  }
  .home .resultsSection .doseSection-content-wrapper {
    padding: 41px 43px 41px 43px;
  }
  .home .cancerTypeSection .col-md-8:nth-of-type(1) {
    max-width: 462px;
  }
  .home .cancerTypeSection .col-md-7:nth-of-type(1) {
    max-width: 436px;
    margin-top: -357px;
    float: right;
  }
  .home .cancerTypeSection .doseSection-content-wrapper {
    padding: 45px 42px 44px 50px;
  }
  .home .startTodaySection .doseSection-content-wrapper h2 {
    padding-left: 0;
    padding-right: 0;
    text-align: right;
    line-height: 44px;
  }
  .home .connectSection .col-sm-6:nth-of-type(1),
  .home .connectSection .col-sm-6:nth-of-type(2) {
    margin-top: -204px;
  }
  .home .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding: 70px 16px 69px 17px;
  }
  .home .connectSection .doseSection-content-wrapper h4,
  .types-of-lung-cancer .connectSection .doseSection-content-wrapper h4,
  .diagnosis-and-testing .connectSection .doseSection-content-wrapper h4,
  .what-is-tagrisso .connectSection .doseSection-content-wrapper h4,
  .clinical-trial-results .connectSection .doseSection-content-wrapper h4,
  .safety-information .connectSection .doseSection-content-wrapper h4 {
    margin-top: 30px;
  }
  .home .connectSection .doseSection-content-wrapper p {
    padding-bottom: 20px;
    letter-spacing: 0.2px;
  }
  .home .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding: 57px;
   }
   /*./Home Page Style*/
  /*understanding-lung-cancer/types-of-lung-cancer.html*/
  .types-of-lung-cancer .intro-bg-content-wrapper {
    background-image: linear-gradient(75deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 70%;
    width: 70%;
    position: absolute;
    left: 40%;
    margin-top: -37.5%;
    padding: 44px 25px 34px;
  }
  .types-of-lung-cancer .intro-bg-content-wrapper p {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .understand-cancer .doseSection-content-wrapper {
    padding: 84px 0 10px 0;
  }
  .understand-cancer .parsys1 p {
    padding-right: 13px;
  }
  .understand-cancer>.col-sm-5 {
    padding-top: 147px;
    padding-bottom: 13px;
  }
  .understand-cancer .parsys2 img {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .biomarkerSection p {
    padding-bottom: 76px;
  }
  .lung-cancer-info>.col-sm-5 {
    float: right;
  }
  .lung-cancer-info .doseSection-content-wrapper {
    padding-top: 27px;
    padding-bottom: 52px;
  }
  .lung-cancer-info .parsys1 img {
    padding-top: 120px;
  }
  .types-of-lung-cancer .connectSection .doseSection-content-wrapper a {
    width: 218px;
  }
  .types-of-lung-cancer .lung-cancer-info .doseSection-content-wrapper a.btn {
    margin: 0;
    padding: 6px 12px;
  }
  /*./understanding-lung-cancer/types-of-lung-cancer.html*/
  /*understanding-lung-cancer/diagnosis-and-testing.html*/
  .diagnosis-and-testing .intro-bg-content-wrapper {
    background-image: linear-gradient(67deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 405px;
    float: right;
    margin-top: -35.075%;
    padding: 44px 44px 34px;
  }
  .stagingSection h2 {
    padding-top: 60px;
    padding-bottom: 36px;
  }
  .staging-desc img {
    padding-top: 50px;
  }
  .staging-desc.part-2 .parsys2 p:nth-of-type(1) {
    padding-top: 145px;
  }
  .biomarker-testing-sec>.col-sm-4 {
    float: right;
  }
  .biomarker-testing-sec .doseSection-content-wrapper {
    padding: 103px 0 83px 0;
  }
  .biomarker-testing-sec img {
    padding: 120px 0px 100px 0px;
    float: right;
  }
  .biomarker-testing-why img {
    padding: 120px 65px 120px 65px;
  }
  .biomarker-testing-why .doseSection-content-wrapper {
    padding: 120px 25px 100px 25px;
  }
  /*./understanding-lung-cancer/diagnosis-and-testing.html*/
  /*about-tagrisso/what-is-tagrisso.html Style*/
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper {
    max-width: 75%;
    width: 75%;
    margin-top: -35.075%;
    position: absoulte;
    left: 30%;
  }
  .tagrissoDescriptionSection .doseSection-content-wrapper.sideContent-1,
  .tagrissoDescriptionSection .doseSection-content-wrapper.sideContent-2,
  .tagrissoDescriptionSection .doseSection-content-wrapper.sideContent-3 {
    padding: 60px 0 0 0;
  }
  .tagrissoDescriptionSection .doseSection-content-wrapper.sideContent-1 {
    padding-top: 120px;
  }
  .sideContent-1 h3,
  .sideContent-2 h3,
  .sideContent-3 h3 {
    margin-top: 0;
  }
  .sideContent-1 h3,
  .sideContent-2 h3,
  .sideContent-3 h3,
  .sideContent-1 p,
  .sideContent-2 p,
  .sideContent-3 p {
    margin-left: -20px;
  }
  .sideContent-2,
  .sideContent-3 {
    padding-top: 30px;
  }
  .sideContent-1 img,
  .sideContent-2 img,
  .sideContent-3 img {
    margin-left: 0;
    margin-top: 6px;
  }
  .what-is-tagrisso .connectSection {
    margin-top: 100px;
  }
  .what-is-tagrisso .connectSection .col-sm-6:nth-of-type(1),
  .what-is-tagrisso .connectSection .col-sm-6:nth-of-type(2),
  .types-of-lung-cancer .connectSection .col-sm-6:nth-of-type(1),
  .types-of-lung-cancer .connectSection .col-sm-6:nth-of-type(2),
  .diagnosis-and-testing .connectSection .col-sm-6:nth-of-type(1),
  .diagnosis-and-testing .connectSection .col-sm-6:nth-of-type(2),
  .how-to-take-tagrisso .connectSection .col-sm-6:nth-of-type(1),
  .how-to-take-tagrisso .connectSection .col-sm-6:nth-of-type(2),
  .safety-information .connectSection .col-sm-6:nth-of-type(1),
  .safety-information .connectSection .col-sm-6:nth-of-type(2),
  .financial .connectSection .col-sm-6:nth-of-type(1),
  .financial .connectSection .col-sm-6:nth-of-type(2),
  .support-for-loved-ones .connectSection .col-sm-6:nth-of-type(1),
  .support-for-loved-ones .connectSection .col-sm-6:nth-of-type(2) {
    margin-top: -209px;
  }
  .diagnosis-and-testing .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding-top: 68px;
    padding-bottom: 109px;
  }
  .what-is-tagrisso .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper,
  .types-of-lung-cancer .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper,
  .diagnosis-and-testing .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper,
  .safety-information .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding-top: 70px;
    padding-bottom: 91px;
  }
  .types-of-lung-cancer .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding-top: 62.5px;
    padding-bottom: 62.5px;
  }
  .what-is-tagrisso .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding-top: 99px;
    padding-bottom: 99px;
  }
  /*./about-tagrisso/what-is-tagrisso.html Style*/
  /*about-tagrisso/how-to-take-tagrisso.html*/
  .how-to-take-tagrisso .intro-bg-content-wrapper {
    background-image: linear-gradient(69deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 370px;
    float: right;
    margin-top: -35.075%;
    padding: 44px 44px 34px;
  }
  .how-to-take-tagrisso .intro-bg-content-wrapper p {
    padding-top: 30px;
  }
  .how-to-take-tagrisso .stagingSection h2,
  .how-to-take-tagrisso .stagingSection.part-2 h2 {
    padding-top: 70px;
  }
  .how-to-take-tagrisso .staging-desc img {
    padding-top: 63px;
  }
  .how-to-take-tagrisso .staging-desc {
    padding-bottom: 60px;
  }
  .how-to-take-tagrisso .staging-desc .col-xs-12.col-sm-4:nth-child(2) img {
    padding-top: 60px;
  }
  .dose-miss img {
    padding: 0;
  }
  .dose-miss .doseSection-content-wrapper {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .dose-miss .parsys2 p {
    max-width: 615px;
  }
  .how-to-take-tagrisso .stagingSection.part-2 h2 {
    text-align: center;
    padding-bottom: 36px;
  }
  .swallo-steps img {
    padding-top: 0;
    padding-bottom: 23px;
    margin: 0 auto;
  }
  .swallo-steps.part-2 {
    padding-bottom: 70px;
  }
  .swallo-steps .col-sm-6:nth-of-type(1) {
    padding-right: 0;
    border-right: 1px solid #d8d8d8;
  }
  .swallo-steps .col-sm-6:nth-of-type(2) {
    padding-left: 0;
  }
  .swallo-steps.part-1 .col-sm-6 {
    border-bottom: 1px solid #d8d8d8;
  }
  .swallo-steps.part-1 .parsys1 img {
    padding-top: 21px;
  }
  .swallo-steps.part-1 .parsys2 img {
    padding-top: 34px;
  }
  .swallo-steps.part-2 .parsys1 img {
    padding-top: 82px;
  }
  .swallo-steps.part-2 .parsys2 img {
    padding-top: 43px;
  }
  .swallo-steps.part-1 .parsys1 p {
    padding-bottom: 29px;
    padding-left: 26px;
    padding-right: 43px;
    text-align: center;
  }
  .swallo-steps.part-1 .parsys2 p {
    padding-bottom: 56px;
    padding-left: 24px;
    padding-right: 40px;
    text-align: center;
  }
  .swallo-steps.part-2 .parsys1 p {
    padding-bottom: 81px;
    text-align: center;
  }
  .swallo-steps.part-2 .parsys2 p {
    padding-bottom: 28px;
    padding-left: 31px;
    padding-right: 53px;
    text-align: center;
  }
  .how-to-take-tagrisso .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper,
  .support-for-loved-ones .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding: 44px 48px;
  }
  .how-to-take-tagrisso .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding: 77.5px 46px;
  }
  .support-for-loved-ones .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding: 79.5px 46px;
  }
  .how-to-take-tagrisso .connectSection .doseSection-content-wrapper h4,
  .support-for-loved-ones .connectSection .doseSection-content-wrapper h4 {
    margin: 30px 0;
  }
  /*./about-tagrisso/how-to-take-tagrisso.html*/
  /*results-with-tagrisso/how-tagrisso-may-help.html Style*/
  .clinical-trial-results .intro-bg-content-wrapper {
    background-image: linear-gradient(69deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 360px;
    float: right;
    margin-top: -35.075%;
    padding: 69px 52px 65px 61px;
  }
  .support-for-loved-ones .intro-bg-content-wrapper {
    padding: 44px 48px 44px 48px;
  }
  .clinical-trial-results .intro-bg-content-wrapper p {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .clinical-trial-results .intro-bg-content-wrapper p.second-para {
    padding-top: 15px;
    padding-bottom: 0;
  }
  .life-span>.col-sm-5 {
    float: right;
    padding-left: 0;
  }
  .life-span .doseSection-content-wrapper {
    padding-top: 135px;
    padding-bottom: 74px;
  }
  .life-span .parsys1 img {
    padding-top: 175px;
    padding-bottom: 175px;
    max-width: 305px;
  }
  .life-span .parsys2 h2 {
    padding-bottom: 30px;
  }
  .shrink-tumor .parsys1 img {
    padding-top: 113px;
    padding-left: 0;
    padding-right: 0;
  }
  .shrink-tumor .parsys2 h2 {
    padding-top: 169px;
  }
  .clinical-trial-results .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .clinical-trial-results .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding-top: 75px;
    padding-bottom: 65px;
  }
  .clinical-trial-results .connectSection .col-sm-6:nth-of-type(1),
  .clinical-trial-results .connectSection .col-sm-6:nth-of-type(2) {
    margin-top: -209px;
  }
  /*./results-with-tagrisso/how-tagrisso-may-help.html Style*/
  /*/
    results-with-tagrisso/safety-information.html Style*/
  .safety-information .intro-bg-content-wrapper {
    background-image: linear-gradient(71deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 360px;
    float: right;
    margin-top: -35.075%;
    padding: 44px 44px 34px;
  }
  .safety-information .stagingSection h2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  h2.paddingTop60 {
    padding-top: 60px !important;
  }
  .safety-information-isi {
    padding-bottom: 70px;
  }
  .safety-information .connectSection .col-sm-6:nth-of-type(1),
  .safety-information .connectSection .col-sm-6:nth-of-type(2) {
    margin-bottom: 0;
  }
  .safety-information .connectSection .doseSection-content-wrapper h4 {
    margin-bottom: 30px;
    padding: 0;
  }
  .safety-information .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding-top: 53.5px;
    padding-bottom: 53.5px;
  }
  /*./results-with-tagrisso/safety-information.html Style*/
  /*support/resources.html*/
  .patient-resources .intro-bg-content-wrapper {
    background-image: linear-gradient(65deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 310px;
    float: right;
    margin-top: -34%;
    padding: 44px 44px 34px;
  }
  .patient-resources .intro-bg-content-wrapper p {
    padding-top: 30px;
  }
  .tagrisso-help>.col-sm-4 {
    float: right;
  }
  .patient-resources .tagrisso-help .doseSection-content-wrapper a.btn {
    margin: 0;
    padding: 6px 12px;
  }
  .tagrisso-help .doseSection-content-wrapper {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .tagrisso-help .parsys2 p:nth-of-type(1) {
    padding-bottom: 20px;
    padding-right: 112px;
  }
  .tagrisso-help .parsys2 p:nth-of-type(2) {
    padding-top: 30px;
  }
  .tagrisso-help .parsys2 p:nth-of-type(3) {
    padding-bottom: 20px;
  }
  .tagrisso-help .parsys1 img {
    padding-top: 130px;
  }
  .org-info.part-1 {
    padding-top: 65px;
  }
  .org-info.part-2,
  .org-info.part-3 {
    padding-top: 50px;
  }
  .org-info .parsys1 img {
    margin-left: -15px;
  }
  .org-info.part-1 .parsys1 img {
     padding: 0;
    width: 180px;
  }
  .org-info.part-2 .parsys1 img,
  .org-info.part-3 .parsys1 img {
    padding: 0;
  }
  .org-info .col-sm-9 {
    padding-left: 0;
    margin-left: -10px;
  }
  .org-info .parsys2 .doseSection-content-wrapper a {
    margin: 0;
    max-width: 168px;
    padding: 6px 12px;
  }
  .org-info .parsys2 p {
    padding-top: 6px;
  }
  .lung-community-bg {
    margin-top: 113px;
  }
  .lung-community .doseSection-content-wrapper {
    padding-bottom: 65px;
  }
  .lung-community .doseSection-content-wrapper p {
    padding-right: 54px;
  }
  .lung-community .doseSection-content-wrapper h2 {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 34px;
  }
  .lung-community .doseSection-content-wrapper .col-sm-6:nth-of-type(2n+1) {
    border-right: 1px solid #d8d8d8;
  }
  .lung-community .doseSection-content-wrapper .col-sm-6:nth-of-type(2n) p {
    padding-left: 58px;
    padding-right: 0;
  }
  .padding-bottom-spacing {
    padding-bottom: 52px;
  }
  .accordion-list-content p,
  .accordion-list-content ul {
    padding-right: 75px;
  }
  /* newely added for border line in resources page*/
  .lung-community .doseSection-content-wrapper .col-sm-6.noPadding.clearFix.pdg-btm {
    padding-bottom: 210px;
  }
  /*./support/resources.html*/
  /*support/sign-up-for-support.html Style*/
  .sign-up-for-support .intro-bg-content-wrapper {
    background-image: linear-gradient(70deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 350px;
    float: right;
    margin-top: -35.075%;
    padding: 40px 25px 30px 25px;
  }
  .sign-up-for-support .intro-bg-content-wrapper p {
    padding-top: 30px;
  }
  .signup-kit-heading h2 {
    padding: 90px 32px 0;
  }
  .signup-kit {
    padding-top: 40px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .signup-kit .col-sm-4 {
    padding-left: 0;
    padding-right: 0;
  }
  .signup-kit .col-sm-4:nth-of-type(1),
  .signup-kit .col-sm-4:nth-of-type(3) {
    max-width: 280px;
  }
  .signup-kit .col-sm-4 p {
    letter-spacing: 0.2px;
  }
  .signup-kit .col-sm-4:nth-of-type(1) p {
    padding-right: 0;
  }
  .signup-kit .col-sm-4:nth-of-type(2) p {
    padding-left: 32px;
    padding-right: 0;
  }
  .signup-kit .col-sm-4:nth-of-type(3) p {
    padding-left: 38px;
  }
  .signup-kit-content p {
    padding: 50px 32px;
  }
  /*./support/sign-up-for-support.html Style*/
  /*support/financial-support.html Style*/
  .financial .intro-bg-content-wrapper {
    background-image: linear-gradient(70deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 410px;
    float: right;
    margin-top: -33.9%;
    padding: 18px 25px 18px;
  }
  .financial .intro-bg-content-wrapper img {
    margin: 0;
  }
  .financial .intro-bg-content-wrapper h2 {
    padding-bottom: 15px;
  }
  .financial .stagingSection p {
    padding-top: 50px;
  }
  .financial .stagingSection ul {
    padding-bottom: 40px;
  }
  .financial .contactSection-content-wrapper {
    background-image: linear-gradient(84deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    padding: 55px 90px;
  }
  .financial .contactSection-content-wrapper h3 {
    line-height: 39px;
  }
  .financial .stagingSection.copy p:nth-of-type(1) {
    padding-top: 50px;
  }
  .financial .stagingSection.copy p:nth-of-type(2) {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .financial .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding: 57px 34px;
  }
  .financial .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding: 110px 30px;
  }
  .financial .connectSection .doseSection-content-wrapper h4 {
    margin: 30px 0;
  }
  /*./support/financial-support.html Style*/
  /*tagrisso-as-a-second-treatment.html*/
  .tagrisso-as-a-second-treatment .intro-bg-content-wrapper {
    background-image: linear-gradient(67deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 375px;
    float: right;
    margin-top: -33.9%;
    padding: 39px 34px 16px 34px;
  }
  .tagrisso-as-a-second-treatment .intro-bg-content-wrapper p {
    padding-top: 30px;
  }
  .tagrisso-as-a-second-treatment .stagingSection h2 {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .tagrisso-as-a-second-treatment .staging-desc p {
    padding-right: 27px;
  }
  .tagrisso-as-a-second-treatment .staging-desc .parsys1 img {
    padding-top: 38px;
  }
  .tagrisso-as-a-second-treatment .staging-desc .parsys2 img,
  .tagrisso-as-a-second-treatment .staging-desc .parsys3 img {
    padding-top: 0px;
  }
  .tagrisso-as-a-second-treatment .stagingSection p {
    padding-top: 30px;
    padding-bottom: 70px;
    text-align: center;
    max-width: 658px;
    margin-left: auto;
    margin-right: auto;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection {
    margin-top: 76px;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection .col-md-8:nth-of-type(1) {
    max-width: 462px;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection .col-md-9:nth-of-type(1) {
    max-width: 462px;
    margin-top: -461px;
    float: right;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection .doseSection-content-wrapper {
    padding: 45px 42px 44px 50px;
  }
  .tagrisso-as-a-second-treatment .doseSection-content-wrapper h2 {
    text-align: left;
  }
  .tagrisso-as-a-second-treatment .doseSection-content-wrapper p:not(.font-12) {
    padding-bottom: 10px;
  }
  .shrink-tumor-clone {
    padding: 80px 0;
  }
  .shrink-tumor-clone .doseSection-content-wrapper {
    padding: 0;
  }
  .shrink-tumor-clone .parsys1 h2 {
    padding-bottom: 35px;
    max-width: 346px;
  }
  .tagrisso-as-a-second-treatment .shrink-tumor-clone .doseSection-content-wrapper p:not(.font-12) {
    padding-bottom: 0;
    max-width: 442px;
  }
  /*./tagrisso-as-a-second-treatment.html*/
  /*Error Pages*/
  .no-page .stagingSection h2,
  .error-page .stagingSection h2 {
    padding-top: 100px;
  }
  /*./Error Pages*/
  /*Contact Us Page*/
  .contact-us .stagingSection img {
    padding-top: 100px;
    max-width: 100%;
  }
  .contact-us .stagingSection h2 {
    padding-bottom: 30px;
  }
  .contact-us #maincontent,
  .sitemap #maincontent {
    border: 1px solid #fff;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  }
  .contact-us .stagingSection p {
    max-width: 624px;
  }
  /*./Contact Us Page*/
  /*sitemap.html*/
  .sitemap .stagingSection h2 {
    padding-top: 100px;
    padding-bottom: 30px;
  }
  dl.sitemap-list:last-child {
    margin-bottom: 100px;
  }
  /*sitemap.html*/
  /*support/support-for-loved-ones.html*/
  .support-for-loved-ones .intro-bg-content-wrapper {
    background-image: linear-gradient(73deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 410px;
    float: right;
    margin-top: -33.075%;
    padding: 44px 48px 34px;
  }
  .support-for-loved-ones .shrink-tumor {
    background-image: linear-gradient(75deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
  }
  .helping-your-loved-o {
    padding: 84px 0 45px 15px;
  }
  .support-for-loved-ones .shrink-tumor img {
    padding-top: 0;
    padding-bottom: 0;
  }
  .Learn-about-the-dise {
    padding-bottom: 35px;
  }
  .Celebrate-milestones {
    padding-bottom: 76px;
  }
  .ic_Research,
  .ic_tix,
  .ic_Balloon {
    padding-top: 10px !important;
  }
  .support-for-loved-ones .help-with-tumor .parsys1 h2 {
    padding-top: 80px;
    padding-bottom: 10px;
  }
  .support-for-loved-ones .help-with-tumor .parsys1 img {
    padding: 50px 0 10px 0;
  }
  .support-for-loved-ones .help-with-tumor .parsys1 p {
    max-width: 330px;
  }
  .extraPadding+p {
    padding-bottom: 70px;
  }
  /*./support/support-for-loved-ones.html*/
  /*Exit Ramp*/
  div#exitdialog {
    padding: 50px !important;
    top: 18% !important;
    left: 8% !important;
  }
  #exitdialog h3 {
    margin-bottom: 30px;
    padding-right: 223px;
  }
  #exitdialog p.spacerBlock {
    margin: 30px 0 !important;
  }
  div#exitdialog p.btns a {
    max-width: 168px;
    padding: 6px 12px;
    display: inline-block;
  }
  #exitdialog p.btns a.no {
    margin-top: 0;
    margin-left: 25px;
  }
  /*Exit Ramp*/
  /*Thank you page*/
  .thank-you .stagingSection h2,
  .thank-you .stagingSection p {
    max-width: 517px;
  }
  /*./Thank you page*/
  .home .modal-dialog {
    width: 90%;
    top: 10%;
  }
  .home .modal-header {
    border-bottom: 0;
  }
  .home .modal-body .html-textarea iframe {
    width: 100%;
    height: 420px;
    margin-bottom: -5px;
  }
  .home .modal-dialog .modal-title {
    display: none;
  }
  .home .modal-header .close {
    opacity: 8;
    color: #5b1179;
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 768px) {
  .movie.section {
    left: calc(50% - 345px);
  }
  .tagrissopgcallout .copyBandTxt {
    width: 77% !important;
  }
  .lung-community .col-sm-6.noPadding.padding-bottom-first {
    padding-bottom: 130px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .tagrissopgcallout .tagnotepadIcon {
    top: -18px !important;
  }
  .what-is-tagrisso .tagrissoDefSection .tagrissopgcallout {
    display: table;
  }
  .strips_sprite3 .mobile-TAGRISSO-is-changing span {
    margin-left: 128px;
  }
  .TAGRISSO-is-changing p.text-right,
  .TAGRISSO-is-changing h2.text-right {
    text-align: right;
  }
  .TAGRISSO-is-changing.paddingTop-40-Bottom-30 {
    margin-top: 35px;
  }
  .strips_sprite3 .mobile-TAGRISSO-is-changing {
    top: 5px;
    line-height: 1.6;
  }
  .home .strips_sprite3 .Desc-sprite1 {
    margin-top: -8px;
  }
  .page-title {
    padding-left: 39px;
  }
  .max-970,
  .max-860,
  .max-830,
  .sitemap .row .sitemap {
    max-width: 690px;
  }
  .max-930.isi {
    max-width: 660px;
  }
  .footer-grid .col-sm-4:nth-of-type(1) {
    width: 30%;
    padding-right: 0;
  }
  .footer-grid .col-sm-4:nth-of-type(2) {
    padding-right: 5px;
    padding-left: 0;
    width: 34%;
  }
  .footer-grid .col-sm-4:nth-of-type(3) {
    padding-right: 0;
    width: 36%;
  }
  .patient-support-sticky-isi-content {
    max-width: 690px;
    margin: 0 auto;
  }
  .diagnosis-and-testing .connectSection .doseSection-content-wrapper h4 {
    padding-left: 0;
    padding-right: 0;
  }
  .diagnosis-and-testing .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .what-is-tagrisso .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding-top: 85px;
    padding-bottom: 86px;
  }
  .how-to-take-tagrisso .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding: 44px 17px;
  }
  .how-to-take-tagrisso .connectSection .doseSection-content-wrapper h4 {
    padding-left: 0;
    padding-right: 0;
  }
  .how-to-take-tagrisso .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding: 73px 46px;
  }
  .safety-information .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding-top: 84px;
    padding-bottom: 83px;
  }
  .safety-information .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  .financial .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding: 57px 17px;
  }
  .support-for-loved-ones .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper {
    padding: 44px 17px;
  }
  .support-for-loved-ones .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding: 74px 29px;
  }
  .home .video-link {
    text-align: center;
    padding-bottom: 15px;
  }
  .home .video-link img {
    width: 200px;
  }
  .home .strips_sprite3 .Desc-sprite3 {
    width: 210px;
    height: 35px;
    z-index: 1;
    position: relative;
  }
  .home .strips_sprite3 .Desc-sprite1 {
    width: 190px;
    height: 35px;
    margin-left: 120px;
  }
  .strips_sprite3 .mobile-TAGRISSO-is-changing {
    left: 7px;
  }
  .home .strips_sprite3 {
    right: 0px;
    top: 220px;
  }
  .visible-xs-block.Rectangle-Copy-4 {
    display: block!important;
  }
  .biomakerList {
    margin: 0 0 0 5px;
  }
  .Mobile-dosing {
    margin-top: 60px;
  }
  .TAGRISSO-is-changing.paddingTop-40-Bottom-30 {
    margin-top: 120px;
  }
  .home .doseSection.doseSection-body.max-930.content-center.bg-copy {
    padding-bottom: 0px;
  }
  .biomarker-testing-sec img {
    padding: 190px 0px 100px 0px;
  }
  .biomarker-testing-why .doseSection-content-wrapper {
    padding: 65px 25px 50px 25px;
  }
  .biomarkercallout {
    margin: 0 auto;
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding: 25px 20px;
  }
  .biomarkercallout .tagnotepadIcon {
    margin-right: 0;
    margin-left: 30px;
    width: 15%;
    margin: 5px 0 0 34px;
    float: left;
  }
  .biomarkercallout .copyBandTxt {
    margin-left: 0px;
    width: 84%;
    padding: 5px 0 0 15px !important;
  }
  .biomarkercallouttwo {
    top: 75px !important;
  }
  .biomarkercallouttwo .tagnotepadIcon {
    top: 30px;
    position: relative;
  }
  .biomarkercallouttwo .copyBandTxt {
    margin: 0;
  }
  .lungcancerTxt {
    margin-bottom: -23px;
  }
  .lungBullet {
    position: relative;
    top: 7px;
  }
  .clinical-trial-results .intro-bg-content-wrapper {
    max-width: 423px;
    padding: 35px 30px 23px 30px;
    margin-top: -31.075%;
  }
  .howtrailMainWrap .howtrailWrap {
    width: 95%;
  }
  .clinical-trial-results .clinicaltrialCallout .tagnotepadIcon {
    top: -5px;
  }
  .clinicaltrialCallout .copyBandTxt {
    margin-left: 20px;
    width: 78%;
    display: inline-block;
  }
  .clinical-trial-results .clinicaltrialCallout .footnoteBandTxt {
    margin-left: 80px;
    display: inline-block;
  }
  .clinicaltrialCallout .people-wrapper {
    display: inline;
  }
  .resultstudyWrap .resultcontentWrap {
    width: 100%;
  }
  .financial .intro-bg-content-wrapper {
    max-width: 450px;
    padding: 18px 21px 18px;
  }
  .financial .contactSection-content-wrapper {
    padding: 55px 50px;
  }
  .faceBookSection-content-wrapper h2,
  .faceBookSection-content-wrapper p {
    text-align: center;
    width: 77%;
  }
  .faceBookSection-content-wrapper h2 {
    margin: 40px auto 20px auto;
  }
  .patient-resources .intro-bg-content-wrapper,
  .support-for-loved-ones .intro-bg-content-wrapper {
    max-width: 60% !important;
    width: 60% !important;
    padding: 40px 25px 15px 25px !important;
  }
  .patient-resources .faceBookSection-content-wrapper a.btn,
  .support-for-loved-ones .faceBookSection-content-wrapper a.btn {
    width: 30%;
  }
  .lung-community .col-sm-6.noPadding.padding-bottom-ipad {
    padding-bottom: 26px;
  }
}

@media (min-width: 992px) {

   #footer ul li a:focus {
     outline: none;
     border: none;
    }
  .callout-mob {
    margin: 100px auto 0;
  }
  .life-span .doseSection-content-wrapper {
    padding-top: 143px;
    padding-bottom: 74px;
  }
  span.last_updated {
    width: 83%;
    display: inline-block;
  }
  /*Global Style*/
  .logos img {
    width: 251px;
  }
  .fullnavigation {
    padding-top: 8px;
  }
  .biomarker-testing-sec ul li {
    margin-right: 8%;
  }
  .home .modal-dialog {
    width: 58%;
    top: 10%;
  }
  .thank-you .stagingSection h2,
  .thank-you .stagingSection p {
    max-width: none;
  }
  .clinical-trial-results .doseSection-content-wrapper.paddingTop-40-Bottom-40 {
    padding: 65px !important;
  }
  .page-content.isi {
    padding: 120px 0;
  }
  #footer {
    padding-bottom: 30px;
  }
  .logo-grid img,
  #footer .list-unstyled,
  .copyRight-Texts>p {
    margin-top: 40px;
  }
  .font-14 {
    font-size: 18px;
  }
  h2 {
    font-size: 40px;
    line-height: 44px;
  }
  .TAGRISSO-is-changing h2.text-right {
    margin-right: 49px;
    color: #5b1179;
    margin-left: 128px;
    text-align: right;
    margin-top: 125px;
    padding-left: 0;
    padding-right: 0;
    font-family: 'Nunito-Regular';
    font-size: 28px;
    font-weight: bold;
    line-height: normal;
  }
  .TAGRISSO-is-changing p.text-right {
    padding-top: 15px;
    font-size: 22px;
    margin-right: 49px;
    font-weight: bold;
    color: #5b1179;
    text-align: right;
    padding-left: 0;
    padding-right: 0;
    font-family: 'Nunito-Regular';
    font-weight: bold;
    line-height: normal;
  }
  .movie.section {
    top: 70px;
    left: calc(50% - 340px);
        //z-index: 99999999;
  }
  .max-930 {
    max-width: 930px;
  }
  /*./Global Style*/
  /*Home Page Style*/
  .home .intro-bg-content-wrapper {
    padding-bottom: 0px;
  }
  .home .intro .intro-bg-content-wrapper {
    margin-top: -79%;
  }
  .home .intro-bg-content-footer-wrapper {
    padding-top: 29px;
    padding-bottom: 24px;
  }
  .home .doseSection-body {
    padding-top: 0px;
  }
  .doseSection.doseSection-body.max-930.content-center.bg-copy {
    max-width: 100%;
    height: auto;
    box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.16);
    background-image: linear-gradient(82deg, #eaeaea, #ffffff);
  }
  .home .doseSection.doseSection-body.max-930.content-center.bg-copy {
    padding-bottom: 88px;
  }
  .home .doseSection-content-wrapper {
    padding: 131px 56px 97px 55px;
  }
  .home .doseSection-content-wrapper h2 {
    padding-bottom: 34px;
  }
  .home .doseSection-content-wrapper p {
    padding-bottom: 20px;
  }
  .home .doseSection-content-wrapper a {
    padding: 6px 12px;
  }
  .home .resultsSection,
  .home .cancerTypeSection,
  .home .startTodaySection,
  .home .connectSection {
    margin-top: 120px;
  }
  .home .resultsSection .doseSection-content-wrapper {
    background-image: linear-gradient(70deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    padding: 63px 75px 63px 75px;
  }
  .home .resultsSection,
  .home .cancerTypeSection,
  .home .startTodaySection,
  .home .connectSection {
    margin-top: 120px;
  }
  .home .resultsSection .col-md-8:nth-of-type(1) {
    max-width: 617px;
  }
  .home .resultsSection .col-md-9:nth-of-type(1) {
    max-width: 631px;
    margin-top: -442px;
  }
  .home .resultsSection .doseSection-content-wrapper {
    background-image: linear-gradient(66deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
  }
  .home .resultsSection .doseSection-content-wrapper h2 {
    padding-bottom: 30px;
  }
  .home .cancerTypeSection .col-md-8:nth-of-type(1) {
    max-width: 617px;
  }
  .home .cancerTypeSection .col-md-7:nth-of-type(1) {
    max-width: 531px;
    margin-top: -447px;
  }
  .home .cancerTypeSection .doseSection-content-wrapper {
    padding: 73px 75px 73px 76px;
  }
  .home .cancerTypeSection .doseSection-content-wrapper h2 {
    padding-bottom: 30px;
  }
  .home .startTodaySection .doseSection-content-wrapper {
    padding: 0;
  }
  .home .startTodaySection .doseSection-content-wrapper h2 {
    padding: 0;
    text-align: left;
  }
  .home .startTodaySection .doseSection-content-wrapper p {
    padding-left: 40px;
    padding-right: 0;
  }
  .home .startTodaySection .doseSection-content-wrapper a {
    display: inline-block;
    margin-left: 40px;
  }
  .home .connectSection .col-sm-6:nth-of-type(1),
  .home .connectSection .col-sm-6:nth-of-type(2) {
    margin-top: -203px;
  }
  .home .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding: 70px;
  }
  .home .connectSection .doseSection-content-wrapper h4 {
    margin-top: 30px;
  }
  .home .connectSection .doseSection-content-wrapper p {
    padding-left: 49px;
    padding-right: 50px;
    text-align: center;
  }
  .home .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper p {
    padding-left: 22px;
    padding-right: 22px;
  }
  .home .video-link {
    text-align: center;
    padding-bottom: 15px;
  }
  .home .video-link img {
    width: 200px;
  }
  .Rectangle-Copy-3 {
    height: 30px;
    object-fit: contain;
    background-color: #5b1179;
    margin-bottom: 72px;
  }
  .life-span .doseSection-content-wrapper h2 {
    padding: 0;
    margin-top: 0;
    padding-bottom: 30px;
  }
  .home .strips_sprite3 {
    right: 55px;
    top: 30px;
  }
  .home .strips_sprite3 .Desc-sprite3 {
    width: 306px;
    height: 52px;
    z-index: 1;
    position: relative;
  }
  .home .strips_sprite3 .Desc-sprite1 {
    width: 280px;
    height: 52px;
    margin-left: 200px;
    margin-top: -8px;
  }
  .strips_sprite3 .mobile-TAGRISSO-is-changing span {
    margin-left: 206px;
    padding-top: 0px;
    display: inline-block;
    width: 222px;
    line-height: 2.4;
  }
  .home p.for-people {
    width: 425px;
    right: 86px;
    position: absolute;
    top: 130px;
    font-family: 'Nunito-Regular';
    font-size: 16px !important;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.27;
    letter-spacing: -0.1px;
    color: #ffffff;
    padding: 20px 0 !important;
    opacity: 0.99;
  }
  .strips_sprite3 .mobile-TAGRISSO-is-changing {
    top: 6px;
    left: 26px;
    font-size: 22px;
    width: 258px;
    height: 24.8px;
    font-family: CaeciliaLTStd-Bold;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: 0px;
    color: #231f20;
  }
  .home h4.TAGRISSO-osimertini {
    right: 40px;
    position: absolute;
    top: 185px;
    width: 488px;
    font-family: CaeciliaLTStd-Bold;
    font-size: 19px;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.28;
    letter-spacing: -0.1px;
    color: #ffffff;
    padding: 23px 15px 23px;
    font-weight: normal;
  }
  .home p.TAGRISSO-is-a-once-d {
    width: 425px;
    right: 86px;
    position: absolute;
    top: 395px;
    font-family: 'Nunito-Regular';
    font-size: 15px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.27;
    letter-spacing: -0.1px;
    color: #ffffff;
    padding: 20px 0;
    opacity: 0.99;
  }
  .home p.TAGRISSO-is-a-once-d.Second {
    width: 410px;
    right: 101px;
    position: absolute;
    top: 280px;
    font-family: 'Nunito-Regular';
    opacity: 0.99;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.27;
    letter-spacing: -0.1px;
    color: #ffffff;
    padding: 20px 0;
  }
  .home p.TAGRISSO-is-a-once-d-footnote {
    width: 255px;
    right: 256px;
    position: absolute;
    top: 460px;
    font-family: 'Nunito-Regular';
    font-size: 11px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.73;
    letter-spacing: 0px;
    color: #ffffff;
    padding: 20px 0;
  }
  /*Home Page Style*/
  /*understanding-lung-cancer/types-of-lung-cancer.html*/
  .types-of-lung-cancer .intro-bg-content-wrapper {
    margin-top: -33.135%;
  }
  .types-of-lung-cancer .intro-bg-content-wrapper p {
    padding-right: 37px;
  }
  .understand-cancer .doseSection-content-wrapper {
    padding: 106px 0 10px 0;
  }
  .understand-cancer>.col-sm-5 {
    padding-top: 119px;
  }
  .understand-cancer .parsys2 img {
    margin-left: -7px;
  }
  .understand-cancer .parsys1 p:last-child {
    padding-bottom: 30px;
  }
  .biomarkerSection p {
    padding-bottom: 96px;
  }
  .lung-cancer-info .doseSection-content-wrapper {
    padding-left: 0;
  }
  .lung-cancer-info .parsys2 p:nth-of-type(1) {
    padding-bottom: 16px;
  }
  .lung-cancer-info .parsys2 p:nth-of-type(2) {
    padding-top: 26px;
    padding-bottom: 20px;
  }
  .lung-cancer-info .parsys1 img {
    padding-top: 111px;
    padding-left: 147px;
    padding-right: 0;
  }
  .biomarkercallout .tagnotepadIcon img {
    margin: -7px 0 4px 0;
  }
  /*./understanding-lung-cancer/types-of-lung-cancer.html*/
  /*understanding-lung-cancer/diagnosis-and-testing.html*/
  .diagnosis-and-testing .intro-bg-content-wrapper {
    max-width: 71%;
    width: 71%;
    margin-top: -32.38%;
    position: absolute;
    left: 43%;
  }
  /*./understanding-lung-cancer/diagnosis-and-testing.html*/
  /*about-tagrisso/what-is-tagrisso.html Style*/
  .page-title {
    max-width: 930px;
    margin: 0 auto;
    font-size: 28px;
    font-family: 'Nunito-Regular';
    line-height: 1.13;
    letter-spacing: 0.2px;
    padding: 17px 30px 17px 7px;
  }
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper {
    margin-top: -34.735%;
    max-width: 78%;
    width: 78%;
    padding: 44px 54px 34px;
    position: absolute;
  }
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper h2 {
    padding-right: 10px;
  }
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper p:nth-of-type(1) {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .what-is-tagrisso .connectSection .col-sm-6:nth-of-type(1),
  .what-is-tagrisso .connectSection .col-sm-6:nth-of-type(2) {
    margin-top: -300px;
  }
  .what-is-tagrisso .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding-top: 86px;
    padding-bottom: 85px;
  }
  .what-is-tagrisso .connectSection .doseSection-content-wrapper h4 {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 34px;
    padding-right: 33px;
  }
  /*./about-tagrisso/what-is-tagrisso.html Style*/
  /*about-tagrisso/how-to-take-tagrisso.html*/
  .how-to-take-tagrisso .intro-bg-content-wrapper {
    max-width: 70%;
    width: 70%;
    position: absolute;
    left: 50%;
  }
  .swallo-steps.part-1 .parsys2 p {
    padding-left: 34px;
    padding-right: 50px;
  }
  .how-to-take-tagrisso .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding: 73px 46px;
  }
  /*./about-tagrisso/how-to-take-tagrisso.html*/
  /*results-with-tagrisso/how-tagrisso-may-help.html Style*/
  .clinical-trial-results .intro-bg-content-wrapper {
    max-width: 60%;
    margin-top: -34.735%;
    width: 60%;
    position: absolute;
    left: 50%;
  }
  .clinical-trial-results .intro-bg-content-wrapper p {
    padding-right: 37px;
  }
  .lifeSpan-bg {
    background-image: linear-gradient(79deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
  }
  .life-span .parsys2 p,
  .life-span .parsys2 h2 {
    text-align: left;
  }
  .life-span .parsys2 p {
    max-width: 432px;
  }
  .shrink-tumor .doseSection-content-wrapper {
    padding-top: 189px;
    padding-bottom: 84px;
    padding-left: 66px;
  }
  .shrink-tumor .parsys2 p,
  .shrink-tumor .parsys2 h2 {
    text-align: left;
  }
  .shrink-tumor .parsys2 h2 {
    padding-top: 0;
  }
  .shrink-tumor .parsys1 img {
    padding: 144px 0;
    margin: 0;
  }
  .help-with-tumor>.col-md-5 {
    float: right;
    padding-left: 0;
  }
  .help-with-tumor .doseSection-content-wrapper {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .help-with-tumor .parsys2 p,
  .help-with-tumor .parsys2 h2 {
    text-align: left;
  }
  .help-with-tumor .parsys2 h2 {
    padding: 0 0 30px 0;
    max-width: 812px;
  }
  .help-with-tumor .parsys2 p {
    max-width: 812px;
  }
  .help-with-tumor .parsys1 img {
    padding: 120px 0;
    margin: 0;
  }
  .clinical-trial-results .connectSection .col-sm-6:nth-of-type(1),
  .clinical-trial-results .connectSection .col-sm-6:nth-of-type(2) {
    margin-top: -209px;
  }
  .clinical-trial-results .connectSection .col-sm-6:nth-of-type(1) .doseSection-content-wrapper,
  .clinical-trial-results .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  .clinical-trial-results .connectSection .doseSection-content-wrapper {
    background-image: linear-gradient(64deg, #eaeaea, #ffffff);
    box-shadow: 1px 2px 4px 1px rgba(0, 0, 0, 0.16);
  }
  .clinical-trial-results .connectSection .doseSection-content-wrapper h4 {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 44px;
    padding-right: 44px;
  }
  .support-for-loved-ones .connectSection .doseSection-content-wrapper h4 {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .clinical-trial-results .connectSection .hidden-xs .doseSection-content-wrapper h4 {
    padding-left: 62px;
    padding-right: 63px;
  }
  .life-span .parsys1 img {
    padding: 86px 0;
    max-width: 340px;
  }
  /*./results-with-tagrisso/how-tagrisso-may-help.html Style*/
  /*/
    results-with-tagrisso/safety-information.html Style*/
  .safety-information .intro-bg-content-wrapper {
    max-width: 70%;
    width: 70%;
    position: absolute;
    left: 48%;
    margin-top: -43%;
  }
  .sideContent-1 img,
  .sideContent-2 img,
  .sideContent-3 img {
    margin-left: 25px;
  }
  /*./results-with-tagrisso/safety-information.html Style*/
  /*support/resources.html*/
  .patient-resources .intro-bg-content-wrapper {
    max-width: 65%;
    width: 65%;
    margin-top: -38.1%;
  }
  .lung-community .doseSection-content-wrapper p {
    padding-right: 74px;
  }
  .lung-community .doseSection-content-wrapper .col-sm-6:nth-of-type(2n) p {
    padding-left: 78px;
  }
  .patient-support-faq-accordion {
    padding: 0;
  }
  /*./support/resources.html*/
  /*support/sign-up-for-support.html Style*/
  .sign-up-for-support .intro-bg-content-wrapper {
    max-width: 65%;
    width: 65%;
    padding: 40px 40px 30px 40px;
    position: absolute;
    left: 47%;
  }
  .signup-kit .col-sm-4:nth-of-type(1) p {
    padding-right: 38px;
  }
  .signup-kit .col-sm-4:nth-of-type(2) p {
    padding-right: 32px;
  }
  /*./support/sign-up-for-support.html Style*/
  /*support/financial-support.html Style*/
  .financial .intro-bg-content-wrapper {
    max-width: 85%;
    width: 85%;
    margin-top: -45.3%;
    padding-right: 24px;
    left: 33%;
  }
  .financial .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding: 83px;
  }
  /*./support/financial-support.html Style*/
  /*tagrisso-as-a-second-treatment.html*/
  .tagrisso-as-a-second-treatment .intro-bg-content-wrapper {
    max-width: 520px;
    margin-top: -33.9%;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection {
    margin-top: 0;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection .col-md-8:nth-of-type(1) {
    max-width: 617px;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection .col-md-9:nth-of-type(1) {
    max-width: 622px;
    margin-top: -501px;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection .doseSection-content-wrapper {
    padding: 53px 45px 53px 46px;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection .doseSection-content-wrapper h2 {
    padding-bottom: 30px;
  }
  .shrink-tumor-clone .doseSection-content-wrapper {
    padding: 0;
  }
  .tagrisso-as-a-second-treatment .help-with-tumor .doseSection-content-wrapper {
    padding-top: 83px;
    padding-bottom: 67px;
  }
  .tagrisso-as-a-second-treatment .help-with-tumor .parsys2 p {
    max-width: 492px;
  }
  /*./tagrisso-as-a-second-treatment.html*/
  /*support/support-for-loved-ones.html*/
  .support-for-loved-ones .intro-bg-content-wrapper p {
    padding-right: 0px;
  }
  .support-for-loved-ones .intro-bg-content-wrapper {
    max-width: 576px;
    margin-top: -37.075%;
  }
  .support-for-loved-ones .shrink-tumor .col-xs-12.col-sm-2.col-md-2,
  .support-for-loved-ones .shrink-tumor .col-xs-12.col-sm-10.col-md-9 {
    padding-left: 0;
  }
  .support-for-loved-ones .connectSection .col-sm-6:nth-of-type(2) .doseSection-content-wrapper {
    padding: 60px 46px;
  }
  /*./support/support-for-loved-ones.html*/
  /*Exit Ramp*/
  div#exitdialog {
    left: 18.275% !important;
  }
  /*Exit Ramp*/
  /*************** FACEBOOK SECTION UPDATE  ********************/
  .faceBookSection-content-wrapper {
    width: 1115px;
    margin: 70px auto;
    padding: 47px 90px 60px 90px;
    background: #eaeaea;
    /* Old browsers */
    background: -moz-linear-gradient(left, #eaeaea 0%, #eaeaea 37%, #ffffff 59%, #ffffff 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #eaeaea 0%, #eaeaea 37%, #ffffff 59%, #ffffff 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #eaeaea 0%, #eaeaea 37%, #ffffff 59%, #ffffff 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    -moz-box-shadow: 13px 3px 34px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 13px 3px 34px 6px rgba(0, 0, 0, 0.16);
  }
  .faceBookSection-content-wrapper img {
    width: 66px;
  }
  .faceBookSection-content-wrapper h2 {
    margin: 40px 0 20px 0;
  }
  .faceBookSection-content-wrapper p {
    width: 85%;
    text-align: center;
  }
  .faceBookSection-content-wrapper a.btn {
    width: 256px;
  }
  .navbar-nav>li:nth-child(1)>.dropdown-menu {
    margin-left: 0;
  }
  .navbar-nav>li:nth-child(1) {
    border-left: 1px solid rgba(162, 162, 162, 0.3);
  }
  .navbar-nav>li:nth-child(2)>.dropdown-menu {
    margin-left: 0;
  }
  .navbar-nav>li:nth-child(3)>.dropdown-menu {
    margin-left: 0;
  }
  .navbar-nav>li:nth-child(4)>.dropdown-menu {
    margin-left: 0;
  }
  .navbar-nav>li:nth-child(4) {
    border-right: 1px solid rgba(162, 162, 162, 0.3);
  }
  .navbar-nav>li>a {
    padding: 0 0 0 0!important;
  }
  .navbar-nav>li {
    padding: 10px 25px;
  }
  #shareonfacebook-header {
    padding: 12px 10px;
  }
  #shareonyoutube-header {
    padding: 10px 11px;
    margin: 0 7px;
  }
  a#shareonyoutube-header:active,
  a#shareonyoutube-header:focus {
    border: none;
    outline: none;
  }
  .biomarker-testing-sec img {
    padding: 200px 0 0 0;
  }
  .lungCancerWrap .lungcancerTreat {
    margin: 20px 0px 20px 2px;
  }
  .lungcancerBulletWrap {
    margin: 0 0 0 3px!important
  }
  .lungcancerTxt {
    margin-bottom: 0px;
  }
  .lungcancerBulletWrap:nth-child(4) .lungBullet,
  .lungcancerBulletWrap:nth-child(3) .lungBullet {
    position: relative;
    top: 9px;
  }
  .lungcancerBulletWrap:nth-child(5) .lungBullet {
    position: relative;
    top: -1px;
  }
  .shrink-tumor.resultstudyWrap .resultimg img {
    display: block;
    //margin: 0 auto;
  }
}

@media screen and (min-width:992px) and (max-width:1024px) {
  .home p.TAGRISSO-is-a-once-d-footnote {
    top: 325px;
    right: 137px;
  }
  .home p.TAGRISSO-is-a-once-d.Second {
    top: 245px;
    right: 9px;
    width: 384px;
  }
  .home p.TAGRISSO-is-a-once-d {
    top: 370px;
    right: 13px;
  }
  .strips_sprite3 .mobile-TAGRISSO-is-changing {
    left: 15px;
  }
  .strips_sprite3 .mobile-TAGRISSO-is-changing span {
    margin-left: 128px;
  }
  .home .strips_sprite3 .Desc-sprite3 {
    width: 280px;
  }
  .home .strips_sprite3 .Desc-sprite1 {
    width: 250px;
    margin-left: 125px;
  }
  .home h4.TAGRISSO-osimertini {
    top: 340px;
    right: 0;
  }
  .home h4.TAGRISSO-osimertini {
    top: 340px;
    right: 0;
    font-size: 19px;
    padding-top: 15px;
  }
  .home .strips_sprite3 {
    right: 32px;
    top: 20px;
  }
  .home p.for-people {
    right: 7px;
    top: 110px;
    width: 383px;
  }
  .home h4.TAGRISSO-osimertini {
    top: 165px;
    right: 6px;
    font-size: 19px;
    padding-top: 15px;
    width: 400px;
  }
  .diagnosis-and-testing .intro-bg-content-wrapper h2 {
    width: 89%;
  }
  .faceBookSection-content-wrapper {
    width: 80%;
  }
  .faceBookSection-content-wrapper h2 {
    text-align: center;
  }
  .patient-resources .faceBookSection-content-wrapper a.btn,
  .support-for-loved-ones .faceBookSection-content-wrapper a.btn {
    width: 35%;
    margin: 0 auto;
    border: none;
  }
}

@media (min-width: 1025px) {
  .life-span .doseSection-content-wrapper {
    padding-top: 60px;
    padding-bottom: 74px;
  }
  /*Home Page Style*/
  .navbar-default .navbar-nav>li>a:focus {
    color: #7e7c7f;
  }
  body.home.modal-open {
    padding-right: 0 !important;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .home .resultsSection .col-md-8:nth-of-type(1),
  .home .cancerTypeSection .col-md-8:nth-of-type(1) {
    max-width: 867px;
  }
  .home .resultsSection .col-md-9:nth-of-type(1) {
    margin-top: -536px;
  }
  .home .cancerTypeSection .col-md-7:nth-of-type(1) {
    margin-top: -540px;
  }
  /*./Home Page Style*/
  /*tagrisso-as-a-second-treatment.html*/
  .tagrisso-as-a-second-treatment .cancerTypeSection .col-md-8:nth-of-type(1) {
    max-width: 867px;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection .col-md-9:nth-of-type(1) {
    max-width: 708px;
    margin-top: -608px;
  }
  .tagrisso-as-a-second-treatment .cancerTypeSection .doseSection-content-wrapper {
    padding: 79px 70px 69px 70px;
  }
  /*./tagrisso-as-a-second-treatment.html*/
  /*Exit Ramp*/
  div#exitdialog {
    left: 20% !important;
  }
}

@media (min-width: 1280px) {
  #backToTop {
    display: block;
  }
  /*understanding-lung-cancer/types-of-lung-cancer.html*/
  .types-of-lung-cancer .intro-bg-content-wrapper,
  .how-to-take-tagrisso .intro-bg-content-wrapper {
    margin-top: -44%;
  }
  /*./understanding-lung-cancer/types-of-lung-cancer.html*/
  /*understanding-lung-cancer/diagnosis-and-testing.html*/
  .diagnosis-and-testing .intro-bg-content-wrapper {
    margin-top: -43%;
  }
  /*./understanding-lung-cancer/diagnosis-and-testing.html*/
  /*about-tagrisso/what-is-tagrisso.html Style*/
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper {
    margin-top: -43.9%;
  }
  /*./about-tagrisso/what-is-tagrisso.html Style*/
  /*about-tagrisso/how-to-take-tagrisso.html*/
  /*./about-tagrisso/how-to-take-tagrisso.html*/
  /*results-with-tagrisso/how-tagrisso-may-help.html Style*/
  .clinical-trial-results .intro-bg-content-wrapper {
    margin-top: -38%;
    padding: 57px 52px 45px 61px;
  }
  /*./results-with-tagrisso/how-tagrisso-may-help.html Style*/
  /*/
    results-with-tagrisso/safety-information.html Style*/
  .safety-information .intro-bg-content-wrapper {
    margin-top: -43%;
  }
  /*./results-with-tagrisso/safety-information.html Style*/
  /*support/resources.html*/
  .patient-resources .intro-bg-content-wrapper {
    margin-top: -44%;
    position: absolute;
    left: 50%;
  }
  /*./support/resources.html*/
  /*support/sign-up-for-support.html Style*/
  .sign-up-for-support .intro-bg-content-wrapper {
    margin-top: -44%;
  }
  /*./support/sign-up-for-support.html Style*/
  /*support/financial-support.html Style*/
  .financial .intro-bg-content-wrapper {
    max-width: 70%;
    width: 70%;
    margin-top: -44%;
    padding: 30px 12px 15px 50px;
    position: absolute;
    left: 42%;
  }
  /*./support/financial-support.html Style*/
  /*tagrisso-as-a-second-treatment.html*/
  .tagrisso-as-a-second-treatment .intro-bg-content-wrapper {
    max-width: 65%;
    width: 65%;
    margin-top: -44%;
    padding: 39px 44px 16px 44px;
    left: 50%;
    position: absolute;
  }
  /*./tagrisso-as-a-second-treatment.html*/
  /*support/support-for-loved-ones.html*/
  .support-for-loved-ones .intro-bg-content-wrapper {
    max-width: 65%;
    margin-top: -44%;
    width: 65%;
    position: absolute;
    left: 45%;
  }
  /*./support/support-for-loved-ones.html*/
  /*Exit Ramp*/
  div#exitdialog {
    left: 27.5% !important;
        //z-index: 99999991 !important;
  }
  /*Exit Ramp*/
  span.no-show {
    margin: -3.5px;
    visibility: hidden;
  }
  body.home.home.home1 .intro-bg-wrapper.background-desktop-only {
    background-position-y: 0;
    padding: 22% 0%;
  }
  body.home.home.home1 p.TAGRISSO-is-a-once-d-footnote {
    top: 370px;
  }
}

@media (min-width: 1366px) {
  /*Home Page Style*/
  .home .intro .intro-bg-content-wrapper {
    margin-top: -106.7%;
  }
  /*./Home Page Style*/
  /*understanding-lung-cancer/diagnosis-and-testing.html*/
  .diagnosis-and-testing .intro-bg-content-wrapper {
    margin-top: -43.5%;
  }
  /*./understanding-lung-cancer/diagnosis-and-testing.html*/
}

@media (min-width: 1440px) {
  /*Home Page Style*/
  .home .intro .intro-bg-content-wrapper {
    margin-top: -112.6%;
  }
  /*./Home Page Style*/
  #backToTop {
    left: calc(50% + 630px);
  }
  #scrollDown {
    left: calc(50% + 613px);
  }
  /*understanding-lung-cancer/diagnosis-and-testing.html*/
  .diagnosis-and-testing .intro-bg-content-wrapper {
    margin-top: -45%;
  }
  /*./understanding-lung-cancer/diagnosis-and-testing.html*/
  /*about-tagrisso/how-to-take-tagrisso.html*/
  .how-to-take-tagrisso .intro-bg-content-wrapper {
    margin-top: -46.15%;
  }
  /*./about-tagrisso/how-to-take-tagrisso.html*/
}

@media (min-width: 768px) {
  .two-col-callouts .doseSection-content-wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .two-col-callouts .doseSection-content-wrapper .bottomalign {
    width: 100%;
    position: absolute;
    bottom: 70px;
    left: 0;
  }
  .margin70bottom {
    margin-bottom: 70px !important;
  }
}

@media (width: 1280px) {
  .home .intro .intro-bg-content-wrapper {
    margin-top: -99%;
  }

  #topBanner {
    margin-top: 1% !important;
}

}


/* ie specific media query */

@media screen and (min-width:0\0) {
  .footerFlagline {
    background-position: left;
    max-width: none;
  }
}

@media screen and (max-width: 360px) {
  div#exitdialog {
    top: 10px!important;
  }
                 .tagrissopgcallout .copyBandTxt {
    width: 78% !important;
  }

}

@media screen and (min-width:1280px\0) {
  span.no-show {
    margin: -3.5px;
    visibility: hidden;
  }
}

@media screen and (min-width: 414px) and (max-width: 767px) {
  .strips_sprite3 {
    right: 45px;
  }
}

@media screen and (min-width: 767px) and (max-width: 800px) {
  .support-for-loved-ones .help-with-tumor .parsys1 p {
    max-width: 310px;
  }
}

@media screen and (min-height: 500px) and (min-width: 1366px) {
  .home1 .intro-bg-wrapper.background-desktop-only {
    height: 400px;
  }
}

@media screen and (min-height: 600px) and (min-width: 1440px) {
  .home1 .intro-bg-wrapper.background-desktop-only {
    height: 526px;
  }
  .home1 .intro-bg-wrapper.background-desktop-only {
    background-position-y: -60px;
  }
}

@media screen and (min-height: 800px) and (min-width: 1440px) {
  .home1 .intro-bg-wrapper.background-desktop-only {
    height: 626px;
  }
  .home1 .intro-bg-wrapper.background-desktop-only {
    background-position-y: 0px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .home1 .intro-bg-wrapper.background-desktop-only {
    height: 334px;
  }
  .home1 .intro-bg-wrapper.background-desktop-only {
    background-position-y: 0px;
  }
  .tagrissopgcallout .tagnotepadIcon {
    display: table-cell;
    vertical-align: middle;
    padding: 20px 0px 0 54px;
  }
  .tagrissopgcallout .copyBandTxt {
    width: 83% !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1024px) {
  .home1 .intro-bg-wrapper.background-desktop-only {
    height: 431px;
  }
  .home1 .intro-bg-wrapper.background-desktop-only {
    background-position-y: 0px;
  }
}

@media screen and (min-width: 1440px) and (max-width: 5000px) {
  .home p.TAGRISSO-is-a-once-d-footnote {
    top: 416px;
  }
  .home p.TAGRISSO-is-a-once-d.Second {
    top: 355px;
  }
  .home p.TAGRISSO-is-a-once-d {
  }
  body.home.home.home1 p.TAGRISSO-is-a-once-d-footnote {
    top: 440px;
  }
  .home p.for-people {
    top: 206px;
  }
  .home h4.TAGRISSO-osimertini {
    top: 258px;
  }
  .home .strips_sprite3 {
    top: 100px;
  }
}

@media screen and (min-width: 1440px) {
  section.intro {
    position: relative;
  }
  .safety-information .intro-bg-content-wrapper {
    margin-top: -46%;
  }
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper {
    margin-top: -45.9%;
  }
  .clinical-trial-results .intro-bg-content-wrapper {
    margin-top: -41%;
  }
  .types-of-lung-cancer .intro-bg-content-wrapper {
    margin-top: -46%;
  }
  .diagnosis-and-testing .intro-bg-content-wrapper {
    margin-top: -46%;
  }
  .sign-up-for-support .intro-bg-content-wrapper {
    margin-top: -45.735%;
  }
  .patient-resources .intro-bg-content-wrapper {
    margin-top: -46%;
  }
  .support-for-loved-ones .intro-bg-content-wrapper {
    margin-top: -46%;
  }
  .financial .intro-bg-content-wrapper {
    margin-top: -46%;
  }
  .tagrisso-as-a-second-treatment .intro-bg-content-wrapper {
    margin-top: -45%;
  }
}


/*Tagrisso Phase II Updates - 19March 2019*/

.home-page-wrapper {
  position: relative;
}

.home-page-wrapper .homepagecallout {
  width: 75%;
  padding: 20px 10px 20px 10px;
  position: absolute;
  left: 14%;
  bottom: -45px;
  -webkit-box-shadow: -2px 9px 20px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: -2px 9px 20px 0px rgba(0, 0, 0, 0.16);
  box-shadow: -2px 9px 20px 0px rgba(0, 0, 0, 0.16);
  background: rgba(234, 234, 234, 1);
  background: -moz-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(234, 234, 234, 1)), color-stop(99%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
  background: -webkit-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  background: -o-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  background: -ms-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(to right, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#ffffff', GradientType=1);
}

.homepagecallout .calloutTxt {
  line-height: 24px;
  font-size: 18px;
  font-family: Nunito-Bold;
  color: rgb(91, 17, 121);
  text-align: left;
}

.homepagecallout .notepadIcon {
  margin-right: 30px;
  margin-left: 30px;
  display: inline-block;
  width: 40px;
  float: left;
}

.tagrissopgcallout {
  width: 100%;
  background-color: #5b1179;
  margin: 0 auto;
  margin-left: 0px !important;
  margin-right: 0px !important;
  text-align: center !important;
  padding: 25px 20px 15px 20px;
}

.tagrissopgcallout .tagnotepadIcon {
  text-align: left !important;
  top: -16px;
  position: relative;
}

.tagrissopgcallout .copyBandTxt {
  line-height: 24px;
  font-size: 20px;
  font-weight: normal;
  font-family: Nunito-ExtraBold;
  color: #fbfbfb;
  text-align: left;
  width: 73%;
  display: inline-block;
  margin-left: 25px;
}

.biomarkercallout {
  width: 100%;
  background-color: #5b1179;
  margin: 0 auto;
  margin-left: 0px !important;
  margin-right: 0px !important;
  text-align: center !important;
  padding: 25px 20px;
}

.biomarkercallout .tagnotepadIcon {
  text-align: center !important;
  margin-right: 30px;
  margin-left: 30px;
  display: inline-block;
  width: 40px;
}

.biomarkercallout .copyBandTxt {
  line-height: 24px;
  font-size: 22px;
  font-weight: normal;
  font-family: Nunito-Bold;
  color: #fbfbfb;
  padding: 12px 0 0 0;
  display: inline-block;
}

.biomarkerCallouttwoWrap {
  margin: 0 auto;
  width: 80%;
}

.biomarkercallouttwo {
  width: 100%;
  background-color: #5b1179;
  margin: 0 auto;
  margin-left: 0px !important;
  margin-right: 0px !important;
  text-align: center !important;
  padding: 25px;
  position: relative;
  top: 60px;
}

.biomarkercallouttwo .tagnotepadIcon {
  text-align: center !important;
  margin-right: 30px;
  margin-left: 30px;
  display: inline-block;
  width: 40px;
  margin: 15px 30px 0 30px;
}

.biomarkercallouttwo .copyBandTxt {
  line-height: 24px;
  font-size: 22px;
  font-weight: normal;
  font-family: Nunito-Bold;
  color: #fbfbfb;
  width: 100%;
  margin: 0 0 0 2px;
  display: inline;
  text-align: left;
}

#topBanner {
  width: auto;
  position: absolute;
  right: 0px;
  z-index: 15;
  margin-top: 2%;
  opacity: 0.83;
}

.whatistagfootnote {
  line-height: 16px;
  font-size: 12px;
  font-weight: normal;
  color: #464646;
  font-family: Nunito-Regular;
}

.tagrissoDefSection {
  position: relative;
}

.support-for-loved-ones .intro-bg-wrapper {
  position: relative;
}

.fontSize10 {
  font-size: 10px !important;
  padding-right: 5px;
}

.biomakerList .dot {
  height: 5px;
  width: 5px;
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 2px;
}

.biomakerList {
  margin-right: 10px;
  display: inline-block;
  font-family: 'Nunito-Bold';
  font-size: 16px;
  line-height: 26px;
}

.clinicaltrialCallout {
  width: 100%;
  padding: 20px 10px 20px 10px;
  text-align: center;
  background: -moz-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, rgba(234, 234, 234, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
  background: -webkit-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background: -o-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background: -ms-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 100%);
  background: linear-gradient(to right, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#ffffff', GradientType=1);
  background-image: linear-gradient(79deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
}

.clinicaltrialCallout .copyBandTxt {
  line-height: 31px;
  font-size: 22px;
  font-family: Nunito-Regular;
  color: #4a4a4a;
  text-align: left;
  margin-left: 0px;
}

.clinicaltrialCallout .footnoteBandTxt {
  color: #000000;
  font-size: 11px;
  font-family: 'Nunito-Regular';
  line-height: 15px;
  margin-left: 2px;
  display: block;
  text-align: left;
}

.clinicaltrialCallout .tagnotepadIcon {
  margin-right: 29px;
  margin-left: 30px;
  display: inline-block;
  width: 40px;
  top: -12px;
  position: relative;
}

.people-wrapper {
  display: inline-block;
}

.provenBg {
  background-image: linear-gradient(79deg, #eaeaea, #ffffff);
  box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
}

.provenWrapper .col-sm-8,
.provenWrapper .col-sm-4 {
  padding-right: 4px;
  padding-left: 0px;
}

.howtrailMainWrap .col-sm-8,
.howtrailMainWrap .col-sm-4 {
  padding-right: 0px;
  padding-left: 0px;
}

.resultstudyWrap .col-sm-8,
.resultstudyWrap .col-sm-4 {
  padding-right: 0px;
  padding-left: 0px;
}

.provenWrapper {
  padding-top: 101px;
  padding-bottom: 86px;
}

.ProvenTextWrap {
  margin: 0px 0px;
}

.ProvenImgWrap {
  margin: 35px 0px;
  float: right;
}

.provencontent {
  margin-top: 30px;
}

.howtrailMainWrap {
  padding: 100px 0px;
}

.howtrailWrap {
  margin: 0px;
  width: 75%;
}

.howtrailImgWrap {
  margin: 40px 0px;
}

.moreabtstudylink,
a.moreabtstudylink:focus,
a.moreabtstudylink:hover {
  border: 1.5px solid #5b1179;
  padding: 7px 19px;
  color: #5b1179;
  font-family: Nunito-SemiBold;
  font-size: 16px;
  text-decoration: none;
}

.moreabtWrap {
  margin-top: 30px;
  margin-bottom: 30px;
}

.whopartitxt {
  margin-top: 35px;
  margin-bottom: 20px;
  color: #5b1179;
  font-size: 20px;
  font-family: 'Nunito-Regular';
}

.howtrailWrap p {
  margin-top: 19px;
}

.howtrailWrap p.mediantext {
  color: #000000;
  font-size: 11px;
  font-family: 'Nunito-Regular';
  line-height: 17px;
}

.resultstudyWrap {
  padding: 100px 0px;
}

.resultsImgWrap {
  margin: 40px 0px;
}

.resultsImgWrap .resultimg {
  //margin-left: 20px;
  display: block;
}

.resultcontentWrap {
  margin: 0px;
  width: 80%;
}

.resultsImgWrap .seventxt {
  color: #5b1179;
  font-size: 20px;
  font-family: 'Nunito-Regular';
  line-height: 27px;
  margin-top: 30px;
  //text-align: center;
  display: inline-block;
}

.resultsImgWrap .extraBold {
  color: #5b1179;
  font-size: 20px;
  font-family: 'Nunito-ExtraBold';
}

.max-960 {
  max-width: 960px;
}

.whencancerTxt {
  margin: 30px 0px 10px 0;
}

.lungcancerBulletWrap {
  margin: 10px 0px 10px 0px;
}

.lungBullet {
  height: 38px;
  width: 38px;
  border: 1px solid #7e00c5;
  border-radius: 50%;
  display: inline-block;
  line-height: 36px;
  color: #7e00c5;
  font-family: Nunito-Bold;
  font-size: 24px;
  text-align: center;
}

.lungcancerTxt {
  line-height: 26px;
  color: #000000;
  font-family: Nunito-Regular;
  font-size: 16px;
  margin-left: 50px;
  position: relative;
  top: -33px;
}

.lungCancerWrap {
  padding: 95px 20px 100px 20px;
  margin-bottom: 75px;
}

.lungcancerTreat {
  margin: 20px 0px 20px 0px;
}

.biomarker-testing-sec .biomarkerWrap {
  padding: 100px 0px 100px 0px;
}

.biomarker-testing-why .whyitCriticalWrap {
  padding: 120px 0 0 0;
}

.biomarker-testing-why .col-sm-7 {
  padding: 0;
}

.mostnslcWrap {
  padding: 100px 0px 55px 0px;
}

.mostcommonWrap p {
  margin-top: 20px;
}

@media (min-width: 768px) and (max-width:1024px) {
  .support-for-loved-ones .intro-bg-content-wrapper {
    max-width: 60%;
    width: 60%;
    margin-top: -34.075%;
    padding: 14px 14px 14px;
  }
  .tagrissopgcallout .tagnotepadIcon {
    text-align: left !important;
    top: -28px;
    position: relative;
  }
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper p:nth-of-type(1) {
    letter-spacing: 0.2px;
  }
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper {
    max-width: 70%;
    width: 70%;
    margin-top: -35.075%;
    position: absolute;
    left: 35%;
  }
  .what-is-tagrisso .tagrissoDefSection .tagrissopgcallout {
    padding: 25px 20px 15px 20px;
    margin: 35px 0 0 0;
  }
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper {
    background-image: linear-gradient(72deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    padding: 35px 40px 25px 40px;
  }
  .patient-resources .intro-bg-content-wrapper {
    background-image: linear-gradient(65deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 50%;
    width: 50%;
    margin-top: -34%;
    padding: 14px 14px 14px;
    position: absolute;
    left: 42%;
  }
  .home-page-wrapper {
    position: relative;
  }
  .home-page-wrapper .homepagecallout {
    bottom: -135px;
    padding: 20px 10px 20px 10px;
    position: absolute;
    width: 100%;
    left: 0%;
    -webkit-box-shadow: -2px 9px 20px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: -2px 9px 20px 0px rgba(0, 0, 0, 0.16);
    box-shadow: -2px 9px 20px 0px rgba(0, 0, 0, 0.16);
    background: rgba(234, 234, 234, 1) !important;
    background: -moz-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(234, 234, 234, 1)), color-stop(99%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    background: -o-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    background: -ms-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to right, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#ffffff', GradientType=1);
  }
  .homepagecallout .notepadIcon {
    margin-right: 30px;
    margin-left: 30px;
    display: inline-block;
    width: 40px;
    height: 50px;
    float: left;
    top: 5px;
    position: relative;
  }
  .homepagecallout .calloutTxt {
    line-height: 26px;
    font-size: 14px;
    font-family: Nunito-Bold;
    color: rgb(91, 17, 121);
    text-align: left;
  }
  .types-of-lung-cancer .intro-bg-content-wrapper {
    margin-top: -34.5%;
    max-width: 60%;
    width: 60%;
  }
  .clinical-trial-results .intro-bg-content-wrapper {
    position: absolute;
    left: 37%;
  }
  .support-for-loved-ones .intro-bg-content-wrapper {
    max-width: 56%;
    width: 56%;
    margin-top: -34.075%;
    padding: 14px 14px 14px;
    position: absolute;
    left: 39%;
  }
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper {
    max-width: 70%;
    width: 70%;
    margin-top: -35.075%;
    position: relative;
    left: 34%;
  }
  .provenWrapper {
    padding: 140px 30px 86px 30px;
  }
  .provenWrapper .col-sm-8,
  .provenWrapper .col-sm-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
  .howtrailMainWrap {
    padding: 100px 20px;
  }
  .resultstudyWrap {
    padding: 100px 20px;
  }
  .howtrailMainWrap .col-sm-8,
  .howtrailMainWrap .col-sm-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
  .resultstudyWrap .col-sm-8,
  .resultstudyWrap .col-sm-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
  .biomarkercallout .copyBandTxt {
    margin-left: 0px;
  }
  .biomarkercallouttwo .copyBandTxt {
    width: 80%;
    margin-left: 0px;
    display: inline-block;
    text-align: left;
  }
  .biomarkercallouttwo .tagnotepadIcon {
    text-align: left !important;
    margin-right: 30px;
    margin-left: 30px;
    width: 40px;
    float: left;
    height: 110px;
  }
  .resultsImgWrap .resultimg {
    margin-left: 0px;
    display: block;
  }
}

@media screen and (min-width:992px) and (max-width:1024px) {
  .homepagecallout {
    width: 80% !important;
    padding: 20px 10px 20px 10px;
    position: absolute;
    left: 14% !important;
    bottom: -58px !important;
    -webkit-box-shadow: -2px 9px 20px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: -2px 9px 20px 0px rgba(0, 0, 0, 0.16);
    box-shadow: -2px 9px 20px 0px rgba(0, 0, 0, 0.16);
    background: rgba(234, 234, 234, 1) !important;
    background: -moz-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(234, 234, 234, 1)), color-stop(99%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    background: -o-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    background: -ms-linear-gradient(left, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to right, rgba(234, 234, 234, 1) 0%, rgba(255, 255, 255, 1) 99%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#ffffff', GradientType=1);
  }
  .homepagecallout .calloutTxt {
    line-height: 24px;
    font-size: 18px;
    font-family: Nunito-Bold;
    color: rgb(91, 17, 121);
    text-align: left;
  }
  .homepagecallout .notepadIcon {
    margin-right: 30px;
    margin-left: 30px;
    display: inline-block;
    width: 40px;
    float: left;
  }
  .what-is-tagrisso .tagrissoDefSection .doseSection-content-wrapper {
    max-width: 70%;
    width: 70%;
    margin-top: -32.075%;
    position: absolute;
    left: 33%;
  }
  .clinical-trial-results .intro-bg-content-wrapper {
    max-width: 70%;
    margin-top: -28.735%;
    width: 70%;
    position: absolute;
    left: 33%;
    padding: 45px 52px 24px 43px;
  }
  .sign-up-for-support .intro-bg-content-wrapper {
    max-width: 55%;
    width: 55%;
    padding: 40px 40px 30px 40px;
    position: absolute;
    left: 47%;
  }
  .sign-up-for-support .intro-bg-content-wrapper {
    background-image: linear-gradient(70deg, #eaeaea, #ffffff);
    box-shadow: 5px 20px 34px 2px rgba(0, 0, 0, 0.16);
    max-width: 55%;
    width: 55%;
    margin-top: -32.075%;
    padding: 40px 25px 30px 25px;
    position: absolute;
    left: 47%;
  }
  .how-to-take-tagrisso .intro-bg-content-wrapper {
    max-width: 50%;
    width: 50%;
    position: absolute;
    left: 50%;
    margin-top: -31.075%;
  }
  .support-for-loved-ones .intro-bg-content-wrapper {
    margin-top: -31.075%;
  }
  .financial .intro-bg-content-wrapper {
    max-width: 65%;
    width: 65%;
    margin-top: -32.3%;
    padding-right: 24px;
    left: 33%;
  }
  .patient-resources .intro-bg-content-wrapper {
    margin-top: -31%;
  }
  .safety-information .intro-bg-content-wrapper {
    max-width: 60%;
    width: 60%;
    position: absolute;
    left: 42%;
    margin-top: -32%;
  }
  .diagnosis-and-testing .intro-bg-content-wrapper {
    max-width: 60%;
    width: 60%;
    margin-top: -32.38%;
    position: absolute;
    left: 40%;
  }
  .provenWrapper {
    padding-top: 101px;
    padding-bottom: 86px;
  }
  .biomarkercallouttwo .tagnotepadIcon {
    height: 85px;
    margin-top: 11px;
  }
  .biomarkercallouttwo .copyBandTxt {
    margin: 0;
  }
  .clinicaltrialCallout .tagnotepadIcon {
    margin-right: 29px;
    margin-left: 30px;
    display: inline-block;
    top: -38px;
    position: relative;
  }
  .people-wrapper {
    display: inline-block;
    width: 88%;
  }
  .clinicaltrialCallout .copyBandTxt {
    text-align: left;
    margin-left: 0px;
  }
  .clinicaltrialCallout .footnoteBandTxt {
    margin-left: 10px;
    display: block;
    text-align: left;
  }
}

@media (max-width: 767px) {
  #topBanner {
    width: auto;
    position: relative;
    right: 0px;
    z-index: 99;
    margin-top: 2%;
    opacity: 0.83;
  }
  .homepagecallout {
    width: 100% !important;
    padding: 20px 10px 20px 10px;
    position: relative !important;
    bottom: 0px !important;
    text-align: left;
    background: #5b1179 !important;
    left: 0% !important;
  }
  .homepagecallout .calloutTxt {
    line-height: 18px;
    font-size: 14px;
    font-family: Nunito-Bold;
    color: #ffffff;
    text-align: left;
  }
  .homepagecallout .notepadIcon {
    margin-right: 15px;
    margin-left: 20px;
    display: inline-block;
    width: 40px;
    height: 105px;
    margin-top: 25px;
  }
  .tagrissopgcallout .copyBandTxt {
    line-height: 18px;
    font-size: 14px;
    font-weight: normal;
    font-family: Nunito-ExtraBold;
    color: #fbfbfb;
    text-align: left;
    width: 80%;
    display: inline-block;
    margin: 0 0 0 20px;
  }
  .what-is-tagrisso-banner img {
    width: 100%;
  }
  .what-is-tagrisso-banner .col-xs-12 {
    width: 100%;
    position: relative;
  }
  .what-is-tagrisso-banner .col-xs-12 .span-actual-size {
    position: absolute;
    bottom: 12px;
    left: 15px;
    font-size: 12px;
  }
  .tagrissopgcallout {
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding: 15px 35px;
    float: left;
  }
  .tagrissopgcallout .tagnotepadIcon {
    top: 33px;
    float: left;
    display: inline-block;
  }
  .tagrisso-help .parsys2 p:nth-of-type(2) {
    text-align: center;
  }
  .Mobile-dosing {
    margin-top: 25px;
  }
  .provenWrapper .col-xs-12 {
    padding-right: 25px;
    padding-left: 25px;
  }
  .howtrailMainWrap .col-xs-12 {
    padding-right: 25px;
    padding-left: 25px;
  }
  .resultstudyWrap .col-xs-12 {
    padding-right: 25px;
    padding-left: 25px;
  }
  .ProvenImgWrap {
    margin: 40px 0px 15px 0;
    float: none;
    text-align: center;
  }
  .provenWrapper {
    padding-top: 0px;
    padding-bottom: 30px;
  }
  .shrink-tumor .parsys1 .ProvenImgWrap img {
    margin: 0 auto;
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    max-width: 35%;
    width: 35%;
  }
  .ProvenTextWrap h2 {
    line-height: 32px;
  }
  .howtrailWrap {
    margin: 0px;
    width: 100%;
  }
  .howtrailMainWrap {
    padding: 30px 0px 0 0;
  }
  .resultstudyWrap {
    padding: 30px 0px;
  }
  .resultcontentWrap {
    margin: 0px;
    width: 100%;
  }
  .resultsImgWrap .resultimg {
    margin-left: 0px;
    display: block;
  }
  .clinicaltrialCallout {
    width: 100%;
    padding: 30px 20px 30px 20px;
  }
  .clinicaltrialCallout .tagnotepadIcon {
    margin-right: 0px;
    margin-left: 0px;
    display: block;
    width: 40px;
    margin: 0 auto;
    top: 0px;
    position: initial;
  }
  .clinicaltrialCallout .copyBandTxt {
    line-height: 31px;
    font-size: 22px;
    font-family: Nunito-Regular;
    color: #4a4a4a;
    margin-left: 0px;
    position: initial;
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  #topBanner .page-title {
    padding: 6px 15px;
  }
  .biomarker-testing-sec .biomarkerWrap {
    padding: 20px 10px 20px 10px;
  }
  .biomarker-testing-why img {
    padding: 20px 0px 20px 0px;
    margin: 35px auto 25px auto;
    width: 40%;
  }
  .lungcancerTxt {
    top: -43px;
    margin-bottom: 0;
  }
  .lungcancerBulletWrap {
    margin: 0 0 -17px 0;
  }
  .diagnosis-and-testing .intro-bg-content-wrapper {
    padding: 30px 15px 20px 14px;
  }
  .biomarker-testing-why .doseSection-content-wrapper {
    padding-bottom: 0px;
    padding: 0px 25px;
  }
  .biomarker-testing-why .parsys2 h2 {
    padding-bottom: 15px;
  }
  .biomarkercallout .tagnotepadIcon {
    text-align: center !important;
    margin-right: 0px;
    margin-left: 0px;
    display: block;
    width: 40px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .biomarkercallout .copyBandTxt {
    line-height: 28px;
  }
  .mostnslcWrap {
    padding: 30px 25px 30px 25px;
  }
  .biomarkerCallouttwoWrap {
    margin: 0 auto;
    width: 100%;
  }
  .biomarkercallouttwo .tagnotepadIcon {
    text-align: center;
    margin-right: 0px;
    margin-left: 0px;
    display: block;
    width: 40px;
    margin: 0 auto;
    margin-bottom: 25px;
  }
  .biomarkercallouttwo .copyBandTxt {
    line-height: 24px;
  }
  .lungCancerWrap {
    padding: 95px 25px 0px 25px;
    margin-bottom: 75px;
  }
  .resultsImgWrap {
    margin: 40px 0px;
    text-align: center;
    margin: 0 auto;
  }
  .resultsImgWrap .resultimg {
    margin-left: 0px;
    display: inline-block;
    margin-top: 50px;
  }
  .financial .contactSection-content-wrapper {
    padding: 40px 10px 30px 10px;
  }
  .financial-wrap .container {
    padding-left: 0px;
    padding-right: 0px;
  }
  .financial .contactSection-content-wrapper h3 {
    line-height: 30px;
    font-size: 23px;
  }
  .biomarker-testing-sec img {
    max-width: 90%;
  }
  img.img-responsive.tab-roll {
    width: 165px;
    margin: 15px auto 0 auto;
  }
  .patient-resources .faceBookSection-content-wrapper a.btn,
  .support-for-loved-ones .faceBookSection-content-wrapper a.btn {
    padding: 10px 5px;
    font-size: 16px;
    width: 70%;
  }
  .intro-bg-content-wrapper .AZ-360-logo {
    margin: inherit;
  }
  .display-block {
    display: block;
  }
  .clinicaltrialCallout .footnoteBandTxt {
    margin-left: 8px;
    text-indent: -5px;
    text-align: left;
  }
  .col-xs-12.nsclc-pad {
    padding-right: 20px;
  }
}

@supports (-ms-ime-align:auto) {
  .slides p {
    font-size: 12px;
  }
  #topBanner {
    //margin-top: 1%;
  }

#signup-header {
    margin-top: -3px;
}


}



     @media all and (-ms-high-contrast:none)
     {
             #signup-header{margin-top:-3px;}

     }


@media screen and (min-width:320px) and (max-width:320px) {
  .strips_sprite3 {
    right: 20px;
  }
  .strips_sprite3 .mobile-TAGRISSO-is-changing span {
    margin-left: 105px;
  }
  .strips_sprite3 .mobile-TAGRISSO-is-changing {
    font-size: 14px;
    top: 8px;
    left: 5px;
  }
  .strips_sprite3 .mobile-sprite3 {
    width: 174px;
    margin-left: 95px;
  }
  .strips_sprite3 .mobile-sprite31 {
    width: 200px;
    margin-left: -10px;
  }
  .exitbody h3 {
    font-size: 17px;
    line-height: 1.08;
  }
  #exitdialog p {
    font-size: 13px !important;
    margin: 0 !important;
  }
.tagrissopgcallout {
    display: flex;
}

.tagrissopgcallout .tagnotepadIcon {
    top: 45px;
        }

  .home .connectSection .doseSection-content-wrapper {
    padding-left: 17px;
  }
}

@media (width:400px){


.tagrissopgcallout .tagnotepadIcon {
    top: 20px;

        }
        }


