/*!*************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/jquery-ui/themes/base/slider.css ***!
  \*************************************************************************************************/
/*!
 * jQuery UI Slider 1.14.0
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 *
 * https://api.jqueryui.com/slider/#theming
 */
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: pointer;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}

/*!***************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/main.scss ***!
  \***************************************************************************************************************/
/*** Variables ***/
:root {
  --default: #2E414D;
  --default-dim: #00000073;
  --white: #F5F5F5;
  --text: #2E414D;
  --primary: #EA2D82; /* Pink */
  --primary-1: black; /* Pink */
  --secondary: #F6D6D7 ; /* Light Pink */
  --secondary-tint: #fed9dc; /* Very Light Pink */
  --tertiary: #DB636F;
  --bg-color: #C8747D;
  --page-header: #fcc1c5;
  --gray: #f0f0f0;
  --color-muted: #444444;
  --color-warning: #ff9800;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-brown: #812c2c;
  --color-brown-alt: #c95658;
  --color-brown-alt-2: #85354d;
  --color-blue: #483aae;
  --color-pink-alt: #ee7fc1;
  --color-violet: #3f407a;
  --color-violet-alt: #634387;
  --base-font: 1rem;
  --gutter: 10px; /* do not use in grids */
  --color-text: #2E414D;
}

@media (min-width: 768px) {
  :root {
    --gutter: 25px; /* do not use in grids */
  }
}
@font-face {
  font-family: "body-text";
  src: url(assets/fonts/Nunito-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "body-text";
  src: url(assets/fonts/Nunito-Italic.woff) format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "body-text";
  src: url(assets/fonts/Nunito-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "body-text";
  src: url(assets/fonts/Nunito-BoldItalic.woff) format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "header-text";
  src: url(assets/fonts/Roboto-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "header-text";
  src: url(assets/fonts/Roboto-BoldItalic.woff) format("woff");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "header-text";
  src: url(assets/fonts/Roboto-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "header-text";
  src: url(assets/fonts/Roboto-Italic.woff) format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "header-text";
  src: url(assets/fonts/Roboto-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "header-text";
  src: url(assets/fonts/Roboto-MediumItalic.woff) format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "styled-text";
  src: url(assets/fonts/ShadowsIntoLight-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
.styled-text {
  font-family: "styled-text", sans-serif !important;
  font-weight: 400;
  font-style: normal;
}

/*** Base Styles ***/
*:focus {
  outline-color: transparent;
}

body {
  /*For overall default styling*/
  font-family: "body-text", sans-serif;
  font-size: 100%;
  letter-spacing: 0;
  line-height: 120%;
  max-width: 100%;
  color: var(--color-default);
  background-color: white;
  scroll-behavior: smooth;
  margin: 0;
}

p {
  line-height: 1.6em;
}

p, p a, li a {
  overflow-wrap: break-word;
}

sup {
  font-size: 15px;
}

/*** Images ***/
img,
object,
iframe,
picture,
video {
  max-width: 100%;
}

.cover-img {
  object-fit: cover;
}

.contain-img {
  object-fit: contain;
}

.cover-bg,
.contain-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contain-bg {
  background-size: contain;
}

.fixed-bg {
  background-size: cover;
}

@media (min-width: 992px) {
  .fixed-bg {
    background-attachment: fixed;
  }
}
/* Font Colors */
.text-default {
  color: var(--default) !important;
}

.text-black {
  color: var(--default) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-tertiary {
  color: var(--color-pink-alt) !important;
}

.text-gray {
  color: var(--gray) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-brown-alt-2 {
  color: var(--color-brown-alt-2);
}

.text-brown {
  color: var(--color-brown);
}

.text-brown-alt {
  color: var(--color-brown-alt);
}

.text-blue {
  color: var(--color-blue);
}

.text-violet {
  color: var(--color-violet);
}

.text-violet-alt {
  color: var(--color-violet-alt);
}

.text-pink-alt {
  color: var(--color-pink-alt);
}

p {
  margin-bottom: var(--gutter);
  margin-top: 0;
}

/* Font Sizes */
p,
ol li,
ul li {
  font-size: 1.125rem;
  line-height: 1.6em;
}

ul ul {
  list-style-type: disc;
}

ol, ul {
  padding: 0 0 0 20px;
}

ol li,
ul li {
  margin-bottom: 15px;
}

ul {
  margin-bottom: 30px;
}

label {
  font-family: "body-text", sans-serif;
  font-weight: normal;
  font-size: 0.875rem;
  margin-bottom: 30px;
}

/* Base Headers Style */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: var(--gutter);
  letter-spacing: normal;
  line-height: 120%;
  margin-top: 0;
}

h1,
.h1 {
  font-size: 3rem;
  font-family: "header-text", sans-serif;
}

h2,
.h2 {
  font-size: 2.25rem;
  font-family: "header-text", sans-serif;
}

h3,
.h3 {
  font-size: 2rem;
  font-family: "header-text", sans-serif;
}

h4,
.h4 {
  font-size: 1.75rem;
  font-family: "header-text", sans-serif;
}

h5,
.h5 {
  font-size: 1.25rem;
  font-family: "header-text", sans-serif;
}

h6,
.h6 {
  font-size: 1.125rem;
  font-family: "body-text", sans-serif;
  font-weight: 700;
}

@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 1.75rem;
  }
  h2,
  .h2 {
    font-size: 1.5rem;
  }
  h3,
  .h3 {
    font-size: 1.25rem;
  }
  h4,
  .h4 {
    font-size: 1.15rem;
  }
  h5,
  .h5 {
    font-size: 1.125rem;
  }
  h6,
  .h6 {
    font-size: 1.125rem;
  }
}
@media (max-width: 400px) {
  h1,
  .h1 {
    font-size: 1.5rem;
  }
  h2,
  .h2 {
    font-size: 1.15rem;
  }
  h3,
  .h3 {
    font-size: 1.125rem;
  }
  h4,
  .h4 {
    font-size: 1.125rem;
  }
  h5,
  .h5 {
    font-size: 1.125rem;
  }
  h6,
  .h6 {
    font-size: 1.125rem;
  }
  p,
  ol li,
  ul li {
    font-size: 1rem;
    line-height: 1.6em;
  }
}
/*** Typography ***/
.body-text {
  font-family: "body-text" !important;
}

.header-text {
  font-family: "header-text" !important;
}

.styled-text {
  font-family: "styled-text" !important;
}

blockquote,
blockquote p {
  line-height: 1.8;
  color: inherit;
  font-size: 20px;
  font-style: italic;
}

blockquote {
  padding-left: 20px;
  border: none;
  border-left: 2px solid;
  border-color: inherit;
  margin: 0;
}

blockquote > *:last-chiLd {
  margin-bottom: 0;
}

figure {
  margin: 0;
}

figure img {
  margin-bottom: 8px;
}

figure figcaption {
  font-size: 14px;
  color: var(--default);
  padding-left: 8px;
  border-left: 2px solid;
}

a,
a:visited {
  color: var(--primary);
  text-decoration: underline;
}

a:hover,
a:focus,
a:active {
  color: var(--primary);
  text-decoration: none;
}

.underlined {
  padding-bottom: 3px;
  border-bottom: solid 8px;
  border-bottom-color: inherit;
}

/*** Form ***/
.form-control {
  border: 2px solid var(--white);
  min-height: 50px;
  border-radius: 5px;
  box-shadow: none;
  color: var(--default);
  background-color: var(--white);
  font-size: 1.125rem;
}

.form-control:focus {
  box-shadow: unset !important;
  border-color: unset !important;
}

select.form-control {
  -webkit-appearance: none;
}

/* Placeholder */
input::placeholder,
textarea::placeholder {
  color: var(--default-dim) !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--default-dim) !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  /* Firefox 18- */
  color: var(--default-dim) !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--default-dim) !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--default-dim) !important;
}

/***  Buttons ***/
/* button#load-more.done {
    display: none;
} */
.btn {
  display: flex;
  align-items: center;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  vertical-align: middle;
  border-width: 1px;
  border-style: solid;
  border-radius: 100px;
  padding: 12px 24px;
  margin: 0;
  transition: all 0.25s ease-out, color 0.25s ease-out;
  box-shadow: none !important;
  font-size: 16px;
  font-weight: 700;
  font-family: "header-text", sans-serif;
  max-width: max-content;
}

.btn-big {
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-small {
  font-size: 0.875rem;
  font-weight: 400;
}

.btn.btn-primary {
  color: var(--white);
  border-color: var(--primary);
  background-color: var(--primary);
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus {
  background-color: transparent !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.btn.btn-secondary {
  color: var(--primary) !important;
  border-color: var(--primary);
  background-color: transparent;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary:focus {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}

.btn.btn-quaternary {
  color: var(--white);
  border-color: var(--color-violet);
  background-color: var(--color-violet);
}

.btn.btn-quaternary:hover,
.btn.btn-quaternary:active,
.btn.btn-quaternary:focus {
  background-color: transparent !important;
  border-color: var(--color-violet) !important;
  color: var(--color-violet) !important;
}

/* .btn.btn-tertiary {}; add if needed */
.btn.btn-primary.inverted {
  background-color: #ffffff;
  border-color: var(--primary);
  color: var(--primary);
}

.btn.btn-primary.inverted:hover,
.btn.btn-primary.inverted:active,
.btn.btn-primary.inverted:focus {
  color: #ffffff !important;
  border-color: var(--primary) !important;
  background-color: var(--primary) !important;
}

.btn.btn-secondary.inverted {
  background-color: #ffffff;
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn.btn-secondary.inverted:hover,
.btn.btn-secondary.inverted:active,
.btn.btn-secondary.inverted:focus {
  color: #ffffff !important;
  border-color: var(--secondary) !important;
  background-color: var(--secondary) !important;
}

/***  Wordpress Plugin: Ajax Load More ***/
.alm-btn-wrap .alm-load-more-btn.done {
  display: none;
}

.btn.loading {
  /* add loading image here */
  opacity: 0.5;
}

.alm-btn-wrap {
  text-align: center;
}

/***  Wordpress Plugin: CF7 ***/
.wpcf7-not-valid-tip {
  color: #b1b1b1 !important;
  font-size: 0.75rem !important;
  margin-bottom: 0 !important;
  display: inline-block !important;
}

div.wpcf7-response-output {
  border: none !important;
  padding: 0;
  margin: 10px 0;
  color: var(--color-danger);
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  color: var(--color-warning) !important;
}

div.wpcf7-mail-sent-ok {
  color: var(--color-success) !important;
}

/*** Layout Utilities ***/
.overlay {
  position: absolute;
  background-color: rgba(0, 35, 92, 0.7);
  width: 100%;
  height: 100%;
  z-index: 20;
  top: 0;
  left: 0;
}

.site-overlay.visible {
  top: 0;
  left: 0;
  height: 100vh;
  opacity: 1;
}

/* Contextual Background Style */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-secondary-tint {
  background-color: var(--secondary-tint) !important;
}

.bg-tertiary {
  background-color: var(--tertiary) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.bg-black {
  background-color: var(--default) !important;
}

.bg-violet {
  background-color: var(--color-violet) !important;
}

.bg-color {
  background-color: var(--bg-color) !important;
}

.bg-page-header {
  background-color: var(--page-header) !important;
}

/* Helpers */
.text-right {
  text-align: right;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.mt-0 {
  margin-top: 0 !important;
}

.w-100 {
  width: 100%;
}

.mt-3 {
  margin-top: 32px;
}

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

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

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

@media (max-width: 767px) {
  .p-mb-5 {
    margin-bottom: 40px;
  }
}
.mb-large {
  margin-bottom: 80px;
}

img {
  display: block;
}

.mx-0 {
  margin: 0 !important;
}

.mx-4 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

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

.text-italic {
  font-style: italic;
}

.img-center {
  display: block;
  margin: 0 auto;
}

.all-text-white * {
  color: white !important;
}

.v-align {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.vh-align {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.font-weight-medium {
  font-weight: 500;
}

.mb-0 {
  margin-bottom: 0 !important;
}

:root {
  scroll-behavior: smooth;
  scroll-padding-top: 10vw;
  --main-text: rgb(215, 65, 129);
  --main-bg: rgb(246, 214, 215);
  --homepage-button: #ea2d82;
  --b1-bg: rgb(247, 207, 211);
  --b1-p-text: rgb(129, 44, 44);
  --b1-p-text2: rgb(133, 53, 77);
  --b2-bg: #f3e4e2;
  --b2-accent-text: #5a4387;
  --b2-p-text: rgb(131, 52, 76);
  --s-one-bg: var(--b1-bg);
  --s-two-bg: rgb(40, 40, 40);
  --s-text-accent: rgb(72, 58, 174);
  --s-three-bg: rgb(224, 168, 158);
  --s-four-bg: rgb(63, 64, 122);
  --treatment-text: rgb(135, 46, 46);
  --last-section: rgb(201, 86, 88);
  --pc: 1440px;
  --m-sm: 480px;
  --m-lg: 768px;
  --tab-sm: 834px;
  --tab-lg: 1024px;
}

@font-face {
  font-family: "roboto-bold-text";
  src: url(assets/fonts/Roboto-Bold.woff), format("woff");
  font-style: normal;
}
@font-face {
  font-family: "roboto-regular-text";
  src: url(assets/fonts/Roboto-Regular.woff), format("woff");
  font-weight: 100;
}
@font-face {
  font-family: "roboto-bold-text-p";
  src: url(assets/fonts/Roboto-Bold.woff), format("woff");
  font-style: normal;
}
.home-banner {
  z-index: 1;
  overflow: hidden;
}

.b1color1 {
  color: rgb(129, 44, 44) !important;
}

.b1color2 {
  font-weight: 700;
  color: rgb(133, 53, 77) !important;
}

.home-banner-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.banner-logo {
  position: absolute;
  top: -45px;
  left: 0;
  z-index: 1000;
  height: auto;
  width: 400px;
}

.banner-left {
  flex-direction: column;
  background-color: #ffffff;
  display: flex;
  justify-content: space-evenly;
  position: relative;
  padding-top: 8vw;
  padding-bottom: var(--gutter);
}

.banner-left img,
.banner-right img {
  height: clamp(45vw, 24vw, 300px);
  width: auto;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner-graphics {
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner-right {
  flex-direction: column;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: 0;
  position: relative;
}

.banner-text {
  position: relative;
  text-align: start;
}
.banner-text-b1 {
  color: var(--b1-p-text);
}
.banner-text-text-primary-1 {
  color: black !important;
}
.banner-text-text-primary-1-sup {
  font-size: 0.5em;
  vertical-align: super;
  line-height: 0;
}

.text-header {
  color: var(--main-text);
  font-family: "roboto-bold-text";
  line-height: 12vw;
  font-size: 9vw;
}
.text-header-big {
  font-size: 20ch;
  color: var(--main-text);
  font-family: "roboto-bold-text";
}
.text-header-b2 {
  color: var(--main-text);
}
.text-header-b2-exp {
  font-size: 1rem;
  font-family: "roboto-regular-text";
}

.text-p {
  font-family: "roboto-regular-text";
  line-height: 1em;
  color: var(--b2-p-text);
  font-size: 5vw;
}

.text-p-bold {
  font-family: "roboto-bold-text-p";
  font-size: 6vw;
}

.banner-right span {
  color: var(--b2-accent-text);
  text-decoration: underline;
}

.home-banner-bottom {
  background-color: var(--primary);
  z-index: 4;
  position: relative;
  width: 100%;
  padding: var(--gutter);
}
.home-banner-bottom .banner-bottom-left a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
@media (max-width: 500px) {
  .home-banner-bottom .banner-bottom-left a {
    justify-content: start;
  }
  .home-banner-bottom .banner-bottom-left a .svg {
    height: 20px !important;
    width: 20px !important;
  }
}
.home-banner-bottom .banner-bottom-right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10vw;
}

.home-banner-bottom svg {
  width: 30px !important;
  height: 30px !important;
  margin: 0 !important;
  margin-right: 3px;
  color: white;
}
@media (min-width: 768px) {
  .home-banner-bottom svg {
    margin-right: 10px;
  }
}

.home-banner-bottom .scroll-down-text {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .home-banner-bottom .scroll-down-text {
    font-size: 1.15rem;
  }
}

.section-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.section-general {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 32px 50px;
  gap: 16px;
  height: 100%;
  box-sizing: border-box;
}
.section-general img {
  max-height: 100%;
  height: clamp(45vw, 24vw, 300px);
  width: auto;
  max-width: 100%;
}

.section-two-part-four {
  background: var(--s-four-bg);
  color: rgb(245, 245, 239);
  font-family: "roboto-regular-text";
}

.section-one {
  background-color: var(--s-one-bg);
}

.section-two {
  background-color: rgb(245, 245, 240);
}

.section-three {
  background-color: var(--s-three-bg);
}

.section-four p {
  font-family: "roboto-bold-text";
  width: 100%;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.17rem;
  font-size: 5vw;
}
.section-four p span {
  color: #ea2d82;
}

.section-header {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.section-header-text {
  font-family: "roboto-bold-text";
  color: var(--main-text);
  text-align: center;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
  font-size: 12vw;
}

.section-body {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.section-body-text {
  font-family: "roboto-regular-text";
  color: var(--s-text-accent);
  margin: 0 0 18px 0;
  line-height: 1.5;
  font-size: 4vw;
}

.breastcare .wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .breastcare .wrapper {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .breastcare .wrapper .before-footer-first {
    order: 2;
  }
  .breastcare .wrapper .before-footer-second-images {
    order: 1;
  }
}

.before-footer {
  background-color: rgb(255, 255, 255);
  line-height: 0.5vh;
}
.before-footer .btn-wrapper {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .before-footer {
    padding: 0 4vw;
  }
  .before-footer .btn-wrapper {
    justify-content: start;
  }
}
@media (max-width: 768px) {
  .before-footer .care-guide-btn {
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
  }
  .before-footer .care-guide-btn .ionicon {
    height: 20px;
    margin-right: 5px;
  }
}
.before-footer .wrapper {
  align-items: center;
}
.before-footer .wrapper .before-footer-first .bff-text .header-text {
  margin-bottom: calc(var(--gutter) * 1.5);
}
.before-footer .wrapper .before-footer-first .bff-text a button {
  display: flex;
  align-items: center;
}
.before-footer .wrapper .before-footer-first .bff-text a button img {
  width: 6ch;
  height: auto;
  margin-right: 1ch;
}
.before-footer .wrapper .before-footer-first .bff-text a button svg {
  color: white;
}
.before-footer .wrapper .before-footer-first .bff-text a button span {
  text-decoration: underline;
}
.before-footer .wrapper .before-footer-second-images {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 2vw;
  gap: 1vw;
}
.before-footer .wrapper .before-footer-second-images img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
}
@media (max-width: 768px) {
  .before-footer .wrapper .before-footer-second-images {
    flex-direction: row;
    margin-bottom: calc(var(--gutter) * 2.5);
  }
  .before-footer .wrapper .before-footer-second-images img {
    width: 16.5%;
  }
}

.treatment-options {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f3e4e2;
  box-sizing: border-box;
  gap: 2vw;
  padding: 10vw 0;
}
.treatment-options .options-text {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  box-sizing: border-box;
}
.treatment-options .options-text .text {
  color: var(--treatment-text);
  font-size: 6vw;
  font-weight: 700;
}
.treatment-options .options-text .text-2 {
  color: var(--treatment-text);
  font-size: 6vw;
  font-weight: 700;
}
.treatment-options .options-text .header {
  color: var(--main-text);
  font-size: 9vw;
  font-weight: thin;
}
.treatment-options button {
  max-width: 100%;
  width: 80%;
  border: none;
  border-radius: 90px;
  background-color: rgb(99, 67, 135);
}
.treatment-options button span {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: white;
  font-weight: 500;
  flex-wrap: wrap;
}
.treatment-options button span p {
  font-size: 5vw;
  margin: 0;
  font-family: "roboto-regular-text";
}

.last-section {
  background-color: rgb(66, 67, 113);
  max-width: 100%;
  width: max-content;
  width: auto;
  position: relative;
}
.last-section-contents {
  display: flex;
  align-items: center;
  padding: 5vw;
}
.last-section-contents .section-text {
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7vw;
  padding-top: 10vw;
  padding-bottom: 90vw;
}
.last-section-contents .section-text img {
  max-width: 100%;
  width: auto;
  height: clamp(80vw, 24vw, 300px);
  max-height: 100%;
  position: absolute;
  bottom: 0;
}
.last-section-contents .section-text .sub-text {
  text-align: center;
}
.last-section-contents .section-text .sub-text p {
  color: var(--treatment-text);
  line-height: 1.25em;
}
.last-section-contents .section-text .sub-text .highlight {
  color: white;
  font-size: 5vw;
}
.last-section-contents .section-text .main-text {
  text-align: center;
}
.last-section-contents .section-text .main-text p {
  color: var(--main-text);
  font-size: 9vw;
  font-family: "roboto-bold-text";
  line-height: 1em;
}
.last-section-contents .section-text .main-text .highlight {
  color: var(--last-section);
}
.last-section-contents .section-text .main-text .underline {
  text-decoration: underline;
}
.last-section-contents .section-text .main-text .text-2 {
  color: rgb(238, 127, 193);
}
.last-section-contents .section-text button {
  max-width: 100%;
  width: auto;
  border: none;
  border-radius: 90px;
  background-color: var(--homepage-button);
  padding: 0 1vw;
}
.last-section-contents .section-text button span {
  padding: 0 3vw;
}
.last-section-contents .section-text button p {
  text-align: center;
  color: white;
  margin: 0;
  padding: 2vw;
}

@media (max-width: 768px) {
  .last-section-contents .section-text img {
    max-width: 100%;
    width: 100%;
    height: auto;
    position: initial;
  }
  .last-section .last-section-contents {
    padding-bottom: 0 !important;
    padding-top: 10vw;
  }
}
.navbar-brand img {
  width: 190px;
  height: auto;
}

.navbar-brand .novartis-logo {
  width: 130px;
  height: auto;
}

.navbar-brand {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}

.navbar-brand .home-logo {
  height: auto;
  opacity: 100;
  width: 150px;
}
@media (min-width: 1020px) {
  .navbar-brand .home-logo {
    width: 250px;
  }
}
@media (min-width: 1100px) {
  .navbar-brand .home-logo {
    width: 250px;
  }
}

.darkHeader .navbar-brand img {
  height: auto;
}

.darkHeader .navbar-brand .home-logo {
  opacity: 1;
  width: 150px !important;
}

.darkHeader .navbar-brand .home-logo-2 {
  display: none;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s ease;
  z-index: 999;
}

.navbar {
  padding: 0 0 10px 0;
}

.navbar.darkHeader {
  padding-bottom: 0;
}

.navbar .container-large {
  display: flex;
  justify-content: space-between;
}

.navbar.darkHeader .container-large {
  align-items: center !important;
}

.navbar-nav {
  display: flex;
  list-style-type: none;
  padding: 0;
  gap: 56px;
  margin: 0;
  justify-content: end;
}

.navbar.darkHeader .navbar-nav {
  gap: 32px;
}

.navbar-nav li {
  margin-bottom: 0;
}

.navbar-nav li a {
  color: var(--text);
  font-size: 1.25rem;
  display: inline;
  line-height: 1em;
  text-decoration: none;
}

.navbar-nav li a:hover,
.navbar-nav li a.active {
  color: var(--primary);
}

.nav-right-wrapper {
  display: block;
}

.topbar-nav {
  background-color: var(--primary);
  display: inline-block;
  padding: 12px 24px;
  color: var(--white) !important;
  text-decoration: none;
  position: relative;
}
.topbar-nav__signs-and-symptoms {
  padding-right: 40px;
}
.topbar-nav__signs-and-symptoms::after {
  content: " ";
  position: absolute;
  background-image: url(assets/images/chevron-forward-outline.svg);
  background-repeat: no-repeat;
  height: 30px;
  width: 30px;
  right: 10px;
}

.topbar-nav:hover p {
  text-decoration: underline;
}

.topbar-nav p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.2em;
}

.topbar-nav p:first-child {
  font-size: 1.125rem;
}

.topbar-nav {
  display: flex;
  justify-content: end;
}

.top-nav-row {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  align-content: stretch;
  margin-bottom: 32px;
}

.top-nav-row .topbar-nav:last-child {
  display: block;
  background-color: var(--tertiary);
}

.top-nav-row .topbar-nav:first-child {
  align-items: center;
  padding-right: 40px;
}

.container-large,
.container {
  padding-right: 20px;
  padding-left: 20px;
}

footer {
  padding: 60px 0 30px;
  background-color: #f0f0f0;
}

.footer .home-disclaimer-text {
  padding-top: var(--gutter);
  display: block;
}

.footer-main {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--default);
}

.footer-bottom ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-bottom ul li {
  margin-bottom: 0;
}

.footer-bottom ul li a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
  font-family: "header-text", sans-serif;
  font-size: 14px;
}

.footer-copyright {
  color: var(--primary);
  font-weight: 700;
  font-family: "header-text", sans-serif;
  font-size: 14px;
  margin: 0;
}

.approval-code-class {
  margin: 0;
  font-size: 14px;
  font-family: "header-text", sans-serif;
}

.footer-bottom {
  padding-top: 32px;
}

.home-button-main-wrapper {
  padding: 60px 0;
}

.home-button-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.home-button-wrapper-item {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100px;
}

.home-button-icon-wrapper {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
}

.home-button-icon-wrapper img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

.home-button-text-wrapper {
  padding: 24px 32px 24px 182px;
  margin-left: 0;
  border-radius: 100px;
  background-color: var(--primary);
  width: 100%;
}
.home-button-text-wrapper h3 {
  font-size: 1.125rem;
}

.home-button-text-wrapper h3 {
  margin: 0;
  color: var(--white);
}

.homepage-decor-text {
  padding: 30px 0;
}

.homepage-decor-text p {
  margin-bottom: 0;
}

.homepage-decor-text h2 {
  font-size: 46px;
  margin: 0;
}

.home-disclaimer-text {
  display: none;
}
@media (min-width: 1020px) {
  .home-disclaimer-text {
    display: block;
  }
}

.slider-bottom-text h2 {
  font-weight: 400;
  text-align: center;
}

.slider-bottom-text {
  padding: 30px 0;
}

.page-body-header {
  padding: 150px 0 30px;
  background-color: #f0f0f0;
}

.ref {
  margin-bottom: 30px;
}
.ref p {
  margin-bottom: 0;
}
.ref .ref-label {
  margin-bottom: 10px;
}

.long-content-wrapper {
  padding: 60px 0;
}

.above-title {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.awareness-section h2 {
  margin-bottom: 24px;
}

.below-title {
  margin-bottom: 60px;
}

.custom-awareness-list-title {
  margin-bottom: 32px;
}

.custom-awareness-list {
  margin: 0 0 30px 0;
  list-style-type: none;
  padding: 0;
}

.custom-awareness-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 19px;
}

.custom-awareness-list li p {
  margin: 0;
}

.awareness-section-img {
  margin-bottom: 64px;
}

.small-text {
  font-size: 15px;
  margin-bottom: 0;
}

.signs-and-symptoms-bottom {
  padding: 60px 0;
}

.signs-and-symptoms-bottom h2 {
  margin-bottom: 24px;
}

.signs-and-symptoms-bottom p {
  margin-bottom: 16px;
}

.signs-and-symptoms-bottom .btn {
  margin-top: 10px;
}

.step-header {
  padding: 60px 0 30px 0;
}

.home-slider {
  padding-top: 22px;
}

.darkHeader {
  background-color: var(--secondary);
}

.home-slider-item.active {
  width: 100%;
}

.page-body-header h1 {
  margin-bottom: 0;
}

.page-body-header p {
  margin: 15px 0 0 0;
}

.staging-system h3 {
  margin-bottom: 80px;
}

.staging-system {
  padding: 60px 0;
}

.staging-system ul {
  margin-bottom: 54px;
}

.small-list li {
  font-size: 14px;
}

.btn-no-decor {
  display: inline-block;
}

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

.stages-header {
  padding: 60px 0;
}

hr {
  background-color: var(--default);
  margin: 30px 0;
}

.risk-factors,
.stages-content-wrapper {
  padding: 60px 0;
}

.accordion-item-title * {
  margin: 0;
}

.accordion-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-bottom: 32px;
}

.accordion-item-content {
  padding: 0 0 32px;
  display: none;
}

.accordion-item {
  border-bottom: 1px solid var(--default);
  margin-bottom: 32px;
}

.symptoms-icons-wrapper {
  padding: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  width: auto;
  margin: auto;
}

.wrapper-center {
  background-color: #f5f5f5;
}

.symptoms-icons-wrapper img {
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}

.symptoms-item p {
  color: var(--default);
  text-align: center;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 700;
}

.location-wrapper {
  padding-left: 32px;
  margin-bottom: 16px;
}

.location-wrapper p {
  margin-bottom: 8px;
  line-height: 1.6em;
}

.location-wrapper p:first-child {
  font-weight: 700;
}

.location-wrapper p a {
  color: var(--default);
}

.table-of-content {
  padding: 112px 0;
}

.table-of-content-row .table-of-content-column:first-child ul {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.table-of-content-row .table-of-content-column:first-child ul li a.active,
.table-of-content-row .table-of-content-column:first-child ul li a:hover {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.table-of-content-row .table-of-content-column:first-child ul li a {
  display: block;
  padding: 12px 16px;
  border-radius: 100px;
  color: var(--default);
  text-decoration: none;
  transition: 0.3s ease;
}

.video-wrapper {
  margin: 80px 0;
}

.misconception-item,
.guide-item-wrapper {
  padding-top: 24px;
  border-top: 1px solid;
  margin-bottom: 48px;
}

.guide-for-carers {
  padding: 80px 0 112px;
  margin-top: 200px;
}

.guide-for-carers h2:first-child {
  margin-bottom: 192px;
}

.guide-for-carers .guide-section-header {
  margin-bottom: 80px;
}

.guide-list-wrapper {
  margin-bottom: 80px;
}

.guide-for-carers .text-right {
  margin-bottom: 201px;
}

.breast-cancer-support-group {
  padding: 60px 0;
}

.breast-cancer-support-group a {
  margin-bottom: 8px;
  display: block;
}

.breast-cancer-support-group * {
  color: var(--default);
}

.breast-cancer-support-group a:hover {
  color: var(--primary) !important;
}

.shared-decision-making-list-item {
  margin-bottom: 64px;
  text-align: center;
}

.shared-decision-making-list-item a {
  text-align: center;
  font-size: 16px;
  margin-top: 24px;
  font-weight: 700;
  display: inline-block;
}

.questions-to-ask {
  padding: 112px 0;
}

.table-of-content-row .table-of-content-column:first-child ul li:nth-child(2) a {
  padding-left: 32px;
}

.table-of-content-row .table-of-content-column:first-child ul li:nth-child(3) a {
  padding-left: 48px;
}

.table-of-content-row .table-of-content-column:first-child ul li:nth-child(4) a {
  padding-left: 64px;
}

.table-of-content-row .table-of-content-column:first-child ul li:nth-child(5) a {
  padding-left: 96px;
}

.two-button-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow-y: scroll;
  display: none;
}

.popup-active {
  display: block;
}

.popup-overlay {
  background-color: rgba(0, 0, 0, 0.4509803922);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup-content-wrapper {
  position: relative;
}

.popup-close-icon {
  cursor: pointer;
  position: fixed;
  top: 32px;
  right: 32px;
  height: 56px;
  width: 56px;
}

.popup-content-main-wrapper {
  position: relative;
}

.banner-img-wrapper-new {
  display: flex;
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}

.banner-main-img {
  width: 55%;
  height: 545px;
  object-fit: contain;
  object-position: bottom;
}

.banner-image-logo {
  position: absolute;
  left: 0;
  top: -5%;
  width: 50%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.disclaimer-text {
  position: absolute;
  bottom: -20px;
  font-size: 0.65rem;
  right: 5px;
  width: auto;
  display: block;
}

.two-column-file {
  padding: 60px 0;
}

.file-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.file-row .file-row-col:first-child {
  width: 60%;
}

.file-row .file-row-col:last-child {
  width: 40%;
}

.breast-cancer-support-group ul li a {
  color: var(--default);
  text-decoration: none;
}

.breast-cancer-support-group ul li a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breast-cancer-support-group li {
  display: flex;
  gap: 20px;
}

.breast-cancer-support-group li img,
.custom-awareness-list li img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.breast-cancer-support-group ul {
  list-style-type: none;
  padding: 0;
}

.page-body-header img,
.breast-cancer-solo-banner {
  width: 65%;
  display: block;
  margin: 0 auto;
}

.custom-icon-list {
  padding: 0;
  list-style-type: none;
}

.custom-icon-list li {
  display: flex;
  gap: 16px;
}

.custom-icon-list li img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.custom-icon-list li p {
  margin-bottom: 0;
  padding-top: 5px;
}

.awareness-section .bg-color:first-child {
  padding-top: 60px;
  padding-bottom: 30px;
}

.awareness-section .bg-color:last-child {
  padding-bottom: 60px;
  padding-top: 60px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px 50px;
  border: none;
  width: 500px;
  text-align: center;
  border-radius: 10px;
}

.modal-content button {
  border: 1px solid var(--primary);
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 100px;
  color: var(--primary);
  cursor: pointer;
  display: inline-block;
  background-color: transparent;
}

.modal-content button:hover {
  background-color: var(--primary);
  color: var(--white);
}

.file-row .file-row-col:first-child .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.file-row .file-row-col:first-child .btn img {
  width: 20px;
  border: 2px solid;
  border-radius: 50%;
  padding: 6px;
}

.file-row .file-row-col:first-child .btn:hover img {
  background-color: var(--primary);
}

.treatment-options-header {
  background-color: var(--secondary);
}

.support-page-body-header,
.treatment-options-header {
  padding-bottom: 0;
}

.support-page-body-header {
  background-color: rgb(235, 200, 205);
}

.support-page-body-header img,
.treatment-options-header img {
  margin: 0 auto;
  height: 250px;
  object-fit: contain;
}

.signs-and-symptoms-popup .popup-content {
  background-color: var(--white);
  padding: 50px;
  margin-top: 100px;
  margin-bottom: 50px;
}

.signs-and-symptoms-popup p a {
  color: var(--default);
}

.signs-and-symptoms-popup .popup-content ul {
  margin-top: 0 !important;
  margin-bottom: 16px;
}

.signs-and-symptoms-popup tr th {
  text-align: left;
}

.signs-and-symptoms-popup td p {
  font-size: 16px;
}

.signs-and-symptoms-popup table,
.signs-and-symptoms-popup table th,
.signs-and-symptoms-popup table td {
  border: 1px solid var(--default);
  padding: 5px;
}

.signs-and-symptoms-popup table {
  margin-bottom: 20px;
}

.popup-content a.btn {
  display: block;
  margin: 20px auto;
  text-align: center;
  font-size: 18px;
}

.care-guide-btn .ionicon-heart {
  margin-right: 10px;
}

.download-image-wrapper {
  display: flex;
  justify-content: end;
}
.download-image-wrapper .download-image-link {
  display: flex;
  color: var(--white);
  margin-bottom: 5px;
  align-items: center;
  font-size: 1rem;
}
.download-image-wrapper .download-image-link img {
  display: inline-block;
  margin-right: 5px;
}

@media (min-width: 1300px) {
  .container-large {
    width: 1300px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1000px;
    margin: 0 auto;
  }
  .awareness-section .container {
    width: 1000px;
  }
  .footer-bottom ul li a {
    padding: 0 24px !important;
  }
  .treatment-options-header p {
    width: 1100px;
  }
}
@media (min-width: 1024px) {
  .banner-img-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
  }
  .home-banner-wrapper .left-image-wrapper img {
    height: 545px;
  }
  .popup-content {
    width: 1000px;
    display: block;
    margin: 0 auto;
    padding: 100px 0 100px;
  }
  .two-column-file .row {
    display: flex;
    gap: 100px;
  }
  .two-column-file .row .col {
    width: 50%;
  }
}
@media (min-width: 769px) {
  .navbar-toggler-wrapper {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer-bottom ul,
  .footer-bottom ul li:nth-child(2) a {
    border-right: 1px solid var(--default);
    border-left: 1px solid var(--default);
  }
  .footer-bottom ul li:nth-child(3) a {
    border-right: 1px solid var(--default);
  }
  .footer-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .footer-bottom ul {
    display: flex;
  }
  .footer-bottom ul li a {
    padding: 0 10px;
  }
  .banner-img-wrapper div {
    width: 50%;
  }
  .right-image-wrapper img {
    margin-bottom: 112px;
  }
  .stages-header p {
    width: 550px;
    display: block;
    margin: 0 auto;
  }
  .misconception-item,
  .guide-item-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
  }
  .shared-decision-making-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .table-of-content-row {
    display: flex;
    justify-content: space-between;
  }
  .table-of-content-row .table-of-content-column:first-child {
    width: 25%;
  }
  .table-of-content-row .table-of-content-column:last-child {
    width: 60%;
  }
  .shared-decision-making-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .navbar.darkHeader .nav-right-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 32px;
  }
  .navbar.darkHeader .nav-right-wrapper .top-nav-row {
    margin-bottom: 0;
  }
  .before-footer {
    background-color: rgb(255, 255, 255);
    line-height: 0.5vh;
    padding: 0 4vw;
  }
  .before-footer .wrapper {
    align-items: center;
  }
  .before-footer .wrapper .before-footer-first .bff-text {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media (min-width: 100px) {
  .home-banner .home-banner-wrapper .banner-left img:nth-of-type(1) {
    height: clamp(57vw, 24vw, 300px);
    bottom: -7%;
    left: -1vw;
    z-index: 3;
  }
}
@media (min-width: 1020px) {
  .home-banner .home-banner-wrapper .banner-left img:nth-of-type(1) {
    height: clamp(30vw, 24vw, 300px);
    bottom: -7%;
    left: -1vw;
    z-index: 3;
  }
}
.banner-video-wrapper {
  width: 100%;
}
.banner-video-wrapper .kWidgetIframeContainer {
  width: 100% !important;
  height: 50vw !important;
}

@media (min-width: 300px) {
  .home-banner .home-banner-wrapper {
    grid-template-columns: 1fr;
  }
  .home-banner .home-banner-wrapper .banner-left {
    padding-top: 35vw;
    overflow: hidden;
  }
  .home-banner .home-banner-wrapper .banner-left img:nth-of-type(2) {
    left: 16vw;
  }
  .home-banner .home-banner-wrapper .banner-left img:nth-of-type(3) {
    left: 45vw;
    z-index: 3;
  }
  .home-banner .home-banner-wrapper .banner-left img:nth-of-type(4) {
    left: 63vw;
  }
  .home-banner .home-banner-wrapper .banner-right {
    padding-bottom: 30vw;
    padding-top: 18vw;
  }
  .home-banner .home-banner-wrapper .banner-right img {
    height: 48vw;
    bottom: -15px;
  }
  .home-banner .home-banner-wrapper .banner-right img:nth-of-type(1) {
    left: 3vw;
    z-index: 2;
  }
  .home-banner .home-banner-wrapper .banner-right img:nth-of-type(2) {
    left: 25vw;
    z-index: 2;
    height: 65vw;
    bottom: -19vw;
  }
  .home-banner .home-banner-wrapper .banner-right img:nth-of-type(3) {
    left: 51vw;
    z-index: 3;
  }
  .home-banner .home-banner-wrapper .banner-right img:nth-of-type(4) {
    left: 67vw;
  }
  .home-banner .banner-image-logo {
    top: 3vh;
    width: 40%;
    left: 2vw;
  }
  .before-footer .wrapper .before-footer-first {
    text-align: center;
    flex-wrap: wrap;
  }
  .before-footer .wrapper .before-footer-first img {
    height: 24vw;
  }
  .before-footer .wrapper .before-footer-second-images img {
    height: auto;
  }
  .home-slider-wrapper .section-container {
    grid-template-columns: 1fr;
  }
  .last-section .last-section-contents {
    grid-template-columns: 1fr;
    height: max-content;
    padding-bottom: 10vw;
  }
  .last-section .last-section-contents .section-text {
    padding: 0 2vw;
  }
  .last-section .last-section-contents .section-text button span p {
    font-size: 4vw;
  }
  .underlined {
    border-bottom: solid 5px;
  }
}
@media (min-width: 768px) {
  .home-banner .home-banner-wrapper .banner-left {
    padding-top: 15vw;
  }
}
@media (max-width: 950px) {
  .home-button-text-wrapper {
    padding: 15px 120px;
    text-align: center;
  }
  .below-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 1024px) {
  .container-large,
  .container {
    padding: 0 20px;
  }
  .navbar-nav li a {
    font-size: 1.25rem;
  }
  .modal-content {
    margin: 20% auto 0;
  }
  .topbar-nav p:first-child {
    font-size: 1.125rem;
  }
  .banner-video-wrapper {
    width: 75%;
  }
  .banner-video-wrapper .kWidgetIframeContainer {
    width: 100% !important;
    height: 20vw !important;
  }
  .home-banner .home-banner-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .home-banner .home-banner-bottom .banner-bottom-left {
    display: flex;
    justify-items: center;
    align-items: center;
  }
  .home-banner .home-banner-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .home-banner .home-banner-wrapper .banner-text .text-header {
    font-size: 3vw;
    line-height: 5vw;
  }
  .home-banner .home-banner-wrapper .banner-text .text-p {
    font-size: 3.5vw;
  }
  .home-banner .home-banner-wrapper .banner-text .text-p-bold {
    font-size: 3.5vw;
    font-family: "roboto-regular-text";
  }
  .home-banner .home-banner-wrapper .banner-left {
    padding-top: 160px;
  }
  .home-banner .home-banner-wrapper .banner-left img,
  .home-banner .home-banner-wrapper .banner-right img {
    height: 41vw;
  }
  .home-banner .home-banner-wrapper .banner-right {
    display: flex;
    box-sizing: border-box;
  }
  .home-banner .home-banner-wrapper .banner-right img {
    z-index: 1;
  }
  .home-banner .home-banner-wrapper .banner-right img:nth-of-type(1) {
    bottom: -2vw;
    left: -2vw;
    z-index: 2;
  }
  .home-banner .home-banner-wrapper .banner-right img:nth-of-type(2) {
    left: 10vw;
    z-index: 3;
    height: 57vw;
    bottom: -20vw;
  }
  .home-banner .home-banner-wrapper .banner-right img:nth-of-type(3) {
    left: 26vw;
    z-index: 3;
    bottom: -10vw;
  }
  .home-banner .home-banner-wrapper .banner-right img:nth-of-type(4) {
    left: 33vw;
    z-index: 3;
  }
  .home-banner .banner-image-logo {
    top: -5vw;
    width: 30%;
    left: 2vw;
  }
  .before-footer .wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .before-footer .wrapper .before-footer-first .bff-text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .before-footer .wrapper .before-footer-first .bff-text .bff-text-field-paragraphs {
    text-align: start;
  }
  .before-footer .wrapper .before-footer-second-images {
    display: flex;
  }
  .before-footer .wrapper .before-footer-second-images img {
    width: auto;
    height: 8vw;
  }
  .before-footer .before-footer-first .bff-texts {
    display: flex;
    align-items: center;
  }
  .before-footer .before-footer-first .bff-text-field-paragraphs .bff-text {
    font-size: 2.5vw;
    line-height: 2.5vw;
  }
  .before-footer .before-footer-first .bff-text-field-paragraphs .bff-text p {
    font-weight: thin;
  }
  .before-footer .before-footer-first .bff-text-field-paragraphs .bff-text b {
    font-weight: bolder;
  }
  .before-footer .before-footer-first .bff-text-field-paragraphs .bff-text2 {
    font-size: 2.5vw;
  }
  .home-slider-wrapper .section-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-slider-wrapper .section-general img {
    height: 15vw;
  }
  .home-slider-wrapper .section-general .section-header-text {
    font-size: 5vw;
  }
  .home-slider-wrapper .section-general .section-body-text {
    font-size: 3vw;
  }
  .section-two-part-four p {
    font-size: 3.5vw;
  }
  .treatment-options {
    padding: 4vw 0;
  }
  .treatment-options .options-text .text {
    font-size: 2.5vw;
  }
  .treatment-options .options-text .header {
    font-size: 4.7vw;
  }
  .treatment-options .options-text .text-2 {
    font-size: 2.4vw;
  }
  .treatment-options button {
    width: auto;
  }
  .treatment-options button span p {
    font-size: 3vw;
    padding: 10px;
  }
  .last-section .last-section-contents {
    grid-template-columns: 1fr;
    padding: 60px 2vw;
  }
  .last-section .section-text {
    padding: 4vw;
    display: flex;
    align-items: start;
    gap: 2vw;
    padding-bottom: 2vw;
  }
  .last-section .section-text .main-text {
    width: 60vw;
    text-align: start;
  }
  .last-section .section-text .main-text .header {
    font-size: 5vw;
  }
  .last-section .section-text .sub-text {
    width: 50vw;
    text-align: start;
  }
  .last-section .section-text .sub-text .text {
    font-size: 3vw;
  }
  .last-section .section-text button {
    width: 50vw;
  }
  .last-section .section-text button span p {
    font-size: 2vw !important;
    padding: 1vw;
  }
  .last-section .section-text img {
    bottom: 0;
    right: 1vw;
    height: 35vw;
  }
}
@media (min-width: 1441px) {
  .home-banner .home-banner-wrapper {
    width: 90vw;
    max-width: 3500px;
  }
}
@media (max-width: 768px) {
  .disclaimer-text {
    bottom: -5px;
    font-size: 0.5rem;
    right: 0;
    width: 50%;
    line-height: 1;
  }
  .footer-bottom {
    gap: 10px;
    flex-wrap: wrap;
  }
  .home-button-wrapper {
    grid-template-columns: 1fr;
  }
  .symptoms-icons-wrapper {
    padding: 40px;
  }
  .long-content-wrapper {
    padding: 64px 0;
  }
  .popup-content {
    padding: 100px 20px;
  }
  .popup-close-icon {
    top: 20px;
    right: 20px;
  }
  .two-column-file {
    padding: 30px 0;
  }
  .two-column-file .row .col:first-child {
    margin-bottom: 50px;
  }
  .navbar-nav {
    display: block;
  }
  .nav-right-wrapper {
    padding: 92px 20px 16px;
    background-color: var(--white);
    flex-wrap: wrap;
    flex-direction: column-reverse;
    display: none !important;
    position: fixed;
    right: 0;
    top: 0;
    width: 265px;
  }
  .nav-right-wrapper.active {
    display: flex !important;
  }
  .topbar-nav {
    margin-bottom: 0;
  }
  .navbar-toggler {
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-family: "header-text", sans-serif;
    font-weight: 700;
    text-decoration: underline;
    color: var(--default);
  }
  .navbar .container-large {
    padding: 8px 20px;
    align-items: center;
  }
  .navbar-toggler-wrapper {
    z-index: 999;
  }
  .topbar-nav p:first-child {
    font-size: 16px;
  }
  .topbar-nav {
    padding: 12px 17px;
    width: 100%;
    text-align: right;
  }
}
@media (max-width: 1050px) {
  .banner-main-img {
    width: 55%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .footer-bottom * {
    margin-bottom: 16px !important;
  }
  .navbar-brand img {
    width: 150px;
    margin: 0;
  }
  .navbar-toggler span:last-child {
    display: none;
  }
  .navbar-nav .nav-item {
    margin-bottom: 23px;
    text-align: right;
  }
  .navbar-nav .nav-item a {
    font-size: 16px;
    display: inline-block;
    text-align: right;
  }
  .topbar-nav a {
    text-align: right;
  }
  .page-body-header {
    padding: 120px 0 15px;
  }
  .home-button-wrapper-item {
    height: 75px;
  }
  .home-button-icon-wrapper {
    bottom: 0;
    margin: auto 0;
    display: flex;
    align-items: center;
  }
  .home-button-text-wrapper {
    padding: 12px 65px 12px 116px;
  }
  .home-button-text-wrapper h3 {
    font-size: 1.15rem;
  }
  .home-button-icon-wrapper img {
    height: 75px;
    width: 75px;
  }
  .right-image-wrapper {
    position: absolute;
    bottom: 0;
    padding-bottom: 64px;
  }
  .banner-img-wrapper {
    position: relative;
  }
  .slider-bottom-text {
    padding: 15px 0;
  }
  .homepage-decor-text {
    padding: 15px 0;
    text-align: center;
  }
  .symptoms-icons-wrapper {
    padding: 20px;
    width: auto;
    grid-template-columns: 1fr 1fr;
  }
  .signs-and-symptoms-bottom,
  .staging-system,
  .risk-factors,
  .stages-content-wrapper,
  .long-content-wrapper {
    padding: 30px 0;
  }
  .page-body-header h1 {
    margin-bottom: 0;
  }
  .page-body-header p {
    margin-top: 15px;
  }
  .container {
    padding: 0 20px;
  }
  .staging-system h3 {
    margin-bottom: 32px;
  }
  .above-title {
    font-size: 12px;
  }
  .page-body-header p.above-title {
    margin-top: 0 !important;
    margin-bottom: 16px;
  }
  .table-of-content {
    padding: 64px 0;
  }
  .shared-decision-making-list-item img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .location-wrapper a {
    word-break: break-word;
  }
  .breast-cancer-support-group {
    padding: 48px 0;
  }
  .breast-cancer-support-group h2 {
    margin-bottom: 48px;
  }
  .banner-main-img {
    width: 45%;
    height: auto;
  }
  .navbar {
    padding: 10px 0;
  }
  .navbar-brand .novartis-logo {
    width: 100px;
    height: auto;
  }
  .darkHeader .navbar-brand .novartis-logo {
    display: block;
  }
  .modal-content {
    padding: 20px;
    width: 330px;
  }
  .support-page-body-header img,
  .treatment-options-header img {
    height: auto;
    width: 100%;
  }
  .support-page-body-header,
  .treatment-options-header {
    padding-bottom: 0;
  }
  .support-page-body-header img {
    width: 85%;
  }
  .treatment-options-header img {
    width: 65%;
  }
  .step-header {
    padding: 0 0 30px 0;
  }
  .custom-awareness-list {
    margin-bottom: 15px;
  }
}
@media (max-width: 400px) {
  .home-button-main-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .home-button-wrapper {
    gap: 15px;
  }
  .home-button-text-wrapper {
    padding: 10px 0 10px 90px;
  }
  .home-button-text-wrapper h3 {
    font-size: 1rem;
  }
  .banner-main-img {
    height: auto;
  }
  .symptoms-icons-wrapper {
    padding: 15px 0;
  }
  footer {
    padding: 30px 0 30px;
  }
  .footer-main {
    padding-bottom: 30px;
  }
}
@media (max-width: 360px) {
  .banner-img-wrapper-new {
    padding-top: 30px;
  }
  .signs-and-symptoms-popup .popup-content {
    padding: 30px 15px;
  }
  .modal-content {
    width: 80%;
    display: flex;
    flex-direction: column;
  }
  .modal-content button {
    margin-bottom: 10px;
  }
}
.glide__track p {
  margin-bottom: 0;
}

.screening-stats__img__container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.screening-stats__img__container .img-wrapper {
  flex: 1 1 0;
  width: 100%;
  padding: 30px 0;
}
.screening-stats__img__container .img-wrapper img {
  width: 100%;
  height: auto;
}
.screening-stats__img__container .img-wrapper:nth-child(1) {
  padding-bottom: 0;
}
.screening-stats__img__container .img-wrapper:nth-child(2) {
  padding-top: 0;
}
@media (min-width: 768px) {
  .screening-stats__img__container {
    flex-direction: row;
    gap: 30px;
  }
  .screening-stats__img__container .img-wrapper {
    width: 50%;
    padding: 30px 0 !important;
  }
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

img[loading=lazy] {
  background-color: gray; /* Background color while loading */
  opacity: 0; /* Start hidden */
  animation: blink 0.25s infinite; /* Blinking animation */
  transition: opacity 0.1s; /* Smooth transition */
}

@keyframes blink {
  0% {
    background-color: gray;
  }
  50% {
    background-color: lightgray;
  }
  100% {
    background-color: gray;
  }
}
img[loading=lazy].loaded {
  opacity: 1; /* Show the image when loaded */
  animation: none; /* Stop blinking when loaded */
  background-color: transparent;
}

.btn.btn-action {
  background-color: var(--tertiary);
  color: var(--white);
  border-color: var(--tertiary);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.btn.btn-action span {
  display: block;
  margin-right: 5px;
}
.btn .ionicon {
  height: 30px;
  width: auto;
}

label {
  font-size: 1.125rem;
  line-height: 1.6em;
}

.breast-lump-check {
  padding: 0;
}
.breast-lump-check .container {
  padding: 30px 20px;
}
.breast-lump-check__content {
  text-align: left;
}
.breast-lump-check__content h3 {
  color: var(--primary);
}
.breast-lump-check__content p {
  margin-bottom: 0;
}
.breast-lump-check__step-1 {
  background-color: var(--white);
}
.breast-lump-check__step-1__content {
  padding-bottom: 0 !important;
}
.breast-lump-check__step-1__container {
  overflow-x: auto;
  overflow-y: visible;
  height: auto;
  padding-top: 0 !important;
}
.breast-lump-check__step-1__field {
  display: none;
}
.breast-lump-check__step-1__size-references {
  display: flex;
  flex-direction: row;
  align-items: end;
  width: 80%;
  position: relative;
  max-height: 100vh;
  min-height: 520px;
}
.breast-lump-check__step-1__size-references > div {
  flex: 1;
  position: absolute;
  transform: translateX(-50%);
}
.breast-lump-check__step-1__size-references__img {
  display: flex;
  justify-content: end;
}
.breast-lump-check__step-1__size-references__shape {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: end;
}
.breast-lump-check__step-1__size-references__shape .shape {
  border-radius: 50%;
  background-color: var(--tertiary);
}
.breast-lump-check__step-1__size-references > div:nth-child(1) {
  left: 0%;
  transform: translateX(-45%);
}
.breast-lump-check__step-1__size-references > div:nth-child(1) .shape,
.breast-lump-check__step-1__size-references > div:nth-child(1) img {
  height: 37.8px;
  width: 37.8px;
}
.breast-lump-check__step-1__size-references > div:nth-child(2) {
  left: 20%;
}
.breast-lump-check__step-1__size-references > div:nth-child(2) .shape,
.breast-lump-check__step-1__size-references > div:nth-child(2) img {
  height: 75.6px;
  width: 75.6px;
}
.breast-lump-check__step-1__size-references > div:nth-child(3) {
  left: 40%;
}
.breast-lump-check__step-1__size-references > div:nth-child(3) .shape,
.breast-lump-check__step-1__size-references > div:nth-child(3) img {
  height: 115.4px;
  width: 115.4px;
}
.breast-lump-check__step-1__size-references > div:nth-child(4) {
  left: 60%;
}
.breast-lump-check__step-1__size-references > div:nth-child(4) .shape,
.breast-lump-check__step-1__size-references > div:nth-child(4) img {
  height: 151.2px;
  width: 151.2px;
}
.breast-lump-check__step-1__size-references > div:nth-child(5) {
  left: 80%;
}
.breast-lump-check__step-1__size-references > div:nth-child(5) .shape,
.breast-lump-check__step-1__size-references > div:nth-child(5) img {
  height: 189px;
  width: 189px;
}
.breast-lump-check__step-1__size-references > div:nth-child(6) {
  left: 100%;
}
.breast-lump-check__step-1__size-references > div:nth-child(6) .shape,
.breast-lump-check__step-1__size-references > div:nth-child(6) img {
  height: 226.8px;
  width: 226.8px;
}
.breast-lump-check__step-1__snap-positions {
  width: 80%;
  display: flex;
  position: relative;
}
.breast-lump-check__step-1__snap-positions > div {
  position: absolute;
  height: 12px;
  width: 2px;
  background-color: var(--primary);
}
.breast-lump-check__step-1__snap-positions > div:nth-child(1) {
  left: 0%;
}
.breast-lump-check__step-1__snap-positions > div:nth-child(2) {
  left: 20%;
}
.breast-lump-check__step-1__snap-positions > div:nth-child(3) {
  left: 40%;
}
.breast-lump-check__step-1__snap-positions > div:nth-child(4) {
  left: 60%;
}
.breast-lump-check__step-1__snap-positions > div:nth-child(5) {
  left: 80%;
}
.breast-lump-check__step-1__snap-positions > div:nth-child(6) {
  left: 100%;
}
.breast-lump-check__step-1__snap-positions-labels > div {
  background-color: transparent;
  color: var(--text);
  font-size: 1rem;
  width: auto;
  height: auto;
  margin-top: 10px;
  margin-left: -10px;
}
.breast-lump-check__step-1__size-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 1300px;
  padding-bottom: 60px;
  cursor: pointer;
}
.breast-lump-check__step-1__size-slider #size-slider {
  width: 80%;
  background-color: transparent;
  border: none;
  position: absolute;
  bottom: 32px;
  height: 50px;
}
.breast-lump-check__step-1__size-slider #size-slider span {
  border-radius: 50%;
  background-color: var(--primary);
  border-color: var(--primary);
  height: 30px;
  width: 30px;
  border-color: var(--primary) !important;
  cursor: pointer;
  margin-left: -15px;
}
.breast-lump-check__step-1__size-slider__bar {
  width: 100%;
}
.breast-lump-check__step-1__size-slider__bar div {
  display: block;
  margin-top: 0.8em;
  margin-bottom: 0.6em;
  margin-left: auto;
  margin-right: auto;
  border-style: solid;
  border-width: 1px;
  border-color: var(--primary);
}
.breast-lump-check__step-2 label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-self: unset;
  cursor: pointer;
  text-align: left;
}
.breast-lump-check__step-2 input[type=radio] {
  appearance: none;
  width: 3em;
  height: 3em;
  border: 0.35em solid var(--primary);
  margin-bottom: 5px;
  border-radius: 5px;
  margin-right: 15px;
  display: block;
  position: relative;
  flex: none;
}
.breast-lump-check__step-2 input[type=radio]:checked::after {
  display: block;
  content: " ";
  display: block;
  height: 70px;
  width: 70px;
  position: absolute;
  top: -25px;
  left: -10px;
  background-repeat: no-repeat;
  background-image: url(assets/images/checkmark-outline.svg);
}
.breast-lump-check__step-3 .container {
  padding-top: 0;
  overflow: hidden;
}
.breast-lump-check__step-3 #lump-location {
  width: 100%;
  height: 500px;
}
.breast-lump-check__step-3__location-field {
  position: relative;
}
.breast-lump-check__step-3__location-field__note {
  color: var(--white);
  background-color: var(--tertiary);
  position: absolute;
  display: flex;
  top: 15%;
  right: 3%;
  width: 30%;
  padding: 30px 20px;
  text-align: left;
  z-index: 1;
}
.breast-lump-check__step-3__location-field__note .icon-wrapper {
  flex: none;
  border: solid 3px var(--white);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.breast-lump-check__step-3__location-field__note .icon {
  height: auto;
  width: 40px;
}
.breast-lump-check__step-3__location-field__note .text {
  padding-right: 10px;
}
@media (max-width: 1000px) {
  .breast-lump-check__step-3__location-field #lump-location {
    height: 600px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.95) translateX(-5%);
    left: 0%;
  }
  .breast-lump-check__step-3__location-field__note {
    position: relative;
    top: initial;
    left: initial;
    right: initial;
    width: inherit;
    align-items: center;
  }
}
@media (max-width: 900px) {
  .breast-lump-check__step-3__location-field #lump-location {
    height: 600px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.85) translateX(-10%);
    left: 0%;
  }
}
@media (max-width: 800px) {
  .breast-lump-check__step-3__location-field #lump-location {
    height: 500px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.85) translateX(-15%);
    left: 0%;
  }
}
@media (max-width: 750px) {
  .breast-lump-check__step-3__location-field #lump-location {
    height: 500px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.75) translateX(-22%);
    left: 0%;
  }
}
@media (max-width: 700px) {
  .breast-lump-check__step-3__location-field #lump-location {
    height: 500px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.75) translateX(-25%);
    left: 0%;
  }
}
@media (max-width: 600px) {
  .breast-lump-check__step-3__location-field #lump-location {
    height: 500px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.75) translateX(-28%);
    left: 0%;
  }
}
@media (max-width: 500px) {
  .breast-lump-check__step-3__location-field #lump-location {
    height: 375px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.65) translateX(-41%);
    left: 0%;
    top: -25%;
  }
}
@media (max-width: 450px) {
  .breast-lump-check__step-3__location-field #lump-location {
    height: 375px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.65) translateX(-47%);
    left: 0%;
    top: -25%;
  }
}
@media (max-width: 375px) {
  .breast-lump-check__step-3__location-field #lump-location {
    height: 375px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.65) translateX(-50%);
    left: 0%;
    top: -25%;
  }
}
@media (max-width: 325px) {
  .breast-lump-check__step-3__location-field #lump-location {
    height: 375px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.65) translateX(-55%);
    left: 0%;
    top: -25%;
  }
}
@media (max-width: 250px) {
  .breast-lump-check__step-3__location-field__note {
    display: none;
  }
  .breast-lump-check__step-3__location-field #lump-location {
    height: 375px;
  }
  .breast-lump-check__step-3__location-field #lump-location > div {
    transform: scale(0.5) translateX(-84%);
    left: 0%;
    top: -25%;
  }
}
.breast-lump-check__action {
  display: flex;
  align-items: center;
  justify-content: center;
}
.breast-lump-check__notes p {
  text-align: left;
}

.image-placeholder {
  width: 300px;
  height: 200px;
  background: #e0e0e0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #e0e0e0 0%, #f5f5f5 50%, #e0e0e0 100%);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}

/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWFpbi5jc3MiLCJtYXBwaW5ncyI6Ijs7O0FBQUE7Ozs7Ozs7OztFQVNFO0FBQ0Y7Q0FDQyxrQkFBa0I7Q0FDbEIsZ0JBQWdCO0FBQ2pCO0FBQ0E7Q0FDQyxrQkFBa0I7Q0FDbEIsVUFBVTtDQUNWLFlBQVk7Q0FDWixhQUFhO0NBQ2IsZUFBZTtDQUNmLGtCQUFrQjtBQUNuQjtBQUNBO0NBQ0Msa0JBQWtCO0NBQ2xCLFVBQVU7Q0FDVixlQUFlO0NBQ2YsY0FBYztDQUNkLFNBQVM7Q0FDVCx3QkFBd0I7QUFDekI7O0FBRUE7Q0FDQyxZQUFZO0FBQ2I7QUFDQTtDQUNDLFVBQVU7Q0FDVixrQkFBa0I7QUFDbkI7QUFDQTtDQUNDLE1BQU07Q0FDTixZQUFZO0FBQ2I7QUFDQTtDQUNDLE9BQU87QUFDUjtBQUNBO0NBQ0MsUUFBUTtBQUNUOztBQUVBO0NBQ0MsV0FBVztDQUNYLGFBQWE7QUFDZDtBQUNBO0NBQ0MsV0FBVztDQUNYLGNBQWM7Q0FDZCxvQkFBb0I7QUFDckI7QUFDQTtDQUNDLE9BQU87Q0FDUCxXQUFXO0FBQ1o7QUFDQTtDQUNDLFNBQVM7QUFDVjtBQUNBO0NBQ0MsTUFBTTtBQUNQOzs7OztBQzFEQTtBQUNBO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7RUFDQTtFQUVBO0VBRUE7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFFQTtBQ2RKOztBRGlCQTtFQUNJO0lBQ0k7RUNkTjtBQUNGO0FDakNBO0VBRUk7RUFFQTtFQUVBO0VBRUE7QUQrQko7QUN6QkE7RUFFSTtFQUVBO0VBRUE7RUFFQTtBRHVCSjtBQ25CQTtFQUVJO0VBRUE7RUFFQTtFQUVBO0FEaUJKO0FDYkE7RUFFSTtFQUVBO0VBRUE7RUFFQTtBRFdKO0FDTEE7RUFFSTtFQUVBO0VBRUE7RUFFQTtBREdKO0FDQ0E7RUFFSTtFQUVBO0VBRUE7RUFFQTtBREhKO0FDT0E7RUFFSTtFQUVBO0VBRUE7RUFFQTtBRFRKO0FDYUE7RUFFSTtFQUVBO0VBRUE7RUFFQTtBRGZKO0FDbUJBO0VBRUk7RUFFQTtFQUVBO0VBRUE7QURyQko7QUN5QkE7RUFFSTtFQUVBO0VBRUE7RUFFQTtBRDNCSjtBQytCQTtFQUVJO0VBRUE7RUFFQTtFQUVBO0FEakNKO0FDcUNBO0VBQ0k7RUFDQTtFQUNBO0FEbkNKOztBRXpHQTtBQUVBO0VBQ0k7QUYyR0o7O0FFekdBO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUY0R0o7O0FFekdBO0VBQ0k7QUY0R0o7O0FFekdBO0VBQ0k7QUY0R0o7O0FFMUdBO0VBQ0ksZUhyQk87QUNrSVg7O0FFekdBO0FBRUE7Ozs7O0VBS0k7QUYyR0o7O0FFekdBO0VBQ0k7QUY0R0o7O0FFMUdBO0VBQ0k7QUY2R0o7O0FFM0dBOztFQUVJO0VBQ0E7RUFDQTtBRjhHSjs7QUU1R0E7RUFDSTtBRitHSjs7QUU1R0E7RUFDSTtBRitHSjs7QUU1R0E7RUFDSTtJQUNJO0VGK0dOO0FBQ0Y7QUU1R0E7QUFDQTtFQUNJO0FGOEdKOztBRTNHQTtFQUNJO0FGOEdKOztBRTNHQTtFQUNJO0FGOEdKOztBRTNHQTtFQUNJO0FGOEdKOztBRTVHQTtFQUNJO0FGK0dKOztBRTdHQTtFQUNJO0FGZ0hKOztBRTlHQTtFQUNJO0FGaUhKOztBRS9HQTtFQUNJO0FGa0hKOztBRWhIQTtFQUNJO0FGbUhKOztBRWpIQTtFQUNJO0FGb0hKOztBRWxIQTtFQUNJO0FGcUhKOztBRW5IQTtFQUNJO0FGc0hKOztBRXBIQTtFQUNJO0FGdUhKOztBRXJIQTtFQUNJO0FGd0hKOztBRXJIQTtFQUNJO0VBQ0E7QUZ3SEo7O0FFcEhBO0FBRUE7OztFQUdJO0VBQ0E7QUZzSEo7O0FFbkhBO0VBQ0k7QUZzSEo7O0FFbkhBO0VBQ0k7QUZzSEo7O0FFbkhBOztFQUVJLG1CSHBJTztBQzBQWDs7QUVuSEE7RUFDSSxtQkg3SUk7QUNtUVI7O0FFbkhBO0VBQ0k7RUFDQTtFQUNBO0VBQ0EsbUJIcEpJO0FDMFFSOztBRWxIQTtBQUNBOztFQUVJO0VBQ0E7RUFDQTtFQUNBO0FGcUhKOztBRW5IQTs7RUFFSTtFQUNBO0FGc0hKOztBRXBIQTs7RUFFSTtFQUNBO0FGdUhKOztBRXJIQTs7RUFFSTtFQUNBO0FGd0hKOztBRXRIQTs7RUFFSTtFQUNBO0FGeUhKOztBRXZIQTs7RUFFSTtFQUNBO0FGMEhKOztBRXhIQTs7RUFFSTtFQUNBO0VBQ0E7QUYySEo7O0FFeEhBO0VBQ0k7O0lBRUk7RUYySE47RUV6SEU7O0lBRUk7RUYySE47RUV6SEU7O0lBRUk7RUYySE47RUV6SEU7O0lBRUk7RUYySE47RUV6SEU7O0lBRUk7RUYySE47RUV6SEU7O0lBRUk7RUYySE47QUFDRjtBRXhIQTtFQUNJOztJQUVJO0VGMEhOO0VFeEhFOztJQUVJO0VGMEhOO0VFeEhFOztJQUVJO0VGMEhOO0VFeEhFOztJQUVJO0VGMEhOO0VFeEhFOztJQUVJO0VGMEhOO0VFeEhFOztJQUVJO0VGMEhOO0VFdkhFOzs7SUFHSTtJQUNBO0VGeUhOO0FBQ0Y7QUV0SEE7QUFFQTtFQUNJO0FGdUhKOztBRXBIQTtFQUNJO0FGdUhKOztBRXBIQTtFQUNJO0FGdUhKOztBRXBIQTs7RUFFSTtFQUNBO0VBQ0E7RUFDQTtBRnVISjs7QUVwSEE7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FGdUhKOztBRXBIQTtFQUNJO0FGdUhKOztBRXBIQTtFQUNJO0FGdUhKOztBRXBIQTtFQUNJO0FGdUhKOztBRXBIQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0FGdUhKOztBRXBIQTs7RUFFSTtFQUNBO0FGdUhKOztBRXJIQTs7O0VBR0k7RUFDQTtBRndISjs7QUVySEE7RUFDSTtFQUNBO0VBQ0E7QUZ3SEo7O0FFckhBO0FBRUE7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBRnVISjs7QUVwSEE7RUFDSTtFQUNBO0FGdUhKOztBRXBIQTtFQUNJO0FGdUhKOztBRXBIQTtBQUNBOztFQUVJO0FGdUhKOztBRXJIQTs7RUFFSTtBRndISjs7QUV0SEE7O0VBRUk7RUFDQTtBRnlISjs7QUV2SEE7O0VBRUk7RUFDQTtBRjBISjs7QUV4SEE7O0VBRUk7QUYySEo7O0FFeEhBO0FBRUE7O0dBQUE7QUFLQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBRndISjs7QUVySEE7RUFDSTtFQUNBO0FGd0hKOztBRXJIQTtFQUNJO0VBQ0E7QUZ3SEo7O0FFckhBO0VBQ0k7RUFDQTtFQUNBO0FGd0hKOztBRXJIQTs7O0VBR0k7RUFDQTtFQUNBO0FGd0hKOztBRXJIQTtFQUNJO0VBQ0E7RUFDQTtBRndISjs7QUVySEE7OztFQUdJO0VBQ0E7RUFDQTtBRndISjs7QUVySEE7RUFDSTtFQUNBO0VBQ0E7QUZ3SEo7O0FFckhBOzs7RUFHSTtFQUNBO0VBQ0E7QUZ3SEo7O0FFbkhBO0FBRUE7RUFDSTtFQUNBO0VBQ0E7QUZxSEo7O0FFbkhBOzs7RUFHSTtFQUNBO0VBQ0E7QUZzSEo7O0FFbkhBO0VBQ0k7RUFDQTtFQUNBO0FGc0hKOztBRW5IQTs7O0VBR0k7RUFDQTtFQUNBO0FGc0hKOztBRWpIQTtBQUNBO0VBQ0k7QUZvSEo7O0FFakhBO0VBQ0k7RUFDQTtBRm9ISjs7QUVqSEE7RUFDSTtBRm9ISjs7QUVqSEE7QUFDQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0FGb0hKOztBRWxIQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0FGcUhKOztBRW5IQTs7RUFFSTtBRnNISjs7QUVwSEE7RUFDSTtBRnVISjs7QUVuSEE7QUFDQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FGc0hKOztBRXBIQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0FGdUhKOztBRXBIQTtBQUVBO0VBQ0k7QUZzSEo7O0FFbkhBO0VBQ0k7QUZzSEo7O0FFbkhBO0VBQ0k7QUZzSEo7O0FFbkhBO0VBQ0k7QUZzSEo7O0FFbkhBO0VBQ0k7QUZzSEo7O0FFbkhBO0VBQ0k7QUZzSEo7O0FFcEhBO0VBQ0k7QUZ1SEo7O0FFcEhBO0VBQ0k7QUZ1SEo7O0FFcEhBO0VBQ0k7QUZ1SEo7O0FFcEhBO0FBRUE7RUFDSTtBRnNISjs7QUVuSEE7RUFDSTtFQUNBO0FGc0hKOztBRW5IQTtFQUNJO0FGc0hKOztBRW5IQTtFQUNJO0FGc0hKOztBRW5IQTtFQUNJO0FGc0hKOztBRW5IQTtFQUNJO0FGc0hKOztBRW5IQTtFQUNJO0FGc0hKOztBRW5IQTtFQUNJO0FGc0hKOztBRW5IQTtFQUNJO0lBQ0k7RUZzSE47QUFDRjtBRW5IQTtFQUNJO0FGcUhKOztBRWxIQTtFQUNJO0FGcUhKOztBRWxIQTtFQUNJO0FGcUhKOztBRWxIQTtFQUNJO0VBQ0E7QUZxSEo7O0FFbEhBO0VBQ0k7QUZxSEo7O0FFbEhBO0VBQ0k7QUZxSEo7O0FFbEhBO0VBQ0k7RUFDQTtBRnFISjs7QUVsSEE7RUFDSTtBRnFISjs7QUVsSEE7RUFDSTtFQUNBO0VBQ0E7QUZxSEo7O0FFbEhBO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7QUZxSEo7O0FFbEhBO0VBQ0k7QUZxSEo7O0FFbEhBO0VBQ0k7QUZxSEo7O0FHMXdCQTtFQUNFO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFHQTtFQUNBO0VBQ0E7RUFHQTtFQUNBO0VBQ0E7RUFHQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBR0E7RUFHQTtFQUdBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUhnd0JGOztBRzd2QkE7RUFDRTtFQUNBO0VBQ0E7QUhnd0JGO0FHN3ZCQTtFQUNFO0VBQ0E7RUFDQTtBSCt2QkY7QUc1dkJBO0VBQ0U7RUFDQTtFQUNBO0FIOHZCRjtBR3p2QkE7RUFDRTtFQUVBO0FIMHZCRjs7QUd2dkJBO0VBQ0U7QUgwdkJGOztBR3h2QkE7RUFDRTtFQUNBO0FIMnZCRjs7QUd6dkJBO0VBQ0U7RUFDQTtBSDR2QkY7O0FHenZCQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSDR2QkY7O0FHenZCQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FINHZCRjs7QUd4dkJBOztFQUdFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSDB2QkY7O0FHcHZCQTtFQUNFO0VBQ0E7RUFDQTtBSHV2QkY7O0FHcHZCQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSHV2QkY7O0FHcHZCQTtFQUNFO0VBQ0E7QUh1dkJGO0FHcnZCRTtFQUNFO0FIdXZCSjtBR3J2QkU7RUFDRTtBSHV2Qko7QUd0dkJJO0VBQ0U7RUFDQTtFQUNBO0FId3ZCTjs7QUdudkJBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUhzdkJGO0FHcnZCRTtFQUNFO0VBQ0E7RUFDQTtBSHV2Qko7QUdwdkJFO0VBQ0U7QUhzdkJKO0FHcHZCSTtFQUNFO0VBQ0E7QUhzdkJOOztBR2p2QkE7RUFDRTtFQUNBO0VBQ0E7RUFDQTtBSG92QkY7O0FHbHZCQTtFQUNFO0VBQ0E7QUhxdkJGOztBR2x2QkE7RUFDRTtFQUNBO0FIcXZCRjs7QUdsdkJBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSHF2QkY7QUdsdkJJO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUhvdkJOO0FHbHZCTTtFQU5GO0lBT0c7RUhxdkJMO0VHbnZCSztJQUNDO0lBQ0E7RUhxdkJOO0FBQ0Y7QUdqdkJFO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUhtdkJKOztBRzl1QkE7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FIaXZCRjtBRy91QkU7RUFQRjtJQVFJO0VIa3ZCRjtBQUNGOztBRy91QkE7RUFDRTtBSGt2QkY7QUdqdkJFO0VBRkY7SUFHSTtFSG92QkY7QUFDRjs7QUc3dUJBO0VBQ0U7RUFDQTtBSGd2QkY7O0FHN3VCQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUhndkJGO0FHL3VCRTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0FIaXZCSjs7QUc3dUJBO0VBQ0U7RUFDQTtFQUNBO0FIZ3ZCRjs7QUc3dUJBO0VBQ0U7QUhndkJGOztBRzd1QkE7RUFDRTtBSGd2QkY7O0FHN3VCQTtFQUNFO0FIZ3ZCRjs7QUc3dUJBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FIZ3ZCRjtBRy91QkU7RUFDRTtBSGl2Qko7O0FHNXVCQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUgrdUJGO0FHN3VCRTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSCt1Qko7O0FHM3VCQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUg4dUJGO0FHNXVCRTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUg4dUJKOztBR3R1QkE7RUFDRTtFQUNBO0FIeXVCRjtBR3Z1QkU7RUFKRjtJQUtJO0VIMHVCRjtBQUNGO0FHeHVCRTtFQUNFO0lBQ0U7RUgwdUJKO0VHeHVCRTtJQUNFO0VIMHVCSjtBQUNGOztBR3R1QkE7RUFDRTtFQUNBO0FIeXVCRjtBR3Z1QkU7RUFDRTtFQUNBO0FIeXVCSjtBR3Z1QkU7RUFSRjtJQVNJO0VIMHVCRjtFR3p1QkU7SUFDRTtFSDJ1Qko7QUFDRjtBR3h1QkU7RUFDRTtJQUNFO0lBQ0E7SUFDQTtFSDB1Qko7RUd4dUJJO0lBQ0U7SUFDQTtFSDB1Qk47QUFDRjtBR3R1QkU7RUFDRTtBSHd1Qko7QUdydUJRO0VBQ0U7QUh1dUJWO0FHaHVCVTtFQUNFO0VBQ0E7QUhrdUJaO0FHaHVCWTtFQUNFO0VBQ0E7RUFDQTtBSGt1QmQ7QUdodUJZO0VBQ0U7QUhrdUJkO0FHaHVCWTtFQUNFO0FIa3VCZDtBRzN0Qkk7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSDZ0Qk47QUc1dEJNO0VBQ0U7RUFDQTtFQUNBO0FIOHRCUjtBRzN0Qk07RUFkRjtJQWVJO0lBQ0E7RUg4dEJOO0VHN3RCTTtJQUNFO0VIK3RCUjtBQUNGOztBR3h0QkE7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUgydEJGO0FHMXRCRTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSDR0Qko7QUczdEJJO0VBQ0U7RUFDQTtFQUNBO0FINnRCTjtBRzN0Qkk7RUFDRTtFQUNBO0VBQ0E7QUg2dEJOO0FHMXRCSTtFQUNFO0VBQ0E7RUFDQTtBSDR0Qk47QUd2dEJFO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSHl0Qko7QUd4dEJJO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FIMHRCTjtBR3p0Qk07RUFDRTtFQUNBO0VBQ0E7QUgydEJSOztBR3J0QkE7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FId3RCRjtBR3Z0QkU7RUFDRTtFQUNBO0VBQ0E7QUh5dEJKO0FHeHRCSTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUgwdEJOO0FHenRCTTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSDJ0QlI7QUd6dEJNO0VBQ0U7QUgydEJSO0FHMXRCUTtFQUNFO0VBQ0E7QUg0dEJWO0FHMXRCUTtFQUNFO0VBRUE7QUgydEJWO0FHeHRCTTtFQUNFO0FIMHRCUjtBR3p0QlE7RUFDRTtFQUNBO0VBQ0E7RUFDQTtBSDJ0QlY7QUd6dEJRO0VBQ0U7QUgydEJWO0FHenRCUTtFQUNFO0FIMnRCVjtBR3p0QlE7RUFDRTtBSDJ0QlY7QUd2dEJNO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FIeXRCUjtBR3h0QlE7RUFDRTtBSDB0QlY7QUd4dEJRO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUgwdEJWOztBR250QkE7RUFDRTtJQUNFO0lBQ0E7SUFDQTtJQUNBO0VIc3RCRjtFR3B0QkE7SUFDRTtJQUNBO0VIc3RCRjtBQUNGO0FJM3hDQTtFQUNFO0VBQ0E7QUo2eENGOztBSTN4Q0E7RUFDRTtFQUNBO0FKOHhDRjs7QUk1eENBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUoreENGOztBSTd4Q0E7RUFDRTtFQUNBO0VBQ0E7QUpneUNGO0FJOXhDRTtFQUxGO0lBTU07RUppeUNKO0FBQ0Y7QUkveENFO0VBVEY7SUFVTTtFSmt5Q0o7QUFDRjs7QUkveENBO0VBQ0U7QUpreUNGOztBSWh5Q0E7RUFDRTtFQUNBO0FKbXlDRjs7QUloeUNBO0VBQ0U7QUpteUNGOztBSWh5Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUpteUNGOztBSWh5Q0E7RUFDRTtBSm15Q0Y7O0FJanlDQTtFQUNFO0FKb3lDRjs7QUlqeUNBO0VBQ0U7RUFDQTtBSm95Q0Y7O0FJbHlDQTtFQUNFO0FKcXlDRjs7QUlseUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FKcXlDRjs7QUlueUNBO0VBQ0U7QUpzeUNGOztBSXB5Q0E7RUFDRTtBSnV5Q0Y7O0FJcHlDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUp1eUNGOztBSXB5Q0E7O0VBRUU7QUp1eUNGOztBSXB5Q0E7RUFDRTtBSnV5Q0Y7O0FJanlDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSm95Q0Y7QUlueUNFO0VBQ0U7QUpxeUNKO0FJbnlDRTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FKcXlDSjs7QUlqeUNBO0VBQ0U7QUpveUNGOztBSWp5Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtBSm95Q0Y7O0FJanlDQTtFQUNFO0FKb3lDRjs7QUlqeUNBO0VBQ0U7RUFDQTtBSm95Q0Y7O0FJaHlDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUpteUNGOztBSWh5Q0E7RUFDRTtFQUNBO0FKbXlDRjs7QUloeUNBO0VBQ0U7RUFDQTtBSm15Q0Y7O0FJanlDQTs7RUFFRTtFQUNBO0FKb3lDRjs7QUlqeUNBO0VBQ0U7RUFDQTtBSm95Q0Y7O0FJanlDRTtFQUNFO0VBQ0E7QUpveUNKOztBSWp5Q0E7RUFDRTtFQUNBO0FKb3lDRjs7QUlqeUNBO0VBQ0U7RUFDQTtFQUNBO0FKb3lDRjs7QUlqeUNBO0VBQ0U7QUpveUNGOztBSWp5Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FKb3lDRjs7QUlqeUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSm95Q0Y7O0FJanlDQTtFQUNFO0VBQ0E7RUFDQTtBSm95Q0Y7O0FJanlDQTtFQUNFO0FKb3lDRjs7QUlqeUNBO0VBQ0U7QUpveUNGOztBSWp5Q0E7RUFDRTtFQUNBO0VBQ0E7QUpveUNGOztBSWp5Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FKb3lDRjs7QUlqeUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUpveUNGOztBSWp5Q0E7RUFDRTtFQUNBO0VBQ0E7QUpveUNGOztBSWp5Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FKb3lDRjtBSWx5Q0U7RUFDRTtBSm95Q0o7O0FJaHlDQTtFQUNFO0VBQ0E7QUpteUNGOztBSWh5Q0E7RUFDRTtBSm15Q0Y7O0FJanlDQTtFQUNFO0FKb3lDRjs7QUlqeUNBO0VBQ0U7RUFDQTtBSm95Q0Y7O0FJanlDQTtFQUNFO0FKb3lDRjtBSWx5Q0U7RUFIRjtJQUlJO0VKcXlDRjtBQUNGOztBSWx5Q0E7RUFDRTtFQUNBO0FKcXlDRjs7QUlseUNBO0VBQ0U7QUpxeUNGOztBSWx5Q0E7RUFDRTtFQUNBO0FKcXlDRjs7QUlueUNBO0VBQ0UsbUJMeFNNO0FDOGtEUjtBSXJ5Q0U7RUFDRTtBSnV5Q0o7QUlyeUNFO0VBQ0UsbUJMdlNPO0FDOGtEWDs7QUlweUNBO0VBQ0U7QUp1eUNGOztBSXB5Q0E7RUFDRTtFQUNBO0VBQ0E7QUp1eUNGOztBSXB5Q0E7RUFDRTtBSnV5Q0Y7O0FJcHlDQTtFQUNFLG1CTDlUUztBQ3FtRFg7O0FJcHlDQTtFQUNFO0FKdXlDRjs7QUlweUNBO0VBQ0U7RUFDQTtFQUNBO0FKdXlDRjs7QUlweUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUp1eUNGOztBSXB5Q0E7RUFDRTtBSnV5Q0Y7O0FJcHlDQTtFQUNFO0FKdXlDRjs7QUlweUNBO0VBQ0UsZUx2VlM7RUt3VlQ7QUp1eUNGOztBSXB5Q0E7RUFDRTtBSnV5Q0Y7O0FJcnlDQTtFQUNFO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7RUFDRSxnQkx0V1M7QUM4b0RYOztBSXJ5Q0E7RUFDRTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7RUFDRTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7RUFDRTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7RUFDRTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7RUFDRTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0VBQ0E7QUp3eUNGOztBSXJ5Q0E7O0VBRUU7QUp3eUNGOztBSXJ5Q0E7RUFDRTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUp3eUNGOztBSXJ5Q0E7RUFDRTtFQUNBO0FKd3lDRjs7QUlyeUNBO0VBQ0U7RUFDQTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0FKd3lDRjs7QUlyeUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUp3eUNGOztBSXJ5Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FKd3lDRjs7QUlyeUNBO0VBQ0U7RUFDQTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0VBQ0E7QUp3eUNGOztBSXJ5Q0E7RUFDRTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7RUFDRTtFQUNBO0VBQ0E7QUp3eUNGOztBSXJ5Q0E7O0VBRUU7RUFDQTtFQUNBO0FKd3lDRjs7QUlyeUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7O0VBRUU7RUFDQTtFQUNBO0FKd3lDRjs7QUlyeUNBO0VBQ0U7RUFDQTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7RUFDRTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7RUFDRTtFQUNBO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7RUFDRTtBSnd5Q0Y7O0FJcnlDQTtFQUNFO0VBQ0E7QUp3eUNGOztBSXJ5Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FKd3lDRjs7QUlyeUNBO0VBQ0U7QUp3eUNGOztBSXJ5Q0E7RUFLRTtBSm95Q0Y7O0FJanlDQTtFQUtFO0FKZ3lDRjs7QUk3eENBO0VBS0U7QUo0eENGOztBSXp4Q0E7RUFLRTtBSnd4Q0Y7O0FJcnhDQTtFQUNFO0VBQ0E7RUFDQTtBSnd4Q0Y7O0FJcnhDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUp3eENGOztBSXJ4Q0E7RUFDRTtBSnd4Q0Y7O0FJcnhDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSnd4Q0Y7O0FJcnhDQTtFQUNFO0FKd3hDRjs7QUlyeENBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FKd3hDRjs7QUlyeENBO0VBQ0U7QUp3eENGOztBSXJ4Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtBSnd4Q0Y7O0FJcnhDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0FKd3hDRjs7QUlyeENBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUp3eENGOztBSXJ4Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUp3eENGOztBSXR4Q0E7RUFDRTtBSnl4Q0Y7O0FJdHhDQTtFQUNFO0VBQ0E7RUFDQTtBSnl4Q0Y7O0FJdHhDQTtFQUNFO0FKeXhDRjs7QUl0eENBO0VBQ0U7QUp5eENGOztBSXR4Q0E7RUFDRTtFQUNBO0FKeXhDRjs7QUl0eENBO0VBQ0U7RUFDQTtBSnl4Q0Y7O0FJdHhDQTtFQUNFO0VBQ0E7QUp5eENGOztBSXR4Q0E7O0VBRUU7RUFDQTtFQUNBO0FKeXhDRjs7QUl0eENBO0VBQ0U7RUFDQTtBSnl4Q0Y7O0FJdHhDQTs7RUFFRTtFQUNBO0VBQ0E7QUp5eENGOztBSXR4Q0E7RUFDRTtFQUNBO0FKeXhDRjs7QUl0eENBO0VBQ0U7RUFDQTtBSnl4Q0Y7O0FJdHhDQTtFQUNFO0VBQ0E7RUFDQTtBSnl4Q0Y7O0FJdHhDQTtFQUNFO0VBQ0E7QUp5eENGOztBSXR4Q0E7RUFDRSxpQkxyd0JTO0VLc3dCVCxvQkx2d0JNO0FDZ2lFUjs7QUl0eENBO0VBQ0Usb0JMMXdCUztFSzJ3QlQsaUJMM3dCUztBQ29pRVg7O0FJdHhDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUp5eENGOztBSXR4Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSnl4Q0Y7O0FJdHhDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUp5eENGOztBSXR4Q0E7RUFDRTtFQUNBO0FKeXhDRjs7QUl0eENBO0VBQ0U7RUFDQTtFQUNBO0FKeXhDRjs7QUl0eENBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUp5eENGOztBSXR4Q0E7RUFDRTtBSnl4Q0Y7O0FJdnhDQTtFQUNFO0FKMHhDRjs7QUl4eENBOztFQUVFO0FKMnhDRjs7QUl6eENBO0VBQ0U7QUo0eENGOztBSXp4Q0E7O0VBRUU7RUFDQTtFQUNBO0FKNHhDRjs7QUl6eENBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7QUo0eENGOztBSXp4Q0E7RUFDRTtBSjR4Q0Y7O0FJenhDQTtFQUNFO0VBQ0E7QUo0eENGOztBSXp4Q0E7RUFDRTtBSjR4Q0Y7O0FJenhDQTtFQUNFO0FKNHhDRjs7QUl6eENBOzs7RUFHRTtFQUNBO0FKNHhDRjs7QUl6eENBO0VBQ0U7QUo0eENGOztBSXp4Q0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtBSjR4Q0Y7O0FJeHhDRTtFQUNFO0FKMnhDSjs7QUlyeENBO0VBQ0U7RUFDQTtBSnd4Q0Y7QUl2eENFO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBSnl4Q0o7QUl4eENJO0VBQ0U7RUFDQTtBSjB4Q047O0FJcnhDQTtFQUNFO0lBQ0U7SUFDQTtFSnd4Q0Y7QUFDRjtBSXJ4Q0E7RUFDRTtJQUNFO0lBQ0E7RUp1eENGO0VJcHhDQTtJQUNFO0VKc3hDRjtFSW54Q0E7SUFDRTtFSnF4Q0Y7RUlseENBO0lBQ0U7RUpveENGO0FBQ0Y7QUlqeENBO0VBQ0U7SUFDRTtJQUNBO0lBQ0E7SUFDQTtFSm14Q0Y7RUloeENBO0lBQ0U7RUpreENGO0VJL3dDQTtJQUNFO0lBQ0E7SUFDQTtJQUNBO0VKaXhDRjtFSTl3Q0E7SUFDRTtJQUNBO0VKZ3hDRjtFSTd3Q0E7SUFDRTtFSit3Q0Y7QUFDRjtBSTV3Q0E7RUFDRTtJQUNFO0VKOHdDRjtBQUNGO0FJNXdDQTtFQUNFOztJQUVFO0lBQ0E7RUo4d0NGO0VJM3dDQTtJQUNFO0VKNndDRjtFSTF3Q0E7SUFDRTtJQUNBO0lBQ0E7RUo0d0NGO0VJendDQTtJQUNFO0VKMndDRjtFSXh3Q0E7SUFDRTtFSjB3Q0Y7RUl2d0NBO0lBQ0U7RUp5d0NGO0VJdHdDQTtJQUNFO0VKd3dDRjtFSXJ3Q0E7SUFDRTtJQUNBO0lBQ0E7RUp1d0NGO0VJcHdDQTs7SUFFRTtJQUNBO0VKc3dDRjtFSW53Q0E7SUFDRTtJQUNBO0VKcXdDRjtFSWx3Q0E7SUFDRTtJQUNBO0VKb3dDRjtFSWp3Q0E7SUFDRTtFSm13Q0Y7RUlod0NBO0lBQ0U7RUprd0NGO0VJL3ZDQTtJQUNFO0lBQ0E7RUppd0NGO0VJOXZDQTtJQUNFO0lBQ0E7SUFDQTtJQUNBO0VKZ3dDRjtFSTd2Q0E7SUFDRTtFSit2Q0Y7RUk3dkNBO0lBQ0U7SUFDQTtJQUNBO0VKK3ZDRjtFSTl2Q0U7SUFDRTtFSmd3Q0o7RUk5dkNNO0lBQ0U7SUFDQTtJQUNBO0VKZ3dDUjtBQUNGO0FJM3ZDQTtFQUNFO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7RUo2dkNGO0FBQ0Y7QUkzdkNBO0VBQ0U7SUFDRTtJQUNBO0lBQ0E7SUFDQTtFSjZ2Q0Y7QUFDRjtBSTF2Q0E7RUFDRTtBSjR2Q0Y7QUkzdkNFO0VBQ0U7RUFDQTtBSjZ2Q0o7O0FJenZDQTtFQUdJO0lBQ0U7RUowdkNKO0VJenZDSTtJQUNFO0lBQ0E7RUoydkNOO0VJdnZDUTtJQUNFO0VKeXZDVjtFSXZ2Q1E7SUFDRTtJQUNBO0VKeXZDVjtFSXZ2Q1E7SUFDRTtFSnl2Q1Y7RUlydkNJO0lBRUU7SUFDQTtFSnN2Q047RUlydkNNO0lBQ0U7SUFDQTtFSnV2Q1I7RUl0dkNRO0lBQ0U7SUFDQTtFSnd2Q1Y7RUl0dkNRO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7RUp3dkNWO0VJdHZDUTtJQUNFO0lBQ0E7RUp3dkNWO0VJdHZDUTtJQUNFO0VKd3ZDVjtFSW52Q0U7SUFDRTtJQUNBO0lBQ0E7RUpxdkNKO0VJaHZDSTtJQUNFO0lBQ0E7RUprdkNOO0VJanZDTTtJQUNFO0VKbXZDUjtFSTd1Q007SUFDRTtFSit1Q1I7RUl6dUNFO0lBQ0U7RUoydUNKO0VJdnVDRTtJQUNFO0lBQ0E7SUFDQTtFSnl1Q0o7RUl4dUNJO0lBQ0U7RUowdUNOO0VJdnVDVTtJQUNFO0VKeXVDWjtFSWp1Q0E7SUFDRTtFSm11Q0Y7QUFDRjtBSWh1Q0E7RUFHTTtJQUNFO0VKZ3VDTjtBQUNGO0FJM3NDQTtFQUNFO0lBQ0U7SUFDQTtFSjZzQ0Y7RUkzc0NBO0lBQ0UsbUJManRDSTtFQzg1RU47QUFDRjtBSTFzQ0E7RUFDRTs7SUFFRTtFSjRzQ0Y7RUl6c0NBO0lBQ0U7RUoyc0NGO0VJL3JDQTtJQUNFO0VKaXNDRjtFSTlyQ0E7SUFDRTtFSmdzQ0Y7RUk5ckNBO0lBQ0U7RUpnc0NGO0VJOXJDRTtJQUNFO0lBQ0E7RUpnc0NKO0VJNXJDRTtJQUNFO0lBQ0E7RUo4ckNKO0VJN3JDSTtJQUNFO0lBQ0E7SUFDQTtFSityQ047RUk1ckNFO0lBQ0U7RUo4ckNKO0VJM3JDTTtJQUNFO0lBQ0E7RUo2ckNSO0VJM3JDTTtJQUNFO0VKNnJDUjtFSTVyQ1E7SUFDRTtJQUNBO0VKOHJDVjtFSTFyQ0k7SUFDRTtFSjRyQ047RUkxckNJOztJQUVFO0VKNHJDTjtFSTFyQ0k7SUFDRTtJQUNBO0VKNHJDTjtFSTNyQ007SUFDRTtFSjZyQ1I7RUk1ckNRO0lBQ0U7SUFDQTtJQUNBO0VKOHJDVjtFSTVyQ1E7SUFDRTtJQUNBO0lBQ0E7SUFDQTtFSjhyQ1Y7RUk1ckNRO0lBQ0U7SUFDQTtJQUNBO0VKOHJDVjtFSTVyQ1E7SUFDRTtJQUNBO0VKOHJDVjtFSXpyQ0U7SUFDRTtJQUNBO0lBQ0E7RUoyckNKO0VJdHJDRTtJQUNFO0lBQ0E7RUp3ckNKO0VJdHJDTTtJQUNFO0lBQ0E7SUFDQTtFSndyQ1I7RUl2ckNRO0lBQ0U7RUp5ckNWO0VJcHJDSTtJQUNFO0VKc3JDTjtFSXJyQ007SUFDRTtJQUNBO0VKdXJDUjtFSWxyQ0k7SUFDRTtJQUNBO0VKb3JDTjtFSWpyQ007SUFDRTtJQUNBO0VKbXJDUjtFSWxyQ1E7SUFDRTtFSm9yQ1Y7RUlsckNRO0lBQ0U7RUpvckNWO0VJanJDTTtJQUNFO0VKbXJDUjtFSTdxQ0U7SUFDRTtFSitxQ0o7RUk1cUNJO0lBQ0U7RUo4cUNOO0VJM3FDTTtJQUNFO0VKNnFDUjtFSXpxQ007SUFDRTtFSjJxQ1I7RUlycUNFO0lBQ0U7RUp1cUNKO0VJbnFDQTtJQUNFO0VKcXFDRjtFSW5xQ0k7SUFDRTtFSnFxQ047RUlucUNJO0lBQ0U7RUpxcUNOO0VJbnFDSTtJQUNFO0VKcXFDTjtFSWxxQ0U7SUFDRTtFSm9xQ0o7RUlscUNNO0lBQ0U7SUFDQTtFSm9xQ1I7RUk5cENFO0lBQ0U7SUFFQTtFSitwQ0o7RUk3cENFO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7SUFDQTtFSitwQ0o7RUk5cENJO0lBQ0U7SUFDQTtFSmdxQ047RUkvcENNO0lBQ0U7RUppcUNSO0VJOXBDSTtJQUNFO0lBQ0E7RUpncUNOO0VJL3BDTTtJQUNFO0VKaXFDUjtFSTlwQ0k7SUFDRTtFSmdxQ047RUk5cENRO0lBQ0U7SUFDQTtFSmdxQ1Y7RUk1cENJO0lBQ0U7SUFDQTtJQUNBO0VKOHBDTjtBQUNGO0FJenBDQTtFQUVJO0lBQ0U7SUFDQTtFSjBwQ0o7QUFDRjtBSXRwQ0E7RUFDRTtJQUNFO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7RUp3cENGO0VJdHBDQTtJQUNFO0lBQ0E7RUp3cENGO0VJcnBDQTtJQUNFO0VKdXBDRjtFSXBwQ0E7SUFDRTtFSnNwQ0Y7RUlucENBO0lBQ0U7RUpxcENGO0VJbHBDQTtJQUNFO0VKb3BDRjtFSWpwQ0E7SUFDRTtJQUNBO0VKbXBDRjtFSWhwQ0E7SUFDRTtFSmtwQ0Y7RUkvb0NBO0lBQ0U7RUppcENGO0VJOW9DQTtJQUNFO0VKZ3BDRjtFSTdvQ0E7SUFDRTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7RUorb0NGO0VJNW9DQTtJQUNFO0VKOG9DRjtFSTNvQ0E7SUFDRTtFSjZvQ0Y7RUkxb0NBO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7RUo0b0NGO0VJem9DQTtJQUNFO0lBQ0E7RUoyb0NGO0VJeG9DQTtJQUNFO0VKMG9DRjtFSXZvQ0E7SUFDRTtFSnlvQ0Y7RUl0b0NBO0lBQ0U7SUFDQTtJQUNBO0VKd29DRjtBQUNGO0FJcm9DQTtFQUNFO0lBQ0U7SUFDQTtFSnVvQ0Y7QUFDRjtBSXBvQ0E7RUFDRTtJQUNFO0VKc29DRjtFSW5vQ0E7SUFDRTtJQUNBO0VKcW9DRjtFSWxvQ0E7SUFDRTtFSm9vQ0Y7RUlqb0NBO0lBQ0U7SUFDQTtFSm1vQ0Y7RUlob0NBO0lBQ0U7SUFDQTtJQUNBO0VKa29DRjtFSS9uQ0E7SUFDRTtFSmlvQ0Y7RUk5bkNBO0lBQ0U7RUpnb0NGO0VJN25DQTtJQUNFO0VKK25DRjtFSTVuQ0E7SUFDRTtJQUNBO0lBQ0E7SUFDQTtFSjhuQ0Y7RUkzbkNBO0lBQ0U7RUo2bkNGO0VJMW5DQTtJQUNFO0VKNG5DRjtFSXpuQ0E7SUFDRTtJQUNBO0VKMm5DRjtFSXhuQ0E7SUFDRTtJQUNBO0lBQ0E7RUowbkNGO0VJdm5DQTtJQUNFO0VKeW5DRjtFSXRuQ0E7SUFDRTtFSnduQ0Y7RUlybkNBO0lBQ0U7SUFDQTtFSnVuQ0Y7RUlwbkNBO0lBQ0U7SUFDQTtJQUNBO0VKc25DRjtFSW5uQ0E7Ozs7O0lBS0U7RUpxbkNGO0VJbG5DQTtJQUNFO0VKb25DRjtFSWpuQ0E7SUFDRSxnQkwvb0RPO0VDa3dGVDtFSWhuQ0E7SUFDRTtFSmtuQ0Y7RUkvbUNBO0lBQ0U7RUppbkNGO0VJOW1DQTtJQUNFO0VKZ25DRjtFSTdtQ0E7SUFDRTtJQUNBO0VKK21DRjtFSTVtQ0E7SUFDRTtFSjhtQ0Y7RUkzbUNBO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7RUo2bUNGO0VJMW1DQTtJQUNFO0VKNG1DRjtFSXptQ0E7SUFDRTtFSjJtQ0Y7RUl4bUNBO0lBQ0U7RUowbUNGO0VJdm1DQTtJQUNFO0lBQ0E7RUp5bUNGO0VJdG1DQTtJQUNFO0VKd21DRjtFSWxtQ0E7SUFDRTtJQUNBO0VKb21DRjtFSWptQ0E7SUFDRTtFSm1tQ0Y7RUlobUNBO0lBQ0U7SUFDQTtFSmttQ0Y7RUkvbENBOztJQUVFO0lBQ0E7RUppbUNGO0VJOWxDQTs7SUFFRTtFSmdtQ0Y7RUk5bENBO0lBQ0U7RUpnbUNGO0VJOWxDQTtJQUNFO0VKZ21DRjtFSTdsQ0E7SUFDRTtFSitsQ0Y7RUk3bENBO0lBQ0UsbUJMenVETztFQ3cwRlQ7QUFDRjtBSTdsQ0E7RUFDRTtJQUNFLGlCTG52REk7SUtvdkRKLG9CTHB2REk7RUNtMUZOO0VJN2xDQTtJQUNFLFNMbHZETztFQ2kxRlQ7RUk3bENBO0lBQ0U7RUorbENGO0VJN2xDQTtJQUNFO0VKK2xDRjtFSTdsQ0E7SUFDRTtFSitsQ0Y7RUk3bENBO0lBQ0U7RUorbENGO0VJNWxDQTtJQUNFO0VKOGxDRjtFSTVsQ0E7SUFDRSxvQkwxd0RJO0VDdzJGTjtBQUNGO0FJM2xDQTtFQUNFO0lBQ0UsaUJMaHhESTtFQzYyRk47RUkzbENBO0lBQ0U7RUo2bENGO0VJM2xDQTtJQUNFO0lBQ0E7SUFDQTtFSjZsQ0Y7RUkzbENBO0lBQ0UsbUJMcnhETztFQ2szRlQ7QUFDRjtBSXpsQ0U7RUFDRTtBSjJsQ0o7O0FJdmxDQTtFQUNFO0VBRUE7RUFDQTtBSnlsQ0Y7QUl4bENFO0VBQ0U7RUFDQTtFQUNBO0FKMGxDSjtBSXhsQ0k7RUFDRTtFQUNBO0FKMGxDTjtBSXZsQ0U7RUFDRTtBSnlsQ0o7QUl2bENFO0VBQ0U7QUp5bENKO0FJdGxDRTtFQXRCRjtJQXVCSTtJQUNBO0VKeWxDRjtFSXhsQ0U7SUFDRTtJQUNBO0VKMGxDSjtBQUNGOztBSzU1RkE7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QUwrNUZBOztBSzc1RkE7RUFDQTtBTGc2RkE7O0FLOTVGQTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0FMaTZGSjs7QUs5NUZBO0VBQ0k7SUFBSztFTGs2RlA7RUtqNkZFO0lBQU07RUxvNkZSO0VLbjZGRTtJQUFPO0VMczZGVDtBQUNGO0FLcDZGQTtFQUNJO0VBQ0E7RUFDQTtBTHM2Rko7O0FNbjhGSTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBTnM4RlI7QU1wOEZRO0VBQ0k7RUFDQTtBTnM4Rlo7QU1sOEZJO0VBQ0k7RUFDQTtBTm84RlI7O0FNaDhGQTtFQUNJO0VBQ0E7QU5tOEZKOztBTzE5RkE7RUFDSTtBUDY5Rko7QU81OUZJO0VBQ0k7QVA4OUZSO0FPNTlGSTtFQUNJO0FQODlGUjtBTzc5RlE7RUFDSTtBUCs5Rlo7QU83OUZRO0VBQ0k7QVArOUZaO0FPNTlGSTtFQUNJO0FQODlGUjtBTzc5RlE7RUFDSTtBUCs5Rlo7QU83OUZRO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7QVArOUZaO0FPNTlGUTtFQUNJO0FQODlGWjtBTzM5RlE7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBUDY5Rlo7QU8zOUZZO0VBQ0k7RUFDQTtFQUNBO0FQNjlGaEI7QU8zOUZZO0VBQ0k7RUFDQTtBUDY5RmhCO0FPMTlGWTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0FQNDlGaEI7QU8zOUZnQjtFQUNJO0VBQ0E7QVA2OUZwQjtBT3o5Rlk7RUFDSTtFQUNBO0FQMjlGaEI7QU8xOUZnQjs7RUFFSTtFQUNBO0FQNDlGcEI7QU96OUZZO0VBQ0k7QVAyOUZoQjtBTzE5RmdCOztFQUVJO0VBQ0E7QVA0OUZwQjtBT3g5Rlk7RUFDSTtBUDA5RmhCO0FPejlGZ0I7O0VBRUk7RUFDQTtBUDI5RnBCO0FPeDlGWTtFQUNJO0FQMDlGaEI7QU96OUZnQjs7RUFFSTtFQUNBO0FQMjlGcEI7QU94OUZZO0VBQ0k7QVAwOUZoQjtBT3o5RmdCOztFQUVJO0VBQ0E7QVAyOUZwQjtBT3g5Rlk7RUFDSTtBUDA5RmhCO0FPejlGZ0I7O0VBRUk7RUFDQTtBUDI5RnBCO0FPcjlGUTtFQUNJO0VBQ0E7RUFDQTtBUHU5Rlo7QU9yOUZZO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7QVB1OUZoQjtBT3I5RmdCO0VBQ0k7QVB1OUZwQjtBT3I5RmdCO0VBQ0k7QVB1OUZwQjtBT3I5RmdCO0VBQ0k7QVB1OUZwQjtBT3I5RmdCO0VBQ0k7QVB1OUZwQjtBT3I5RmdCO0VBQ0k7QVB1OUZwQjtBT3I5RmdCO0VBQ0k7QVB1OUZwQjtBT245Rlk7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBUHE5RmhCO0FPbDlGUTtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBLG9CUi9KRDtFUWlLQztBUG05Rlo7QU9qOUZZO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FQbTlGaEI7QU9qOUZnQjtFQUNJO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QVBtOUZwQjtBT2g5Rlk7RUFHSTtBUGc5RmhCO0FPLzhGZ0I7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FQaTlGcEI7QU96OEZRO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FQMjhGWjtBT3o4RlE7RUFDSTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtBUDI4Rlo7QU9yOEZZO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QVB1OEZoQjtBT2o4RlE7RUFDSTtFQUNBO0FQbThGWjtBT2o4RlE7RUFDSTtFQUNBO0FQbThGWjtBT2o4RlE7RUFDSTtBUG04Rlo7QU9qOEZZO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QVBtOEZoQjtBT2g4RmdCO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7QVBrOEZwQjtBT2g4RmdCO0VBQ0k7RUFDQTtBUGs4RnBCO0FPaDhGZ0I7RUFDSTtBUGs4RnBCO0FPOTdGWTtFQUNJO0lBQ0k7RVBnOEZsQjtFTzk3RmtCO0lBQ0k7SUFDQTtFUGc4RnRCO0VPNzdGYztJQUNJO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtFUCs3RmxCO0FBQ0Y7QU83N0ZZO0VBQ0k7SUFDSTtFUCs3RmxCO0VPNzdGa0I7SUFDSTtJQUNBO0VQKzdGdEI7QUFDRjtBTzU3Rlk7RUFDSTtJQUNJO0VQODdGbEI7RU81N0ZrQjtJQUNJO0lBQ0E7RVA4N0Z0QjtBQUNGO0FPMzdGWTtFQUNJO0lBQ0k7RVA2N0ZsQjtFTzM3RmtCO0lBQ0k7SUFDQTtFUDY3RnRCO0FBQ0Y7QU8xN0ZZO0VBQ0k7SUFDSTtFUDQ3RmxCO0VPMTdGa0I7SUFDSTtJQUNBO0VQNDdGdEI7QUFDRjtBT3o3Rlk7RUFDSTtJQUNJO0VQMjdGbEI7RU96N0ZrQjtJQUNJO0lBQ0E7RVAyN0Z0QjtBQUNGO0FPeDdGWTtFQUNJO0lBQ0k7RVAwN0ZsQjtFT3g3RmtCO0lBQ0k7SUFDQTtJQUNBO0VQMDdGdEI7QUFDRjtBT3I3Rlk7RUFDSTtJQUNJO0VQdTdGbEI7RU9yN0ZrQjtJQUNJO0lBQ0E7SUFDQTtFUHU3RnRCO0FBQ0Y7QU9sN0ZZO0VBQ0k7SUFDSTtFUG83RmxCO0VPbDdGa0I7SUFDSTtJQUNBO0lBQ0E7RVBvN0Z0QjtBQUNGO0FPajdGWTtFQUNJO0lBQ0k7RVBtN0ZsQjtFT2o3RmtCO0lBQ0k7SUFDQTtJQUNBO0VQbTdGdEI7QUFDRjtBTy82Rlk7RUFDSTtJQUNJO0VQaTdGbEI7RU8vNkZjO0lBQ0k7RVBpN0ZsQjtFTy82RmtCO0lBQ0k7SUFDQTtJQUNBO0VQaTdGdEI7QUFDRjtBTzM2Rkk7RUFDSTtFQUNBO0VBQ0E7QVA2NkZSO0FPejZGUTtFQUNJO0FQMjZGWjs7QVExMUdBO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0FSNjFHSjs7QVF4MUdBO0VBQ0k7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBSUE7QVJ3MUdKOztBUXIxR0E7RUFDSTtJQUNJO0VSdzFHTjtBQUNGLEMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9yZXdyaXRlLW91ci1zdG9yeS8uL25vZGVfbW9kdWxlcy9qcXVlcnktdWkvdGhlbWVzL2Jhc2Uvc2xpZGVyLmNzcyIsIndlYnBhY2s6Ly9yZXdyaXRlLW91ci1zdG9yeS8uL3NyYy9zdHlsZXMvX3ZhcmlhYmxlcy5zY3NzIiwid2VicGFjazovL3Jld3JpdGUtb3VyLXN0b3J5Ly4vc3JjL3N0eWxlcy9tYWluLnNjc3MiLCJ3ZWJwYWNrOi8vcmV3cml0ZS1vdXItc3RvcnkvLi9zcmMvc3R5bGVzL19mb250cy5zY3NzIiwid2VicGFjazovL3Jld3JpdGUtb3VyLXN0b3J5Ly4vc3JjL3N0eWxlcy9fYmFzZS5zY3NzIiwid2VicGFjazovL3Jld3JpdGUtb3VyLXN0b3J5Ly4vc3JjL3N0eWxlcy9fcmV2aXNpb25zLnNjc3MiLCJ3ZWJwYWNrOi8vcmV3cml0ZS1vdXItc3RvcnkvLi9zcmMvc3R5bGVzL190aGVtZS5zY3NzIiwid2VicGFjazovL3Jld3JpdGUtb3VyLXN0b3J5Ly4vc3JjL3N0eWxlcy9fYWNjZXNzaWJpbGl0eS5zY3NzIiwid2VicGFjazovL3Jld3JpdGUtb3VyLXN0b3J5Ly4vc3JjL3N0eWxlcy9jb21wb25lbnRzL19mb3Jtcy5zY3NzIiwid2VicGFjazovL3Jld3JpdGUtb3VyLXN0b3J5Ly4vc3JjL3N0eWxlcy9fYnJlYXN0LWx1bXAtY2hlY2tlci5zY3NzIiwid2VicGFjazovL3Jld3JpdGUtb3VyLXN0b3J5Ly4vc3JjL3N0eWxlcy9fcGxhY2Vob2xkZXIuc2NzcyJdLCJzb3VyY2VzQ29udGVudCI6WyIvKiFcbiAqIGpRdWVyeSBVSSBTbGlkZXIgMS4xNC4wXG4gKiBodHRwczovL2pxdWVyeXVpLmNvbVxuICpcbiAqIENvcHlyaWdodCBPcGVuSlMgRm91bmRhdGlvbiBhbmQgb3RoZXIgY29udHJpYnV0b3JzXG4gKiBSZWxlYXNlZCB1bmRlciB0aGUgTUlUIGxpY2Vuc2UuXG4gKiBodHRwczovL2pxdWVyeS5vcmcvbGljZW5zZVxuICpcbiAqIGh0dHBzOi8vYXBpLmpxdWVyeXVpLmNvbS9zbGlkZXIvI3RoZW1pbmdcbiAqL1xuLnVpLXNsaWRlciB7XG5cdHBvc2l0aW9uOiByZWxhdGl2ZTtcblx0dGV4dC1hbGlnbjogbGVmdDtcbn1cbi51aS1zbGlkZXIgLnVpLXNsaWRlci1oYW5kbGUge1xuXHRwb3NpdGlvbjogYWJzb2x1dGU7XG5cdHotaW5kZXg6IDI7XG5cdHdpZHRoOiAxLjJlbTtcblx0aGVpZ2h0OiAxLjJlbTtcblx0Y3Vyc29yOiBwb2ludGVyO1xuXHR0b3VjaC1hY3Rpb246IG5vbmU7XG59XG4udWktc2xpZGVyIC51aS1zbGlkZXItcmFuZ2Uge1xuXHRwb3NpdGlvbjogYWJzb2x1dGU7XG5cdHotaW5kZXg6IDE7XG5cdGZvbnQtc2l6ZTogLjdlbTtcblx0ZGlzcGxheTogYmxvY2s7XG5cdGJvcmRlcjogMDtcblx0YmFja2dyb3VuZC1wb3NpdGlvbjogMCAwO1xufVxuXG4udWktc2xpZGVyLWhvcml6b250YWwge1xuXHRoZWlnaHQ6IC44ZW07XG59XG4udWktc2xpZGVyLWhvcml6b250YWwgLnVpLXNsaWRlci1oYW5kbGUge1xuXHR0b3A6IC0uM2VtO1xuXHRtYXJnaW4tbGVmdDogLS42ZW07XG59XG4udWktc2xpZGVyLWhvcml6b250YWwgLnVpLXNsaWRlci1yYW5nZSB7XG5cdHRvcDogMDtcblx0aGVpZ2h0OiAxMDAlO1xufVxuLnVpLXNsaWRlci1ob3Jpem9udGFsIC51aS1zbGlkZXItcmFuZ2UtbWluIHtcblx0bGVmdDogMDtcbn1cbi51aS1zbGlkZXItaG9yaXpvbnRhbCAudWktc2xpZGVyLXJhbmdlLW1heCB7XG5cdHJpZ2h0OiAwO1xufVxuXG4udWktc2xpZGVyLXZlcnRpY2FsIHtcblx0d2lkdGg6IC44ZW07XG5cdGhlaWdodDogMTAwcHg7XG59XG4udWktc2xpZGVyLXZlcnRpY2FsIC51aS1zbGlkZXItaGFuZGxlIHtcblx0bGVmdDogLS4zZW07XG5cdG1hcmdpbi1sZWZ0OiAwO1xuXHRtYXJnaW4tYm90dG9tOiAtLjZlbTtcbn1cbi51aS1zbGlkZXItdmVydGljYWwgLnVpLXNsaWRlci1yYW5nZSB7XG5cdGxlZnQ6IDA7XG5cdHdpZHRoOiAxMDAlO1xufVxuLnVpLXNsaWRlci12ZXJ0aWNhbCAudWktc2xpZGVyLXJhbmdlLW1pbiB7XG5cdGJvdHRvbTogMDtcbn1cbi51aS1zbGlkZXItdmVydGljYWwgLnVpLXNsaWRlci1yYW5nZS1tYXgge1xuXHR0b3A6IDA7XG59XG4iXSwibmFtZXMiOltdLCJzb3VyY2VSb290IjoiIn0=*/