@charset "UTF-8";
/*
	Theme Name: Teach HistoryLink
	Theme URI: http://builtbycivilization.com
	Description: Washing State Educational Platform for HistoryLink.org
	Version: 1.0
	Author: Civilization
	Author URI: http://builtbycivilization.com
*/
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video, input, select {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

article, aside, figure, footer, header, hgroup, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
  *vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

a:hover, :active, :focus {
  outline: none;
}

small {
  font-size: 85%;
}

strong, th {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

.clickable, label,
input[type=button],
input[type=submit],
button {
  cursor: pointer;
}

button, input, select, textarea {
  margin: 0;
}

button {
  width: auto;
  overflow: visible;
  border: 0;
  background: transparent;
}

.ie7 img {
  -ms-interpolation-mode: bicubic;
}

:root {
  --white: #fff;
  --deepblack: #000;
  --black: #282826;
  --darkgray: #56544e;
  --gray: #b5b7a9;
  --palegray: #f1f1ef;
  --rust: #bd783c;
  --gold: #f6c368;
  --flax: #f4dfac;
  --cream: #f1efe1;
  --bgColor: var(--white);
  --textColor: var(--deepblack);
  --inverseColor: var(--white);
  --linkColor: var(--rust);
  --highlightColor: var(--gold);
  --margin: 1rem;
  --headerHeight: 7rem;
  --marginHalf: calc(var(--margin) / 2);
  --marginQuarter: calc(var(--margin) / 4);
  --marginDouble: calc(var(--margin) * 2);
  --marginTriple: calc(var(--margin) * 3);
  --marginQuad: calc(var(--margin) * 4);
}
@media only screen and (min-width: 700px) {
  :root {
    --margin: 3rem;
  }
}

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

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

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

.deepblack-text {
  --textColor: var(--deepblack);
  color: var(--textColor);
}

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

.black-text {
  --textColor: var(--black);
  color: var(--textColor);
}

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

.darkgray-text {
  --textColor: var(--darkgray);
  color: var(--textColor);
}

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

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

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

.palegray-text {
  --textColor: var(--palegray);
  color: var(--textColor);
}

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

.rust-text {
  --textColor: var(--rust);
  color: var(--textColor);
}

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

.gold-text {
  --textColor: var(--gold);
  color: var(--textColor);
}

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

.flax-text {
  --textColor: var(--flax);
  color: var(--textColor);
}

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

.cream-text {
  --textColor: var(--cream);
  color: var(--textColor);
}

.white-text {
  --textColor: var(--white);
  --linkColor: var(--gold);
  --highlightColor: var(--flax);
}

body, input, textarea, button, select, .credits {
  font-family: poynter-gothic-text, Helvetica, Arial, sans-serif;
  font-style: normal;
}

.help-button, .subnav.lesson-nav a, .h1,
h1, .h2,
h2, q, blockquote, blockquote h2, blockquote h3, blockquote p {
  font-family: minion-pro, serif;
  font-style: normal;
}

.subnav.lesson-nav a.current, .filter-wrap.anchor-nav, .main-menu > ul strong, .hl-extras .date-wrap select,
.hl-extras .date-wrap .select2-selection__rendered, .h3,
h3, .h4,
h4 {
  font-family: minion-std-black, serif;
  font-weight: 400;
  font-style: normal;
}

.help-text, dl.accordion dd, .grid-item {
  font-weight: 300;
}

html.high-contrast .grid-item,
html.high-contrast .help-text,
html.high-contrast .sponsors p, .button {
  font-weight: 400;
}

.subnav.pagination, .h1,
h1, h5, cite {
  font-weight: 600;
}

html.high-contrast main input[type=checkbox],
html.high-contrast main input[type=radio],
html.high-contrast main input[type=text],
html.high-contrast main input[type=number],
html.high-contrast main input[type=password],
html.high-contrast main input[type=email],
html.high-contrast main input[type=url],
html.high-contrast main input[type=tel],
html.high-contrast main textarea, dl.accordion dt button, .h2,
h2, h6, strong, b {
  font-weight: 700;
}

.help-button, em, i {
  font-style: italic;
}

.widont {
  text-wrap: pretty;
}

.balance-text {
  text-rendering: optimizeLegibility;
  text-wrap: balance;
}

.button {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  padding: 0.7em 1.1em;
  font-size: 90%;
  line-height: 1.6rem;
  border-radius: 0;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--rust);
  color: var(--white);
}
.button:hover, .button:focus-within, .button:focus:not(:active) {
  background-color: var(--gold);
  color: var(--black);
}

.help-text, .tool-options .tool, .sponsors .logos .text-sponsor, .card p, small {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media only screen and (min-width: 700px) {
  .help-text, .tool-options .tool, .sponsors .logos .text-sponsor, .card p, small {
    font-size: 1.6rem;
  }
}

.object-cover video, .object-cover img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.object-contain video, .object-contain img, .sponsors .logos > div img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

.split .half ul:not(.gfield_radio):not(.gfield_checkbox):not(.gform_fields):not(.social-media), .text-wrap ul:not(.gfield_radio):not(.gfield_checkbox):not(.gform_fields):not(.social-media) {
  list-style: disc;
}
.split .half ul:not(.gfield_radio):not(.gfield_checkbox):not(.gform_fields):not(.social-media), .text-wrap ul:not(.gfield_radio):not(.gfield_checkbox):not(.gform_fields):not(.social-media), .split .half ol, .text-wrap ol {
  padding-left: 2rem;
}
.split .half ul:not(.gfield_radio):not(.gfield_checkbox):not(.gform_fields):not(.social-media) li, .text-wrap ul:not(.gfield_radio):not(.gfield_checkbox):not(.gform_fields):not(.social-media) li, .split .half ol li, .text-wrap ol li {
  margin-top: 4px;
}
.split .half a:not(.button), .text-wrap a:not(.button) {
  text-decoration: underline;
}
.split .half blockquote, .text-wrap blockquote {
  padding: 3rem;
}
@media only screen and (min-width: 700px) {
  .split .half blockquote, .text-wrap blockquote {
    padding: 6rem;
  }
}

:-webkit-autofill {
  -webkit-text-fill-color: var(--textColor);
  -webkit-box-shadow: 0 0 0px 1000px var(--highlightColor) inset;
}

:-moz-autofill { /* Firefox 18- */
  -moz-text-fill-color: var(--textColor);
  -moz-box-shadow: 0 0 0px 1000px var(--highlightColor) inset;
}

::-moz-autofill { /* Firefox 19+ */
  -moz-text-fill-color: var(--textColor);
  -moz-box-shadow: 0 0 0px 1000px var(--highlightColor) inset;
}

::-webkit-input-placeholder {
  color: var(--textColor);
  opacity: 0.5;
}

:-moz-placeholder { /* Firefox 18- */
  color: var(--textColor);
  opacity: 0.5;
}

::-moz-placeholder { /* Firefox 19+ */
  color: var(--textColor);
  opacity: 0.5;
}

:-ms-input-placeholder {
  color: var(--textColor);
  overflow: hidden;
}

::selection {
  background-color: var(--highlightColor);
  color: var(--textColor);
  text-shadow: none;
}

::-moz-selection {
  background-color: var(--highlightColor);
  color: var(--textColor);
  text-shadow: none;
}

html {
  width: 100%;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale; /* fixes FF over-bolding */
  -ms-overflow-style: -ms-autohiding-scrollbar;
  font-size: 62.5%; /* 10px reset */
  position: relative;
  background-color: var(--bgColor);
  color: var(--textColor);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

body {
  width: 100%;
  min-height: 100%;
  font-size: 1.6rem;
  line-height: 1.45;
  overflow-x: hidden;
  background-color: var(--black);
  padding-top: var(--headerHeight); /* fixed header height */
}
@media only screen and (min-width: 700px) {
  body {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 1024px) {
  body {
    font-size: calc(1.2rem + 0.375vw);
  }
}
body:has(.sticky), body:has(nav) {
  overflow: unset;
}
body.modal-open {
  height: 100%;
  height: 100vh;
  overflow-y: hidden;
}

.h1,
h1 {
  font-size: 4.2rem;
  line-height: 1.16666667;
}
@media only screen and (min-width: 700px) {
  .h1,
  h1 {
    font-size: 7rem;
  }
}

.h2,
h2 {
  font-size: 3rem;
  line-height: 1.125;
}
@media only screen and (min-width: 700px) {
  .h2,
  h2 {
    font-size: calc(3rem + 1vw);
  }
  .h2.post-title,
  h2.post-title {
    font-size: 3.5rem;
  }
}

.h3,
h3 {
  font-size: 2rem;
  line-height: 1.2;
}
@media only screen and (min-width: 700px) {
  .h3,
  h3 {
    font-size: calc(2rem + 0.5vw);
  }
}

.h4,
h4 {
  font-size: 1.8rem;
}
@media only screen and (min-width: 700px) {
  .h4,
  h4 {
    font-size: calc(1.8rem + 0.125vw);
  }
}

h5 {
  font-size: 1.6rem;
}

h6 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

q {
  display: block;
  font-size: 2.4rem;
  line-height: 1.3;
  /*
  	@include responsive(min, 930) {
  		max-width: 92rem;
  		margin: 0 auto;
  	}
  */
}
@media only screen and (min-width: 700px) {
  q {
    font-size: 4.8rem;
    font-size: calc(3rem + 0.75vw);
  }
}
q + cite {
  display: block;
  font-style: normal;
}
q + cite::before {
  content: "— ";
}
q.quote {
  quotes: "“" "”" "‘" "’";
}
q.quote p {
  display: inline;
}
q.quote::before {
  display: inline;
  content: open-quote;
}
q.quote::after {
  display: inline;
  content: close-quote;
}

blockquote p {
  font-size: 1.6rem;
}
@media only screen and (min-width: 700px) {
  blockquote p {
    font-size: 2rem;
  }
}

cite {
  font-style: normal;
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 2rem;
}
@media only screen and (min-width: 700px) {
  cite {
    margin-top: 3rem;
    font-size: 2.4rem;
  }
}
cite span {
  display: block;
  margin-top: 1rem;
  text-transform: uppercase;
  font-size: 1.2rem;
}
@media only screen and (min-width: 700px) {
  cite span {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}

hr {
  border-top: 1px solid currentColor;
  margin: 3rem auto;
}

input, textarea, button, select {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=text],
input[type=number],
input[type=password],
input[type=email],
input[type=tel],
textarea,
select,
.select2-selection__rendered {
  display: block;
  width: 100%;
  background-color: transparent;
  color: inherit;
  border: 1px solid;
  font-size: inherit;
  line-height: 3rem;
  padding: 0 0.7rem;
  margin: 0 auto;
  position: relative;
  border-radius: 0;
  z-index: 1;
}
@-moz-document url-prefix() {
  input[type=text],
  input[type=number],
  input[type=password],
  input[type=email],
  input[type=tel],
  textarea,
  select,
  .select2-selection__rendered {
    line-height: initial !important;
    height: 3rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  input[type=text],
  input[type=number],
  input[type=password],
  input[type=email],
  input[type=tel],
  textarea,
  select,
  .select2-selection__rendered {
    height: 3rem;
  }
}

textarea {
  line-height: 1.45;
  padding: 1rem;
  height: 12rem;
}

input[type=radio],
input[type=checkbox] {
  background: transparent;
  -webkit-appearance: none;
  width: 1.6rem !important;
  height: 1.6rem;
  vertical-align: middle;
  margin-right: 1rem;
  margin-top: -2px;
  color: inherit;
  border: 1px solid;
  font-size: 2.4rem;
  line-height: 1.25;
  position: relative;
  cursor: pointer;
}
input[type=radio]:checked,
input[type=checkbox]:checked {
  background-color: var(--textColor);
}

input[type=radio] {
  border-radius: 50%;
}

select,
.select2-selection__rendered {
  cursor: pointer;
}

a,
button {
  color: inherit;
  font: inherit;
}

section,
footer {
  position: relative;
  width: 100%;
}
section button:not(.button),
section a:not(.button),
footer button:not(.button),
footer a:not(.button) {
  color: inherit;
}
section button:not(.button):hover, section button:not(.button):focus-within, section button:not(.button):focus:not(:active),
section a:not(.button):hover,
section a:not(.button):focus-within,
section a:not(.button):focus:not(:active),
footer button:not(.button):hover,
footer button:not(.button):focus-within,
footer button:not(.button):focus:not(:active),
footer a:not(.button):hover,
footer a:not(.button):focus-within,
footer a:not(.button):focus:not(:active) {
  color: var(--linkColor);
}

figure {
  position: relative;
}
figure:not(:has([src])) {
  background-color: rgba(40, 40, 38, 0.5);
}

video,
iframe {
  width: 100%;
}

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

audio {
  display: block;
  width: 100%;
}

svg {
  fill: inherit;
}
a svg, button svg {
  pointer-events: none;
}

footer {
  position: relative;
  width: 100%;
}
footer .footer-wrap {
  display: flex;
  flex-direction: column;
}
footer .signup-wrap {
  text-wrap: balance;
}
footer .signup-wrap h3 + p {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 768px) {
  footer .wrap + .wrap {
    padding-top: 0;
  }
}
@media only screen and (min-width: 769px) {
  footer .footer-wrap {
    flex-direction: row;
    align-items: center;
  }
  footer .signup-wrap {
    width: 30%;
    padding: 0 0 0 3rem;
  }
  footer .sponsor-wrap {
    width: 70%;
    padding-left: 3rem;
    padding-right: 0;
  }
  footer .sponsors {
    border-left: 1px solid var(--textColor);
  }
  footer .sponsors .logos {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 1280px) {
  footer .signup-wrap {
    padding: 0 0 0 6rem;
  }
  footer .sponsor-wrap {
    padding-left: 6rem;
  }
}

.footer-menu {
  position: relative;
  z-index: 1;
}
.footer-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  gap: 1.5rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .footer-menu ul {
    gap: 2.8rem;
  }
}
.footer-menu a {
  text-decoration: none;
}
.footer-menu a:hover, .footer-menu a:focus-within, .footer-menu a:focus:not(:active) {
  color: var(--deepblack);
}

.credits {
  font-size: 1.2rem;
  line-height: 1.5;
  padding-bottom: 1.5rem;
}
.credits a:not(:hover):not(:focus) {
  text-decoration: none;
}

.wrap h1 + h2,
.wrap p + h2,
.wrap p + h3,
.wrap ul + h3,
.wrap ol + h3,
.wrap h1 + hr,
.wrap h1 + p,
.wrap h1 + form,
.wrap h2 + hr,
.wrap h2 + p,
.wrap h2 + h3,
.wrap blockquote + h3,
.wrap p.button-wrap + p,
.wrap hr + h3,
.wrap h2 + dl {
  margin-top: 3rem;
}
.wrap h3 + hr + p,
.wrap h3 + p,
.wrap h3 + ul,
.wrap h3 + ol,
.wrap ul + hr,
.wrap ul + ul,
.wrap ul + hr + ul,
.wrap ul + p,
.wrap ul + hr + p,
.wrap hr + p,
.wrap p + dl,
.wrap p + ul,
.wrap ol + p,
.wrap p + ol,
.wrap p + h4,
.wrap ul + h4,
.wrap ol + h4,
.wrap p + blockquote,
.wrap blockquote + p,
.wrap h3 + blockquote,
.wrap h5 + ul,
.wrap h4 + ul,
.wrap p + p {
  margin-top: 1.6rem;
}
@media only screen and (min-width: 700px) {
  .wrap h3 + hr + p,
  .wrap h3 + p,
  .wrap h3 + ul,
  .wrap h3 + ol,
  .wrap ul + hr,
  .wrap ul + ul,
  .wrap ul + hr + ul,
  .wrap ul + p,
  .wrap ul + hr + p,
  .wrap hr + p,
  .wrap p + dl,
  .wrap p + ul,
  .wrap ol + p,
  .wrap p + ol,
  .wrap p + h4,
  .wrap ul + h4,
  .wrap ol + h4,
  .wrap p + blockquote,
  .wrap blockquote + p,
  .wrap h3 + blockquote,
  .wrap h5 + ul,
  .wrap h4 + ul,
  .wrap p + p {
    margin-top: 2rem;
  }
}

.desktop-prompt,
.mobile-prompt,
.modal {
  z-index: 5;
}

header.main-header {
  z-index: 4;
}

.copy-alert,
.pace,
.cookie-notice {
  z-index: 3;
}

.select2-dropdown,
.subnav,
footer.main-footer {
  z-index: 2;
}

section,
main {
  z-index: 1;
}

main {
  position: relative;
}

html:not(.reduce-motion) header:has(.main-menu li:hover) ~ main,
html:not(.reduce-motion) header:has(.main-menu li:hover) ~ section,
html:not(.reduce-motion) header:has(.main-menu li:hover) ~ .footer-menu,
html:not(.reduce-motion) header:has(.main-menu li:hover) ~ footer,
html:not(.reduce-motion) header:has(.main-menu li:focus-within) ~ main,
html:not(.reduce-motion) header:has(.main-menu li:focus-within) ~ section,
html:not(.reduce-motion) header:has(.main-menu li:focus-within) ~ .footer-menu,
html:not(.reduce-motion) header:has(.main-menu li:focus-within) ~ footer {
  opacity: 0.75;
}

.wrap {
  position: relative;
  display: block;
  width: 100%;
  padding: 4.5rem 3rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .wrap + .wrap:not(.split):not(.today-wrap) {
    padding-top: 0;
  }
}
@media only screen and (min-width: 769px) {
  .wrap {
    padding: 6rem 3rem;
  }
  .wrap.lite {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .wrap.lite-bottom {
    padding-bottom: 3rem !important;
  }
}
@media only screen and (min-width: 1024px) {
  .wrap {
    padding: 7.5rem 3rem;
  }
  .wrap.lite {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .wrap.lite-bottom {
    padding-bottom: 6rem !important;
  }
}
.wrap.text-wrap {
  max-width: 45em;
}
.wrap.narrow {
  max-width: 40em;
}
.wrap.wide {
  max-width: 60em;
}
.wrap.full-width {
  padding-left: 0;
  padding-right: 0;
}
.wrap img,
.wrap iframe {
  width: auto;
  height: auto;
  max-width: 100%;
}
.wrap.flush-top {
  padding-top: 0 !important;
}
.wrap.flush-bottom {
  padding-bottom: 0 !important;
}
.wrap:not(.split) .wrap:last-child {
  padding-bottom: 0;
}

.sticky {
  -webkit-position: sticky !important;
  position: sticky !important;
}

.home-intro .lesson-card {
  border-bottom: 1px solid var(--textColor);
}
@media only screen and (min-width: 769px) {
  .home-intro .sticky {
    top: var(--headerHeight);
    min-height: calc(100dvh - var(--headerHeight));
    z-index: 2;
  }
  .home-intro .split,
  .home-intro .half {
    height: 100%;
  }
  .home-intro figure {
    aspect-ratio: 2 !important;
  }
}

.lesson-wrap section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.lesson-wrap section > .wrap + .anchor-wrap + .wrap:not(.flush-top),
.lesson-wrap section > .wrap + .wrap:not(.flush-top) {
  margin-top: -3rem;
}
@media only screen and (min-width: 769px) {
  .lesson-wrap section > .wrap + .anchor-wrap + .wrap:not(.flush-top),
  .lesson-wrap section > .wrap + .wrap:not(.flush-top) {
    margin-top: -4.5rem;
  }
}

body.tools-on .lesson-wrap .text-wrap {
  position: relative;
  cursor: copy;
}
body.tools-on .lesson-wrap .text-wrap::before, body.tools-on .lesson-wrap .text-wrap::after {
  position: absolute;
  top: 3rem;
  right: 1rem;
  opacity: 0;
  transition: opacity 150ms linear;
}
body.tools-on .lesson-wrap .text-wrap::before {
  content: "";
  left: 1rem;
  bottom: 3rem;
  background-color: var(--bgColor);
  border: 1px dashed var(--textColor);
  border-radius: 10px;
  z-index: 0;
}
body.tools-on .lesson-wrap .text-wrap::after {
  content: "Click to copy";
  font-size: 1.2rem;
  background-color: var(--textColor);
  text-transform: uppercase;
  color: var(--bgColor);
  padding: 0.5rem 1rem;
  border-radius: 0 10px 0 10px;
}
body.tools-on .lesson-wrap .text-wrap:hover::before {
  opacity: 1;
}
body.tools-on .lesson-wrap .text-wrap:hover:not(:has(a:hover, button:hover))::after {
  opacity: 1;
}
body.tools-on .lesson-wrap .text-wrap:active::before, body.tools-on .lesson-wrap .text-wrap:active::after {
  opacity: 1;
  transition: none;
}
body.tools-on .lesson-wrap .text-wrap .text-wrap::before, body.tools-on .lesson-wrap .text-wrap .text-wrap::after {
  content: none !important;
  pointer-events: none !important;
}
body.tools-on .lesson-wrap .text-wrap > * {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  body.tools-on .split .text-wrap::before {
    top: 0;
    left: -1.5rem;
    bottom: 0;
  }
}
@media only screen and (min-width: 769px) {
  body.tools-on .split.media-left .text-wrap::before {
    left: 1.5rem;
  }
  body.tools-on .split.media-right .text-wrap::before {
    left: -3rem;
  }
}

.section-title {
  display: flex;
  align-items: stretch;
  --bgColor: var(--black);
  --textColor: var(--white);
  background-color: var(--bgColor);
  color: var(--textColor);
  z-index: 1;
}
.section-title h2, .section-title h3 {
  font-size: calc(2rem + 0.5vw);
  line-height: 4.5rem;
  margin: 0;
  white-space: nowrap;
}
.section-title h2:has(+ h3) {
  background-color: var(--deepblack);
}
.section-title h2:only-child,
.section-title h2 + h3 {
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 1023px) {
  .section-title h2, .section-title h3 {
    padding: 1rem 3rem;
  }
}
@media only screen and (max-width: 699px) {
  .section-title h2, .section-title h3 {
    padding: 1rem 1.5rem;
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .section-title h2, .section-title h3 {
    padding: 1rem 3rem;
  }
}

.anchor-wrap {
  position: relative;
}

.page-anchor {
  display: block;
  position: absolute;
  top: calc(var(--headerHeight) * -1);
  visibility: hidden;
}
.page-anchor:has(+ .flush-top) {
  top: -14rem;
}

.lessons {
  --bgColor: var(--gray);
  background-color: var(--bgColor);
}
.lessons .era-wrap {
  position: relative;
}
.lessons .section-title {
  -webkit-position: sticky;
  position: sticky;
}
@media only screen and (max-width: 1023px) {
  .lessons > .wrap {
    padding-top: 0;
  }
  .lessons .page-anchor {
    top: calc(var(--headerHeight) * -1);
  }
}
@media only screen and (max-width: 699px) {
  .lessons .section-title {
    top: var(--headerHeight) !important;
  }
}
@media only screen and (min-width: 1024px) {
  .lessons .section-title {
    top: 14rem;
  }
  .lessons.home-lessons .section-title {
    top: var(--headerHeight);
  }
  .lessons .page-anchor {
    top: -14rem;
  }
}

.history-wrap {
  display: flex;
}
.history-wrap aside {
  -webkit-position: sticky;
  position: sticky;
  display: flex;
  font-size: 1.2rem;
  text-transform: uppercase;
  background-color: var(--bgColor);
  border-color: var(--textColor);
}
.history-wrap aside small {
  font-size: 100%;
}
.history-wrap .timeline {
  flex: 1;
  position: relative;
  border-color: var(--textColor);
}
.history-wrap .timeline::after, .history-wrap .timeline::before {
  content: "";
  position: absolute;
}
.history-wrap .timeline::after {
  background-color: var(--textColor);
}
.history-wrap .timeline .era {
  position: absolute;
  background-color: var(--textColor);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.5s linear;
  will-change: visibility, opacity;
}
.history-wrap .timeline .era.show {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
@media only screen and (max-width: 1023px) {
  .history-wrap {
    flex-direction: column;
  }
  .history-wrap aside {
    top: 12.1rem;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 2;
    background-color: var(--bgColor);
    border-width: 0 0 1px;
  }
  .history-wrap .timeline-end {
    display: flex;
    align-items: center;
    padding: 0 1rem;
  }
  .history-wrap .timeline {
    border-width: 0 1px;
    width: 100%;
    height: 3rem;
  }
  .history-wrap .timeline::after {
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    transform: translateY(-50%);
  }
  .history-wrap .timeline::before {
    top: 25%;
    left: 0;
    height: 50%;
    width: 100%;
    background-image: repeating-linear-gradient(to right, transparent, transparent 6.25%, var(--textColor) 6.25%, var(--textColor) calc(6.25% + 1px));
    z-index: 0;
  }
  .history-wrap .timeline .era {
    top: 25%;
    left: 0;
    width: 25%;
    height: 50%;
  }
  .history-wrap .section-title {
    top: 17.2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .history-wrap {
    flex-direction: row-reverse;
  }
  .history-wrap .lessons {
    flex: 1;
  }
  .history-wrap aside {
    top: 14rem;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 14rem);
    text-align: center;
    width: 9.5rem;
    padding: 3rem 0;
    border-color: red;
    border-width: 0 1px 1px 0;
  }
  .history-wrap .timeline-end {
    padding: 1rem 0;
    white-space: nowrap;
  }
  .history-wrap .timeline {
    border-width: 1px 0;
    width: 3rem;
    height: 100%;
    text-align: center;
  }
  .history-wrap .timeline::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
  }
  .history-wrap .timeline::before {
    top: 0;
    left: 25%;
    width: 50%;
    height: calc(100% - 1rem);
    background-image: repeating-linear-gradient(to bottom, transparent, transparent 6.25%, var(--textColor) 6.25%, var(--textColor) calc(6.25% + 1px));
    z-index: 0;
  }
  .history-wrap .timeline .era {
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
  }
  .history-wrap .timeline .era:not(:first-child)::before,
  .history-wrap .timeline .era:not(.end-era)::after {
    position: absolute;
    padding: 1rem 0;
    white-space: nowrap;
    left: 50%;
    background-color: var(--bgColor);
    width: 100%;
  }
  .history-wrap .timeline .era:not(:first-child)::before {
    content: attr(data-start);
    bottom: 100%;
    border-top: 1px solid var(--textColor);
    transform: translate(-50%, 50%);
  }
  .history-wrap .timeline .era:not(.end-era)::after {
    content: attr(data-end);
    top: 100%;
    border-bottom: 1px solid var(--textColor);
    transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 699px) {
  .history-wrap aside {
    display: none;
  }
}
@media only screen and (max-height: 1200px) {
  .history-wrap .era::before,
  .history-wrap .era::after {
    padding: 3px 0 !important;
  }
}
@media only screen and (max-height: 900px) {
  .history-wrap .era::before,
  .history-wrap .era::after {
    display: none;
  }
}

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

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

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

.intro-text {
  font-size: 2.8rem;
  font-size: calc(1.2rem + 1vw);
  line-height: 1.25;
}

.button-wrap {
  margin: 3rem 0;
  display: flex;
}
.button-wrap .button,
.button-wrap button {
  margin-right: 0.75rem;
}
.button-wrap a:not(.button) {
  letter-spacing: normal;
  display: block;
}
.button-wrap:first-child {
  margin-top: 0;
}
.button-wrap:last-child {
  margin-bottom: 0;
}
.button-wrap.align-center, .wrap.align-center .button-wrap {
  justify-content: center;
}
.button-wrap.align-center .button,
.button-wrap.align-center button, .wrap.align-center .button-wrap .button,
.wrap.align-center .button-wrap button {
  margin: 0 0.75rem 1.5rem;
}
.button-wrap.align-center:last-child, .wrap.align-center .button-wrap:last-child {
  margin-bottom: -1.5rem;
}
.accordion .button-wrap {
  margin-top: 1.5rem;
}
.button-wrap p {
  display: inline-block;
  display: block;
}

.card {
  position: relative;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
}
.card > * {
  position: relative;
  z-index: 1;
}
.card h4 + p {
  margin-top: 0 !important;
}
.card figure {
  margin-bottom: 1.5rem;
}
.card p:last-child {
  margin-top: auto !important;
  padding-top: 1.5rem;
}
.card::before {
  content: "";
  display: block;
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: -1.5rem;
  bottom: -1.5rem;
  z-index: 0;
  opacity: 0;
}
.card:hover, .card:focus-within, .card:focus:not(:active) {
  color: inherit !important;
}
.card:hover::before, .card:focus-within::before, .card:focus:not(:active)::before {
  opacity: 1;
}

.hl-extras .tour-card .card::before {
  background-color: var(--black);
}
.hl-extras .tour-card .card:hover u, .hl-extras .tour-card .card:focus-within u, .hl-extras .tour-card .card:focus:not(:active) u {
  color: var(--gold);
}
.hl-extras .tour-card,
.hl-extras .carousel {
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: -3rem;
}
.hl-extras .carousel {
  margin: 0 -3rem -3rem;
  width: calc(100% + 6rem);
}
.hl-extras .carousel .card {
  padding-top: 0;
}
.hl-extras .date-wrap select,
.hl-extras .date-wrap .select2-selection__rendered {
  padding: 0;
  border-width: 0 0 1px 0;
}
.hl-extras .date-wrap::after {
  content: "▶";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-55%) rotate(90deg);
  font-size: 1.2rem;
  z-index: 2;
}
@media only screen and (max-width: 699px) {
  .hl-extras .wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hl-extras .carousel {
    margin: 0 -1.5rem -3rem;
    width: calc(100% + 3rem);
  }
}
@media only screen and (min-width: 700px) {
  .hl-extras .date-wrap {
    position: relative;
    width: 9em;
  }
  .hl-extras .carousel {
    margin: 0 -4rem;
    width: calc(100% + 8rem);
  }
}
@media screen and (min-width: 700px) and (max-width: 1179px) {
  .hl-extras .tours-wrap {
    width: 100%;
  }
  .hl-extras .tour-card .card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .hl-extras .tour-card .card .slideshow {
    width: 32rem;
  }
  .hl-extras .tour-card .card .text {
    flex: 1;
  }
}
@media only screen and (min-width: 1180px) {
  .hl-extras {
    display: flex;
  }
  .hl-extras .tours-wrap {
    width: 40rem;
  }
  .hl-extras .today-wrap {
    flex: 1;
  }
  .hl-extras .card {
    min-height: 36rem;
  }
  .hl-extras .card::before {
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: -2rem;
  }
}

.today-wrap {
  overflow: hidden;
}

.carousel {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  scroll-snap-type: x mandatory;
}
.carousel .card {
  width: 32rem;
  flex: 1 0 auto;
  scroll-snap-align: start;
  box-shadow: -1px 0 0 var(--gray);
  overflow-y: visible;
  min-height: 36rem;
}
.carousel .card::before {
  --bgColor: var(--white);
  background-color: var(--bgColor);
  left: 1px;
  right: 1px;
}
.carousel .card:hover u, .carousel .card:focus-within u, .carousel .card:focus:not(:active) u {
  color: var(--linkColor);
}
@media only screen and (max-width: 699px) {
  .carousel .card {
    width: 28rem;
  }
  .carousel .card::before {
    left: 0;
    right: 0;
  }
}
@media only screen and (min-width: 700px) {
  .carousel .card {
    width: 40rem;
    min-height: 36rem;
  }
  .carousel .card::before {
    top: -2rem;
    left: 2rem;
    right: 2rem;
    bottom: -2rem;
  }
}

.grid-item {
  vertical-align: top;
  position: relative;
  padding: 1.5rem 1.5rem 2.1rem;
  transition: opacity 0.25s linear;
}
.grid-item figure + h2,
.grid-item figure + h3 {
  margin-top: 2rem;
}
.grid-item h2 + p,
.grid-item figure + p,
.grid-item h4 + p,
.grid-item p + .button {
  margin-top: 1.5rem;
}
@media only screen and (min-width: 700px) {
  .grid-item {
    padding: 3rem 3rem 4rem;
  }
}

.lessons-grid {
  display: flex;
  flex-flow: row wrap;
  justify-items: start;
  grid-auto-flow: dense;
}
.lessons-grid .grid-item {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: var(--gray);
}
@media only screen and (min-width: 450px) {
  .lessons-grid .grid-item {
    border-width: 0 1px 1px 0;
  }
}
@media screen and (min-width: 450px) and (max-width: 768px) {
  .lessons-grid .grid-item {
    width: 50%;
  }
  .lessons-grid .grid-item:nth-child(2n) {
    border-right: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1535px) {
  .lessons-grid .grid-item {
    width: 33.333%;
  }
  .lessons-grid .grid-item:nth-child(3n) {
    border-right: none;
  }
}
@media only screen and (min-width: 1536px) {
  .lessons-grid .grid-item {
    width: 25%;
  }
  .lessons-grid .grid-item:nth-child(4n) {
    border-right: none;
  }
}

.grid-item figure {
  aspect-ratio: 16/9;
}

.lesson-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 0;
  --bgColor: var(--cream);
  background-color: var(--bgColor);
}
.lesson-card .topic {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  max-width: calc(100% - 4.5rem);
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}
.lesson-card .topic span {
  background-color: var(--bgColor);
  padding: 0 1rem 0.5rem 0;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.lesson-card:hover, .lesson-card:focus-within {
  --bgColor: var(--white);
}
.lesson-card .button-wrap {
  margin-top: auto;
  padding-top: 3rem;
}
@media only screen and (min-width: 700px) {
  .lesson-card .topic {
    position: absolute;
    top: 3rem;
    left: 3rem;
  }
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bgColor);
  height: var(--headerHeight);
  border-bottom: 1px solid var(--textColor);
}
.main-header .home-link {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.main-header .home-link:focus {
  background-color: var(--highlightColor);
}
.main-header .logo {
  display: block;
  width: 12.4rem;
  height: 6.9rem;
  background: url(img/header-logo-teach.png) 50% 50% no-repeat;
  background-size: auto 4rem;
  text-indent: 1500%;
  white-space: nowrap;
  overflow: hidden;
  mix-blend-mode: multiply;
}
@media only screen and (min-width: 700px) {
  .main-header .logo {
    width: 16rem;
  }
}

.main-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-menu > ul {
  text-align: center;
}
.main-menu > ul a, .main-menu > ul button {
  color: var(--textColor);
  text-decoration: none;
}
.main-menu > ul > li > a,
.main-menu > ul > li > button {
  display: block;
  line-height: 6.9rem;
}
.main-menu > ul strong {
  font-size: 110%;
}
.main-menu > ul ul::before {
  content: "";
  position: absolute;
  top: 0;
  right: -4rem;
  left: -4rem;
  bottom: -4rem;
  z-index: -1;
}
.main-menu li.search ul, .main-menu li.search li {
  width: 100vw;
}
.main-menu li.search form {
  display: flex;
  width: 100%;
  background-color: var(--highlightColor);
}
.main-menu li.search form input {
  border: 0;
  text-align: center;
}
.main-menu li.search form input, .main-menu li.search form button {
  line-height: 4.5rem;
  padding: 0 1.5rem;
}
.main-menu li.search form button:hover, .main-menu li.search form button:focus-within, .main-menu li.search form button:focus:not(:active) {
  font-size: 125%;
}
@media only screen and (max-width: 699px) {
  .main-menu {
    display: none;
    position: absolute;
    top: var(--headerHeight);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - var(--headerHeight));
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, 0.5);
  }
  .main-menu ul {
    background-color: var(--highlightColor);
  }
  .main-menu ul li {
    display: block;
    font-size: 1.8rem;
    line-height: 2rem;
  }
  .main-menu ul li li {
    border-bottom: 1px solid var(--darkgray);
  }
  .main-menu ul li li span {
    display: none;
  }
  .main-menu ul a, .main-menu ul button, .main-menu ul input {
    display: block;
    height: var(--headerHeight);
    line-height: var(--headerHeight);
    padding: 0 var(--margin);
  }
  .main-menu > ul > li > a,
  .main-menu > ul > li > button {
    display: none;
  }
  .main-menu a:hover, .main-menu a:focus-within, .main-menu a:focus:not(:active), .main-menu button:hover, .main-menu button:focus-within, .main-menu button:focus:not(:active) {
    background-color: var(--linkColor);
    color: var(--bgColor);
  }
  .main-menu form {
    position: relative;
  }
  .main-menu form button {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
  body.menu-open .main-menu {
    display: block;
  }
}
@media only screen and (min-width: 700px) {
  .main-menu > ul {
    display: flex;
    align-items: flex-start;
  }
  .main-menu > ul > li {
    font-size: 1.7rem;
  }
  .main-menu > ul > li > a,
  .main-menu > ul > li > button {
    border: 0;
    padding: 0 1.75rem;
  }
  .main-menu > ul > li > a:hover,
  .main-menu > ul > li > a:focus,
  .main-menu > ul > li > button:hover,
  .main-menu > ul > li > button:focus, .main-menu > ul > li.active > button, .main-menu > ul > li:hover > a, .main-menu > ul > li:hover > button {
    background-color: var(--highlightColor) !important;
  }
  .main-menu > ul ul {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    align-items: stretch;
    transform: translateX(-50%);
    z-index: 10;
  }
  .main-menu > ul ul a,
  .main-menu > ul ul > button {
    display: block;
    background-color: var(--highlightColor);
    padding: 3rem;
    height: 100%;
  }
  .main-menu > ul ul a:hover, .main-menu > ul ul a:focus-within, .main-menu > ul ul a:focus:not(:active),
  .main-menu > ul ul > button:hover,
  .main-menu > ul ul > button:focus-within,
  .main-menu > ul ul > button:focus:not(:active) {
    background-color: var(--linkColor);
    color: var(--bgColor);
  }
  .main-menu > ul ul li {
    text-align: left;
    width: 50vw;
  }
  .main-menu > ul > li:hover ul,
  .main-menu > ul > li.active ul,
  .main-menu > ul > li:focus-within ul {
    display: flex;
  }
  .main-menu > ul li.search form input, .main-menu > ul li.search form button {
    line-height: 9rem;
    padding: 0 4rem;
  }
  .main-menu > ul li.search form button {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }
}
@media only screen and (min-width: 769px) {
  .main-menu > ul > li > a,
  .main-menu > ul > li > button {
    min-width: 8em;
  }
  .main-menu > ul > li ul li {
    width: 25vw;
  }
}

/* historylink button */
.secondary-menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
}
@media only screen and (max-width: 699px) {
  .secondary-menu {
    display: none;
  }
}
@media only screen and (min-width: 700px) {
  .secondary-menu {
    padding: 2rem 3rem 0 0;
  }
}
.secondary-menu > ul {
  display: flex;
  align-items: center;
}
.secondary-menu > ul > li {
  margin-left: 1.75rem;
}
.secondary-menu .button {
  font-size: 1.2rem;
}
.secondary-menu .button:not(:hover):not(:focus) {
  background-color: var(--textColor);
  color: var(--bgColor);
}
.secondary-menu .button:hover, .secondary-menu .button:focus-within, .secondary-menu .button:focus:not(:active) {
  background-color: var(--linkColor);
  color: var(--bgColor);
}

.menu-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 2rem;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: var(--headerHeight);
  overflow: hidden;
}
.menu-button i {
  display: block;
  width: 2rem;
  height: 1px;
  background-color: var(--textColor);
}
.menu-button i + i {
  margin-top: 6px;
}
@media only screen and (min-width: 700px) {
  .menu-button {
    display: none;
  }
}
body.menu-open .menu-button i:nth-child(1) {
  transform: translate3d(0, 7px, 0) rotate(135deg);
}
body.menu-open .menu-button i:nth-child(2) {
  transform: translate3d(0, 0, 0) rotate(-135deg);
}
body.menu-open .menu-button i:nth-child(3) {
  transform: translate3d(0, 8px, 0) scale(0);
}

.pace {
  position: relative;
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.pace .pace-progress {
  position: fixed;
  top: var(--headerHeight);
  right: 100%;
  width: 100%;
  height: 0.5rem;
  z-index: 1;
  background: linear-gradient(to right, var(--gold) 0%, var(--rust) 100%);
  transition: all 0.125s linear;
}
.pace.pace-inactive .pace-progress {
  height: 0;
  transition-delay: 0.25s;
}

.subnav {
  position: sticky;
  top: var(--headerHeight);
  z-index: 2;
  --textColor: var(--black);
}
.subnav.lesson-nav {
  display: inline-block;
  padding: 3rem;
  max-width: calc(50vw - 22.5em);
}
.subnav.lesson-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
@media only screen and (min-width: 700px) {
  .subnav.lesson-nav ul {
    margin-top: 2rem;
  }
}
.subnav.lesson-nav a {
  text-decoration: none;
}
.subnav.lesson-nav a:hover, .subnav.lesson-nav a:focus-within, .subnav.lesson-nav a:focus:not(:active) {
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
  text-decoration: underline;
}
@media only screen and (max-width: 1023px) {
  .subnav.lesson-nav {
    display: none;
  }
}
.subnav.filters {
  display: flex;
  background-color: var(--bgColor);
  border-bottom: 1px solid var(--deepblack);
  /* if dark hover */
}
.subnav.filters button,
.subnav.filters select,
.subnav.filters .select2-selection__rendered,
.subnav.filters input {
  width: 100%;
  max-width: 100%;
  padding: 0 8rem 0 3rem;
  line-height: var(--headerHeight);
  text-align: left;
  border: none;
  height: 100%;
  white-space: nowrap;
}
.subnav.filters button:hover, .subnav.filters button:focus-within, .subnav.filters button:focus:not(:active),
.subnav.filters select:hover,
.subnav.filters select:focus-within,
.subnav.filters select:focus:not(:active),
.subnav.filters .select2-selection__rendered:hover,
.subnav.filters .select2-selection__rendered:focus-within,
.subnav.filters .select2-selection__rendered:focus:not(:active),
.subnav.filters input:hover,
.subnav.filters input:focus-within,
.subnav.filters input:focus:not(:active) {
  background-color: var(--linkColor);
  color: var(--bgColor);
}
.subnav.filters [placeholder]:hover::placeholder, .subnav.filters [placeholder]:focus-within::placeholder, .subnav.filters [placeholder]:focus:not(:active)::placeholder {
  color: var(--bgColor);
}
@media only screen and (max-width: 1023px) {
  .subnav.filters button,
  .subnav.filters select,
  .subnav.filters .select2-selection__rendered,
  .subnav.filters input {
    padding: 0 3rem;
    line-height: 5rem;
  }
}
@media only screen and (max-width: 699px) {
  .subnav.filters {
    flex-direction: column;
    position: relative;
    top: initial;
    background-color: var(--palegray);
  }
  .subnav.filters button,
  .subnav.filters select,
  .subnav.filters .select2-selection__rendered,
  .subnav.filters input {
    padding: 0 1.5rem;
    line-height: 4.5rem;
    height: 4.5rem;
  }
}
.subnav.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: var(--marginDouble) 0;
  margin: 0 auto;
  gap: var(--marginHalf);
}
.subnav.pagination svg {
  width: 1rem;
  margin: auto;
}
.subnav.pagination a,
.subnav.pagination span.current {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(var(--marginDouble) + 0.5rem);
  height: calc(var(--marginDouble) + 0.5rem);
  text-decoration: none;
}
.subnav.pagination span.current {
  background: var(--highlightColor);
}

.filter-wrap {
  flex: 1;
  position: relative;
}
.filter-wrap + .filter-wrap {
  border-left: 1px solid var(--textColor);
}
.filter-wrap::after {
  content: "➕";
  position: absolute;
  top: 0;
  right: 0;
  width: 9.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.filter-wrap:hover, .filter-wrap:focus-within {
  background-color: var(--linkColor);
  color: var(--bgColor);
}
.filter-wrap:hover::after, .filter-wrap:focus-within::after {
  filter: contrast(2) invert(1);
}
.filter-wrap button.clear-filter {
  position: absolute;
  top: 0;
  right: 0;
  width: 9.5rem;
  height: 100%;
  padding: 0;
  z-index: 3;
  background-color: transparent;
  display: none;
}
.filter-wrap button.clear-filter::before {
  content: "➕";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.filter-wrap.active button,
.filter-wrap.active select,
.filter-wrap.active .select2-selection__rendered,
.filter-wrap.active input {
  background-color: var(--highlightColor);
  color: var(--textColor);
}
.filter-wrap.active::after {
  display: none;
}
.filter-wrap.active button.clear-filter {
  display: block;
  background-color: transparent;
}
.filter-wrap.active button.clear-filter:hover, .filter-wrap.active button.clear-filter:focus-within, .filter-wrap.active button.clear-filter:focus:not(:active) {
  background-color: var(--linkColor);
  color: var(--bgColor);
}
.filter-wrap.active button.clear-filter:hover::before, .filter-wrap.active button.clear-filter:focus-within::before, .filter-wrap.active button.clear-filter:focus:not(:active)::before {
  filter: contrast(2) invert(1);
}
.filter-wrap.anchor-nav {
  background-color: var(--black);
  color: var(--white);
}
.filter-wrap.anchor-nav::after {
  content: "🔗";
}
.filter-wrap.anchor-nav ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  background-color: var(--black);
  z-index: 2;
  display: none;
}
.filter-wrap.anchor-nav ul.show {
  display: block;
}
.filter-wrap.anchor-nav ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -3.5rem;
  bottom: -3.5rem;
  z-index: -1;
}
.filter-wrap.anchor-nav ul li a {
  display: block;
  color: var(--white);
  padding: 0.7em 3rem;
  text-decoration: none;
  text-wrap: pretty;
}
.filter-wrap.anchor-nav ul li a:hover, .filter-wrap.anchor-nav ul li a:focus-within, .filter-wrap.anchor-nav ul li a:focus:not(:active) {
  background-color: var(--linkColor);
}
.filter-wrap.anchor-nav ul li:nth-child(odd) {
  background-color: var(--deepblack);
}
.filter-wrap .map-wrap {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300%;
  padding: 3rem;
  z-index: 2;
  display: none;
  background-color: var(--bgColor);
  border-color: var(--textColor);
  border-width: 1px 0;
  box-shadow: -1px 0 0 0 var(--textColor), 1px 0 0 0 var(--textColor);
}
.filter-wrap .map-wrap.show {
  display: block;
}
.filter-wrap .map-wrap svg {
  width: 100%;
  height: auto;
}
.filter-wrap .map-wrap svg .text {
  fill: var(--textColor);
  pointer-events: none;
}
.filter-wrap .map-wrap svg [data-region] {
  fill: var(--bgColor);
  cursor: pointer;
  stroke: var(--textColor);
}
.filter-wrap .map-wrap svg [data-region]:hover, .filter-wrap .map-wrap svg [data-region]:focus-within, .filter-wrap .map-wrap svg [data-region]:focus:not(:active) {
  fill: var(--gold);
}
.filter-wrap .map-wrap svg [data-region].active {
  fill: var(--highlightColor);
}
.filter-wrap .map-wrap svg [data-region].disabled, .filter-wrap .map-wrap svg [data-region][disabled]:not(.active) {
  fill: rgba(181, 183, 169, 0.5);
  cursor: not-allowed;
}
.filter-wrap.search-filter::after {
  content: "🔍";
}
@media only screen and (max-width: 699px) {
  .filter-wrap {
    border-width: 0 0 1px 0;
    background-color: var(--bgColor);
  }
  .filter-wrap .map-wrap {
    width: 100%;
    box-shadow: none;
    padding: 1.5rem;
  }
  .filter-wrap::after {
    width: auto;
    padding: 0 1.5rem;
  }
  .filter-wrap button.clear-filter {
    width: 4.75rem;
  }
}
@media screen and (min-width: 700px) and (max-width: 1440px) {
  .filter-wrap .map-wrap {
    max-width: 60rem;
  }
}
@media only screen and (min-width: 1024px) {
  .filter-wrap.anchor-nav:hover ul, .filter-wrap.anchor-nav:focus-within ul, .filter-wrap.anchor-nav:focus:not(:active) ul {
    display: block;
  }
  .filter-wrap .map-wrap {
    width: 150%;
  }
}
@media only screen and (min-width: 1441px) {
  .filter-wrap .map-wrap {
    width: 100%;
    max-width: initial;
  }
}

.split {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.split .slideshow {
  display: block;
  width: 100%;
}
.split .half {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .split.wrap .wrap {
    padding: 3rem 0 1.5rem;
  }
}
@media only screen and (min-width: 769px) {
  .split {
    flex-direction: row;
    align-items: center;
  }
  .split.align-top {
    align-items: flex-start;
  }
  .split .slideshow {
    height: calc(100vh - var(--headerHeight) * 3.5);
  }
  .split .half {
    position: relative;
    width: 50%;
  }
  .split:not(.media-right):first-child.wrap {
    padding-right: 3rem;
  }
  .split:not(.media-right):last-child.wrap {
    padding-left: 3rem;
  }
  .split.media-right {
    flex-direction: row-reverse;
  }
  .split.media-right .half:first-child.wrap {
    padding-left: 3rem;
  }
  .split.media-right .half:last-child.wrap {
    padding-right: 3rem;
  }
  .split.media-right .half.text-wrap {
    padding-left: 0 !important;
  }
  .split > div {
    display: flex;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  .split .half:first-child.wrap {
    padding-right: 4.5rem;
  }
  .split .half:last-child.wrap {
    padding-left: 4.5rem;
  }
  .split.golden .half.text-wrap {
    flex-grow: 0;
    flex-basis: 38.2%;
  }
  .split.golden .half.media-wrap {
    flex-grow: 0;
    flex-basis: 61.8%;
  }
}
.split .wrap {
  text-wrap: balance;
}

.slideshow-section {
  position: relative;
  width: 100%;
}

.slide {
  position: relative;
  width: 100%;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slideshow:not(.slick-initialized) .slide:not(:first-child) {
  display: none;
}
.slideshow .slick-list {
  height: 100%;
  position: relative;
  z-index: 1;
}
.slideshow .slick-track {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slideshow.autoplay + .slideshow-nav {
  display: none;
}

.split figure,
.slideshow figure {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .split figure,
  .slideshow figure {
    height: 69.4267515924vw;
  }
}
@media only screen and (min-width: 769px) {
  .split figure,
  .slideshow figure {
    height: calc(100vh - var(--headerHeight) * 4.75);
  }
}

.slideshow-nav {
  display: flex;
  justify-content: center;
}
.slideshow-nav .slideshow-arrow {
  display: inline;
  padding: 2.2rem 0;
  background-color: transparent;
}
.slideshow-nav .slideshow-arrow svg {
  width: 3.6rem;
  height: 2.4rem;
  fill: var(--textColor);
}
.slideshow-nav .slideshow-arrow:hover svg, .slideshow-nav .slideshow-arrow:focus svg {
  fill: var(--linkColor);
}
.slideshow-nav .arrow-left {
  order: 1;
}
.slideshow-nav .slick-dots {
  order: 2;
}
.slideshow-nav .arrow-right {
  order: 3;
}
.slideshow-nav .slick-dots {
  text-align: center;
  padding: 0 !important;
  list-style: none;
  display: flex;
}
.slideshow-nav .slick-dots li {
  display: inline-block;
  padding: 3rem 0.6rem;
  margin: 0 !important;
  position: relative;
}
.slideshow-nav .slick-dots li button {
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border: 0;
  background-color: transparent;
  border: 1px solid var(--textColor);
  padding: 0;
  border-radius: 50%;
  text-indent: 1500%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}
.slideshow-nav .slick-dots li button:focus, .slideshow-nav .slick-dots li button:hover {
  background-color: var(--linkColor);
  border-color: var(--linkColor);
}
.slideshow-nav .slick-dots li button::after {
  content: "";
  display: block;
  width: 2rem;
  height: 6.8rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.slideshow-nav .slick-dots li.slick-active button:not(:hover):not(:focus) {
  background-color: var(--textColor);
}

dl.accordion {
  display: block;
  width: 100%;
  border-bottom: 1px solid;
  text-align: left;
}
dl.accordion dt {
  border-top: 1px solid;
  position: relative;
  cursor: ns-resize;
}
dl.accordion dt button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  text-align: left;
  padding: 0.8rem 1.5rem 0.7rem 0;
  background-color: transparent;
  color: inherit;
  text-transform: uppercase;
}
dl.accordion dt button::after {
  content: "+";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  cursor: pointer;
  line-height: inherit;
  font-size: 2.4rem;
  text-align: center;
  transform: translateY(-50%);
  transition: transform 0.125s linear;
}
dl.accordion dt h3 {
  all: inherit;
}
dl.accordion dt.open button:after {
  transform: translateY(-50%) rotate(-135deg);
}
dl.accordion dd {
  padding: 1.4rem 0;
  opacity: 0;
  transition: opacity 0.25s linear;
}
body[data-loading=true] dl.accordion dd:not(.open) {
  display: none;
}
dl.accordion dd.open {
  opacity: 1;
}
dl.accordion dd .slideshow {
  margin-top: 2.8rem;
}
dl.accordion dd .wrap {
  padding: 1.4rem 0 2.8rem;
}

.sponsors {
  display: block;
  width: 100%;
  text-align: center;
}
.sponsors:not(:last-child) {
  padding-bottom: 6rem;
}
.sponsors a {
  display: block;
  text-decoration: none !important;
}
.sponsors .logos {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: var(--margin);
  margin: 3rem auto 0;
}
.sponsors .logos h4 {
  margin: 0;
  align-self: center;
}
.sponsors .logos .text-sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  text-wrap: pretty;
  text-wrap: balance;
}
.sponsors .logos > div {
  margin: 1rem 0;
}
.sponsors .logos > div img {
  max-width: 100%;
}
.sponsors .logos.top > div {
  width: 20%;
  max-width: 18rem;
}
.sponsors .logos.top > div img {
  max-height: 9rem;
}
.sponsors .logos.mid > div {
  width: 12.5%;
  max-width: 15rem;
}
.sponsors .logos.mid > div img {
  max-height: 6rem;
}
@media only screen and (max-width: 699px) {
  .sponsors .logos {
    gap: var(--marginDouble);
  }
  .sponsors .logos.top > div {
    width: 33.333%;
  }
  .sponsors .logos.mid > div {
    width: 25%;
  }
}

.image-sponsor {
  position: relative;
  text-indent: 1500%;
  white-space: nowrap;
  overflow: hidden;
  filter: grayscale(100%);
  mix-blend-mode: darken;
}

footer .image-sponsor {
  filter: invert(1) grayscale(100%) contrast(2);
  mix-blend-mode: screen;
  opacity: 1;
}
footer .logos {
  gap: var(--marginDouble);
}
@media only screen and (min-width: 700px) {
  footer .logos > div {
    width: initial !important;
  }
}
footer a {
  position: relative;
}
footer a:hover::after, footer a:focus-within::after, footer a:focus:not(:active)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--linkColor);
  mix-blend-mode: darken;
}
footer .sponsors p {
  font-size: 1.3rem;
  border: 0;
  padding: 0;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 1;
}
.modal-close::after {
  content: "+";
  display: block;
  width: 3rem;
  height: 3rem;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: 0 100%;
  font-size: 4rem;
  line-height: 1;
  pointer-events: none;
}
.modal-close:hover, .modal-close:focus-within, .modal-close:focus:not(:active) {
  color: var(--linkColor);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.25s, opacity 0.25s linear;
  will-change: visibility, opacity;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal .modal-wrap {
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.modal:has(.dialog-box) {
  background-color: rgba(40, 40, 38, 0.5);
}
.modal .dialog-box {
  border: 1px solid;
  position: relative;
  padding: 3rem;
  z-index: 1;
}
.modal .dialog-box .wrap {
  padding: 3rem;
}
body.first-load .modal {
  display: none;
}
.modal:not(.show) iframe {
  transform: translateY(100vw);
}
.modal.show {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

[data-show-modal] {
  display: block;
  border-bottom: 1px solid;
  padding: 0;
  margin-top: 0.5rem;
}
[data-show-modal]:hover, [data-show-modal]:focus-within, [data-show-modal]:focus:not(:active) {
  color: var(--linkColor);
}

.tools-modal .wrap {
  width: 36em;
  max-width: 100%;
}
.tools-modal h3 + p {
  margin-top: 0;
}

.tool-options {
  padding: 3rem 0;
  display: flex;
  flex-wrap: wrap;
  user-select: none;
  gap: 2rem;
}
.tool-options .tool {
  flex: 1;
  text-align: center;
  border-radius: 0.2rem;
  background-color: var(--palegray);
  color: var(--black);
  padding: 3rem 1rem;
}
.tool-options .tool-icon {
  display: block;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tool-options .tool-icon svg {
  fill: var(--black);
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}

/* app prompts */
.cookie-notice {
  position: fixed;
  top: var(--headerHeight);
  left: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: none;
  transition: all 0.25s linear;
  justify-content: center;
  align-items: center;
}
.cookie-notice.show {
  display: flex;
}
.cookie-notice.hide {
  transform: translateY(-100%);
}
.cookie-notice .prompt-close {
  white-space: pre;
  padding: 1rem;
  line-height: 1;
  margin-left: 3rem;
}

.desktop-prompt {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--highlightColor);
  color: var(--textColor);
  z-index: 99;
  padding: 3rem;
  text-align: left;
  display: none;
  transition: all 0.25s linear;
}
.desktop-prompt svg {
  width: 3.5rem;
  height: 100%;
  fill: var(--bgColor);
}
.desktop-prompt.show {
  display: flex;
}
.desktop-prompt.hide {
  transform: translateY(100%);
}
.desktop-prompt .prompt-text {
  padding: 0 3rem;
}
.desktop-prompt h3 + p {
  margin-top: 0.4em;
}
.desktop-prompt .prompt-close {
  position: absolute;
  top: 0;
  right: 3rem;
  bottom: 0;
  width: 3.3rem;
  z-index: 99;
  background: url(img/desktop-prompt-close.svg) 50% 50% no-repeat;
  background-size: auto 3.3rem;
}

.mobile-prompt {
  position: fixed;
  bottom: 3rem;
  left: 50%;
  width: calc(100% - 3rem);
  max-width: 30rem;
  background-color: var(--highlightColor);
  color: var(--textColor);
  z-index: 99;
  padding: 1.5rem;
  text-align: center;
  display: none;
  transition: all 0.25s linear;
  filter: drop-shadow(0 4px 2px rgba(40, 40, 38, 0.5));
  transform: translateX(-50%);
}
.mobile-prompt#android-prompt {
  bottom: 1.5rem;
}
.mobile-prompt#ios-prompt::after {
  content: "";
  position: absolute;
  top: calc(100% - 1.5rem);
  left: 50%;
  display: block;
  width: 3rem;
  height: 3rem;
  background-color: var(--highlightColor);
  transform: translateX(-50%) rotate(45deg);
}
.mobile-prompt.show {
  display: block;
}
.mobile-prompt.hide {
  bottom: 0;
  transform: translateX(-50%) translateY(200%);
}
.mobile-prompt img {
  display: block;
  width: 6rem;
  margin: 0 auto 1.5rem;
}
.mobile-prompt .prompt-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.3rem;
  height: 3.3rem;
  z-index: 99;
  background: url(img/desktop-prompt-close.svg) 50% 50% no-repeat;
  background-size: auto 1.6rem;
}

@media all and (display-mode: standalone) {
  .mobile-prompt.show {
    display: none !important;
  }
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  width: 100% !important;
  position: relative;
  vertical-align: middle;
  color: inherit;
}
@media only screen and (min-width: 700px) {
  .select2-container {
    max-width: calc(100vw - var(--margin)) !important;
  }
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  padding-left: var(--margin);
}
select.hidden + .select2-container {
  display: none;
}

.select2-dropdown {
  background-color: var(--bgColor);
  border: 1px solid;
  box-sizing: border-box;
  display: block;
  position: absolute;
}
.select2-dropdown .select2-search--hide {
  display: none !important;
}

.select2-results {
  display: block;
  max-height: 61.8vmin;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
}

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

.select2-results__option {
  padding: 0.7rem var(--margin);
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option.select2-results__option--highlighted {
  background-color: var(--linkColor);
  color: var(--bgColor);
}
@media only screen and (max-width: 699px) {
  .select2-results__option {
    padding: 0.5rem 1.5rem;
  }
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-results__option--disabled {
  opacity: 0.5;
}

.level-0:not([disabled]) ~ .level-1 {
  padding-left: 1em;
}

.select2-search--dropdown {
  display: block;
}
.select2-search--dropdown .select2-search__field {
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
  border-width: 0 0 1px;
  cursor: text;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-hidden-accessible {
  position: fixed !important;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--focus {
  box-shadow: 0 1px 0 inherit;
}

.grayscale img {
  filter: grayscale(100%);
}

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

.floating-button {
  position: fixed;
  bottom: 0;
  padding: 0;
  margin: 3rem;
  z-index: 10;
}
.floating-button .icon {
  display: block;
  position: relative;
  border-radius: 50%;
  padding: 1rem;
}
.floating-button .icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  visibility: hidden;
  color: var(--white);
  line-height: 4rem;
  z-index: -1;
}
body:not(.show-panel) .floating-button .icon {
  filter: drop-shadow(0 0 1px var(--white));
}
.floating-button svg {
  display: block;
  width: 2rem;
  height: 2rem;
  fill: var(--white);
}
.floating-button:hover .icon::before, .floating-button:focus-within .icon::before, .floating-button:focus:not(:active) .icon::before {
  visibility: visible;
}
@media only screen and (max-width: 699px) {
  .floating-button {
    margin: 1rem;
  }
}

.accessibility-toggle {
  left: 0;
}
.accessibility-toggle .icon {
  background-color: var(--black);
}
.accessibility-toggle .icon::before {
  content: "Accessibility Options";
  left: 50%;
  background-color: black;
  padding: 0 1.5rem 0 2rem;
  border-radius: 0 2rem 2rem 0;
}
.accessibility-toggle:hover .icon, .accessibility-toggle:focus-within .icon, .accessibility-toggle:focus:not(:active) .icon {
  background-color: black;
}
.accessibility-toggle.with-settings svg {
  fill: var(--gold);
}

.tools-toggle {
  right: 0;
}
.tools-toggle .icon {
  --bgColor: var(--gray);
  background-color: var(--bgColor);
}
.tools-toggle .icon::before {
  content: "Lesson Tools are OFF";
  right: 50%;
  background-color: var(--bgColor);
  padding: 0 2rem 0 1.5rem;
  border-radius: 3rem 0 0 3rem;
}
.tools-toggle.first-view .icon::before {
  visibility: visible;
}
.tools-toggle:hover .icon, .tools-toggle:focus-within .icon, .tools-toggle:focus:not(:active) .icon {
  background-color: var(--bgColor);
}
body.tools-on .tools-toggle .icon {
  --bgColor: var(--black);
}
body.tools-on .tools-toggle .icon::before {
  content: "Lesson Tools are ON";
}

.help-wrap.tools-help-wrap {
  position: fixed;
  bottom: 7rem;
  right: 0;
  margin: 3rem 3rem 2rem;
  z-index: 11;
}
.help-wrap.tools-help-wrap > button {
  background-color: var(--darkgray);
  color: var(--white);
  padding: 0 1.5rem;
  line-height: 4rem;
  border-radius: 3rem;
}
@media only screen and (max-width: 699px) {
  .help-wrap.tools-help-wrap {
    margin: 1rem;
  }
}

.admin-edit {
  padding: 2.8rem;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 2;
}
.admin-edit a {
  color: var(--white);
  text-decoration: none;
}
.admin-edit a:hover, .admin-edit a:focus-within, .admin-edit a:focus:not(:active) {
  text-decoration: underline;
}

figure {
  position: relative;
  overflow: hidden;
  --bgColor: var(--white);
}
figure img {
  z-index: 0;
}
figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: var(--bgColor);
  color: var(--textColor);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.5rem;
  gap: 3rem;
  transition: transform 0.125s linear;
  transform: translateY(100%);
}
figure .image-buttons {
  display: flex;
  gap: 1rem;
}
figure .image-buttons svg {
  fill: var(--textColor);
  width: 1.2em;
  height: 1.2em;
}
figure .image-buttons button:hover svg, figure .image-buttons button:focus-within svg, figure .image-buttons button:focus:not(:active) svg {
  fill: var(--highlightColor);
}
figure:hover figcaption, figure:focus-within figcaption, figure:focus:not(:active) figcaption {
  transform: translateY(0);
}
.white-bg figure {
  --bgColor: var(--palegray);
}

.historylink-hero figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.3;
}
.historylink-hero .wrap {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media only screen and (min-width: 1024px) {
  .historylink-hero .wrap {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}

body.tools-on .accordion figcaption.no-caption {
  display: none;
}

body:not(.tools-on) figcaption.no-caption,
body:not(.tools-on) .image-buttons {
  display: none;
}

[data-copy-slide] {
  cursor: copy;
}

.help-wrap {
  position: relative;
}

.help-text {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 0;
  width: 25vw;
  max-width: 24em;
  --bgColor: var(--cream);
  background-color: var(--bgColor);
  --textColor: var(--black);
  color: var(--textColor);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 1px var(--textColor);
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.5s linear;
  will-change: visibility, opacity;
}
.help-text:hover, .help-text:focus-within, .help-text:focus:not(:active) {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}
.help-text.below {
  bottom: auto;
  top: 100%;
}
.help-text.left {
  left: auto;
  right: 0;
}

.help-button {
  position: relative;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
  line-height: 1;
  font-weight: 600;
  font-size: 1.8rem;
}
.help-button::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: -1rem;
  left: -1rem;
  bottom: 0;
  z-index: -1;
}
@media only screen and (min-width: 700px) {
  .help-button {
    font-size: calc(1.8rem + 0.125vw);
  }
}
.help-button:hover + .help-text, .help-button:focus-within + .help-text, .help-button:focus:not(:active) + .help-text {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

ul.terms {
  list-style: none !important;
  padding: 0 !important;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.search-header {
  border-bottom: 1px solid var(--gray);
}

.copy-alert {
  position: fixed;
  top: var(--headerHeight);
  left: 0;
  right: 0;
  padding: 1.5rem 0;
  text-align: center;
  background-color: var(--cream);
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.25s linear;
  border-bottom: 1px dashed var(--black);
}
.copy-alert.show {
  opacity: 1;
  transform: translateY(0);
}

.flex {
  display: flex;
}

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

.baseline {
  align-items: baseline;
}

.slick-sr-only,
.screenreader-text {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}

body:not([ally-loaded]) .skip-to-content,
body:not([ally-loaded]) .accessibility-toggle,
body:not([ally-loaded]) .accessibility-panel {
  visibility: hidden;
  transform: translateX(-100%);
}

.skip-to-content {
  padding: 1rem 2rem;
  position: absolute;
  top: auto;
  left: -999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
.skip-to-content:focus, .skip-to-content:active {
  top: var(--headerHeight);
  left: 25%;
  width: auto;
  height: auto;
  z-index: 999;
}
.skip-to-content:hover {
  color: inherit;
}

.accessibility-panel {
  position: fixed;
  left: 0;
  bottom: 0;
  margin: 3rem;
  transition: all 0.125s linear;
  will-change: visibility, transform, width;
  z-index: 1000;
}
@media only screen and (max-width: 699px) {
  .accessibility-panel {
    margin: 1rem;
  }
}
@media only screen and (max-width: 400px) {
  .accessibility-panel {
    transform: scale(0.75);
    transform-origin: 0% 100%;
  }
}

.accessibility-panel {
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 0 1px var(--white));
  font-size: 1.6rem;
}
body:not(.show-panel) .accessibility-panel {
  visibility: hidden;
  transform: translateX(-100%);
  transition: visibility 0s linear 0.125s, transform 0.125s linear;
}
@media only screen and (max-width: 400px) {
  body:not(.show-panel) .accessibility-panel {
    transform: scale(0.75) translateX(-100%);
  }
}
.accessibility-panel .toggle-wrap {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  width: 30rem;
  background-color: var(--bgColor);
  border-top: 1px solid var(--textColor);
  border-left: 1px solid var(--textColor);
  order: 1;
}
.accessibility-panel label {
  position: relative;
  width: 50%;
  padding: 1rem;
  border-right: 1px solid var(--textColor);
  border-bottom: 1px solid var(--textColor);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--textColor);
}
.accessibility-panel label svg {
  height: 6rem;
  pointer-events: none;
  fill: var(--textColor);
}
.accessibility-panel label span {
  text-align: center;
  padding-top: 1.5rem;
  line-height: 1.1 !important;
}
.accessibility-panel label:hover, .accessibility-panel label:focus-within, .accessibility-panel label:focus:not(:active) {
  background-color: var(--highlightColor);
  color: var(--deepblack);
}
.accessibility-panel label:has(input:checked) {
  background-color: var(--gold);
}
.accessibility-panel input {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100% !important;
  height: 100% !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  border: 0 !important;
  appearance: none !important;
}
.accessibility-panel input[name=dark-mode] ~ span {
  font-size: inherit;
}
.accessibility-panel input[name=dark-mode]:not(:checked) + svg path.light {
  display: none !important;
}
.accessibility-panel input[name=dark-mode]:checked ~ span::after {
  content: "Turn Lights On";
}
.accessibility-panel input[name=dark-mode]:checked ~ span span {
  display: none;
}
.accessibility-panel .panel-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  line-height: 4rem;
  background-color: var(--black);
  color: var(--white);
  padding: 0 1rem;
  text-transform: uppercase;
  order: 2;
  border-radius: 0 0 2rem 2rem;
}
.accessibility-panel .panel-close::after {
  margin-left: 1.5rem;
}
.accessibility-panel .panel-close:hover, .accessibility-panel .panel-close:focus-within, .accessibility-panel .panel-close:focus:not(:active) {
  background-color: var(--deepblack);
  color: var(--gold);
}
html[data-touch-events] .accessibility-panel [data-option=wide-spacing],
html[data-touch-events] .accessibility-panel [data-option=large-cursor] {
  display: none;
}

html.large-cursor a.current, html.large-cursor {
  cursor: url(accessibility/cursor-default.png) 0 0, default !important;
  cursor: -webkit-image-set(url(accessibility/cursor-default.png) 1x, url(accessibility/cursor-default2x.png) 2x) 0 0, default !important;
}

html.large-cursor a,
html.large-cursor a p,
html.large-cursor a h3,
html.large-cursor a h4,
html.large-cursor a svg,
html.large-cursor button,
html.large-cursor button svg,
html.large-cursor label,
html.large-cursor [data-region],
html.large-cursor .floating-button,
html.large-cursor .accessibility-toggle::after,
html.large-cursor .select2-selection__rendered,
html.large-cursor .select2-dropdown .select2-results__option,
html.large-cursor .video-wrap.playing,
html.large-cursor input[type=submit],
html.large-cursor input[type=radio],
html.large-cursor input[type=checkbox] {
  cursor: url(accessibility/cursor-pointer.png) 0 0, pointer !important;
  cursor: -webkit-image-set(url(accessibility/cursor-pointer.png) 1x, url(accessibility/cursor-pointer2x.png) 2x) 0 0, pointer !important;
}

html.large-cursor main h1,
html.large-cursor h2,
html.large-cursor h3,
html.large-cursor h4,
html.large-cursor h5,
html.large-cursor h6,
html.large-cursor p,
html.large-cursor li,
html.large-cursor input {
  cursor: url(accessibility/cursor-text.png) 12 2, text !important;
  cursor: -webkit-image-set(url(accessibility/cursor-text.png) 1x, url(accessibility/cursor-text2x.png) 2x) 12 2, text !important;
}

html.large-cursor body.tools-on [data-copy-slide],
html.large-cursor body.tools-on .lesson-wrap .text-wrap {
  cursor: url(accessibility/cursor-copy.png) 0 0, copy !important;
  cursor: -webkit-image-set(url(accessibility/cursor-copy.png) 1x, url(accessibility/cursor-copy2x.png) 2x) 0 0, copy !important;
}

html.high-contrast {
  --bgColor: var(--white);
  --textColor: var(--deepblack);
}
html.high-contrast :-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px var(--bgColor) inset;
}
html.high-contrast :-moz-autofill {
  /* Firefox 18- */
  -moz-box-shadow: 0 0 0px 1000px var(--bgColor) inset;
}
html.high-contrast ::-moz-autofill {
  /* Firefox 19+ */
  -moz-box-shadow: 0 0 0px 1000px var(--bgColor) inset;
}
html.high-contrast [class*=-bg]:not([class*=white-text]) {
  background-color: var(--bgColor);
  color: var(--deepblack);
}
html.high-contrast img:not(.image-sponsor),
html.high-contrast video {
  filter: contrast(125%);
}
html.high-contrast main input[type=checkbox],
html.high-contrast main input[type=radio],
html.high-contrast main input[type=text],
html.high-contrast main input[type=number],
html.high-contrast main input[type=password],
html.high-contrast main input[type=email],
html.high-contrast main input[type=url],
html.high-contrast main input[type=tel],
html.high-contrast main textarea {
  background-color: var(--bgColor);
  color: var(--textColor);
  border: 1px solid var(--deepblack);
}
html.high-contrast main input[type=radio]:checked,
html.high-contrast main input[type=checkbox]:checked {
  background-color: var(--textColor);
  border: 0;
}
html.high-contrast .copy-alert,
html.high-contrast .white-text {
  --bgColor: var(--deepblack);
  background-color: var(--bgColor);
  --textColor: var(--white);
  color: var(--textColor);
}
html.high-contrast .home-text {
  background-color: var(--black);
}
html.high-contrast a.button {
  box-shadow: 0 0 0 1px var(--textColor);
}
html.high-contrast a.button:hover, html.high-contrast a.button:focus-within, html.high-contrast a.button:focus:not(:active) {
  background-color: var(--textColor) !important;
  color: var(--bgColor) !important;
}
html.high-contrast select:hover, html.high-contrast select:focus-within, html.high-contrast select:focus:not(:active),
html.high-contrast .select2-selection__rendered:hover,
html.high-contrast .select2-selection__rendered:focus-within,
html.high-contrast .select2-selection__rendered:focus:not(:active) {
  background-color: var(--linkColor) !important;
  color: var(--bgColor) !important;
}
html.high-contrast .main-menu li.search form,
html.high-contrast .main-menu > ul ul a,
html.high-contrast .main-menu > ul ul > button {
  border: solid var(--textColor);
  border-width: 1px 1px 1px 0;
}
html.high-contrast .main-menu > ul > li > a:hover,
html.high-contrast .main-menu > ul > li > a:focus,
html.high-contrast .main-menu > ul > li > button:hover,
html.high-contrast .main-menu > ul > li > button:focus,
html.high-contrast .main-menu > ul > li.active > button,
html.high-contrast .main-menu > ul > li:hover > a,
html.high-contrast .main-menu > ul > li:hover > button,
html.high-contrast .main-menu > ul ul a:hover,
html.high-contrast .main-menu > ul ul a:focus,
html.high-contrast .main-menu > ul ul > button:hover,
html.high-contrast .main-menu > ul ul > button:focus {
  background-color: var(--textColor) !important;
  color: var(--bgColor) !important;
}
html.high-contrast .main-menu > ul ul a:not(:hover):not(:focus),
html.high-contrast .main-menu > ul ul > button:not(:hover):not(:focus),
html.high-contrast .lesson-card {
  --bgColor: var(--white);
}
html.high-contrast .search-form form {
  --bgColor: var(--deepblack);
  --textColor: var(--white);
}
html.high-contrast .lesson-card .topic {
  background-color: var(--white);
  color: var(--textColor);
  border: solid;
  border-width: 0 1px 1px 0;
}
html.high-contrast .post-hero ~ section,
html.high-contrast section + section {
  border-top: 1px solid;
}
html.high-contrast .subnav,
html.high-contrast figcaption,
html.high-contrast .help-text,
html.high-contrast .carousel figure,
html.high-contrast .lesson-card figure {
  background-color: var(--bgColor) !important;
  border: 1px solid var(--deepblack);
}
html.high-contrast body.tools-on .lesson-wrap .text-wrap::before {
  border: 2px dashed var(--textColor);
}
html.high-contrast body.tools-on .lesson-wrap .text-wrap::after {
  background-color: var(--textColor);
  color: var(--bgColor);
}
html.high-contrast body.tools-on .lesson-wrap .text-wrap:hover::before {
  opacity: 1;
}
html.high-contrast body.tools-on .lesson-wrap .white-bg .text-wrap::before {
  background-color: var(--bgColor);
}
html.high-contrast body.tools-on .lesson-wrap .black-bg .text-wrap::after {
  filter: none;
  background-color: var(--white);
  color: var(--deepblack);
}
html.high-contrast:not(.highlight-links) .footer-menu a:hover,
html.high-contrast:not(.highlight-links) .footer-menu a:focus-within,
html.high-contrast:not(.highlight-links) .footer-menu a:focus:not(:active) {
  color: var(--gold) !important;
}
html.high-contrast:not(.dark-mode) .lessons,
html.high-contrast:not(.dark-mode) .palegray-bg,
html.high-contrast:not(.dark-mode) .flax-bg,
html.high-contrast:not(.dark-mode) .cream-bg,
html.high-contrast:not(.dark-mode) .white-bg,
html.high-contrast:not(.dark-mode) .subnav.lesson-nav,
html.high-contrast:not(.dark-mode) .lesson-card {
  --bgColor: var(--white) !important;
  --textColor: var(--deepblack) !important;
  background-color: var(--bgColor) !important;
  color: var(--textColor) !important;
}
html.high-contrast:not(.dark-mode) footer {
  --bgColor: var(--deepblack) !important;
  background-color: var(--bgColor) !important;
}
html.highlight-links a:not(.button) {
  background-color: yellow !important;
  color: black !important;
}
html.highlight-links a img {
  border: 4px solid yellow !important;
}
html.highlight-links a.button {
  background-color: yellow !important;
  color: var(--deepblack) !important;
  box-shadow: 0 0 0 1px var(--deepblack);
}
html.highlight-links a:has(svg) {
  background-color: var(--deepblack) !important;
}
html.highlight-links a:has(svg) svg {
  fill: yellow !important;
}
html.highlight-links a:has(svg) svg path {
  fill: yellow !important;
}
html.highlight-links footer .image-sponsor {
  filter: grayscale(100%) contrast(2);
  mix-blend-mode: multiply;
}
html.wide-spacing body,
html.wide-spacing h1,
html.wide-spacing h2,
html.wide-spacing h3,
html.wide-spacing h4,
html.wide-spacing h5,
html.wide-spacing h6,
html.wide-spacing p,
html.wide-spacing li,
html.wide-spacing span,
html.wide-spacing button {
  letter-spacing: 0.2em !important;
}
html.wide-spacing .program-description article {
  max-width: 100% !important;
}
html.wide-spacing .wrap.text-wrap {
  max-width: 60em;
}
html.wide-spacing .wrap.narrow {
  max-width: 50em;
}
html.wide-spacing .wrap.wide {
  max-width: 86em;
}
html.wide-spacing .wrap.wider {
  max-width: initial;
}
html.reduce-motion body {
  overflow-x: hidden;
}
html.reduce-motion .main-header {
  position: absolute !important;
}
html.reduce-motion .subnav {
  position: relative;
}
html.reduce-motion .pace-progress {
  display: none;
}
html.reduce-motion body.tools-on .lesson-wrap .text-wrap::before, html.reduce-motion body.tools-on .lesson-wrap .text-wrap::after {
  opacity: 1;
}
html.dark-mode {
  --bgColor: var(--black);
  --textColor: var(--white);
  --linkColor: var(--gold);
  --highlightColor: var(--rust);
}
html.dark-mode .lesson-card:hover,
html.dark-mode .lesson-card:focus-within,
html.dark-mode .white-bg figcaption,
html.dark-mode .lessons,
html.dark-mode .palegray-bg,
html.dark-mode .flax-bg,
html.dark-mode .rust-bg {
  --bgColor: var(--black);
}
html.dark-mode .help-text,
html.dark-mode header,
html.dark-mode figcaption,
html.dark-mode .white-bg,
html.dark-mode .section-title,
html.dark-mode .hl-extras .carousel .card::before,
html.dark-mode .footer-menu {
  --bgColor: var(--deepblack);
}
html.dark-mode .cream-bg,
html.dark-mode .subnav.lesson-nav,
html.dark-mode .history-wrap aside,
html.dark-mode .lesson-card {
  --bgColor: var(--darkgray);
}
html.dark-mode .help-text,
html.dark-mode .subnav,
html.dark-mode .button:hover,
html.dark-mode .button:focus,
html.dark-mode .black-text,
html.dark-mode figcaption {
  --textColor: var(--white);
}
html.dark-mode a:has(.image-sponsor) {
  position: relative;
}
html.dark-mode a:has(.image-sponsor):hover::after, html.dark-mode a:has(.image-sponsor):focus-within::after, html.dark-mode a:has(.image-sponsor):focus:not(:active)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--linkColor);
  mix-blend-mode: darken;
}
html.dark-mode .toggle-wrap {
  --highlightColor: var(--deepblack);
}
html.dark-mode .toggle-wrap label:hover, html.dark-mode .toggle-wrap label:focus-within, html.dark-mode .toggle-wrap label:focus:not(:active) {
  color: var(--white);
}
html.dark-mode .toggle-wrap label:has(input:checked) {
  background-color: var(--rust);
}
html.dark-mode .subnav.filters {
  border-top: 1px solid var(--gray);
}
html.dark-mode .subnav .filter-wrap:not(:hover):not(:focus-within) button.clear-filter::before, html.dark-mode .subnav .filter-wrap::after {
  filter: contrast(2) invert(1);
}
html.dark-mode .subnav .filter-wrap button.clear-filter:hover::before,
html.dark-mode .subnav .filter-wrap button.clear-filter:focus-within::before, html.dark-mode .subnav .filter-wrap:hover::after, html.dark-mode .subnav .filter-wrap:focus-within::after {
  filter: none !important;
}
html.dark-mode .subnav .filter-wrap.anchor-nav {
  background-color: var(--deepblack);
}
html.dark-mode .subnav .filter-wrap.anchor-nav ul li a:hover, html.dark-mode .subnav .filter-wrap.anchor-nav ul li a:focus-within, html.dark-mode .subnav .filter-wrap.anchor-nav ul li a:focus:not(:active) {
  color: var(--black) !important;
}
html.dark-mode .subnav .filter-wrap.anchor-nav ul li:nth-child(odd) {
  background-color: var(--darkgray);
}
html.dark-mode .footer-menu a:hover, html.dark-mode .footer-menu a:focus-within, html.dark-mode .footer-menu a:focus:not(:active) {
  color: var(--linkColor);
}
html.dark-mode:not(.highlight-links) header .logo,
html.dark-mode:not(.highlight-links) .image-sponsor {
  filter: invert(100%) hue-rotate(180deg);
  mix-blend-mode: screen;
}
html.dark-mode.high-contrast {
  --bgColor: var(--deepblack) !important;
  --textColor: var(--white) !important;
}
html.dark-mode.high-contrast .lesson-card:hover,
html.dark-mode.high-contrast .lesson-card:focus-within,
html.dark-mode.high-contrast .white-bg figcaption,
html.dark-mode.high-contrast .lessons,
html.dark-mode.high-contrast .palegray-bg,
html.dark-mode.high-contrast .flax-bg,
html.dark-mode.high-contrast .rust-bg,
html.dark-mode.high-contrast .cream-bg,
html.dark-mode.high-contrast .white-bg,
html.dark-mode.high-contrast .black-bg,
html.dark-mode.high-contrast .subnav.lesson-nav,
html.dark-mode.high-contrast .history-wrap aside,
html.dark-mode.high-contrast .lesson-card {
  --bgColor: var(--deepblack) !important;
  --textColor: var(--white) !important;
  background-color: var(--bgColor) !important;
  color: var(--textColor) !important;
}
html.dark-mode.high-contrast .darkgray-bg {
  --bgColor: var(--black) !important;
  --textColor: var(--white) !important;
  background-color: var(--bgColor) !important;
  color: var(--textColor) !important;
}
html.dark-mode.high-contrast .home-text {
  border-right: 1px solid var(--textColor) !important;
  border-bottom: 1px solid var(--textColor) !important;
}
html.dark-mode.high-contrast footer {
  --bgColor: var(--deepblack) !important;
  --textColor: var(--white) !important;
  background-color: var(--bgColor) !important;
  color: var(--textColor) !important;
}

.reduce-motion *, .reduce-motion *::before, .reduce-motion *::after,
.pause-animations *,
.pause-animations *::before,
.pause-animations *::after {
  animation: none !important;
  transition: none !important;
  animation-play-state: paused !important;
}

[data-touch-events] select,
[data-touch-events] textarea,
[data-touch-events] input[type=text],
[data-touch-events] input[type=password],
[data-touch-events] input[type=datetime],
[data-touch-events] input[type=datetime-local],
[data-touch-events] input[type=date],
[data-touch-events] input[type=month],
[data-touch-events] input[type=time],
[data-touch-events] input[type=week],
[data-touch-events] input[type=number],
[data-touch-events] input[type=email],
[data-touch-events] input[type=url] {
  font-size: 16px;
}

@media only screen and (max-width: 768px) and (max-height: 400px) {
  .content {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}
pre.admin-pre {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  max-height: 50vh;
  background-color: black;
  color: var(--white);
  font: 75% monospace;
  padding: 5rem;
  overflow: auto;
  z-index: 100;
  white-space: pre;
  border-top: 2px solid red;
  text-align: left;
}
pre.admin-pre:not(:hover) {
  height: 15rem;
}

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