@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul[role=list], ul[class],
ol[role=list], ol[class] {
  list-style: none;
}

ul:not([class]),
ol:not([class]) {
  padding-inline-start: 2em;
}

ul[class], ol[class] {
  padding-inline-start: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/LatoLatin-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/LatoLatin-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/LatoLatin-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/fonts/LatoLatin-BoldItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Myriad";
  src: url("/fonts/MyriadPro-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad";
  src: url("/fonts/MyriadPro-It.woff2") format("woff2");
  font-style: italic;
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Myriad";
  src: url("/fonts/MyriadPro-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Myriad";
  src: url("/fonts/MyriadPro-BoldIt.woff2") format("woff2");
  font-style: italic;
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: "Helserif";
  src: url("/fonts/Helserif-Med.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Helserif";
  src: url("/fonts/Helserif-Boo.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  /* colors */
  --color-white: hsl(0, 0%, 100%);
  --color-black: hsl(0, 0%, 0%);
  --color-lite: hsl(0, 0%, 94%);
  --color-gray: hsl(0, 0%, 40%);
  --color-primary: hsl(218, 100%, 33%);
  --color-primary-lite: hsl(212, 68%, 40%);
  --color-primary-xlite: hsl(218, 35%, 82%);
  --color-secondary: hsl(150, 65%, 36%);
  --color-secondary-lite: hsl(156, 100%, 34%);
}

:root {
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, Helvetica, Arial, sans-serif;
  --font-body: Lato, var(--font-system);
  --font-headline: Myriad, var(--font-system);
  --font-serif: Helserif, Myriad, var(--font-system);
  --line-height: 1.5;
  --line-height-sm: 1.25;
  --ratio: 1.25;
  --s0: 1rem;
  --s-1: calc(var(--s0) / var(--ratio));
  --s-2: calc(var(--s-1) / var(--ratio));
  --s-3: calc(var(--s-2) / var(--ratio));
  --s-4: calc(var(--s-3) / var(--ratio));
  --s-5: calc(var(--s-4) / var(--ratio));
  --s-6: calc(var(--s-5) / var(--ratio));
  --s1: calc(var(--s0) * var(--ratio));
  --s2: calc(var(--s1) * var(--ratio));
  --s3: calc(var(--s2) * var(--ratio));
  --s4: calc(var(--s3) * var(--ratio));
  --s5: calc(var(--s4) * var(--ratio));
  --s6: calc(var(--s5) * var(--ratio));
  --s7: calc(var(--s6) * var(--ratio));
}

:root {
  /* Spacing */
  --f0: 1em;
  --f-1: calc(var(--f0) / var(--ratio));
  --f-2: calc(var(--f-1) / var(--ratio));
  --f-3: calc(var(--f-2) / var(--ratio));
  --f-4: calc(var(--f-3) / var(--ratio));
  --f1: calc(var(--f0) * var(--ratio));
  --f2: calc(var(--f1) * var(--ratio));
  --f3: calc(var(--f2) * var(--ratio));
  --f4: calc(var(--f3) * var(--ratio));
  --f5: calc(var(--f4) * var(--ratio));
  --f6: calc(var(--f5) * var(--ratio));
  --f7: calc(var(--f6) * var(--ratio));
  --flow-0: 0;
  --flow-xxxs: var(--f-3);
  --flow-xxs: var(--f-2);
  --flow-xs: var(--f-1);
  --flow-sm: var(--f0);
  --flow-md: var(--f1);
  --flow-lg: var(--f2);
  --flow-xl: var(--f3);
  --flow-xxl: var(--f4);
  --flow-xxxl: var(--f5);
  --gap-0: 0;
  --gap-xs: calc(var(--s0) / 1.5);
  --gap-sm: var(--s0);
  --gap-md: calc(var(--s0) * 1.5);
  --gap-lg: calc(var(--s0) * 3);
  --gap-xl: calc(var(--s0) * 4);
  --gap-xxl: calc(var(--s0) * 5);
  --gutter: var(--gap-md);
  --half-gutter: calc(var(--gutter)/1.333);
}

:root {
  /* Misc */
  --transition-all: 250ms ease all;
  --transition-fill: 250ms ease fill;
  --border-line: 0.0625rem;
  --border-line-thick: 0.125rem;
  --radius-rounded: 0.375em;
  --radius-pill: 999em;
  --radius-circle: 50%;
}

html {
  font-size: calc(0.125vw + 0.125vh + 1em);
}

body {
  font-family: var(--font-body);
  background: var(--color-lite);
  color: var(--color-black);
  line-height: var(--line-height);
  position: relative;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:visited {
  color: var(--color-primary);
}
a:hover, a:focus {
  color: var(--color-secondary);
}
a:active {
  color: var(--color-secondary);
}
a svg {
  transition: var(--transition-fill);
}

h1,
.h1 {
  font-size: var(--s4);
  line-height: var(--line-height-sm);
}

h2,
.h2,
.banner-headline {
  font-size: var(--s3);
  line-height: var(--line-height-sm);
}

h3,
.h3,
.product-headline {
  font-size: var(--s2);
  line-height: var(--line-height-sm);
}

h4,
.h4,
.accordion__heading {
  font-size: var(--s1);
  line-height: inherit;
}

h5,
.h5,
.stats-headline {
  font-size: var(--s0);
  line-height: inherit;
}

.h6, .product-facts dd, .product-facts dt, .entry-stats p {
  font-size: var(--s-1);
  line-height: inherit;
}

hr {
  height: var(--border-line);
  background: var(--color-subtle-mute);
  border: 0;
}

sub, sup {
  font-weight: normal;
  line-height: 1;
}

p sup, nav sup {
  font-size: 75%;
}

p sub, nav sub {
  font-size: 50%;
  position: relative;
  bottom: 0.5em;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

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

.txt-smaller {
  font-size: smaller;
}

.txt-xxs {
  font-size: 0.7rem;
}

.txt-em {
  font-style: italic;
}

.txt-nowrap {
  white-space: nowrap;
}

.txt-footnote {
  color: var(--color-gray);
}

.txt-statement {
  background-color: var(--color-primary);
  width: 100%;
  padding: 0.5rem 0;
  position: relative;
}
.txt-statement p {
  text-align: center;
  font-size: 140%;
  font-weight: 600;
  color: white;
}

.split-container-100 {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
@media screen and (max-width: 62rem) {
  .split-container-100 {
    flex-wrap: wrap;
  }
}

.split-container-50 {
  display: flex;
  justify-content: space-around;
  width: 50%;
  flex-wrap: wrap;
}
@media screen and (max-width: 62rem) {
  .split-container-50 {
    width: 100%;
  }
}

.split-container-100 > .card-split {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.split-container-50 > .card-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
}

.split-container-100 > .card-split img {
  height: auto;
  margin: 0 auto;
  max-width: 50%;
}

.split-container-50 > .card-split img {
  height: auto;
  margin: 0 auto;
  max-width: 65%;
}

.split-container-50 > .card-split:nth-child(1),
.split-container-50 > .card-split:nth-child(2),
.split-container-50 > .card-split:nth-child(4),
.split-container-50 > .card-split:nth-child(5) {
  flex: 1 1 50%;
}

.split-container-50 > .card-split:nth-child(3) {
  flex: 1 1 100%;
  max-width: 100%;
}

.txt-highlight-yellow {
  background: linear-gradient(to right, #f0f0f0, #fff000, #f0f0f0);
  width: 90%;
  padding: 0.35rem;
}

.p-reset {
  padding: 0 !important;
}

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

.pt-xxs {
  padding-top: 0.25rem !important;
}

.btn-shift {
  display: block !important;
  margin-left: 0;
  margin-top: 1.5rem;
}
@media screen and (min-width: 62rem) {
  .btn-shift {
    margin-left: 1.5rem;
    margin-top: 0;
    display: inline-flex !important;
  }
}

.container, .alert {
  max-width: 62rem;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}

.container-lg {
  max-width: 75rem;
}

.row {
  gap: var(--gutter);
  display: flex;
  flex-wrap: wrap;
}

[class*=col-] {
  width: 100%;
  flex: 0 0 auto;
}

.col-auto {
  width: auto;
  flex: 0 1 auto;
}

.col-1 {
  width: calc(8.3333333333% + -1 * var(--half-gutter));
}

.col-2 {
  width: calc(16.6666666667% + -1 * var(--half-gutter));
}

.col-3 {
  width: calc(25% + -1 * var(--half-gutter));
}

.col-4 {
  width: calc(33.3333333333% + -1 * var(--half-gutter));
}

.col-5 {
  width: calc(41.6666666667% + -1 * var(--half-gutter));
}

.col-6 {
  width: calc(50% + -1 * var(--half-gutter));
}

.col-7 {
  width: calc(58.3333333333% + -1 * var(--half-gutter));
}

.col-8 {
  width: calc(66.6666666667% + -1 * var(--half-gutter));
}

.col-9 {
  width: calc(75% + -1 * var(--half-gutter));
}

.col-10 {
  width: calc(83.3333333333% + -1 * var(--half-gutter));
}

.col-11 {
  width: calc(91.6666666667% + -1 * var(--half-gutter));
}

.col-12 {
  width: calc(100% + -1 * var(--half-gutter));
}

.xs\:col-1 {
  width: calc(8.3333333333% + -1 * var(--half-gutter));
}

.xs\:col-2 {
  width: calc(16.6666666667% + -1 * var(--half-gutter));
}

.xs\:col-3 {
  width: calc(25% + -1 * var(--half-gutter));
}

.xs\:col-4 {
  width: calc(33.3333333333% + -1 * var(--half-gutter));
}

.xs\:col-5 {
  width: calc(41.6666666667% + -1 * var(--half-gutter));
}

.xs\:col-6 {
  width: calc(50% + -1 * var(--half-gutter));
}

.xs\:col-7 {
  width: calc(58.3333333333% + -1 * var(--half-gutter));
}

.xs\:col-8 {
  width: calc(66.6666666667% + -1 * var(--half-gutter));
}

.xs\:col-9 {
  width: calc(75% + -1 * var(--half-gutter));
}

.xs\:col-10 {
  width: calc(83.3333333333% + -1 * var(--half-gutter));
}

.xs\:col-11 {
  width: calc(91.6666666667% + -1 * var(--half-gutter));
}

.xs\:col-12 {
  width: calc(100% + -1 * var(--half-gutter));
}

@media (min-width: 48rem) {
  .sm\:col-1 {
    flex-basis: calc(8.3333333333% + -1 * var(--half-gutter));
    max-width: calc(8.3333333333% + -1 * var(--half-gutter));
  }
  .sm\:col-2 {
    flex-basis: calc(16.6666666667% + -1 * var(--half-gutter));
    max-width: calc(16.6666666667% + -1 * var(--half-gutter));
  }
  .sm\:col-3 {
    flex-basis: calc(25% + -1 * var(--half-gutter));
    max-width: calc(25% + -1 * var(--half-gutter));
  }
  .sm\:col-4 {
    flex-basis: calc(33.3333333333% + -1 * var(--half-gutter));
    max-width: calc(33.3333333333% + -1 * var(--half-gutter));
  }
  .sm\:col-5 {
    flex-basis: calc(41.6666666667% + -1 * var(--half-gutter));
    max-width: calc(41.6666666667% + -1 * var(--half-gutter));
  }
  .sm\:col-6 {
    flex-basis: calc(50% + -1 * var(--half-gutter));
    max-width: calc(50% + -1 * var(--half-gutter));
  }
  .sm\:col-7 {
    flex-basis: calc(58.3333333333% + -1 * var(--half-gutter));
    max-width: calc(58.3333333333% + -1 * var(--half-gutter));
  }
  .sm\:col-8 {
    flex-basis: calc(66.6666666667% + -1 * var(--half-gutter));
    max-width: calc(66.6666666667% + -1 * var(--half-gutter));
  }
  .sm\:col-9 {
    flex-basis: calc(75% + -1 * var(--half-gutter));
    max-width: calc(75% + -1 * var(--half-gutter));
  }
  .sm\:col-10 {
    flex-basis: calc(83.3333333333% + -1 * var(--half-gutter));
    max-width: calc(83.3333333333% + -1 * var(--half-gutter));
  }
  .sm\:col-11 {
    flex-basis: calc(91.6666666667% + -1 * var(--half-gutter));
    max-width: calc(91.6666666667% + -1 * var(--half-gutter));
  }
  .sm\:col-12 {
    flex-basis: calc(100% + -1 * var(--half-gutter));
    max-width: calc(100% + -1 * var(--half-gutter));
  }
}
@media (min-width: 62rem) {
  .md\:col-1 {
    flex-basis: calc(8.3333333333% + -1 * var(--half-gutter));
    max-width: calc(8.3333333333% + -1 * var(--half-gutter));
  }
  .md\:col-2 {
    flex-basis: calc(16.6666666667% + -1 * var(--half-gutter));
    max-width: calc(16.6666666667% + -1 * var(--half-gutter));
  }
  .md\:col-3 {
    flex-basis: calc(25% + -1 * var(--half-gutter));
    max-width: calc(25% + -1 * var(--half-gutter));
  }
  .md\:col-4 {
    flex-basis: calc(33.3333333333% + -1 * var(--half-gutter));
    max-width: calc(33.3333333333% + -1 * var(--half-gutter));
  }
  .md\:col-5 {
    flex-basis: calc(41.6666666667% + -1 * var(--half-gutter));
    max-width: calc(41.6666666667% + -1 * var(--half-gutter));
  }
  .md\:col-6 {
    flex-basis: calc(50% + -1 * var(--half-gutter));
    max-width: calc(50% + -1 * var(--half-gutter));
  }
  .md\:col-7 {
    flex-basis: calc(58.3333333333% + -1 * var(--half-gutter));
    max-width: calc(58.3333333333% + -1 * var(--half-gutter));
  }
  .md\:col-8 {
    flex-basis: calc(66.6666666667% + -1 * var(--half-gutter));
    max-width: calc(66.6666666667% + -1 * var(--half-gutter));
  }
  .md\:col-9 {
    flex-basis: calc(75% + -1 * var(--half-gutter));
    max-width: calc(75% + -1 * var(--half-gutter));
  }
  .md\:col-10 {
    flex-basis: calc(83.3333333333% + -1 * var(--half-gutter));
    max-width: calc(83.3333333333% + -1 * var(--half-gutter));
  }
  .md\:col-11 {
    flex-basis: calc(91.6666666667% + -1 * var(--half-gutter));
    max-width: calc(91.6666666667% + -1 * var(--half-gutter));
  }
  .md\:col-12 {
    flex-basis: calc(100% + -1 * var(--half-gutter));
    max-width: calc(100% + -1 * var(--half-gutter));
  }
}
@media (min-width: 75rem) {
  .lg\:col-1 {
    flex-basis: calc(8.3333333333% + -1 * var(--half-gutter));
    max-width: calc(8.3333333333% + -1 * var(--half-gutter));
  }
  .lg\:col-2 {
    flex-basis: calc(16.6666666667% + -1 * var(--half-gutter));
    max-width: calc(16.6666666667% + -1 * var(--half-gutter));
  }
  .lg\:col-3 {
    flex-basis: calc(25% + -1 * var(--half-gutter));
    max-width: calc(25% + -1 * var(--half-gutter));
  }
  .lg\:col-4 {
    flex-basis: calc(33.3333333333% + -1 * var(--half-gutter));
    max-width: calc(33.3333333333% + -1 * var(--half-gutter));
  }
  .lg\:col-5 {
    flex-basis: calc(41.6666666667% + -1 * var(--half-gutter));
    max-width: calc(41.6666666667% + -1 * var(--half-gutter));
  }
  .lg\:col-6 {
    flex-basis: calc(50% + -1 * var(--half-gutter));
    max-width: calc(50% + -1 * var(--half-gutter));
  }
  .lg\:col-7 {
    flex-basis: calc(58.3333333333% + -1 * var(--half-gutter));
    max-width: calc(58.3333333333% + -1 * var(--half-gutter));
  }
  .lg\:col-8 {
    flex-basis: calc(66.6666666667% + -1 * var(--half-gutter));
    max-width: calc(66.6666666667% + -1 * var(--half-gutter));
  }
  .lg\:col-9 {
    flex-basis: calc(75% + -1 * var(--half-gutter));
    max-width: calc(75% + -1 * var(--half-gutter));
  }
  .lg\:col-10 {
    flex-basis: calc(83.3333333333% + -1 * var(--half-gutter));
    max-width: calc(83.3333333333% + -1 * var(--half-gutter));
  }
  .lg\:col-11 {
    flex-basis: calc(91.6666666667% + -1 * var(--half-gutter));
    max-width: calc(91.6666666667% + -1 * var(--half-gutter));
  }
  .lg\:col-12 {
    flex-basis: calc(100% + -1 * var(--half-gutter));
    max-width: calc(100% + -1 * var(--half-gutter));
  }
}
fieldset {
  border: 0;
  padding: 0;
}

input:not([type=submit]):not([type=checkbox]),
select {
  color: var(--color-gray);
  background-color: var(--color-lite);
  padding: var(--s-3) var(--s0);
  width: 100%;
  border-radius: var(--radius-rounded);
  border: var(--border-line) solid var(--color-gray);
  outline: 0;
}

input:not([type=submit]):not([type=checkbox])::-moz-placeholder, select::-moz-placeholder {
  color: var(--color-gray);
}

input:not([type=submit]):not([type=checkbox])::placeholder,
select::placeholder {
  color: var(--color-gray);
}

input:not([type=submit]):not([type=checkbox]):focus {
  color: var(--color-black);
  border: var(--border-line) solid var(--color-secondary);
  box-shadow: 0 0 0 var(--border-line) var(--color-secondary);
  background-color: var(--color-white);
}

label + input,
label + select {
  margin-top: var(--flow-xxxs);
}

.required {
  position: relative;
}
.required::before {
  position: absolute;
  content: "*";
  left: calc(-1 * var(--flow-xxs));
}

.form-tip {
  color: var(--color-gray);
}

input[type=checkbox] {
  transform: scale(2);
}

.checkbox-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 100%;
  padding: 0 0 0.5rem;
}
.checkbox-block.first {
  padding-top: 2rem;
}

.checkbox-block input[type=checkbox] {
  transform: scale(2);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.checkbox-block .label-text {
  line-height: 1.4;
}

.section-banner {
  position: relative;
  display: flex;
  min-height: 23vw;
}

.section-banner-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-primary-lite);
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.banner-container {
  width: 100%;
  align-self: center;
}

.banner-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner-headline {
  font-weight: bold;
}
@media (min-width: 62rem) {
  .banner-headline {
    font-size: var(--s4);
  }
}

@media (max-width: 47rem) {
  .banner-product {
    max-width: 50%;
  }
}

.banner-product img {
  height: auto;
}

@media (max-width: 47rem) {
  .banner-summary br {
    display: none;
  }
}

.btn, .skip-link:focus {
  transition: var(--transition-all);
  display: inline-flex;
  vertical-align: middle;
  padding: var(--s-3) var(--s4);
  max-width: 100%;
  font-weight: bold;
  border-radius: var(--radius-rounded);
  text-decoration: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: var(--border-line-thick) solid transparent;
  position: relative;
}
.btn:active, .skip-link:active:focus {
  transform: scale(0.96);
}

.btn-primary:link, .skip-link:link:focus {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-primary:visited, .skip-link:visited:focus {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-primary:hover, .skip-link:hover:focus, .btn-primary:focus-within, .skip-link:focus-within:focus {
  color: var(--color-white);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-primary-outline {
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-primary);
}
.btn-primary-outline:visited {
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-primary);
}
.btn-primary-outline:hover, .btn-primary-outline:focus-within {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary {
  color: var(--color-white);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn-secondary:visited {
  color: var(--color-white);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn-secondary:hover, .btn-secondary:focus-within {
  color: var(--color-white);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary-outline {
  color: var(--color-secondary);
  background: var(--color-white);
  border-color: var(--color-secondary);
}
.btn-secondary-outline:visited {
  color: var(--color-secondary);
  background: var(--color-white);
  border-color: var(--color-secondary);
}
.btn-secondary-outline:hover, .btn-secondary-outline:focus-within {
  color: var(--color-white);
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-pill {
  padding-right: var(--s7);
  border-radius: var(--radius-pill);
  font-family: var(--font-headline);
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3rem;
}
.btn-pill::after {
  content: "";
  position: absolute;
  right: var(--border-line-thick);
  display: inline-block;
  width: calc(0.0625rem + var(--s4));
  height: calc(0.0625rem + var(--s4));
  z-index: 0;
  background-color: var(--color-secondary-lite);
  border-radius: var(--radius-circle);
}

.btn-primary:hover [class*=icon-], .btn-primary:focus [class*=icon-], .skip-link:focus [class*=icon-], .btn-primary:active [class*=icon-] {
  fill: var(--color-white);
}
.btn-primary:hover::after, .btn-primary:focus::after, .skip-link:focus::after, .btn-primary:active::after {
  background-color: var(--color-primary-lite);
}

.btn [class*=icon-], .skip-link:focus [class*=icon-] {
  position: absolute;
  z-index: 1;
  right: calc(-1 * var(--border-line-thick));
  fill: var(--color-lite);
}

.btn sub, .skip-link:focus sub {
  align-self: flex-end;
}

.btn-block {
  width: 100%;
}

.card {
  border: var(--border-line) solid var(--color-primary-xlite);
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  position: relative;
  height: 100%;
  justify-content: space-between;
}

.card-body {
  padding: var(--gutter);
}

.card-content {
  display: flex;
  align-items: center;
}

.card-content-research {
  display: flex;
  align-items: start;
}

.card-thumb {
  max-width: 8.75rem;
  flex: 1 0 30%;
  margin-right: var(--gutter);
}

.card-thumb-research {
  max-width: 12.5rem;
  flex: 1 0 35%;
  margin-right: var(--gutter);
}

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

.card .btn, .card .skip-link:focus {
  align-self: center;
  min-width: 30ch;
  max-width: 100%;
  margin-bottom: 0;
}

.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.video-card:hover h3, .video-card:focus h3 {
  color: var(--color-primary);
}

.card-banner {
  border: var(--border-line) solid var(--color-primary-xlite);
  display: flex;
  background-color: var(--color-white);
  position: relative;
  padding: var(--s-3);
  align-items: center;
  flex-direction: column;
}
@media (min-width: 48rem) {
  .card-banner {
    flex-direction: row;
  }
}

.card-banner-body {
  padding: var(--gutter);
}

@media (min-width: 48rem) {
  .card-banner-body p {
    max-width: 44ch;
  }
}

.card-banner-thumb {
  flex: 0 1 50%;
}

.card-banner-img {
  width: 100%;
  height: auto;
}

.alert a {
  color: currentColor;
  font-family: inherit;
  opacity: 0.7;
}
.alert a:hover, .alert a:focus {
  opacity: 1;
}

table {
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 65%;
}
table th, table td {
  padding: 0.5rem 0.75rem;
}
table tr:nth-child(even) {
  background-color: #eee;
}
table thead {
  border-bottom: 1px solid #ccc;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #dee2e6;
  text-align: left;
  color: var(--color-gray);
  white-space: nowrap !important;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.stack {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  height: 100%;
}

.stack-thumb {
  max-width: 10rem;
}
.stack-thumb picture, .stack-thumb img {
  height: 100%;
  width: 100%;
  max-height: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/**
 * Accordion container element
 */
.accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}

.accordion > li {
  margin: 0;
}

/**
 * Add zero-width space. needed to ensure Safari + VO respect list semantics.
 * Set the before content to position absolute to negate any visible space
 * the before content could add to the document.
 */
.accordion > li:before {
  content: "​";
  position: absolute;
}

/**
 * Accordion Heading
 */
.accordion__heading {
  margin-bottom: var(--border-line-thick);
}

.accordion__trigger {
  -webkit-appearance: none;
  background-color: var(--color-primary-lite);
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: var(--color-lite);
  cursor: pointer;
  display: block;
  font-size: inherit;
  margin: 0;
  padding: var(--s-1) var(--s5) var(--s-1) var(--s1);
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 2;
}

.accordion__trigger:after {
  border-left: 0.4em solid transparent;
  border-right: 0.4em solid transparent;
  border-top: 0.5em solid var(--color-lite);
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  right: 1em;
  top: 0;
  transition: transform 0.2s ease-in-out;
  transform-origin: center center;
  transform: rotate(0deg);
  width: 0;
}

.accordion__trigger:hover:after,
.accordion__trigger:focus:after,
.accordion__trigger[aria-expanded=true]:after {
  border-top-color: var(--color-white);
}

.accordion__trigger[aria-expanded=true]:after {
  transform: rotate(180deg);
}

/**
 * This is needed to allow a double tap iOS 11
 * Safari + VO to function correctly, if there
 * are multiple elements (wrapper spans) to layout
 * text nodes within the accordion button.

	-- This is not needed if a button only contains text
	   and no other child nodes wrapping the text --

.accordion__trigger > * {
	pointer-events: none;
}
 */
.accordion__trigger:hover,
.accordion__trigger:focus {
  background-color: var(--color-primary);
  color: var(--color-white);
  outline: none;
}

.accordion__trigger:focus {
  box-shadow: inset 0 0 0 var(--border-line-thick) var(--color-primary);
}

.accordion__trigger[aria-disabled=true]:hover {
  background-color: var(--color-primary-lite);
  color: var(--color-lite);
  cursor: not-allowed;
}

.accordion__trigger[aria-disabled=true]:focus {
  background-color: var(--color-primary-lite);
}

.accordion__panel {
  background-color: inherit;
  max-height: 0vh;
  overflow: hidden;
  padding: 0.001em var(--gutter);
  position: relative;
  visibility: hidden;
  z-index: 1;
}

.accordion__panel--transition {
  transition: max-height 0.2s ease-in-out, padding-top 0.2s ease-in-out, padding-bottom 0.2s ease-in-out;
}

.accordion__panel > :last-child {
  margin-bottom: 0;
}

.accordion__panel[aria-hidden=false] {
  max-height: initial;
  overflow: auto;
  padding: var(--gutter);
  visibility: visible;
}

.accordion__trigger[aria-expanded=true] {
  background: var(--color-primary-lite);
  color: var(--color-white);
}

.accordion__inline .accordion__panel[aria-hidden=false] {
  padding-left: 0;
  padding-right: 0;
}

lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  max-width: 100%;
}

/* gradient */
lite-youtube::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADGCAYAAAAT+OqFAAAAdklEQVQoz42QQQ7AIAgEF/T/D+kbq/RWAlnQyyazA4aoAB4FsBSA/bFjuF1EOL7VbrIrBuusmrt4ZZORfb6ehbWdnRHEIiITaEUKa5EJqUakRSaEYBJSCY2dEstQY7AuxahwXFrvZmWl2rh4JZ07z9dLtesfNj5q0FU3A5ObbwAAAABJRU5ErkJggg==);
  background-position: top;
  background-repeat: repeat-x;
  height: 60px;
  padding-bottom: 50px;
  width: 100%;
  transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
}

/* responsive iframe with a 16:9 aspect ratio
	thanks https://css-tricks.com/responsive-iframes/
*/
lite-youtube::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

lite-youtube > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}

/* play button */
lite-youtube > .lty-playbtn {
  width: 68px;
  height: 48px;
  position: absolute;
  cursor: pointer;
  transform: translate3d(-50%, -50%, 0);
  top: 50%;
  left: 50%;
  z-index: 1;
  background-color: transparent;
  /* YT's actual play button svg */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 68 48"><path fill="%23f00" fill-opacity="0.8" d="M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z"></path><path d="M 45,24 27,14 27,34" fill="%23fff"></path></svg>');
  filter: grayscale(100%);
  transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
  border: none;
}

lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus {
  filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
  cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
  opacity: 0;
  pointer-events: none;
}

.lyt-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.pain-scale-mild {
  --pain-level: 33.333%;
}

.pain-scale-moderate {
  --pain-level: 66.677%;
}

.pain-scale-severe {
  --pain-level: 100%;
}

.pain-scale-list {
  display: flex;
}

.pain-scale-list li {
  flex: 1 0 33.333%;
  text-align: center;
  display: block;
  padding: var(--s-4);
}
.pain-scale-list li:first-child {
  background: #a4d5a7;
}
.pain-scale-list li:nth-child(2) {
  background: #fff388;
}
.pain-scale-list li:last-child {
  background: #f15b67;
}

.pain-scale-coverage {
  position: relative;
  width: var(--pain-level);
  height: var(--s1);
  border: var(--border-line) solid var(--color-black);
  border-top: 0;
  display: inline-block;
  text-align: center;
  margin-top: 0.1875rem;
}

.pain-scale-label {
  background-color: var(--color-lite);
  position: relative;
  top: calc(var(--s1) / 2);
  display: inline-block;
  padding: 0 var(--s-5);
}

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: #fff;
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: calc(-1 * var(--s2));
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: var(--s-1);
  height: var(--s-1);
  margin: 0 var(--s-4);
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  background: var(--color-secondary);
}

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

.carousel {
  position: relative;
  background-color: var(--color-lite);
}

.carousel-cell {
  width: 100%;
}

.carousel-cell-image {
  display: block;
  max-height: 100%;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.4s;
}

/* fade in lazy loaded image */
.carousel-cell-image.flickity-lazyloaded,
.carousel-cell-image.flickity-lazyerror {
  opacity: 1;
}

.section-slider {
  position: relative;
}

.section-slider::before {
  content: "";
  width: 100%;
  height: 70%;
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-primary-lite);
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.carousel img {
  width: 100%;
  height: auto;
}

.carousel-cell {
  position: relative;
}

@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  transition: opacity 0.3s ease-out;
}

.modal-video-close {
  opacity: 0;
}

.modal-video-close .modal-video-movie-wrap {
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}
.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  transform: translate(0, 0);
  transition: transform 0.3s ease-out;
}

.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}

@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}

.modal-video-close-btn:after {
  transform: rotate(-45deg);
}

.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

.carousel-cell .js-modal-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0 !important;
}

.probowl-banner,
.game-banner {
  overflow: hidden;
  z-index: 0;
}
.probowl-banner .flow > * + *,
.game-banner .flow > * + * {
  margin-top: 1.5rem;
}

.probowl-banner,
.game-banner {
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.probowl-banner:hover, .probowl-banner:focus-visible,
.game-banner:hover,
.game-banner:focus-visible {
  transform: scale(1.025);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}

.probowl-banner,
.game-banner {
  background: #fff;
  margin: 30px 0;
  border: 1px solid var(--color-secondary);
  position: relative;
}
@media (min-width: 992px) {
  .probowl-banner,
  .game-banner {
    display: grid;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .probowl-banner,
  .game-banner {
    grid-template-columns: 27% auto;
  }
  .probowl-banner::after,
  .game-banner::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: inline-block;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, #ffffff 35%);
  }
}
.probowl-banner .probowl-thumb,
.probowl-banner .game-thumb,
.game-banner .probowl-thumb,
.game-banner .game-thumb {
  aspect-ratio: 380/200;
}
@media (min-width: 1200px) {
  .probowl-banner .probowl-thumb,
  .probowl-banner .game-thumb,
  .game-banner .probowl-thumb,
  .game-banner .game-thumb {
    z-index: -1;
    aspect-ratio: initial;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(0);
  }
}
.probowl-banner .probowl-image,
.probowl-banner .game-image,
.game-banner .probowl-image,
.game-banner .game-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.probowl-banner .probowl-content,
.probowl-banner .game-content,
.game-banner .probowl-content,
.game-banner .game-content {
  position: relative;
  z-index: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .probowl-banner .probowl-content,
  .probowl-banner .game-content,
  .game-banner .probowl-content,
  .game-banner .game-content {
    display: grid;
    align-items: center;
    grid-template-columns: 2fr 1fr;
  }
}
@media (min-width: 1200px) {
  .probowl-banner .probowl-content,
  .probowl-banner .game-content,
  .game-banner .probowl-content,
  .game-banner .game-content {
    grid-column: 2;
  }
}
.probowl-banner .probowl-title,
.probowl-banner .game-title,
.game-banner .probowl-title,
.game-banner .game-title {
  color: --color-primary;
  font-weight: 900;
}
.probowl-banner .probowl-cta,
.probowl-banner .game-cta,
.game-banner .probowl-cta,
.game-banner .game-cta {
  display: grid;
  gap: 1.5rem;
}
.probowl-banner .probowl-cta .btn, .probowl-banner .probowl-cta .skip-link:focus,
.probowl-banner .game-cta .btn,
.probowl-banner .game-cta .skip-link:focus,
.game-banner .probowl-cta .btn,
.game-banner .probowl-cta .skip-link:focus,
.game-banner .game-cta .btn,
.game-banner .game-cta .skip-link:focus {
  text-align: center;
  justify-content: center;
  display: flex;
  width: 100%;
}
@media (min-width: 768px) {
  .probowl-banner .probowl-cta,
  .probowl-banner .game-cta,
  .game-banner .probowl-cta,
  .game-banner .game-cta {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .probowl-banner .probowl-cta,
  .probowl-banner .game-cta,
  .game-banner .probowl-cta,
  .game-banner .game-cta {
    grid-template-columns: unset;
  }
}

.usn-banner {
  border: 1px solid var(--color-primary-lite);
  background: radial-gradient(circle at bottom, var(--color-white) 40%, var(--color-primary-lite) 120%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.usn-banner p {
  color: var(--color-primary);
  font-family: var(--font-headline);
  font-weight: 200;
  font-size: var(--s1);
  max-inline-size: 45ch;
  flex: 0 1 65%;
}
.usn-banner .usn-badge {
  width: 150px;
  height: auto;
  flex: 1 0 30%;
}

.site-footer .usn-banner {
  background: transparent;
  border: none;
}
.site-footer .usn-banner p {
  color: var(--color-white);
}
.site-footer .usn-banner .usn-badge {
  width: 100px;
}

.site-logo {
  display: inline-block;
  position: relative;
  padding: var(--s0) var(--s1);
}

.site-logo > svg {
  fill: var(--color-white);
}
@media (max-width: 61rem) {
  .site-logo > svg {
    height: 3.125rem;
    width: auto;
  }
}

@media (min-width: 62rem) {
  .site-logo {
    box-shadow: 0 0 0 var(--s-2) var(--color-secondary), 0 var(--s-4) var(--s-2) var(--s-4) rgba(0, 0, 0, 0.3);
    top: var(--s-2);
    z-index: 2;
  }
}

@media (min-width: 62rem) {
  .site-logo::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-secondary);
    width: 100%;
    height: 100%;
  }
}

.site-header {
  position: relative;
  background-color: var(--color-secondary);
  border-bottom: var(--s-5) solid var(--color-primary-lite);
}
.site-header > * {
  color: var(--color-white);
}

@media (max-width: 61rem) {
  .site-header::before {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: content-box;
    z-index: 25;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--color-secondary);
    border-bottom: var(--s-5) solid var(--color-primary-lite);
  }
}
.site-nav a {
  font-weight: bold;
  color: var(--color-lite);
}
.site-nav a:hover, .site-nav a:focus {
  color: var(--color-white);
}
.site-nav a:active {
  color: var(--color-white);
}

:root {
  --grid-header-col: minmax(max-content, 0.75fr) minmax(max-content, 1.75fr) 2fr
  	minmax(max-content, 1.5fr) minmax(max-content, 1fr);
  --grid-header-row: auto 1rem;
}

@media (min-width: 62rem) {
  .header-container {
    display: grid;
    text-align: center;
    grid-template-columns: var(--grid-header-col);
    position: relative;
  }
}

@media (min-width: 62rem) {
  .site-nav-list li:nth-child(3) {
    grid-column: 4;
  }
  .site-nav-list li:nth-child(4) {
    grid-column: 5;
  }
}

@media (max-width: 61rem) {
  .site-brand {
    z-index: 25;
  }
}
@media (min-width: 62rem) {
  .site-brand {
    display: grid;
    grid-column: 1/-1;
    grid-row: 1/-1;
    place-items: center;
  }
}

@media (min-width: 62rem) {
  .site-nav {
    grid-column: 1/-1;
    grid-row: 1;
  }
}

@media (min-width: 62rem) {
  .site-nav-list {
    height: 100%;
    display: grid;
    grid-template-columns: var(--grid-header-col);
  }
}

.site-nav-item {
  text-align: left;
}
@media (min-width: 62rem) {
  .site-nav-item {
    height: 100%;
  }
}

@media (min-width: 62rem) {
  .site-nav a {
    display: block;
  }
  .site-nav > li > a {
    padding: var(--s1);
  }
  .site-nav li li a {
    padding: var(--s-2) var(--s2);
  }
}
@media (min-width: 62rem) {
  .site-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 62rem) {
  .site-nav-list-child {
    padding: var(--s-1) 0;
    min-width: 25ch;
    border-radius: var(--radius-rounded);
    box-shadow: 0 var(--s-6) var(--s-6) 0 rgba(0, 0, 0, 0.2);
    z-index: 10;
    position: absolute;
    top: calc(100% - 1 * var(--s0));
    left: 0;
    background-color: var(--color-secondary-lite);
  }
}

.site-footer {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border-top: var(--s-5) solid var(--color-primary-lite);
}

.site-footer svg {
  fill: var(--color-white);
}

.site-footer a:link, .site-footer a:visited {
  color: var(--color-lite);
}
.site-footer a:hover, .site-footer a:focus, .site-footer a:active {
  color: var(--color-white);
}

.footer-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav-link {
  font-weight: bold;
  padding: var(--s1);
}

.entry-stats p mark {
  font-weight: bold;
  color: var(--color-secondary-lite);
  background-color: transparent;
  font-size: var(--s0);
}

.product-thumb {
  max-width: 17.5rem;
  margin-left: auto;
  margin-right: auto;
}

.product-facts dt {
  font-weight: bold;
}
.product-item {
  display: grid;
  gap: 2ex;
  grid-template-rows: 4ex auto;
  grid-template-areas: "product-tagline" "product-contents";
}

.product-item .stack {
  grid-area: product-contents;
}

.product-tagline {
  align-self: center;
  justify-self: center;
  grid-area: product-tagline;
  font-weight: bold;
  font-style: italic;
  background-color: yellow;
  text-align: center;
  display: inline-block;
  padding: 0.25ex 0.75ex;
  position: relative;
}

.menu-button {
  border: none;
  border-radius: 0;
  background: var(--color-secondary);
  color: var(--color-lite);
  display: inline-block;
  padding: 1em 1.5em;
}

.menu-button {
  font-size: 0.875em;
  padding: 1em;
  border-radius: var(--radius-rounded);
  background-color: var(--color-secondary-lite);
}

.menu-button:hover,
.menu-button:focus,
.menu-button.toggled-on {
  background-color: var(--color-primary);
}

.icon {
  display: inline-block;
  fill: currentColor;
  height: 1em;
  width: 1em;
  vertical-align: middle;
  position: relative; /* Align more nicely with capital letters */
  top: -0.0625em;
}

/* Menu toggle styles. */
.icon-menu-button {
  width: 2em;
  height: 2em;
  top: 0;
}

/* Animate menu icon (lines). */
.svg-menu-button .line {
  opacity: 1;
  transform: rotate(0) translateY(0) translateX(0);
  transform-origin: 1em 1em;
  transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.svg-menu-button .line-1 {
  transform-origin: 1em 2.375em;
}

.svg-menu-button .line-3 {
  transform-origin: 1em 4.375em;
}

.menu-button.toggled-on .svg-menu-button .line-1 {
  transform: rotate(45deg) translateY(0) translateX(0);
}

.menu-button.toggled-on .svg-menu-button .line-2 {
  opacity: 0;
}

.menu-button.toggled-on .svg-menu-button .line-3 {
  transform: rotate(-45deg) translateY(0) translateX(0);
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/***

An accessible menu for WordPress
https://github.com/argenteum/accessible-nav-wp

Licensed GPL v.2 (http://www.gnu.org/licenses/gpl-2.0.html)

***/
@media (max-width: 61rem) {
  .site-header-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: 250ms all ease;
  }
}

@media (max-width: 61rem) {
  .site-brand {
    display: flex;
    align-items: center;
    position: relative;
  }
  .menu-button {
    cursor: pointer;
    position: absolute;
    right: var(--gutter);
  }
}
@media (min-width: 48rem) {
  .site-brand {
    justify-content: center;
  }
}
.main-navigation ul ul {
  margin-top: 0;
  margin-left: 0;
}

.main-navigation ul ul {
  visibility: hidden;
  opacity: 0;
  transition: 250ms all ease;
}
@media (max-width: 61rem) {
  .main-navigation ul ul {
    overflow: hidden;
    max-height: 0;
  }
}

@media (max-width: 61rem) {
  .no-js .site-header-menu,
  .site-header-menu.toggled-on {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.no-js .main-navigation ul,
.main-navigation ul .sub-menu.toggled-on {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 61rem) {
  .no-js .main-navigation ul,
  .main-navigation ul .sub-menu.toggled-on {
    overflow: visible;
    max-height: 100vh;
  }
}

button.dropdown-toggle {
  min-width: 2em;
  min-height: 2em;
  display: inline-block;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  content: "";
}

@media (max-width: 61rem) {
  button.dropdown-toggle {
    min-width: 2.5em;
    border-radius: var(--radius-circle);
    background-color: transparent;
  }
  button.dropdown-toggle:hover, button.dropdown-toggle:focus, button.dropdown-toggle.toggled-on {
    color: var(--color-lite);
    background-color: var(--color-primary);
  }
}
button.dropdown-toggle {
  color: var(--color-lite);
}

.dropdown-toggle:after,
.dropdown-toggle.toggled-on:after {
  font-size: var(--s0);
  color: currentColor;
}
@media (min-width: 62rem) {
  .dropdown-toggle:after,
  .dropdown-toggle.toggled-on:after {
    font-size: var(--s-2);
  }
}

.no-js .menu-button {
  display: none;
}

/* Plus symbol to expand sub-menu on mobile */
.dropdown-toggle:after {
  content: "▼";
}

/* Minus symbol to collapse sub-menu on mobile */
.dropdown-toggle.toggled-on:after {
  content: "▲";
}

/* Screen readers */
/* Desktop media query */
@media (min-width: 62rem) {
  .menu-button {
    display: none;
  }
  .site-header {
    display: grid;
  }
  .site-header-menu {
    display: grid;
    width: 100%;
    grid-column: 1;
    grid-row: 1;
  }
  ul.sub-menu .dropdown-toggle {
    position: absolute;
    right: 10px;
    top: 4px;
  }
  /* Arrow down */
  .main-navigation ul .dropdown-toggle:after {
    content: "▼";
  }
  /* Arrow right */
  /* Arrow up */
  .main-navigation ul .dropdown-toggle.toggled-on:after {
    content: "▲";
  }
  /* Arrow left */
  .main-navigation ul li:hover > ul {
    visibility: visible;
    opacity: 1;
  }
}
@media (min-width: 62rem) {
  .site-nav-link {
    padding: var(--s1) 0;
  }
}
@media (max-width: 61rem) {
  .menu-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
  }
  .site-nav-link {
    padding: var(--s-3) 0;
    display: block;
    flex: 1;
  }
  .site-nav-list {
    padding: var(--s2) 0;
  }
  .main-navigation ul ul {
    flex: 1 1 100%;
  }
  .site-header-menu {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 20;
    background: var(--color-secondary-lite);
    overflow-y: auto;
  }
}
.post-item {
  background-color: var(--color-white);
  padding: var(--f2);
  border-radius: var(--radius-rounded);
}
.post-item a {
  text-decoration: underline;
}
.post-item a:hover, .post-item a:focus-within {
  text-decoration: none;
}

.callout {
  padding: var(--s5);
}

.callout-primary {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.callout-primary a {
  color: inherit;
  opacity: 0.7;
}
.callout-primary a:hover, .callout-primary a:focus-visible {
  opacity: 1;
}

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

.pharmacist-figure {
  padding: var(--s1);
  aspect-ratio: 1/1;
  background: linear-gradient(45deg, #ade1f9, #d3eefc);
}

.pharmacist-image {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}

.sitemap-list > li > a {
  font-weight: bold;
}

.sitemap-list ul {
  margin-inline-start: var(--s0);
}

.sr-only, .skip-link, .screen-readers {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  top: 0;
}

.skip-link:focus {
  border-radius: 0;
  position: absolute;
  clip: auto !important;
  clip-path: none;
  display: block;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  z-index: 102;
}

.display-none {
  display: none;
}

@media screen and (max-width: 48rem) {
  .d-sm-none {
    display: none !important;
  }
}
.bg-white {
  background-color: var(--color-white);
}

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

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

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

.bg-primary-dark {
  background-color: var(--color-primary-dark);
}

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

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

.embed {
  height: 0;
  width: 100%;
  position: relative;
}

.embed > * {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.embed > img,
.embed > picture {
  -o-object-fit: cover;
     object-fit: cover;
}

.embed-wide {
  padding-top: 56.25%;
}

.embed-sq {
  padding-top: 100%;
}

.embed-rect {
  padding-top: 66.6666666667%;
}

.img-reponsive-width {
  height: auto;
}

.section-sm, .alert {
  padding-top: var(--gap-sm);
  padding-bottom: var(--gap-sm);
}

.section-md {
  padding-top: var(--gap-md);
  padding-bottom: var(--gap-md);
}

.section-lg {
  padding-top: var(--gap-lg);
  padding-bottom: var(--gap-lg);
}

.section-xl {
  padding-top: var(--gap-xl);
  padding-bottom: var(--gap-xl);
}

.section-xxl {
  padding-top: var(--gap-xxl);
  padding-bottom: var(--gap-xxl);
}

.flow-v-xs > * + * {
  margin-top: var(--flow-xs);
}

.flow-v-sm > * + * {
  margin-top: var(--flow-sm);
}

.flow-v-md > * + * {
  margin-top: var(--flow-md);
}

.flow-v-lg > * + * {
  margin-top: var(--flow-lg);
}

.flow-v-xl > * + * {
  margin-top: var(--flow-xl);
}

.flow-v-xxl > * + * {
  margin-top: var(--flow-xxl);
}

.flow-v-xxxl > * + * {
  margin-top: var(--flow-xxxl);
}

.flow-xxs {
  margin-top: var(--flow-xxs);
}

.flow-xs {
  margin-top: var(--flow-xs);
}

.flow-sm, .stats-headline {
  margin-top: var(--flow-sm);
}

.flow-md {
  margin-top: var(--flow-md);
}

.flow-lg {
  margin-top: var(--flow-lg);
}

.flow-xl {
  margin-top: var(--flow-xl);
}

.flow-xxl {
  margin-top: var(--flow-xxl);
}

.flow-xxxl {
  margin-top: var(--flow-xxxl);
}

.flow-0 {
  margin-top: 0;
}

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

.gap-0 {
  --gap: var(--gap-0);
}

.gap-xs {
  --gap: var(--gap-xs);
}

.gap-sm {
  --gap: var(--gap-sm);
}

.gap-md {
  --gap: var(--gap-md);
}

.gap-lg {
  --gap: var(--gap-lg);
}

.gap-xl {
  --gap: var(--gap-xl);
}

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

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

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

.align-bottom {
  margin-top: auto;
  margin-bottom: 0;
}

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

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

.link-block {
  position: static;
  cursor: pointer;
}
.link-block::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

button.link-block {
  -webkit-appearance: none;
  border: 1px solid transparent;
  padding: 0;
}
button.link-block:focus::before {
  box-shadow: inset 0 0 0 var(--border-line) var(--color-primary-lite);
}

.max-width-xxs {
  max-width: 24rem;
}

.max-width-xs {
  max-width: 36rem;
}

.max-width-sm {
  max-width: 48rem;
}

.max-width-md {
  max-width: 62rem;
}

.max-width-lg {
  max-width: 75rem;
}

[class*=stick-] {
  position: sticky;
  z-index: 2;
}

.stick-top {
  position: sticky;
  z-index: 2;
  top: var(--gutter);
  align-self: start;
}

.stick-bottom {
  position: sticky;
  z-index: 2;
  bottom: var(--gutter);
  align-self: end;
}

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

.txt-right {
  text-align: right;
}

.txt-uppercase, .btn, .accordion__trigger, .stats-headline, .skip-link:focus {
  text-transform: uppercase;
  letter-spacing: 0.0375em;
}

.txt-body, .sitemap-list {
  font-family: var(--font-body);
}

.txt-headline, .accordion__trigger, .stats-headline, .product-headline, .product-subheadline {
  font-family: var(--font-headline);
}
.txt-headline sup, .accordion__trigger sup, .stats-headline sup, .product-headline sup, .product-subheadline sup {
  top: 0.15em;
  position: relative;
}

.txt-serif {
  font-family: var(--font-serif);
}

.txt-med {
  font-weight: 500;
}

.txt-book {
  font-weight: 400;
}

.txt-bold, .product-subheadline {
  font-weight: bold;
}

.txt-white, .section-banner-bg {
  color: var(--color-white);
}

.txt-black {
  color: var(--color-black);
}

.txt-muted {
  color: var(--color-gray);
}

.txt-lite {
  color: var(--color-lite);
}

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

.txt-primary-lite {
  color: var(--color-primary-lite);
}

.txt-secondary {
  color: var(--color-secondary);
}

.txt-secondary-lite, .product-subheadline {
  color: var(--color-secondary-lite);
}

.txt-body-sub {
  font-size: 50%;
  position: relative;
  bottom: 0.5em;
}

.txt-body sub, .sitemap-list sub {
  font-size: 50%;
  position: relative;
  bottom: 0.5em;
}

.txt-asterisk {
  position: relative;
  display: flex;
}
.txt-asterisk::before {
  content: "*";
  left: -1ch;
  position: relative;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  z-index: 1000;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 48rem;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/*# sourceMappingURL=app.css.map*/