/* 
  CSS BELOW taken and adapted from https://foundations.koahealth.com/privacy-policy-app/ 
  v v v v v v v v v v v v v 
*/
*,
::after,
::before {
  box-sizing: border-box;
}

html {
  -moz-tab-size: 4;
  -o-tab-size: 4;
}

html {
  -webkit-text-size-adjust: 100%;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  line-height: 1.5;
}

body {
  font-family: inherit;
  line-height: inherit;
}

*,
::after,
::before {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
    padding-right: 5.3125rem;
    padding-left: 5.3125rem;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.col-span-full {
  grid-column: 1/-1;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

.mt-auto {
  margin-top: auto;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-8 {
  height: 2rem;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.w-8 {
  width: 2rem;
}

.w-auto {
  width: auto;
}

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

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

.items-end {
  align-items: flex-end;
}

.gap-y-10 {
  row-gap: 2.5rem;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-16 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-10 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
}

.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}

.rounded-full {
  border-radius: 9999px;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgba(48, 38, 37, var(--tw-bg-opacity));
}

.fill-current {
  fill: currentColor;
}

.p-1\.5 {
  padding: 0.375rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

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

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.not-italic {
  font-style: normal;
}

.leading-snug {
  line-height: 1.375;
}

.text-blue {
  --tw-text-opacity: 1;
  color: rgba(30, 47, 205, var(--tw-text-opacity));
}

.text-black {
  --tw-text-opacity: 1;
  color: rgba(48, 38, 37, var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.no-underline {
  text-decoration: none;
}

.transition-colors {
  transition-property: background-color, border-color, color, fill, stroke;
}

.duration-250 {
  transition-duration: 250ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.hover\:bg-opacity-50:hover {
  --tw-bg-opacity: 0.5;
}

.hover\:text-blue:hover {
  --tw-text-opacity: 1;
  color: rgba(30, 47, 205, var(--tw-text-opacity));
}

.hover\:underline:hover {
  text-decoration: underline;
}

.focus\:underline:focus {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(5rem * var(--tw-space-y-reverse));
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-first {
    order: -9999;
  }

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .lg\:col-start-3 {
    grid-column-start: 3;
  }

  .lg\:block {
    display: block;
  }

  .lg\:h-10 {
    height: 2.5rem;
  }

  .lg\:w-10 {
    width: 2.5rem;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

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

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

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0rem * var(--tw-space-y-reverse));
  }

  .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(4rem * var(--tw-space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .lg\:p-2\.5 {
    padding: 0.625rem;
  }
}

@media (min-width: 1440px) {
  .xl\:col-span-10 {
    grid-column: span 10 / span 10;
  }

  .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .xl\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .xl\:col-start-2 {
    grid-column-start: 2;
  }
}

dd,
dl,
dt,
h1,
h2,
html,
iframe,
li,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

*,
:after,
:before {
  box-sizing: inherit;
}

iframe {
  border: 0;
}

html {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

*,
:after,
:before {
  box-sizing: border-box;
  margin: 0;
}

body {
  background-color: #fff;
}

body,
ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:focus,
button:focus {
  outline: 0;
}

::-moz-selection {
  color: #fff;
  background: rgba(48, 38, 37, 0.5);
}

::selection {
  color: #fff;
  background: rgba(48, 38, 37, 0.5);
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.t-header-2 {
  font-weight: 700;
  font-family: Super, Georgia, Times, Times New Roman, serif;
  letter-spacing: -0.0125em;
  line-height: 1.2;
}

.t-header-2 {
  font-size: 1.75rem;
}

@media screen and (min-width: 700px) {
  .t-header-2 {
    font-size: 2.375rem;
  }
}

@media screen and (min-width: 1024px) {
  .t-header-2 {
    font-size: 3rem;
  }
}

.t-body {
  font-family: America, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

.t-body strong {
  font-weight: 500;
}

.t-body em {
  font-style: italic;
  font-weight: inherit;
}

.t-body a:not([class*="underline"]) {
  color: #1e2fcd;
}

@media (hover: hover) {
  .t-body a:not([class*="underline"]):focus,
  .t-body a:not([class*="underline"]):hover {
    text-decoration: underline;
  }
}

.t-chapter-item {
  font-family: America, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.t-chapter-item {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: underline;
}

@media screen and (min-width: 700px) {
  .t-chapter-item {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 1024px) {
  .t-chapter-item {
    font-size: 1.375rem;
  }
}

.grid {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.grid:before {
  content: "";
  display: table;
}

.grid:after {
  content: "";
  display: table;
  clear: both;
}

.text-page {
  background-color: #fff;
  padding: 108px 0 68px;
}

.text-page:before {
  content: "";
  display: table;
}

.text-page:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (min-width: 1024px) {
  .text-page {
    padding: 174.744px 0 110.024px;
  }
}

.text-page h1,
.text-page h2 {
  font-family: Super, Georgia, Times, Times New Roman, serif;
  line-height: 1.2;
  font-weight: 700;
}

.text-page h1 {
  text-align: center;
  font-size: 2.625rem;
  margin-bottom: 42px;
}

@media screen and (min-width: 1024px) {
  .text-page h1 {
    font-size: 4.24725rem;
  }
}

.text-page h2 {
  font-size: 1.4375rem;
  margin-top: 37px;
}

@media screen and (min-width: 1024px) {
  .text-page h2 {
    font-size: 2.32588rem;
    margin-top: 59.866px;
  }
}

.text-page p,
.text-page ul {
  font-family: America, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.35;
  margin-top: 12px;
}

@media screen and (min-width: 1024px) {
  .text-page p,
  .text-page ul {
    font-size: 1.375rem;
    margin-top: 16px;
  }
}

.text-page ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5em;
}

.text-page li {
  margin-top: 12px;
}

@media screen and (min-width: 1024px) {
  .text-page li {
    margin-top: 16px;
  }
}

.text-page a:not([class*="text-"]) {
  color: inherit;
  text-decoration: underline;
  word-wrap: break-word;
}

.grid-layout {
  display: grid;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}

@media (min-width: 768px) {
  .grid-layout {
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }
}

@media (min-width: 1440px) {
  .grid-layout {
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }
}

.grid-layout:not([class*="grid-cols-"]) {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@media (max-width: 1440px) {
  .container {
    max-width: none !important;
  }
}

/* ^^^^^^^^^^^^^^^^^^
 CSS ABOVE taken from https://foundations.koahealth.com/privacy-policy-app/
*/

/*
  CSS below specific to those Mindset pages
*/

:root {
  --dark: #223747;
}

h1,
h2,
h3 {
  font-family: Super, Georgia, Times, Times New Roman, serif;
  color: var(--dark);
}

body {
  color: var(--dark);
  padding-bottom: 1em;
}

::marker {
  font-weight: bold;
}

p {
  margin-bottom: 1em;
}

h1 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 2em;
  margin-top: 1em;
}

h2 {
  margin-top: 1.6em;
  margin-bottom: 0.7em;
  font-size: 1.5em;
}

h3 {
  margin-top: 0.8em;
  margin-bottom: 0.7em;
  text-decoration: underline;
  font-size: 1.2em;
}

h4 {
  font-size: 1em;
  margin-top: 0.7em;
}

dl > dt,
dl > dd {
  display: inline;
}

article > section {
  margin-top: 1em;
}

aside#date {
  text-align: right;
}

p#intro {
  margin-top: 1em;
}

ol {
  margin-top: 1em;
  margin-bottom: 1em;
}

ul {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 1em;
}

li {
  margin-top: 1em;
}

ul > li {
  list-style: disc;
}

ul > li > ul > li {
  list-style: circle;
}
