/* GLOBAL */

/* stylelint-disable selector-max-specificity */
/* stylelint-disable selector-max-id */
/* stylelint-disable property-no-vendor-prefix */
/* stylelint-disable at-rule-no-vendor-prefix */

.psa {
  position: relative;
  width: 100%;
  font-family: 'Work Sans', sans-serif;
  display: flex;
  flex-direction: column-reverse;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.psa--diagnosed,
.psa--undiagnosed {
  min-height: 650px;
}

@media only screen and (min-width: 768px) {
  .psa--diagnosed,
  .psa--undiagnosed {
    min-height: 768px;
  }
}

@media only screen and (min-width: 1024px) {
  .psa--diagnosed,
  .psa--undiagnosed {
    flex-direction: column;
    min-height: 100vh;
  }
}

.psa--intro,
.psa--diagnosed,
.psa--undiagnosed {
  display: none;
}

.psa--intro.active,
.psa--diagnosed.active,
.psa--undiagnosed.active {
  display: flex;
  opacity: 1;
}

.psa__action {
  background: transparent;
  border: 0;
  box-shadow: 0 0 0 transparent;
  padding: 0;
  line-height: 100%;
  opacity: 1;
}

.psa__icon {
  display: inline-block;
}

.psa__icon path {
  color: black;
  fill: black !important;
  transition: fill 0.5s;
}

.psa__icon--left-arrow path,
.psa__icon--right-arrow path {
  fill: #ffc500 !important;
}

.psa__icon--big-x path {
  fill: #009dd2 !important;
}

.psa__underline path {
  fill: #fff !important;
  overflow: visible;
}

.psa__icon--start-arrow-stacked path {
  fill: #fff !important;
}

.psa__icon--info-circle path {
  fill: #fff !important;
}

.psa__icon--left-arrow path:nth-child(2),
.psa__icon--right-arrow path:nth-child(2) {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .psa__icon--left-arrow path:nth-child(2),
  .psa__icon--right-arrow path:nth-child(2) {
    display: inline-block;
  }
}

.psa--diagnosed .psa__icon--hamburger path,
.psa--undiagnosed .psa__icon--hamburger path {
  fill: rgb(252, 230, 230) !important;
}

.psa--intro .psa__icon--hamburger path {
  fill: #009dd2 !important;
}

.psa__icon--big-x:hover path,
.psa--intro .psa__icon--hamburger:hover path {
  fill: #001970 !important;
}

.psa--diagnosed .psa__icon--hamburger:hover path,
.psa--undiagnosed .psa__icon--hamburger:hover path {
  fill: #ffc500 !important;
}

.psa__action:hover .psa__icon--start-arrow-stacked path {
  fill: #ffc500 !important;
}

.psa__action:hover .psa__icon--info-circle path {
  fill: #ffc500 !important;
}

.psa__action:hover:not([disabled]) .psa__icon--left-arrow path,
.psa__action:hover:not([disabled]) .psa__icon--right-arrow path {
  fill: #fff !important;
}

.psa__icon--hamburger {
  width: 46px;
  height: 24px;
}

.psa__icon--big-x {
  width: 24px;
  height: 24px;
}

.psa__hamburger {
  z-index: 20;
  position: absolute;
  right: 1.25em;
  top: 1.5em;
}

@media only screen and (min-width: 1024px) {
  .psa__hamburger {
    right: 0;
    top: calc(2em - 3px);
  }
}

.psa__menu {
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  box-shadow: 0 3px 6px #00000029;
  padding: 1.5em;
}

@media only screen and (min-width: 1024px) {
  .psa__menu {
    padding: 2em 0 3em;
  }
}

.psa__menu::before,
.psa__menu::after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100%;
  background-color: #fff;
}

.psa__menu::before {
  left: -50vw;
}

.psa__menu::after {
  right: -50vw;
}

.psa__menu.is-closed {
  display: none;
  visibility: hidden;
}

.psa__menu.is-open {
  display: flex;
  flex-direction: column;
  visibility: visible;
}

@media only screen and (min-width: 1024px) {
  .psa__menu.is-open {
    display: flex;
    flex-direction: row;
    visibility: visible;
    justify-content: space-evenly;
  }
}

.psa__menu-headline {
  font-weight: bold;
  color: #001970;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
  margin: 0 0 0.5em;
}

@media only screen and (min-width: 1024px) {
  .psa__menu-headline {
    font-size: 1.4rem;
    line-height: 1.2rem;
    margin-right: 2em;
  }
}

.psa__menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.psa__menu-list li {
  border-top: 1px solid #bababa;
  padding: 0;
}

@media only screen and (min-width: 1024px) {
  .psa__menu-list li {
    padding: 0.5em 0;
  }
}

.psa__steps li {
  display: inline-block;
  padding: 0;
  border-top: 1px solid #fff;
  flex-grow: 1;
}

.psa__menu-list li:first-child {
  border-top: 0;
}

.psa__menu-list li a {
  font-weight: normal;
  color: #001970;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  line-height: 1rem;
  transition: color 0.5s;
}

@media only screen and (min-width: 1024px) {
  .psa__menu-list li a {
    font-size: 1rem;
    line-height: 1.2rem;
  }
}

.psa__steps li a {
  position: absolute;
  bottom: -2.4em;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: bold;
  font-size: 0.8rem;
  line-height: 1rem;
  letter-spacing: -0.5px;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  cursor: pointer;
}

.psa a:focus {
  outline: 5px auto -webkit-focus-ring-color;
}

.psa__menu-list li a:hover {
  text-decoration: none;
  color: #009dd2;
}

.psa__menu-column {
  margin: 1.5em 0 0;
}

@media only screen and (min-width: 1024px) {
  .psa__menu-column {
    margin: 0 2em 0 0;
    flex-shrink: 1;
  }
}

.psa__cta--help {
  display: none;
  visibility: hidden;
}

@media only screen and (min-width: 1024px) {
  .psa__cta.psa__cta--help {
    display: inline-block;
    visibility: visible;
    position: absolute;
    bottom: 2em;
    right: 0;
    z-index: 100;
    background: #fff 0% 0% no-repeat padding-box;
    border: 0;
    box-shadow: 0 3px 6px #00000029;
    color: #001970;
    text-transform: uppercase;
    width: auto;
    min-width: 180px;
  }
}

.psa__menu .psa__cta--help {
  display: inline-block;
  visibility: visible;
  position: relative;
  bottom: auto;
  left: auto;
  background: #009dd2 0% 0% no-repeat padding-box;
  color: #fff;
  text-transform: uppercase;
  margin-top: 3em;
  width: auto;
  min-width: 180px;
  border: 0;
}

.psa__big-x {
  position: absolute;
  right: 1.5em;
  top: 1.5em;
}

@media only screen and (min-width: 1024px) {
  .psa__big-x {
    right: 0;
    top: calc(2em - 3px);
  }
}

.psa__headline {
  font-family: 'OdaibaScript-Regular', 'Work Sans', sans-serif;
  font-weight: normal;
  font-size: 3rem;
  line-height: 2.5rem;
  color: #001970;
  margin: 0.8em 0 0.75em;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .psa__headline {
    font-size: 4rem;
    line-height: 3.5rem;
    margin: 1em 0 0;
  }
}

.psa__subheadline {
  font-family: 'OdaibaScript-Regular', 'Work Sans', sans-serif;
  font-weight: normal;
  font-size: 1.75em;
  line-height: 1.75rem;
  letter-spacing: 0;
  color: #fff;
  transform: rotate(-2deg);
  margin: 0 0 0.5em;
}

@media only screen and (min-width: 1024px) {
  .psa__subheadline {
    font-size: 2.15rem;
    line-height: 1.85rem;
  }
}

@media only screen and (min-width: 1200px) {
  .psa__subheadline {
    font-size: 3rem;
    line-height: 2.5rem;
  }
}

.psa__subheadline b {
  display: inline-block;
  font-weight: normal;
  width: auto;
}

.psa__subheadline b.psa__no-break {
  white-space: nowrap;
}

.psa--undiagnosed #psa-undiagnosed-slide-1 .psa__underline path {
  stroke: #fff;
  stroke-width: 2px;
}

.psa--undiagnosed #psa-undiagnosed-slide-2 .psa__underline path {
  stroke: #fff;
  stroke-width: 2px;
}

.psa--diagnosed #psa-diagnosed-slide-4 .psa__underline path {
  stroke: #fff;
  stroke-width: 2px;
}

.psa--diagnosed #psa-diagnosed-slide-8 .psa__underline path {
  stroke: #fff;
  stroke-width: 3px;
}

.psa__headline .psa__underline {
  display: block;
  margin: 0 auto;
}

.psa__subheadline .psa__underline {
  display: block;
  opacity: 0.4;
  transform: rotate(2deg);
  max-height: 1em;
}

.psa--intro .psa__subheadline .psa__underline {
  width: 2.75em;
  display: block;
  margin: 0.25em auto 0;
  opacity: 0.4;
}

#psa-diagnosed-slide-8 .psa__subheadline .psa__underline {
  margin-top: 0.5rem;
}

#psa-diagnosed-slide-9 .psa__subheadline .psa__underline {
  width: 70%;
}

#psa-diagnosed-slide-10 .psa__subheadline .psa__underline {
  margin-top: 0.5rem;
  width: 70%;
}

#psa-undiagnosed-slide-5 .psa__subheadline .psa__underline {
  width: 50%;
}

@-moz-document url-prefix() {
  .psa__subheadline .psa__underline {
    width: 75%;
  }

  #psa-undiagnosed-slide-2 .psa__subheadline .psa__underline {
    width: 40%;
  }

  #psa-undiagnosed-slide-3 .psa__subheadline .psa__underline {
    width: 70%;
  }

  #psa-undiagnosed-slide-4 .psa__subheadline .psa__underline {
    width: 65%;
  }

  #psa-undiagnosed-slide-5 .psa__subheadline .psa__underline {
    width: 65%;
  }

  #psa-diagnosed-slide-1 .psa__subheadline .psa__underline {
    width: 95%;
  }

  #psa-diagnosed-slide-2 .psa__subheadline .psa__underline,
  #psa-diagnosed-slide-3 .psa__subheadline .psa__underline {
    width: 90%;
  }

  #psa-diagnosed-slide-4 .psa__subheadline .psa__underline {
    width: 65%;
  }

  #psa-diagnosed-slide-5 .psa__subheadline .psa__underline {
    width: 55%;
  }

  #psa-diagnosed-slide-6 .psa__subheadline .psa__underline,
  #psa-diagnosed-slide-7 .psa__subheadline .psa__underline {
    width: 95%;
  }

  #psa-diagnosed-slide-8 .psa__subheadline .psa__underline {
    width: 47%;
  }

  #psa-diagnosed-slide-9 .psa__subheadline .psa__underline {
    width: 70%;
  }

  #psa-diagnosed-slide-10 .psa__subheadline .psa__underline {
    margin-top: 0.5rem;
    width: 50%;
  }
}

.psa__under-line {
  stroke: #fff;
  stroke-width: 7px;
  stroke-linecap: round;
  margin: 0.1em 0 0 -0.15em;
  opacity: 0.4;
  transform: rotate(2deg);
}

.psa__lead {
  font-family: 'Work Sans', sans-serif;
  font-weight: normal;
  font-size: 0.8rem;
  line-height: 1.25rem;
  letter-spacing: 0.1px;
  color: #001970;
  max-width: 700px;
  margin: 2em auto 1em;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .psa__lead {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.psa__sublead {
  font-family: 'Work Sans', sans-serif;
  font-weight: normal;
  font-size: 0.75rem;
  line-height: 1.15rem;
  letter-spacing: 0.1px;
  color: #fff;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .psa__sublead {
    font-size: 0.9rem;
    line-height: 1.3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .psa__sublead {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.psa__cta {
  border: 2px solid #ffc500;
  border-radius: 2em;
  padding: 0.35em 0.55em;
  background-color: transparent;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: normal;
  font-size: 0.8rem;
  line-height: 1.5rem;
  letter-spacing: -0.54px;
  color: #fff;
  margin: 0 0 .5em;
  transition: background-color 0.5s;
}

.psa__cta:hover {
  color: #001970;
  background-color: #ffc500;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .psa__cta {
    margin: 0 0 1em;
  }
}
@media only screen and (min-width: 1024px) {
  .psa__cta {
    font-size: 1rem;
    line-height: 1.5rem;
    width: auto;
    min-width: 300px;
  }
}

.psa__copy {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 1024px) {
  .psa__copy {
    width: calc(35% + 12em);
    padding: 0 12em 5em 0;
    z-index: 1;
  }
}

.psa__slide.psa__slide--icons:not(.active) {
  opacity: 0;
  visibility: visible;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: auto;
  top: 0;
  height: 53vw;
  width: 100%;
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 1024px) {
  .psa__slide.psa__slide--icons:not(.active) {
    opacity: 0;
    visibility: visible;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    height: 90vh;
    width: 70%;
  }
}

.psa__slide.psa__slide--icons.active {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: auto;
  top: 0;
  height: 53vw;
  width: 100%;
  z-index: 0;
  opacity: 1;
  padding: 0;
  margin: 0;
}

@media only screen and (min-width: 1024px) {
  .psa__slide.psa__slide--icons.active {
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
    height: 90vh;
    width: 70%;
  }
}

.psa__canvas .psa__graffiti {
  width: auto;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
}

@media only screen and (min-width: 1024px) {
  .psa__canvas .psa__graffiti {
    opacity: 0.4;
  }
}

.psa__face {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  height: auto;
  z-index: 1;
}

.psa__face::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 5;
  display: inline-block;
  content: '';
  width: 100%;
  height: 60%;
}

.psa__face img {
  height: 100%;
}

@media only screen and (min-width: 1024px) {
  .psa__face::after {
    display: none;
  }
}

/* HOME */

.psa__welcome {
  padding: 1em 2em;
  background: #fff url('/themes/custom/particle/images/psa/graffiti-intro-mobile-v2.svg') center 0.75em no-repeat;
  background-size: cover;
}

@media only screen and (min-width: 1024px) {
  .psa__welcome {
    padding: 2em;
    background: #fff url('/themes/custom/particle/images/psa/graffiti-intro-desktop-v2.svg') center center no-repeat;
    background-size: cover;
  }
}

.psa__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.psa__options {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}

@media only screen and (min-width: 1024px) {
  .psa__options {
    display: flex;
    flex-wrap: nowrap;
    min-height: 375px;
  }
}

.psa__option {
  width: 100%;
  color: #fff;
  padding: 2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  max-height: none;
}

@media only screen and (min-width: 1024px) {
  .psa__option {
    width: 50%;
    padding: 3em;
    align-items: center;
  }
}

.psa__option .psa__cta {
  margin: 0;
  position: absolute;
  top: 2.75em;
  right: 2.5em;
  width: 140px;
}

@media only screen and (min-width: 1024px) {
  .psa__option .psa__cta {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    min-width: 300px;
    margin-top: 1em;
  }
}

.psa__option--diagnosed {
  background: #009dd2;
  position: relative;
}

.psa__option--diagnosed::before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100%;
  background-color: #009dd2;
  left: -50vw;
}

.psa__option--diagnosed::after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100%;
  background-color: #009dd2;
  right: -50vw;
}

@media only screen and (min-width: 1024px) {
  .psa__option--diagnosed::before {
    display: none;
  }

  .psa__option--diagnosed::after {
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    width: 50vw;
    height: 100%;
    background-color: #009dd2;
    right: -50vw;
  }
}

.psa__option--undiagnosed {
  background: #001970;
  position: relative;
}

.psa__option--undiagnosed::before {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100%;
  background-color: #001970;
  left: -50vw;
}

.psa__option--undiagnosed::after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100%;
  background-color: #001970;
  right: -50vw;
}

@media only screen and (min-width: 1024px) {
  .psa__option--undiagnosed::before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    width: 50vw;
    height: 100%;
    background-color: #001970;
    left: -50vw;
  }

  .psa__option--undiagnosed::after {
    display: none;
  }
}

/* DIAGNOSED */

.psa--diagnosed {
  background-color: #009dd2;
}

.psa--diagnosed::before,
.psa--diagnosed::after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100%;
  background-color: #009dd2;
  z-index: -1;
}

.psa--diagnosed.slide-10-active,
.psa--diagnosed.slide-10-active::before,
.psa--diagnosed.slide-10-active::after {
  background-color: #687984;
}

.psa--diagnosed::before {
  left: -50vw;
  z-index: 10;
}

.psa--diagnosed::after {
  right: -50vw;
}

@media only screen and (min-width: 1024px) {
  .psa--diagnosed .psa__copy {
    background: rgb(0, 157, 210);
    background: linear-gradient(90deg, rgba(0, 157, 210, 1) 40%, rgba(0, 157, 210, 0) 100%);
  }
}

.psa--diagnosed.slide-10-active .psa__copy {
  background: transparent;
}

.psa--undiagnosed #psa-undiagnosed-slide-6b .psa__face::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  height: 70vw;
  content: '';
  transform: translate(-50%, -50%);
  display: inline-block;
  background: rgb(174, 184, 190);
  background: radial-gradient(circle, rgba(174, 184, 190, 1) 0%, rgba(174, 184, 190, 0) 60%);
  z-index: 5;
  border-radius: 50%;
}

@media only screen and (min-width: 1024px) {
  .psa--undiagnosed #psa-undiagnosed-slide-6b .psa__face::after {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(174, 184, 190, 1) 0%, rgba(174, 184, 190, 0) 70%);
  }
}

.psa--diagnosed #psa-diagnosed-slide-10b .psa__face::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  height: 70vw;
  content: '';
  transform: translate(-50%, -50%);
  display: inline-block;
  background: rgb(174, 184, 190);
  background: radial-gradient(circle, rgba(174, 184, 190, 1) 0%, rgba(174, 184, 190, 0) 60%);
  z-index: 5;
  border-radius: 50%;
}

@media only screen and (min-width: 1024px) {
  .psa--diagnosed #psa-diagnosed-slide-10b .psa__face::after {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(174, 184, 190, 1) 0%, rgba(174, 184, 190, 0) 70%);
  }
}

.psa--diagnosed .psa__slide:not(#psa-diagnosed-slide-10b) .psa__face::after {
  background: rgb(0, 157, 210);
  background: linear-gradient(0deg, rgba(0, 157, 210, 1) 10%, rgba(00, 157, 210, 0) 70%);
}

.psa--diagnosed .psa__slide--icons:not(.active) {
  height: 53vw;
}

@media only screen and (min-width: 1024px) {
  .psa--diagnosed .psa__slide--icons:not(.active) {
    width: 70%;
  }

  .psa--diagnosed #psa-diagnosed-slide-1b.psa__slide--icons:not(.active),
  .psa--diagnosed #psa-diagnosed-slide-5b.psa__slide--icons:not(.active) {
    height: 83vh;
  }

  .psa--diagnosed #psa-diagnosed-slide-2b.psa__slide--icons:not(.active),
  .psa--diagnosed #psa-diagnosed-slide-4b.psa__slide--icons:not(.active),
  .psa--diagnosed #psa-diagnosed-slide-6b.psa__slide--icons:not(.active),
  .psa--diagnosed #psa-diagnosed-slide-7b.psa__slide--icons:not(.active) {
    height: 78vh;
  }

  .psa--diagnosed #psa-diagnosed-slide-3b.psa__slide--icons:not(.active) {
    height: 82vh;
  }

  .psa--diagnosed #psa-diagnosed-slide-8b.psa__slide--icons:not(.active) {
    height: 81vh;
  }

  .psa--diagnosed #psa-diagnosed-slide-9b.psa__slide--icons:not(.active) {
    height: 81vh;
  }

  .psa--diagnosed #psa-diagnosed-slide-10b.psa__slide--icons:not(.active) {
    height: 90vh;
  }
}

.psa--diagnosed .psa__slide--icons.active {
  height: 53vw;
}

@media only screen and (min-width: 1024px) {
  .psa--diagnosed .psa__slide--icons.active {
    width: 70%;
  }

  .psa--diagnosed #psa-diagnosed-slide-1b.psa__slide--icons.active,
  .psa--diagnosed #psa-diagnosed-slide-5b.psa__slide--icons.active {
    height: 83vh;
  }

  .psa--diagnosed #psa-diagnosed-slide-2b.psa__slide--icons.active,
  .psa--diagnosed #psa-diagnosed-slide-4b.psa__slide--icons.active,
  .psa--diagnosed #psa-diagnosed-slide-6b.psa__slide--icons.active,
  .psa--diagnosed #psa-diagnosed-slide-7b.psa__slide--icons.active {
    height: 78vh;
  }

  .psa--diagnosed #psa-diagnosed-slide-3b.psa__slide--icons.active {
    height: 82vh;
  }

  .psa--diagnosed #psa-diagnosed-slide-8b.psa__slide--icons.active {
    height: 81vh;
  }

  .psa--diagnosed #psa-diagnosed-slide-9b.psa__slide--icons.active {
    height: 81vh;
  }

  .psa--diagnosed #psa-diagnosed-slide-10b.psa__slide--icons.active {
    height: 90vh;
  }
}

.psa--diagnosed #psa-diagnosed-slide-1b .psa__face {
  height: 78%;
}

.psa--diagnosed #psa-diagnosed-slide-2b .psa__face {
  height: 76%;
}

.psa--diagnosed #psa-diagnosed-slide-3b .psa__face {
  height: 78%;
}

.psa--diagnosed #psa-diagnosed-slide-4b .psa__face {
  height: 72%;
}

.psa--diagnosed #psa-diagnosed-slide-5b .psa__face {
  height: 78%;
}

.psa--diagnosed #psa-diagnosed-slide-6b .psa__face {
  height: 80%;
}

.psa--diagnosed #psa-diagnosed-slide-7b .psa__face {
  height: 78%;
}

.psa--diagnosed #psa-diagnosed-slide-8b .psa__face {
  height: 78%;
}

.psa--diagnosed #psa-diagnosed-slide-9b .psa__face {
  height: 96%;
}

.psa--diagnosed #psa-diagnosed-slide-10b .psa__face {
  height: 70%;
  margin: 0 0 10%;
  padding: 0;
}

.psa--diagnosed #psa-diagnosed-slide-10b .psa__face img {
  z-index: 10;
  position: relative;
}

.psa--diagnosed #psa-diagnosed-slide-1b .psa__canvas .psa__graffiti {
  margin-left: -2em;
}

.psa--diagnosed #psa-diagnosed-slide-2b .psa__canvas .psa__graffiti {
  margin-left: -3em;
}

.psa--diagnosed #psa-diagnosed-slide-3b .psa__canvas .psa__graffiti {
  margin-left: -2em;
}

.psa--diagnosed #psa-diagnosed-slide-4b .psa__canvas .psa__graffiti {
  margin-left: -3em;
}

.psa--diagnosed #psa-diagnosed-slide-5b .psa__canvas .psa__graffiti {
  margin-left: -2.5em;
}

.psa--diagnosed #psa-diagnosed-slide-6b .psa__canvas .psa__graffiti {
  margin-left: -3em;
}

.psa--diagnosed #psa-diagnosed-slide-7b .psa__canvas .psa__graffiti {
  margin-left: -0.5em;
}

.psa--diagnosed #psa-diagnosed-slide-8b .psa__canvas .psa__graffiti {
  margin-left: -2em;
}

.psa--diagnosed #psa-diagnosed-slide-9b .psa__canvas .psa__graffiti {
  margin-left: -2em;
}

@media only screen and (min-width: 1024px) {
  .psa--diagnosed #psa-diagnosed-slide-1b .psa__canvas .psa__graffiti,
  .psa--diagnosed #psa-diagnosed-slide-2b .psa__canvas .psa__graffiti,
  .psa--diagnosed #psa-diagnosed-slide-3b .psa__canvas .psa__graffiti,
  .psa--diagnosed #psa-diagnosed-slide-4b .psa__canvas .psa__graffiti,
  .psa--diagnosed #psa-diagnosed-slide-5b .psa__canvas .psa__graffiti,
  .psa--diagnosed #psa-diagnosed-slide-6b .psa__canvas .psa__graffiti,
  .psa--diagnosed #psa-diagnosed-slide-7b .psa__canvas .psa__graffiti,
  .psa--diagnosed #psa-diagnosed-slide-8b .psa__canvas .psa__graffiti,
  .psa--diagnosed #psa-diagnosed-slide-9b .psa__canvas .psa__graffiti {
    margin-left: 0;
  }

  .psa--diagnosed #psa-diagnosed-slide-1b .psa__face {
    height: 65vh;
    left: 8%;
  }

  .psa--diagnosed #psa-diagnosed-slide-2b .psa__face {
    height: 60vh;
    left: 9%;
  }

  .psa--diagnosed #psa-diagnosed-slide-3b .psa__face {
    height: 62vh;
    left: 6%;
  }

  .psa--diagnosed #psa-diagnosed-slide-4b .psa__face {
    height: 58vh;
    left: 10%;
  }

  .psa--diagnosed #psa-diagnosed-slide-5b .psa__face {
    height: 66vh;
    left: 16%;
  }

  .psa--diagnosed #psa-diagnosed-slide-6b .psa__face {
    height: 68vh;
    left: 10%;
  }

  .psa--diagnosed #psa-diagnosed-slide-7b .psa__face {
    height: 66vh;
    left: 4%;
  }

  .psa--diagnosed #psa-diagnosed-slide-8b .psa__face {
    height: 64vh;
    left: 8%;
  }

  .psa--diagnosed #psa-diagnosed-slide-9b .psa__face {
    height: 69vh;
    right: -2%;
  }

  .psa--diagnosed #psa-diagnosed-slide-10b .psa__face {
    height: 60vh;
    margin: auto 0;
    padding: 0;
  }
}

/* UNDIAGNOSED */

.psa--undiagnosed {
  background-color: #001970;
  transition: background-color 0.5s;
}

.psa--undiagnosed::before,
.psa--undiagnosed::after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100%;
  background-color: #001970;
  z-index: -1;
  transition: background-color 0.5s;
}

.psa--undiagnosed.slide-6-active,
.psa--undiagnosed.slide-6-active::before,
.psa--undiagnosed.slide-6-active::after {
  background-color: #687984;
}

.psa--undiagnosed::before {
  left: -50vw;
  z-index: 10;
}

.psa--undiagnosed::after {
  right: -50vw;
}

@media only screen and (min-width: 1024px) {
  .psa--undiagnosed .psa__copy {
    background: rgb(0, 25, 112);
    background: linear-gradient(90deg, rgba(0, 25, 112, 1) 40%, rgba(0, 25, 112, 0) 100%);
  }
}

.psa--undiagnosed.slide-6-active .psa__copy {
  background: transparent;
}

.psa--undiagnosed .psa__slide:not(#psa-undiagnosed-slide-6b) .psa__face::after {
  background: rgb(0, 25, 112);
  background: linear-gradient(0deg, rgba(0, 25, 112, 1) 10%, rgba(0, 25, 112, 0) 70%);
}

.psa--undiagnosed .psa__slide--icons:not(.active) {
  height: 53vw;
}

@media only screen and (min-width: 1024px) {
  .psa--undiagnosed .psa__slide--icons:not(.active) {
    width: 70%;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-1b.psa__slide--icons:not(.active) {
    height: 82vh;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-2b.psa__slide--icons:not(.active) {
    height: 83vh;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-3b.psa__slide--icons:not(.active) {
    height: 84vh;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-4b.psa__slide--icons:not(.active) {
    height: 84vh;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-5b.psa__slide--icons:not(.active) {
    height: 84vh;
  }
}

.psa--undiagnosed .psa__slide--icons.active {
  height: 53vw;
}

@media only screen and (min-width: 1024px) {
  .psa--diagnosed .psa__slide--icons.active {
    width: 70%;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-1b.psa__slide--icons.active {
    height: 82vh;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-2b.psa__slide--icons.active {
    height: 83vh;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-3b.psa__slide--icons.active {
    height: 84vh;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-4b.psa__slide--icons.active {
    height: 84vh;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-5b.psa__slide--icons.active {
    height: 84vh;
  }
}

.psa--undiagnosed #psa-undiagnosed-slide-1b .psa__face {
  height: 78%;
}

.psa--undiagnosed #psa-undiagnosed-slide-2b .psa__face {
  height: 74%;
}

.psa--undiagnosed #psa-undiagnosed-slide-3b .psa__face {
  height: 82%;
}

.psa--undiagnosed #psa-undiagnosed-slide-4b .psa__face {
  height: 78%;
}

.psa--undiagnosed #psa-undiagnosed-slide-5b .psa__face {
  height: 78%;
}

.psa--undiagnosed #psa-undiagnosed-slide-6b .psa__face {
  height: 70%;
  margin: 0 0 10%;
  padding: 0;
  z-index: 100;
  position: relative;
}

.psa--undiagnosed #psa-undiagnosed-slide-6b .psa__face img {
  z-index: 10;
  position: relative;
}

.psa--undiagnosed #psa-undiagnosed-slide-1b .psa__canvas .psa__graffiti {
  margin-right: -1em;
}

.psa--undiagnosed #psa-undiagnosed-slide-2b .psa__canvas .psa__graffiti {
  margin-right: 3em;
}

.psa--undiagnosed #psa-undiagnosed-slide-3b .psa__canvas .psa__graffiti {
  margin-right: 3em;
}

.psa--undiagnosed #psa-undiagnosed-slide-4b .psa__canvas .psa__graffiti {
  margin-right: 2em;
}

@media only screen and (min-width: 1024px) {
  .psa--undiagnosed #psa-undiagnosed-slide-1b .psa__canvas .psa__graffiti,
  .psa--undiagnosed #psa-undiagnosed-slide-2b .psa__canvas .psa__graffiti,
  .psa--undiagnosed #psa-undiagnosed-slide-3b .psa__canvas .psa__graffiti,
  .psa--undiagnosed #psa-undiagnosed-slide-4b .psa__canvas .psa__graffiti,
  .psa--undiagnosed #psa-undiagnosed-slide-5b .psa__canvas .psa__graffiti {
    margin-left: 0;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-1b .psa__face {
    height: 65vh;
    left: -5%;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-2b .psa__face {
    height: 62vh;
    left: 6%;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-3b .psa__face {
    height: 69vh;
    left: 7%;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-4b .psa__face {
    height: 65vh;
    left: 0%;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-5b .psa__face {
    height: 65vh;
    left: 0%;
  }

  .psa--undiagnosed #psa-undiagnosed-slide-6b .psa__face {
    height: 60vh;
    margin: auto 0;
    padding: 0;
  }
}

/* DIAGNOSED & UNDIAGNOSED */

.psa__timeline {
  display: inline-block;
  width: calc(100% - 3em);
  margin: 0 1.5em 2em;
  flex-grow: 0;
  position: relative;
}

@media only screen and (min-width: 1024px) {
  .psa__timeline {
    padding-right: 5em;
    width: auto;
    margin: 0;
    z-index: 15;
  }
}

.psa__slider {
  position: absolute;
  content: '';
  top: calc(3em - 2px);
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #ffc500;
  z-index: 10;
  transition: all 0.8s;
}

@media only screen and (min-width: 1024px) {
  .psa__slider {
    top: calc(3em - 4px);
    background-color: rgba(255, 255, 255, 0.15);
    border-left: #ffc500 3px solid;
    height: 27px;
    width: 0;
    left: calc(100% - 5em);
  }
}

@media only screen and (min-width: 1024px) {
  .psa__slider::before {
    content: '';
    height: 5px;
    width: 100vw;
    background-color: #ffc500;
    position: absolute;
    top: 3px;
    left: -100vw;
  }
}

.psa__slider i::after {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  content: '';
  display: inline-block;
  background-color: transparent;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  border: 2px solid #ffc500;
  -webkit-animation: pulse 2s ease-out infinite;
  animation: pulse 2s ease-out infinite;
}

@-webkit-keyframes pulse {
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.5);
  }

  0% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes pulse {
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.5);
  }

  0% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

.psa__slider i::before {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: inline-block;
  background-color: #ffc500;
  width: 16px;
  height: 16px;
  border-radius: 12px;
}

@media only screen and (min-width: 1024px) {
  .psa__slider i::before,
  .psa__slider i::after {
    left: -2px;
  }
}

.psa__blocker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 10;
}

@media only screen and (min-width: 1024px) {
  .psa__blocker {
    display: none;
  }
}

.psa__steps {
  position: relative;
  display: flex;
  flex: 0 1 0;
  padding: 3em 0 0;
  margin: 0 0 2em;
  line-height: 14px;
  width: 100%;
  counter-reset: steps-counter;
}

@media only screen and (min-width: 1024px) {
  .psa__steps {
    width: auto;
    margin: 0;
  }
}

.psa__steps li.unavailable {
  cursor: default;
}

@media only screen and (min-width: 1024px) {
  .psa__steps li {
    position: relative;
    padding: 1em 1em 0 0;
    border-top: 3px solid #fff;
  }

  .psa--undiagnosed .psa__steps li {
    padding: 1em 2em 0 0;
  }
}

@media only screen and (min-width: 1024px) {
  .psa__steps li::before {
    position: absolute;
    content: '';
    top: -7px;
    left: 0;
    width: 1px;
    height: 27px;
    background-color: #fff;
  }
}

.psa__steps li.unavailable a {
  color: #ffc500;
  cursor: default;
}

.psa__steps li.active a {
  opacity: 1;
}

.psa__steps li a::after {
  display: block;
  width: 100%;
  text-align: center;
  counter-increment: steps-counter;
  margin: 0 0 -1.5em;
  padding: 0.5em 0 0 0;
  font-weight: normal;
}

.psa--diagnosed .psa__steps li a::after {
  content: counter(steps-counter) " / 10";
}

.psa--undiagnosed .psa__steps li a::after {
  content: counter(steps-counter) " / 6";
}

@media only screen and (min-width: 1024px) {
  .psa__steps li a {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    text-align: left;
    opacity: 1;
    transition: color 0.5s;
  }

  .psa__steps li a:hover,
  .psa__steps li:hover a,
  .psa__steps li.active a {
    color: #ffc500;
  }

  .psa__steps li a::after {
    display: none;
  }
}

.psa__steps li a br {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .psa__steps li a br {
    display: block;
  }
}

.psa__left-arrow,
.psa__right-arrow {
  position: relative;
  z-index: 20;
}

.psa__icon--left-arrow,
.psa__icon--right-arrow {
  width: 32px;
  height: 32px;
}

.psa__left-arrow {
  position: absolute;
  left: 0;
  bottom: 0;
}

.psa__right-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media only screen and (min-width: 1024px) {
  .psa__left-arrow {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 1em 0.5em 0 0;
  }

  .psa__right-arrow {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 1em 0 0 0;
  }
}

.psa__tip {
  display: none;
  visibility: hidden;
}

.psa__tip.is-open {
  display: flex;
  flex-direction: column;
  justify-content: center;
  visibility: visible;
  background-color: #fff;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: calc(100% - 3em);
  height: calc(100vh - 3em);
  margin: 1.5em;
  padding: 1.5em;
  box-shadow: 0 3px 6px #00000029;
}

.psa__small-x {
  position: absolute;
  right: 1em;
  top: 1em;
  background: transparent;
  border: 0;
  box-shadow: 0 0 0 transparent;
}

@media only screen and (min-width: 1024px) {
  .psa__tip.is-open {
    position: absolute;
    top: auto;
    left: 3.5em;
    bottom: 6em;
    width: 325px;
    height: 250px;
    margin: 0;
    padding: 2em;
  }
}

.psa__tipline {
  font-family: 'Work Sans', sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.5rem;
  color: #001970;
  margin: 0 0 0.75em;
}

.psa__tiplead {
  font-family: 'Work Sans', sans-serif;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.5rem;
  letter-spacing: 0.1px;
  color: #001970;
  margin: 0;
}

.psa__start-arrow-stacked {
  display: inline-block;
  position: absolute;
  z-index: 10;
  left: 1.25em;
  top: 1.5em;
  bottom: auto;
}

@media only screen and (min-width: 1024px) {
  .psa__start-arrow-stacked {
    bottom: 1.5em;
    left: 0;
    top: auto;
  }
}

.psa__icon--start-arrow-stacked {
  width: 44px;
  height: 62px;
}

.psa__info-circle {
  display: inline-block;
  position: absolute;
  z-index: 10;
  left: 4em;
  top: 1.5em;
  bottom: auto;
}

@media only screen and (min-width: 1024px) {
  .psa__info-circle {
    bottom: 3em;
    left: 3.5em;
    top: auto;
  }
}

.psa__icon--info-circle {
  width: 32px;
  height: 32px;
}

.psa__slide {
  margin: 0 1.5em;
  flex-grow: 0;
  z-index: 1;
}

@media only screen and (min-width: 1024px) {
  .psa__slide {
    padding: 0;
    flex-grow: 1;
    margin: 0;
  }
}

.psa__slide:not(.active) {
  display: none;
  visibility: hidden;
}

.psa__slide.active {
  z-index: 10;
  position: absolute;
  top: 45vw;
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-direction: column-reverse;
  -webkit-animation: fade-in 1s ease-out;
  animation: fade-in 1s ease-out;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media only screen and (min-width: 1024px) {
  .psa__slide.active {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: row;
  }
}

.psa__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  margin: 0.5em 0;
}

@media only screen and (min-width: 1024px) {
  .psa__info {
    margin: 1em 0;
  }
}

.psa__actions {
  flex-basis: 170px;
  flex-grow: 0;
}

.psa__slide--icons.fade-out {
  -webkit-animation: fade-out 1s ease-out forwards;
  animation: fade-out 1s ease-out forwards;
}

@-webkit-keyframes fade-out {
  100% {
    opacity: 0;
  }

  0% {
    opacity: 1;
  }
}

@keyframes fade-out {
  100% {
    opacity: 0;
  }

  0% {
    opacity: 1;
  }
}

.psa__canvas {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

@media only screen and (min-width: 1024px) {
  .psa--diagnosed #psa-diagnosed-slide-10b .psa__canvas,
  .psa--undiagnosed #psa-undiagnosed-slide-6b .psa__canvas {
    justify-content: flex-start;
  }
}

@media only screen and (min-width: 1024px) {
  .psa--diagnosed #psa-diagnosed-slide-10b .psa__face,
  .psa--undiagnosed #psa-undiagnosed-slide-6b .psa__face {
    position: relative;
    bottom: auto;
  }
}

/* CUSTOM */

@media only screen and (max-width: 480px) {
  .psa__option {
    padding: 2em 1em;
  }
  .psa__option .psa__cta {
    width: 100px;
    right: 1em;
  }
}

/* Hotfix header Search icon becoming invisible because of new inline svg style */

.header__search .st0 {
  fill: currentColor !important;
}

.psa--diagnosed #psa-diagnosed-slide-9 .psa__copy {
  position: relative;
  bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .psa--diagnosed #psa-diagnosed-slide-9 .psa__copy {
    bottom: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .psa--diagnosed #psa-diagnosed-slide-9 .psa__copy {
    bottom: 0;
  }
}

.psa__welcome-wrapper {
  display: flex;
}
.psa__welcome-wrapper .psa__welcome-video {
  flex: 50%;
  padding: 2%;
}
.psa__welcome-wrapper .psa__welcome-video iframe {
  margin-top: 24px;
}
.psa__welcome-wrapper .psa__welcome-content {
  flex: 50%;
}
.psa__welcome-wrapper .psa__headline.second {
  margin-top: 10px;
}
@media only screen and (max-width: 480px) {
  .psa__welcome-wrapper {
    display: block;
  }
  .psa__welcome-wrapper .psa__welcome-video {
    margin-right: 0;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 0;
  }
  .psa__welcome-wrapper .psa__headline.first {
    margin: 0;
  }
}
