@charset "UTF-8";
@import url("normalize.min.css");
:root {
  --primary-color: #F05B84;
  --primary-hover-color: #F27B9C;
  --accent-color: #FBA926;
  --accent-hover-color: #fbba51;
  --menu-color: #C4D9DC;
  --menu-hover-color: #CfE1E3;
}

@font-face {
  font-display: swap;
  font-family: "Gotham";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/GothamLight.otf") format("opentype");
}
@font-face {
  font-display: swap;
  font-family: "Gotham";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/GothamBook.otf") format("opentype");
}
@font-face {
  font-display: swap;
  font-family: "Gotham";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/GothamBookItalic.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Gotham";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/GothamBold.otf") format("opentype");
}
@font-face {
  font-display: swap;
  font-family: "Gotham";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/GothamBoldItalic.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Gotham";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/GothamMediumRegular.ttf") format("truetype");
}
html {
  font-family: "Gotham", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
}

html,
body {
  font-size: 14px;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: 600;
}

abbr[title] {
  border-bottom: 1px dotted var(--primary-color);
}

b,
strong,
.strong {
  font-weight: 600;
}

pre {
  white-space: pre-wrap;
}

a {
  text-decoration: none;
}

a:hover,
a:active {
  outline: 0;
}

a:focus {
  outline: none;
}

small, .small, sup {
  font-size: 60%;
}

sup {
  line-height: 0.6;
}

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

.text-right {
  text-align: right;
  max-width: 550px;
  margin-right: 45px;
  margin-left: auto;
}

.bottle-labeling {
  font-weight: 300;
  font-size: 11px;
  max-width: 287px;
}

.block {
  display: block;
}

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

.black-link {
  color: #333333 !important;
  text-decoration: underline;
}

.app {
  width: 100vw;
  height: 100vh;
  min-width: 1024px;
  min-height: 768px;
  overflow: hidden;
  position: relative;
}
.app .modal-overlay {
  z-index: 101;
  top: 0;
  position: absolute;
  background-color: rgba(62, 64, 65, 0.35);
  width: 100vw;
  height: 100vh;
}

.global-nav {
  z-index: 2;
  position: relative;
}
.global-nav ul {
  background-color: var(--menu-color);
  height: 86px;
  display: flex;
  font-size: 12px;
  margin: 0;
  padding-left: 0;
}
.global-nav li {
  width: 100%;
  list-style: none;
  position: relative;
}
.global-nav a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #333333;
  font-weight: 600;
  box-sizing: border-box;
  padding: 8px;
}
.global-nav a small {
  font-size: 80%;
}
.global-nav a:hover,
.global-nav a:focus {
  background-color: var(--menu-hover-color);
}
.global-nav a.active,
.global-nav .dropdown.opened a {
  background-color: white;
}
.global-nav a.active::before,
.global-nav .dropdown.opened::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
}
.global-nav a.primary.active::before {
  background: var(--primary-color);
}
.global-nav a.accent.active::before {
  background: var(--accent-color);
}
.global-nav .dropdown > a span::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 8px;
  display: inline-block;
  background: url("../images/svgs/chevron-down.svg") no-repeat;
}
.global-nav .dropdown.opened > a span::after {
  background: url("../images/svgs/chevron-up.svg") no-repeat;
}
.global-nav .dropdown ul {
  background-color: #FFFFFF;
  display: none;
  border-bottom: 1px solid #d6d7d7;
  border-right: 1px solid #d6d7d7;
  border-left: 1px solid #d6d7d7;
}
.global-nav .dropdown ul li a {
  background-color: #F7F7F7;
  color: #333333;
  font-weight: 700;
  padding: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  text-align: left;
}
.global-nav .dropdown ul li:not(:last-of-type) {
  border-bottom: 1px solid #DDDDDD;
}
.global-nav .dropdown ul li a:hover,
.global-nav .dropdown ul li a:focus {
  background-color: #EEEEEE;
}
.global-nav .dropdown.opened ul {
  box-shadow: 0 1px 2px #999999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: auto;
  position: relative;
  z-index: 3;
}

.icon-sm {
  width: 50px;
}

@media screen and (min-width: 1366px) {
  .icon-sm {
    width: 65px;
  }
  .bottle-labeling {
    font-size: 14px;
  }
  .bottle-labeling .small {
    font-size: 11px;
  }
}
.toggle-nav {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.toggle-nav.reversed {
  flex-direction: row-reverse;
  bottom: 45px;
}

.next-button, .prev-button {
  z-index: 100;
  position: relative;
  height: 86px;
  width: 90px;
  pointer-events: all;
}

.prev-button {
  background-image: url("../images/pngs/2x/icon-nav-prev.png");
  background-size: contain;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: right;
  border: 0;
  outline: 0;
  text-indent: -9999px;
  white-space: nowrap;
}

.next-button {
  background-image: url("../images/pngs/2x/icon-nav-next.png");
  background-size: contain;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: left;
  border: 0;
  outline: 0;
  text-indent: -9999px;
  white-space: nowrap;
}

@media screen and (min-width: 1366px) {
  .next-button, .prev-button {
    width: 100px;
  }
}
.global-footer {
  width: 100%;
  height: 68px;
  position: absolute;
  bottom: 0;
  z-index: 15;
  pointer-events: none;
}

.footer-nav {
  position: absolute;
  bottom: 0;
  right: 160px;
  pointer-events: all;
}
.footer-nav.right {
  right: 60px;
}
.footer-nav.left {
  right: unset;
  left: 420px;
}
.footer-nav a,
.footer-nav button {
  color: black;
  background-color: #f0f0f0;
  padding: 10px 15px;
  border: 0;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
.footer-nav a.text-primary,
.footer-nav button.text-primary {
  color: var(--primary-color);
}
.footer-nav a.text-accent,
.footer-nav button.text-accent {
  color: var(--accent-color);
}
.footer-nav a:hover,
.footer-nav button:hover,
.footer-nav a:focus,
.footer-nav button:focus {
  background-color: #f9f9f9;
}

.scroll {
  overflow: hidden scroll;
  overflow-y: scroll !important;
  overflow: -moz-scrollbars-vertical;
}

.scroll::-webkit-scrollbar-track {
  border-radius: 10px;
}

.scroll::-webkit-scrollbar {
  width: 7px;
  margin-top: 34px;
  border-radius: 10px;
  -webkit-appearance: none;
  -webkit-overflow-scrolling: auto;
}

.scroll::-webkit-scrollbar-thumb {
  margin-top: 34px;
  border-radius: 10px;
  background-color: #9a9c9e;
}

.scroll::-webkit-scrollbar-track-piece:start {
  background-color: #d6d7d7;
  margin-top: 34px;
  border-radius: 10px;
}

.scroll::-webkit-scrollbar-track-piece:end {
  background-color: #d6d7d7;
  margin-bottom: 34px;
  border-radius: 10px;
}

.primary-scroll {
  padding-right: 15px;
  overflow: hidden scroll;
  overflow-y: scroll !important;
  overflow: -moz-scrollbars-vertical;
}

.primary-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.primary-scroll::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
}

.primary-scroll::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--primary-color);
}

.dosing-scroll {
  max-height: 275px;
}

.accent-scroll {
  padding-right: 15px;
  overflow: hidden scroll;
  overflow-y: scroll !important;
  overflow: -moz-scrollbars-vertical;
}

.accent-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.accent-scroll::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
}

.accent-scroll::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--accent-color);
}

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

a.text-primary {
  text-decoration: underline;
}

a.text-primary:hover,
a.text-primary:focus {
  color: var(--primary-hover-color);
}

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

a.text-accent {
  text-decoration: underline;
}

a.text-accent:hover,
a.text-accent:focus {
  color: var(--accent-hover-color);
}

.scan-block a.text-primary,
.scan-block a.text-accent {
  text-decoration: none;
}

@media screen and (min-width: 1366px) {
  .footer-nav {
    right: 255px;
  }
  .footer-nav a,
  .footer-nav button {
    padding: 15px 20px;
  }
}
.main-image {
  max-width: 710px;
}

.border-box {
  box-sizing: border-box;
}

.ml-auto {
  margin-left: auto;
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.m0-auto {
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}

.w-380 {
  width: 380px !important;
}

.mw-326 {
  max-width: 326px;
}

.mw-600 {
  max-width: 600px !important;
}

.mw-650 {
  max-width: 650px;
}

.mw-727 {
  max-width: 727px;
}

.mw-767 {
  max-width: 767px;
}

.mw-796 {
  max-width: 796px;
}

.mw-845 {
  max-width: 845px;
}

.mw-987 {
  max-width: 987px;
}

.mw-1200 {
  max-width: 1200px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-32 {
  padding-top: 32px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.px-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.mr-2 {
  margin-right: 2px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.ml-48 {
  margin-left: 48px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

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

.mt-2 {
  margin-top: 2px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mt-96 {
  margin-top: 96px !important;
}

.mt-128 {
  margin-top: 128px !important;
}

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

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

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

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

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

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

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

.mb-64 {
  margin-bottom: 48px !important;
}

.text-12 {
  font-size: 12px !important;
}

.text-14 {
  font-size: 14px !important;
}

.text-15 {
  font-size: 15px !important;
}

.text-16 {
  font-size: 16px !important;
}

.text-18 {
  font-size: 18px !important;
}

.text-20 {
  font-size: 20px !important;
}

.text-24 {
  font-size: 24px !important;
}

.text-32 {
  font-size: 32px !important;
}

.text-62 {
  font-size: 62px !important;
}

.middle-line {
  border-right: 1px solid #C4C4C4;
}

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

.constrain-height {
  max-height: calc(100vh - 190px);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-split {
  display: flex;
  justify-content: space-between;
  max-height: calc(100vh - 190px);
  padding: 45px 35px 35px 125px;
}
.flex-split div {
  width: 47%;
}

.modal-split {
  display: flex;
  justify-content: space-between;
  height: calc(100vh - 120px);
}
.modal-split div {
  width: 47%;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.pull-end {
  justify-self: flex-end;
}

.space-evenly {
  justify-content: space-evenly;
}

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

.uppercase {
  text-transform: uppercase;
}

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

.home-indications {
  font-size: 13px;
}
.home-indications > div {
  width: 683px;
  padding-right: 30px;
}
.home-indications .indication-title {
  font-size: 15px;
}
.home-indications .indented p, .home-indications .indented ul {
  padding-left: 100px;
}
.home-indications .indented ul {
  margin-left: 14px;
}
.home-indications .indented.reverse p, .home-indications .indented.reverse ul {
  padding-left: 30px;
}
.home-indications ul {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -25px;
  font-weight: 400;
}
.home-indications ul li {
  padding-bottom: 4px;
}
.home-indications strong {
  font-weight: 600;
}

.bumper .home-indications .indented:first-of-type {
  padding-right: 64px;
  box-sizing: border-box;
}
.bumper .home-indications .indented:first-of-type p, .bumper .home-indications .indented:first-of-type ul {
  padding-left: 0;
}

.lead {
  font-weight: 600;
}

.slogan {
  font-weight: 300;
  font-size: 47px;
  line-height: 1;
  margin: 15px 0;
}
.slogan strong {
  font-weight: 500;
}
.slogan br + strong {
  font-weight: 600;
}

.product-intro {
  padding-top: 35px;
  padding-bottom: 0;
}
.product-intro h3 {
  font-weight: 400;
  font-size: 9px;
}
.product-intro ul {
  padding-left: 15px;
  font-weight: 300;
}
.product-intro li {
  margin-bottom: 5px;
}
.product-intro .lead {
  font-size: 20px;
  max-width: 450px;
  font-weight: 300;
  margin-top: 0;
}
.product-intro .logo-boxes {
  max-width: 900px;
  margin-top: 30px;
}
.product-intro .logo-boxes .logo-box {
  width: 50%;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-intro .logo-boxes > .logo-box:first-of-type {
  border-right: 1px solid #ddd;
  padding-left: 0;
}
.product-intro .logo-boxes p {
  font-size: 14px;
  font-weight: 600;
}
.product-intro .box-disclaimer {
  max-width: 900px;
  padding-left: 48%;
  margin-bottom: 20px;
  font-weight: 300;
}

.home-next {
  align-items: center;
  padding: 0 30px 0 0;
}
.home-next .next-button {
  margin-right: -20px;
  width: 106px;
  height: 102px;
  flex: none;
}

.btn-primary, .btn-accent {
  padding: 8px;
  border-radius: 8px;
  border: 0;
  color: white;
}

.btn-primary {
  background: var(--primary-color);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-hover-color);
}

.btn-accent {
  background: var(--accent-color);
}
.btn-accent:hover, .btn-accent:focus {
  background: var(--accent-hover-color);
}

.banner-stripe {
  padding: 8px 16px;
  background-color: var(--menu-color);
  letter-spacing: -1px;
  color: black;
  position: relative;
  font-size: 27px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 500px;
}
.banner-stripe::after {
  content: "";
  position: absolute;
  background-color: var(--menu-color);
  clip-path: polygon(100% 0, 0% 100%, 0 0);
  width: 30px;
  height: 100%;
  right: -29.5px;
  top: 0;
}
.banner-stripe.wide {
  max-width: 510px;
}
.banner-stripe.wide::after {
  width: 75px;
  right: -74.5px;
}
.banner-stripe.sm {
  max-width: 275px;
  text-align: center;
  display: block;
  width: 100%;
  font-size: 18px;
  margin-bottom: 16px;
}
.banner-stripe strong, .banner-stripe span {
  color: black;
  padding-right: 5px;
}
.banner-stripe.primary {
  color: white;
  background-color: var(--primary-color);
}
.banner-stripe.primary::after {
  background-color: var(--primary-color);
}
.banner-stripe.primary strong, .banner-stripe.primary span {
  color: white;
}
.banner-stripe.accent {
  color: white;
  background-color: var(--accent-color);
}
.banner-stripe.accent::after {
  background-color: var(--accent-color);
}
.banner-stripe.accent strong, .banner-stripe.accent span {
  color: white;
}

@media screen and (min-width: 1366px) {
  .slogan {
    font-size: 50px;
    margin: 25px 0;
  }
  .home-right {
    max-width: 600px;
    padding: 16px 75px 0px 40px;
  }
  .home-right h2 {
    font-size: 18px;
  }
  .home-right h3 {
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 8px;
  }
  .home-right p {
    font-size: 13px;
    font-weight: 300;
  }
  .home-right p.strong {
    font-weight: 600;
  }
  .home-right .lead {
    font-size: 20px;
    max-width: none;
    font-weight: 300;
  }
  .home-right ul {
    font-weight: 300;
    padding-left: 15px;
    font-size: 14px;
  }
  .home-right ul li {
    margin-bottom: 8px;
  }
  .home-right .mb-16 {
    margin-bottom: 8px !important;
  }
}
.modal {
  z-index: 101;
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  border: black 12px solid;
  margin: 25px;
  padding: 15px;
  display: none;
  flex-direction: column;
  height: calc(100vh - 100px);
  width: calc(100vw - 100px);
}

.modal-content {
  height: 100%;
  position: relative;
}

.modal-content h1,
.modal-content h2 {
  font-size: 1.5em;
  margin-top: 5px;
}

.modal-content object {
  width: 100%;
  height: 100%;
}

.spaced-list {
  max-width: 100%;
  font-weight: 400;
}
.spaced-list li {
  list-style-type: none;
}
.spaced-list li::before {
  content: "•";
  display: inline-block;
  width: 1.5rem;
  margin-left: -1rem;
}
.spaced-list ul {
  margin-top: 10px;
}
.spaced-list ul li::before {
  content: "—";
  display: inline-block;
  margin-left: -1.2em;
  width: 2rem;
}
.spaced-list.primary li::before {
  color: var(--primary-color);
}
.spaced-list.accent li::before {
  color: var(--accent-color);
}
.spaced-list.gradient li::before {
  background: -webkit-linear-gradient(bottom, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.spaced-list.gradient ul li::before {
  background: -webkit-linear-gradient(right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal.show {
  display: flex;
}

.modal.inset {
  margin: 100px;
  height: calc(100% - 250px);
  width: calc(100% - 250px);
}

.modal iframe,
.modal embed,
.modal object {
  display: block;
  width: 100%;
  height: 100%;
}

.close {
  color: #333;
  background: transparent;
  border: 0;
  font-weight: 700;
  text-align: right;
  align-self: flex-end;
}

.close-x {
  color: #666;
  background: url("../images/svgs/close.svg") no-repeat;
  background-size: contain;
  border: 0;
  font-size: 42px;
  font-weight: 400;
  text-align: right;
  font-size: 0;
  width: 23px;
  height: 23px;
  align-self: flex-end;
  margin-bottom: 5px;
}

.icon-list {
  list-style-type: none;
  padding-left: 0;
}
.icon-list li {
  display: flex;
  margin: 24px 0;
}
.icon-list p {
  margin-top: 16px;
  margin-bottom: 0;
}
.icon-list li img, .icon-list li p {
  display: block;
}
.icon-list li img {
  margin-right: 20px;
}
.icon-list li ul {
  padding-left: 24px;
}
.icon-list li ul > li:before {
  content: "—";
  color: var(--primary-color);
  position: absolute;
  margin-left: -24px;
}
.icon-list li ul li div {
  display: inline;
}
.icon-list.accent li ul > li:before {
  content: "—";
  color: var(--primary-color);
  position: absolute;
  margin-left: -24px;
}
.icon-list.horizontal {
  display: flex;
}
.icon-list.horizontal li {
  flex-direction: column;
  align-items: center;
  width: 33%;
  text-align: center;
}
.icon-list.horizontal li > div {
  height: 96px;
}
.icon-list.horizontal li p {
  padding: 16px;
  font-size: 18px;
}
.icon-list.horizontal li:nth-child(2) p {
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}

.reliability .icon-list p,
.reliability .icon-list span,
.aside-page .icon-list {
  font-size: 16px;
}

.aside-page .disclaimer p {
  font-size: 13px;
}

.dosing {
  padding: 38px;
}
.dosing .page-title {
  font-size: 36px;
}
.dosing .lead {
  font-size: 22px;
  max-width: 420px;
}
.dosing .lead.alt {
  max-width: 390px;
  font-weight: 400;
}
.dosing .info-box {
  width: 280px;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  background: #F6F6F6;
  color: #333333;
  padding: 20px;
  padding-left: 36px;
  position: relative;
  box-sizing: border-box;
  font-size: 14px;
}
.dosing .info-box::before {
  width: 71px;
  height: 77px;
  content: "";
  background-image: url("../images/pngs/2x/callout-icon-pink-calc.png");
  background-size: contain;
  position: absolute;
  left: -35px;
  top: 16px;
}
.dosing .info-box.accent {
  border: 1px solid var(--accent-color);
}
.dosing .info-box.accent::before {
  background-image: url("../images/pngs/2x/callout-icon-yellow-calc.png");
}

.aside-page {
  display: flex;
}

.aside-page .page-title {
  margin-bottom: 50px;
}

.disclaimer {
  padding-right: 30px;
  margin-top: 80px;
}
.disclaimer .disclaimer-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}
.disclaimer p {
  font-size: 13px;
}

.reliability .page-title {
  font-weight: 400;
  max-width: 515px;
  font-size: 32px;
}

.full-page-banner {
  width: 100%;
  flex-direction: column;
  font-weight: 300;
}

.bumper {
  padding: 50px 125px;
  margin: 0 auto;
  max-width: 1300px;
  position: relative;
  z-index: 0;
}
.bumper .page-title {
  font-size: 46px;
  margin: 0;
}

.btn-bumper {
  width: 172px;
  margin-top: 12px;
  margin-bottom: 24px;
  z-index: 100;
  position: relative;
}

.space-apart {
  align-items: flex-end;
}
.space-apart .bumper-side {
  padding-bottom: 100px;
  width: 683px;
}

.butterfly-bg {
  background-image: url("../images/pngs/2x/bumper-butterflies.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top -50px center;
  min-height: 600px;
  width: 100%;
  justify-content: space-evenly;
  margin-top: -50px;
  z-index: -1;
  position: relative;
}

.bumper-disclaimer {
  margin-top: -50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.main-banner {
  color: white;
  background-color: #393425;
  background-image: url("../images/jpgs/bg-family-butterflies-lg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  height: 60vh;
  padding-left: 45px;
  position: relative;
}
.main-banner.with-border {
  border-top: 4px solid white;
}
.main-banner:after {
  content: "Actor portrayal";
  position: absolute;
  bottom: 15px;
  left: 420px;
  font-size: 12px;
  color: white;
  font-style: italic;
}
.main-banner h1 {
  position: absolute;
  bottom: 100px;
  left: 50px;
  max-width: 470px;
  font-weight: 400;
  font-size: 34px;
}

.banner-list {
  padding-left: 0;
  padding-top: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  list-style-type: none;
  font-weight: 300;
  width: 100%;
  max-width: 1200px;
}
.banner-list li {
  padding: 25px;
  font-size: 20px;
}
.banner-list li a {
  display: flex;
  align-items: center;
  color: black;
}
.banner-list li a:hover, .banner-list li a:focus {
  color: var(--primary-color);
}

.banner-icon {
  width: 75px;
  margin-right: 15px;
}

.tab-disclaimer .disclaimer-title {
  font-size: 13px;
  margin-bottom: 0;
}

.tab-disclaimer p {
  font-size: 11px;
}

@media screen and (min-width: 1366px) {
  .constrain-height {
    max-height: calc(100vh - 225px);
  }
  .reliability .icon-list span,
  .reliability .icon-list p,
  .aside-page .icon-list {
    font-size: 18px;
  }
  .modal.inset {
    padding: 35px;
    height: calc(100% - 280px);
    width: calc(100% - 280px);
  }
  .modal-content {
    font-size: 18px;
  }
  .modal-content .spaced-list {
    max-width: 725px;
  }
  .restrictions .spaced-list {
    max-width: 100%;
  }
  .reliability .page-title {
    max-width: 850px;
  }
  .tab-content {
    font-size: 18px;
  }
  .tab-disclaimer .disclaimer-title {
    font-size: 15px;
  }
  .tab-disclaimer p {
    font-size: 13px;
  }
  .gray-bg {
    margin: 5px 0;
    font-size: 18px;
  }
  .tabs button {
    font-size: 20px;
  }
}
.dyk-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 125px auto 0;
}
.dyk-block p {
  font-size: 27px;
}

.factoid {
  padding-top: 150px;
  margin: 0 auto;
}
.factoid h2 {
  font-size: 52px;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
.factoid p {
  font-size: 16px;
  margin: 5px auto;
  max-width: 275px;
}
.factoid small {
  margin-top: 45px;
  display: block;
  font-weight: 300;
  font-size: 10px;
  max-width: 275px;
  line-height: 16px;
}

.left-pane {
  position: relative;
  background: url("../images/jpgs/2x/bg-mixed-waves.jpg"), #FBFCFC;
  min-width: 330px;
  height: calc(100vh - 84px);
  text-align: center;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
.left-pane.legacy {
  background: url("../images/jpgs/2x/bg-teen-reading.jpg"), #FBFCFC;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.left-pane.solutions {
  background: url("../images/jpgs/2x/bg-mixed-waves.jpg"), #FBFCFC;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.left-pane.primary {
  background: url("../images/jpgs/2x/bg-pink-waves.jpg"), #FBFCFC;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.left-pane.accent {
  background: url("../images/jpgs/2x/bg-yellow-waves.jpg"), #FBFCFC;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.left-pane.blend {
  background: url("../images/jpgs/2x/bg-mixed-waves.jpg"), #FBFCFC;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.left-pane.blend.big {
  background: url("../images/jpgs/2x/bg-mixed-waves-big.jpg"), #FBFCFC;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.left-pane.blend.reverse {
  background: url("../images/jpgs/2x/bg-mixed-waves-reverse.jpg"), #FBFCFC;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.copay {
  display: flex;
  align-items: center;
  justify-content: center;
}
.copay .text {
  font-size: 24px;
  letter-spacing: 0;
  padding-left: 8px;
  margin-top: -8px;
}

.portrayal {
  font-size: 12px;
  color: white;
  position: absolute;
  bottom: 50px;
  left: calc(50% - 32px);
  font-style: italic;
}

.right-pane {
  padding: 20px 30px;
  padding-left: 40px;
  box-sizing: border-box;
}
.right-pane.slim-pad {
  padding-left: 20px;
  padding-right: 20px;
}
.right-pane h1 {
  margin-top: 15px;
  margin-bottom: 0;
}
.right-pane .subhead {
  margin-top: 10px;
  line-height: 1.4;
}

.benefits-pane {
  padding: 30px 20px 0 26px;
  background-image: url("../images/jpgs/2x/butterfly-pink.jpg");
  background-repeat: no-repeat;
  background-position: top 175px right -75px;
  background-size: 484px;
  width: 100%;
}
.benefits-pane .benefits-header {
  max-height: 140px;
}
.benefits-pane.accent {
  background-image: url("../images/jpgs/2x/butterfly-yellow.jpg");
  background-position: top 130px right 15px;
  background-size: 196px;
}
.benefits-pane.accent .disclaimer {
  margin-top: 0;
}
.benefits-pane .icon-list li img {
  margin-right: 10px;
}
.benefits-pane .benefit-callout {
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  overflow: hidden;
  margin-left: 125px;
  max-width: 985px;
}
.benefits-pane .benefit-callout .benefit-video {
  height: 100%;
}
.benefits-pane .benefit-callout .callout-intro, .benefits-pane .benefit-callout .callout-quote {
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits-pane .benefit-callout .callout-intro {
  padding: 0 24px;
  width: 210px;
  min-width: 210px;
}
.benefits-pane .benefit-callout .callout-intro span {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
}
.benefits-pane .benefit-callout .callout-quote {
  color: white;
  background: var(--primary-color);
  padding: 0 28px;
}
.benefits-pane .benefit-callout .callout-quote .quote {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 8px;
}
.benefits-pane .benefit-callout .callout-quote .author {
  font-size: 12px;
  font-weight: 300;
  max-width: 450px;
}
.benefits-pane .icon-list, .benefits-pane .disclaimer {
  margin-left: 125px;
  max-width: 845px;
}
.benefits-pane .double-list {
  margin-left: 125px;
  max-width: 1011px;
}
.benefits-pane .double-list .icon-list {
  margin-bottom: 0;
}
.benefits-pane .double-list .icon-list p, .benefits-pane .double-list .icon-list span {
  font-size: 16px;
  font-weight: 300;
}
.benefits-pane .double-list .icon-list:last-of-type {
  margin-left: 10px;
}
.benefits-pane .double-list .icon-list, .benefits-pane .double-list .disclaimer {
  margin-left: 0;
  max-width: 987px;
}

.isi {
  padding: 45px 35px 35px 125px;
}
.isi .primary-scroll {
  max-height: calc(100vh - 200px);
  box-sizing: border-box;
}
.isi .primary-scroll,
.isi .modal-isi .primary-scroll {
  padding-right: 30px;
}
.isi .lead {
  margin-top: 10px;
}
.isi .isi-list {
  column-count: 2;
  padding: 15px 35px;
}

.isi-list li {
  padding-bottom: 10px;
}

.isi-subtitle {
  font-size: 16px;
  font-weight: 700;
}

.isi-container {
  padding-right: 15px;
  overflow: hidden scroll;
  overflow-y: scroll !important;
  overflow: -moz-scrollbars-vertical;
  max-height: calc(100vh - 230px);
}
.isi-container::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}
.isi-container::-webkit-scrollbar {
  width: 8px;
  background-color: #F5F5F5;
}
.isi-container::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.isi-container.accent-color::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
}
.isi-container.accent-color a:active, .isi-container.accent-color a:focus, .isi-container.accent-color a:link, .isi-container.accent-color a:visited {
  color: var(--accent-color);
}
.isi-container.accent-color a:hover {
  color: var(--accent-hover-color);
}
.isi-container.accent-color h2 {
  color: var(--accent-color);
}
.isi-container.accent-color hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.isi-container.primary-color::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}
.isi-container.primary-color a:active, .isi-container.primary-color a:focus, .isi-container.primary-color a:link, .isi-container.primary-color a:visited {
  color: var(--primary-color);
}
.isi-container.primary-color a:hover {
  color: var(--primary-hover-color);
}
.isi-container.primary-color h2 {
  color: var(--primary-color);
}
main.isi .isi-container h2 {
  font-size: 28px;
  font-weight: 700;
}
main.isi .isi-container h3 {
  font-size: 24px;
  font-weight: 700;
}
main.isi .isi-container h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
main.isi .isi-container ul li,
main.isi .isi-container p {
  font-size: 18px;
}
.isi-container h2 {
  font-size: 18px;
  font-weight: 700;
}
.isi-container h3 {
  font-size: 15px;
  font-weight: 700;
}
.isi-container h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0;
}
.isi-container p {
  font-size: 13px;
}
.isi-container p + h2 {
  margin-top: 25px;
}
.isi-container ul.two-col {
  columns: 2;
  column-gap: 50px;
}
.isi-container ul li {
  font-size: 13px;
  padding-bottom: 10px;
}
.isi-container ul li:last-child {
  padding-bottom: 0;
}

.icon-lg {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: white;
  width: 90px;
  height: 98px;
  padding: 10px;
  font-size: 11px;
  font-weight: 600;
  background-image: url("../images/svgs/icon-bg-polygon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.large-icon-list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.large-icon-list ul {
  padding-bottom: 10px;
  padding-left: 0;
  margin-left: 25px;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  list-style-type: none;
}
.large-icon-list ul li {
  margin-top: 10px;
  margin-bottom: 15px;
  display: flex;
}
.large-icon-list ul li::before {
  content: "";
  background-image: url("../images/svgs/list-icon-check.svg");
  background-repeat: no-repeat;
  min-width: 20px;
  height: 16px;
  display: inline-block;
  margin-right: 10px;
}

.blue-block {
  background-color: var(--menu-color);
  padding: 4px 84px;
  border-radius: 10px;
  margin-top: 64px;
  margin-bottom: 64px;
}

.list-container .large-icon-list:not(:last-child) ul {
  border-bottom: 1px solid black;
}

.scan-block {
  display: flex;
  align-items: center;
  margin-left: 45px;
  padding: 5px 10px 5px 75px;
  background: #F7F7F7;
  position: relative;
  margin-top: 35px;
  margin-bottom: 35px;
  max-width: 500px;
}
.scan-block::after {
  content: url("../images/svgs/scan-shadow.svg");
  position: absolute;
  bottom: -12px;
  width: 100%;
}
.scan-block .callout {
  position: absolute;
  left: 0px;
  top: -20px;
  height: 142px;
  width: 141px;
}
.scan-block p {
  margin: 0;
  font-size: 16px !important;
  margin-bottom: 5px;
  width: 100%;
  text-align: center;
  max-width: 479px;
  margin: 8px auto;
}
.scan-block a {
  color: #1F3593;
  text-decoration: underline;
}
.scan-block .flex {
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.scan-block .scan-logo {
  display: block;
  margin: 0 auto;
}

.link-text a {
  color: #1F3593;
  text-decoration: underline;
}

.pink-callout {
  text-align: center;
  font-weight: 300;
  background: var(--primary-color);
  color: white;
  padding: 10px 75px;
  border-radius: 10px;
  font-size: 20px;
}
.pink-callout p {
  margin: 0;
}

.azurity-logo {
  width: 160px;
}

.qr-code {
  width: 63px;
}

@media screen and (min-width: 1366px) {
  .left-pane {
    min-width: 380px;
    height: calc(100vh - 64px);
  }
  .right-pane {
    font-size: 23px;
    padding: 30px 50px 0 80px;
  }
  .right-pane p {
    font-size: 23px;
  }
  .dyk-block {
    margin-top: 219px;
  }
  .dyk-block p {
    font-size: 36px;
    margin: 0;
  }
  .factoid {
    padding-top: 190px;
  }
  .factoid h2 {
    font-size: 72px;
    letter-spacing: -3px;
    white-space: nowrap;
  }
  .factoid h2 .small {
    font-size: 40px;
    font-weight: 400;
  }
  .factoid p {
    font-size: 24px;
    line-height: 34px;
    max-width: 275px;
  }
  .factoid small {
    margin-top: 80px;
    font-size: 11px;
    max-width: 275px;
    line-height: 1.2;
  }
  .factoid .normal {
    font-weight: 400;
  }
  .factoid.alt p {
    font-size: 20px !important;
  }
  .isi .lead, .isi-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
  }
  .isi .page-subtitle {
    font-weight: 600;
  }
  .large-icon-list li {
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .icon-lg {
    font-size: 14px;
    width: 135px;
    height: 145px;
  }
  .scan-block {
    max-width: 600px;
    padding-left: 100px;
  }
  .scan-block .callout {
    top: -21px;
    height: 142px;
    width: 141px;
  }
  .qr-code {
    width: 102px;
  }
  .azurity-logo {
    width: 202px;
  }
}
.eprontia {
  box-sizing: border-box;
  padding-top: 25px;
  padding-left: 50px;
  padding-right: 50px;
  display: grid;
}

.eprontia-main {
  width: 100%;
  grid-area: 2/1/6/6;
}
.eprontia-main h1 {
  max-width: 805px;
}
.eprontia-main img {
  margin: 0 auto;
  display: block;
  margin-top: -50px;
  margin-bottom: -20px;
  width: 800px;
}
.eprontia-main .footnote {
  margin-left: 128px;
}

.copyright-section {
  display: flex;
  width: 515px;
  bottom: 85px;
}
.copyright-section .copyright-logo {
  width: 157px;
  margin-left: 16px;
  margin-right: 16px;
}
.copyright-section .copyright {
  font-weight: 300;
  font-size: 8px;
  display: block;
  max-width: 315px;
  margin-top: 20px;
  width: 100%;
  bottom: 5px;
}

.page-title {
  font-size: 26px;
  line-height: 32px;
  position: relative;
  z-index: 1;
}
.page-title.normal {
  font-weight: 400;
}
.page-title.light {
  font-weight: 300;
}

.underline {
  text-decoration: underline;
}

.page-subtitle {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
}

.title-underline {
  position: relative;
  padding-bottom: 20px;
}
.title-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 100px);
  width: 100%;
  max-width: 200px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
}
.title-underline.primary::after {
  background: var(--primary-color);
}
.title-underline.accent::after {
  background: var(--accent-color);
}
.title-underline.menu::after {
  background: var(--accent-color);
}

@media screen and (min-width: 1366px) {
  .modal .lead {
    font-size: 24px;
  }
}
.tabs-gutter {
  width: 250px;
  min-width: 250px;
  padding-top: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.tabs-gutter img {
  width: 265px;
}

.tabs-container {
  width: 100%;
}

.tabs {
  border-bottom: 1px solid gray;
  width: calc(100% - 50px);
}

.tabs button {
  background: transparent;
  border: 0;
  border-bottom: 4px solid var(--primary-color);
  padding: 15px 10px;
  margin-right: 5px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0 !important;
  letter-spacing: -0.75px;
}
.tabs button.inactive {
  border-bottom: 4px solid transparent;
  color: black;
  font-weight: 400;
}

.tab-content {
  height: 300px;
  overflow-y: scroll;
  padding-top: 5px;
  padding-right: 50px;
  margin-top: 10px;
  display: none;
}

.tab-disclaimer {
  display: none;
  margin-bottom: 50px;
  padding-right: 85px;
  position: absolute;
  bottom: 0;
}

.tab-disclaimer:not(.shrink) {
  margin-top: 50px;
}

.table-title {
  text-align: center;
  font-weight: 600;
}

table {
  width: calc(100% - 100px);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin: 0 50px;
  /* bottom-left border-radius */
  /* bottom-right border-radius */
}
table thead {
  background: var(--primary-color);
  color: #FFFFFF;
}
table thead tr th {
  padding: 14px;
  font-weight: 500;
}
table tr:nth-child(even) {
  background-color: #FCFBFB;
}
table tr th,
table tr td {
  border-right: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  padding: 7px;
}
table tr th:first-child,
table tr td:first-child {
  border-left: 1px solid var(--primary-color);
}
table tbody th {
  font-weight: 400;
  text-align: left;
  padding: 7px 14px;
}
table td {
  text-align: center;
  font-weight: 300;
}
table tbody tr:last-child th:first-child {
  border-bottom-left-radius: 6px;
}
table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 6px;
}
table.accent thead {
  background: var(--accent-color);
  color: #FFFFFF;
  text-align: left;
}
table.accent tr th,
table.accent tr td {
  border-right: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
}
table.accent tr th:first-child,
table.accent tr td:first-child {
  border-left: 1px solid var(--accent-color);
}

.gray-bg {
  padding: 24px;
  background-color: #F7F7F7;
  font-weight: 500;
  box-sizing: border-box;
  font-size: 16px;
}
.gray-bg.rounded {
  border-radius: 12px;
  max-width: 738px;
}

.spaced-list li {
  padding: 5px 0;
  margin-right: 35px;
}

.references {
  max-height: 100%;
  overflow: scroll;
}
.references li::marker {
  font-weight: bold;
}

.references p {
  margin: 0;
  margin-left: 5px;
}

.references a {
  color: black !important;
  text-decoration: underline;
}

@media screen and (min-width: 1366px) {
  .tabs-gutter {
    min-width: 370px;
    width: 370px;
  }
  .tabs-gutter img {
    width: 363px;
  }
  .tabs-gutter img.accent {
    width: 415px;
  }
  .tab-content {
    height: 420px;
  }
  .tab-content hr {
    margin-top: 50px;
  }
  .tab-content .text-right {
    margin-bottom: 35px;
    display: block;
    max-width: 666px;
  }
  .spaced-list li {
    padding: 10px 0;
  }
}
@media screen and (max-width: 1024px) {
  .slogan {
    margin: 10px 0;
  }
  .home-right .lead {
    margin-top: 0;
    margin-bottom: 5px;
  }
  .home-right ul {
    font-size: 12px;
  }
}
@media screen and (max-height: 810px) {
  .home-right .lead {
    margin-bottom: 5px;
  }
}
@media (max-height: 810px) and (max-width: 600px) {
  .home-right .lead {
    margin-bottom: 5px;
  }
}
.azurity-legacy {
  display: block;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1365px) {
  .eprontia .eprontia-main img {
    max-width: 650px;
  }
  .global-nav .dropdown > a span::after {
    width: 10px;
    height: 10px;
    text-align: left;
  }
  .global-nav ul {
    height: 64px;
    font-size: 10px;
    text-align: center;
  }
  .main-image {
    max-width: 420px !important;
  }
  .banner-stripe {
    font-size: 20px;
  }
  .banner-stripe.wide {
    max-width: 420px;
  }
  .slogan {
    font-size: 36px;
  }
  .product-intro {
    padding-top: 15px;
  }
  .product-intro .box-disclaimer {
    margin-bottom: 0;
    font-size: 11px;
  }
  .product-intro .logo-boxes {
    margin-top: 15px;
  }
  .product-intro .logo-boxes img {
    height: 70px;
  }
  .product-intro .logo-boxes p {
    font-size: 12px;
  }
  .home-next p {
    font-size: 11px;
  }
  .home-next .next-button {
    height: 86px;
    width: 90px;
  }
  .home-indications > div {
    width: 500px;
  }
  .home-indications .indented p, .home-indications .indented ul {
    padding-left: 80px;
  }
  .home-indications ul, .home-indications p {
    font-size: 11px;
  }
  .home-indications .indication-title {
    font-size: 13px;
  }
  .aside-page .page-title {
    margin-bottom: 0;
  }
  .aside-page .text-20 {
    font-size: 16px !important;
  }
  .spaced-list {
    margin-bottom: 0;
  }
  .spaced-list li {
    font-size: 16px !important;
  }
  .right-pane .mb-32 {
    margin-bottom: 16px !important;
  }
  .right-pane .disclaimer {
    margin-top: 13px;
  }
  .right-pane .disclaimer .disclaimer-title {
    font-size: 13px !important;
  }
  .right-pane .disclaimer p, .right-pane .disclaimer ul {
    font-size: 11px !important;
  }
  .blue-block {
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 4px 76px;
  }
  .blue-block .text-18 {
    font-size: 16px !important;
  }
  .disclaimer {
    margin-top: 20px;
  }
  .icon-list {
    font-size: 11px;
  }
  .icon-list li {
    margin: 0;
  }
  .icon-list.horizontal li p {
    padding: 8px;
    font-size: 14px;
  }
  .icon-list li {
    margin-bottom: 16px;
  }
  .icon-list li p {
    margin-top: 8px;
  }
  .icon-list li img {
    width: 75px;
  }
  .icon-list li img.icon-sm {
    width: 50px;
  }
  .icon-list li .text-18 {
    font-size: 16px !important;
  }
  .pink-callout {
    padding: 10px 50px;
    font-size: 18px;
    margin-top: -8px;
  }
  .main-banner h1 {
    bottom: 50px;
    font-size: 30px;
  }
  .dyk-block {
    margin: 150px auto 0;
  }
  .dyk-block p {
    font-size: 24px;
  }
  .left-pane {
    height: calc(100vh - 64px);
  }
  .left-pane .factoid {
    padding-top: 125px;
  }
  .left-pane .factoid h2 {
    font-size: 48px;
  }
  .left-pane .factoid p {
    font-size: 15px;
  }
  .left-pane .factoid small {
    padding-left: 20px;
    padding-right: 20px;
  }
  .left-pane .factoid .text-62 {
    font-size: 48px !important;
  }
  .reliability .page-title, .aside-page .page-title {
    font-size: 18px !important;
    line-height: 22px;
    margin-top: 0;
  }
  .bumper {
    padding: 30px 85px;
  }
  .bumper .page-title {
    font-size: 36px;
  }
  .butterfly-bg {
    background-position: top -20px left 60px;
    margin-top: -74px;
    min-height: 420px;
  }
  .space-apart .bumper-side {
    padding-bottom: 70px;
    width: 650px;
  }
  .bumper-side .eprontia-logo {
    width: 210px;
  }
  .bumper-side .zonisade-logo {
    width: 245px;
  }
  .bumper-side .btn-bumper {
    margin-top: 2px;
    margin-bottom: 8px;
  }
  .bumper-side .bumper-disclaimer {
    font-size: 11px !important;
  }
  .bumper-side.w-380 {
    width: 400px !important;
  }
  .home .mw-600 {
    max-width: 410px !important;
  }
  .home .home-right {
    padding: 20px 24px;
    padding-right: 72px;
  }
  .home .home-right .mb-16 {
    margin-bottom: 4px !important;
  }
  .home .home-right img {
    width: 200px;
  }
  .home .home-right img.mb-24 {
    margin-bottom: 8px !important;
  }
  .home .home-right .lead {
    font-weight: 300;
    font-size: 16px;
  }
  .home .home-right .text-14 {
    font-size: 12px !important;
  }
  .home .home-right h3, .home .home-right .text-15 {
    font-size: 13px !important;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .home .home-right ul, .home .home-right p {
    font-size: 11px;
  }
  .home .home-right ul {
    padding-left: 14px;
    max-width: 460px;
  }
  .home .home-right.zonisade-home h2, .home .home-right.zonisade-home h3 {
    margin-top: 0.83em;
    margin-bottom: 0.83em;
  }
  .home .banner-stripe {
    max-width: 360px;
  }
  .benefits-pane {
    padding: 20px;
    padding-bottom: 0;
    background-size: 400px;
    background-position: top 130px right -85px;
  }
  .benefits-pane .benefits-header {
    max-height: 90px;
  }
  .benefits-pane.accent {
    background-position: top 120px right -30px;
    padding: 8px 16px;
  }
  .benefits-pane.accent .disclaimer {
    padding-right: 100px;
  }
  .benefits-pane .text-icon {
    width: 80px;
    height: 90px;
  }
  .benefits-pane .page-title {
    font-size: 18px;
    line-height: 22px;
    padding-right: 20px;
    margin-left: 16px;
  }
  .benefits-pane img.ml-auto {
    width: 200px;
    align-self: flex-start;
    margin-top: 10px;
  }
  .benefits-pane .text-18 {
    font-size: 16px !important;
  }
  .benefits-pane .double-list {
    max-width: 775px;
    margin-left: 90px;
  }
  .benefits-pane .double-list .icon-list .mb-24 {
    margin-bottom: 4px !important;
  }
  .benefits-pane .double-list .icon-list li {
    margin-bottom: 0;
  }
  .benefits-pane .double-list .icon-list img {
    width: 60px;
  }
  .benefits-pane .double-list .icon-list p {
    font-size: 16px !important;
    line-height: 1.2;
  }
  .benefits-pane .double-list .icon-list span {
    font-size: 14px !important;
    line-height: 1.2;
  }
  .benefits-pane .icon-list {
    max-width: 650px;
  }
  .benefits-pane .icon-list li {
    margin-bottom: 8px;
  }
  .benefits-pane .icon-list li.mt-16 {
    margin-top: 8px !important;
  }
  .benefits-pane .benefit-callout {
    max-width: 800px;
    margin-top: -4px;
  }
  .benefits-pane .benefit-callout .benefit-video {
    width: 180px !important;
  }
  .benefits-pane .benefit-callout .callout-intro {
    width: 225px;
    min-width: unset;
  }
  .benefits-pane .benefit-callout .callout-intro span {
    font-size: 12px;
    line-height: 16px;
  }
  .benefits-pane .benefit-callout .callout-quote {
    padding: 8px 16px;
  }
  .benefits-pane .benefit-callout .callout-quote .quote {
    font-size: 16px;
  }
  .benefits-pane .benefit-callout .callout-quote .author {
    font-size: 11px;
    margin-right: 48px;
  }
  .benefits-pane .benefit-callout.mb-24 {
    margin-bottom: 12px !important;
  }
  .benefits-pane .disclaimer {
    max-width: 750px;
  }
  .benefits-pane .disclaimer h3 {
    font-size: 13px !important;
  }
  .benefits-pane .disclaimer p, .benefits-pane .disclaimer ul {
    font-size: 11px !important;
  }
  .dosing {
    padding: 12px 24px;
  }
  .dosing .bottle-labeling .small {
    font-size: 10px;
  }
  .dosing .page-title {
    font-size: 26px;
  }
  .dosing .lead {
    font-size: 14px;
  }
  .dosing .info-box {
    width: 317px;
    padding: 18px;
    padding-left: 36px;
    font-size: 12px;
  }
  .dosing .info-box::before {
    top: 2px;
  }
  .dosing .dosing-scroll.accent-scroll {
    max-height: 220px;
    margin-top: 8px !important;
  }
  .large-icon-list .icon-lg {
    font-size: 10px;
    width: 90px;
    height: 88px;
  }
  .large-icon-list .text-18 {
    font-size: 14px !important;
  }
  .large-icon-list .pt-16 {
    padding-top: 8px !important;
  }
  .large-icon-list .mb-24 {
    margin-bottom: 12px !important;
  }
  .large-icon-list .mb-32 {
    margin-bottom: 16px !important;
  }
  .scan-block {
    margin-top: 16px !important;
    margin-bottom: 24px;
  }
  .scan-block .callout {
    height: 122px;
    width: 121px;
    left: -30px;
    top: -10px;
  }
  .scan-block p {
    font-size: 12px !important;
    max-width: 420px;
  }
  .scan-block + .text-14 {
    font-size: 12px !important;
  }
  main.isi .isi-container {
    max-height: calc(100vh - 210px);
  }
  main.isi .isi-container h2 {
    font-size: 16px;
  }
  main.isi .isi-container h3 {
    font-size: 15px;
  }
  main.isi .isi-container p, main.isi .isi-container ul li {
    font-size: 13px;
  }
  .footer-nav.right {
    right: 10px;
  }
  .footer-nav button {
    font-size: 11px;
  }
  .next-button, .prev-button {
    height: 76px;
  }
  .aside-page .ipad-text-26,
  .ipad-text-26 {
    font-size: 26px !important;
    line-height: 32px;
  }
  .ipad-text-20 {
    font-size: 20px !important;
    line-height: 24px;
  }
  .mt-ipad-16 {
    margin-top: 16px !important;
  }
  .mt-ipad-48 {
    margin-top: 48px !important;
  }
  .bumper .home-indications .indented:first-of-type {
    padding-right: 16px;
  }
  .aside-page .sm-text-24,
  .sm-text-24 {
    font-size: 24px !important;
    line-height: 1.2;
  }
  .sm-text-18 {
    font-size: 18px !important;
    line-height: 1.2;
  }
}
.modal .modal-content.isi-container {
  max-height: 100% !important;
}

@media screen and (min-width: 1180px) and (max-width: 1365px) {
  .bumper .home-indications .indented:first-of-type {
    padding-right: 42px;
  }
  .scan-block {
    margin-top: 32px !important;
  }
  .butterfly-bg {
    min-height: 480px;
  }
  .bumper {
    padding-right: 30px;
  }
  .bumper-disclaimer {
    margin-top: -40px;
  }
  .home .home-right {
    padding-top: 36px;
    padding-right: 150px;
  }
  .right-pane .disclaimer {
    margin-top: 64px;
  }
  .dosing .lead {
    max-width: 350px;
    font-size: 21px;
  }
  .blue-block {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .benefits-pane.accent {
    background-position: top 120px right 0;
  }
  .benefits-pane.accent .disclaimer {
    margin-top: 32px;
  }
  .benefits-pane.accent .disclaimer .disclaimer-title {
    margin-top: 32px;
  }
  .dosing .info-box {
    width: 280px;
  }
  .tab-disclaimer p {
    font-size: 11px;
  }
  .aside-page .more-title {
    margin-top: 32px;
  }
  .product-intro {
    margin-bottom: 50px;
  }
  .product-intro .logo-boxes > .logo-box {
    width: 50%;
  }
  .product-intro .box-disclaimer {
    padding-left: 53%;
  }
  .reliability .page-title,
  .aside-page .page-title {
    font-size: 26px !important;
    line-height: 32px !important;
  }
  .main-image {
    max-width: 500px !important;
    margin: 0 30px;
  }
  .home .mw-600 {
    max-width: 420px !important;
  }
  .factoid p {
    font-size: 21px !important;
    line-height: 32px;
  }
  .chart-list li img {
    width: 95px;
  }
  .pink-callout {
    font-size: 20px;
    margin-bottom: -16px;
  }
  .benefits-pane {
    background-size: 444px;
  }
  .air-mt-32 {
    margin-top: 32px !important;
  }
  .air-mt-64 {
    margin-top: 64px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-0-small {
    margin-top: 0 !important;
  }
  .mb-0-small {
    margin-bottom: 0 !important;
  }
  .dosing .info-box {
    width: 280px;
  }
  .toggle-nav.reversed {
    bottom: 30px;
  }
  .eprontia {
    padding-top: 0;
  }
  .eprontia .eprontia-main img {
    max-width: 625px;
  }
  .product-intro .box-disclaimer {
    padding-left: 53%;
  }
  .air-mt-64 {
    margin-top: 64px !important;
  }
}
.table-list li::before {
  width: 24px !important;
  margin-left: -24px !important;
}

@media screen and (min-width: 1600px) {
  .desktop-ml-10vw {
    margin-left: 10vw;
  }
}
img {
  shape-rendering: geometricPrecision;
}

.dashed-line-top {
  border-top: 1px dashed #333;
  padding-top: 2px;
  display: inline-block;
}

.top-bottom-border {
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  padding-top: 16px;
  padding-bottom: 16px;
}

.full-sized {
  top: -0.25em;
  font-size: 90%;
}

.modal-isi ul, .isi-container ul {
  padding-left: 14px;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.restrictions p {
  font-size: 16px !important;
}
.restrictions .spaced-list li {
  font-size: 16px !important;
}
