/* Base styles (desktop) */
header.mainnav {
  view-transition-name: main-header;
  z-index: 20;
  background: var(--ocean);
  /* Main navigation */
  /* Submenu styling */
  /* Anchor wrapping adjustments */
}
header.mainnav > div {
  width: 100%;
  max-width: var(--max-page-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--header-height);
  padding: 0 var(--s2);
}
header.mainnav h1.logo {
  white-space: nowrap;
  color: var(--green);
}
header.mainnav img,
header.mainnav svg {
  height: 50px;
  aspect-ratio: 1/1;
}
header.mainnav img.smaller,
header.mainnav svg.smaller {
  height: 46px;
}
header.mainnav .header-logo {
  width: 200px;
  height: var(--header-height);
}
header.mainnav nav {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
header.mainnav ul.main-nav {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0 50px 0 0;
  height: 100%;
  position: relative;
}
header.mainnav ul.main-nav > li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--inner-padding) 1rem;
  font-size: calc(var(--font-size-medium) * 0.75);
}
header.mainnav ul.main-nav > li > a > svg,
header.mainnav ul.main-nav > li > a > span {
  color: var(--fg-color);
}
header.mainnav ul.main-nav > li:hover {
  background: var(--fg-color);
}
header.mainnav ul.main-nav > li:hover > a > svg,
header.mainnav ul.main-nav > li:hover > a > span,
header.mainnav ul.main-nav > li:hover > svg,
header.mainnav ul.main-nav > li:hover > div > span {
  color: var(--ocean);
}
header.mainnav ul.main-nav > li > div > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--ocean);
  border: var(--ocean);
  list-style: none;
  margin: 0;
  padding: 0.5em 0;
  z-index: 10;
}
header.mainnav ul.main-nav > li > div > ul a {
  padding: 0.3em;
  display: block;
  color: var(--fg-color);
}
header.mainnav ul.main-nav > li > div > ul a:hover {
  background: var(--fg-color);
  color: var(--ocean);
}
header.mainnav ul.main-nav > li:hover > div > ul {
  display: block;
}
header.mainnav ul.main-nav > li > div > ul li {
  display: block;
  padding: 0 1em;
  white-space: nowrap;
  font-size: calc(var(--font-size-medium) * 0.75);
}
header.mainnav ul.main-nav > li > div > ul li a {
  color: inherit;
  text-decoration: none;
}
header.mainnav ul.main-nav > li > a {
  display: contents;
}
footer {
  background: var(--ocean);
  color: var(--white);
  width: 100%;
}
footer > div {
  max-width: var(--max-page-width);
  min-width: var(--min-content-width);
  margin-inline: auto;
  view-transition-name: main-footer;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: var(--footer-height);
  font-size: calc(var(--font-size-medium) * 0.6);
  font-weight: var(--font-weight-regular);
}
footer > div svg {
  color: var(--white);
  height: 70px;
  width: 70px;
}
footer > div div:nth-of-type(2) svg {
  height: 30px;
  width: auto;
}
footer > div div {
  display: flex;
  flex-direction: column;
  margin: 1rem;
}
footer > div a {
  color: var(--white);
}
.component-navdown {
  position: relative;
}
.component-navdown ul {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  width: fit-content;
  height: auto;
  z-index: 100;
  background-color: var(--ocean);
  padding: 0;
  padding-top: var(--s0);
}
.component-navdown ul a:not([href]) {
  text-decoration-line: line-through;
}
.component-navdown:hover ul,
.component-navdown:focus-within ul,
.component-navdown ul:hover,
.component-navdown ul:focus-within {
  display: block;
}
.component-navdown ul li {
  align-items: start;
  white-space: nowrap;
  margin-inline-start: -1ch;
  border-top-left-radius: var(--s-1);
  border-bottom-left-radius: var(--s-1);
  transition: background-color 0.2s, opacity 0.2s;
}
.component-navdown ul li:hover {
  color: var(--ocean);
  background-color: var(--fg-color);
  box-shadow: rgba(0, 0, 0, 0.5) -2px 0px 10px;
  cursor: pointer;
  transition: none;
}
.at-content .interactive-missing-words p {
  display: block;
  line-height: 1lh;
}
.interactive-missing-words .missing {
  color: transparent;
  border: 2px dotted #666;
  border-radius: 5px;
  padding-inline: 0.25ch;
  margin-inline: 0.25ch;
  transition: all 0.3s;
  text-wrap: nowrap;
}
.interactive-missing-words .missing.active {
  background-color: var(--faded-ocean);
  border-style: solid;
}
.interactive-missing-words .missing.filled {
  border-color: transparent;
  color: inherit;
  animation: correctAnswer 0.5s ease-out;
}
.interactive-missing-words .missing.filled[data-index="0"] {
  background-color: var(--faded-orange);
}
.interactive-missing-words .missing.filled[data-index="1"] {
  background-color: var(--faded-cyan);
}
.interactive-missing-words .missing.filled[data-index="2"] {
  background-color: var(--faded-pink);
}
.interactive-missing-words .missing.filled[data-index="3"] {
  background-color: var(--faded-green);
}
.interactive-missing-words .missing.filled[data-index="4"] {
  background-color: var(--faded-purple);
}
.interactive-missing-words .missing.filled[data-index="5"] {
  background-color: var(--faded-bluegreen);
}
@keyframes correctAnswer {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes successPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.interactive-missing-words-container .word-bank {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px;
}
.interactive-missing-words-container .draggable-word {
  border: 1px solid;
  color: var(--ocean);
  padding: 8px 16px;
  border-radius: 10px;
  cursor: move;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.2s;
  flex: unset;
}
.interactive-missing-words-container .draggable-word[data-index="0"] {
  border-color: var(--orange);
  background-color: var(--faded-orange);
}
.interactive-missing-words-container .draggable-word[data-index="1"] {
  border-color: var(--cyan);
  background-color: var(--faded-cyan);
}
.interactive-missing-words-container .draggable-word[data-index="2"] {
  border-color: var(--pink);
  background-color: var(--faded-pink);
}
.interactive-missing-words-container .draggable-word[data-index="3"] {
  border-color: var(--green);
  background-color: var(--faded-green);
}
.interactive-missing-words-container .draggable-word[data-index="4"] {
  border-color: var(--purple);
  background-color: var(--faded-purple);
}
.interactive-missing-words-container .draggable-word[data-index="5"] {
  border-color: var(--bluegreen);
  background-color: var(--faded-bluegreen);
}
.interactive-missing-words-container .draggable-word:hover {
  animation: var(--animation-shake-z), var(--animation-scale-up-some) forwards;
  animation-timing-function: var(--ease-elastic-in-out-4);
}
.interactive-missing-words-container .draggable-word.dragging {
  opacity: 0.5;
}
.interactive-missing-words-container .success-message {
  display: none;
  text-align: center;
  padding: 20px;
  background: var(--faded-cyan);
  border-radius: 8px;
  color: var(--ocean);
  animation: successPulse 2s infinite;
}
.interactive-missing-words-container.table .word-bank {
  display: grid;
  grid: 1fr / repeat(5, 1fr);
}
.interactive-missing-words-container.table .draggable-word {
  font-size: 0.75em;
  max-width: 30ch;
}
.interactive-missing-words-container.table .missing {
  padding: unset;
}
.interactive-missing-words.table .missing {
  border: 2px solid var(--platinum);
  text-wrap: wrap;
  text-wrap: pretty;
}
.interactive-stop-look-listen ul li {
  padding-block-end: 0.5lh;
  display: flex;
  align-items: baseline;
  visibility: hidden;
}
.interactive-stop-look-listen ul li.visible {
  visibility: visible;
  opacity: 1;
}
.interactive-stop-look-listen ul input {
  height: 1lh;
  width: 1lh;
  min-width: 1lh;
  border: 2px solid var(--green);
  border-radius: 3px;
  appearance: none;
  background-color: transparent;
  color: var(--ocean-readable);
  accent-color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 1rem;
  margin-block: 0;
}
.interactive-stop-look-listen ul input:after {
  content: "✘";
  color: transparent;
}
.interactive-stop-look-listen ul input:checked {
  background-color: var(--pale-green);
}
.interactive-stop-look-listen ul input:checked::after {
  content: "✔";
  color: var(--ocean-readable);
}
.interactive-stop-look-listen ul > li.visible:nth-child(odd) span {
  animation: var(--animation-fade-in), var(--animation-slide-in-left);
  animation-timing-function: var(--ease-out-4);
}
.interactive-stop-look-listen ul > li.visible:nth-child(even) span {
  animation: var(--animation-fade-in), var(--animation-slide-in-right);
  animation-timing-function: var(--ease-out-4);
}
.at-content .component-quick-check {
  padding: max(2vw, 1vh);
}
.at-content .component-quick-check h3 {
  line-height: 2;
}
.at-content .component-quick-check ul.quick-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-fill: balance;
}
.at-content .component-quick-check ul.quick-check-list li {
  display: inline-block;
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  width: 100%;
  margin-bottom: 0.5em;
}
.at-content .component-quick-check ul.quick-check-list li span {
  line-height: 1;
  padding-right: 2vw;
  white-space: nowrap;
  font-weight: 900;
  color: var(--red);
  /* Default color */
  font-size: 2rem;
}
.at-content .component-quick-check ul.quick-check-list li p {
  max-width: none;
}
.at-content .component-quick-check ul.quick-check-list li h1:first-letter {
  font-weight: var(--font-weight-black);
}
.at-content .component-quick-check ul.quick-check-list li h1 {
  font-weight: var(--font-weight-semi-bold);
}
.at-content .component-quick-check ul.quick-check-list li:nth-of-type(1) h1:first-letter {
  color: var(--red);
}
.at-content .component-quick-check ul.quick-check-list li:nth-of-type(2) h1:first-letter {
  color: var(--green);
}
.at-content .component-quick-check ul.quick-check-list li:nth-of-type(3) h1:first-letter {
  color: var(--dark-cyan);
}
.at-content .component-quick-check ul.quick-check-list li:nth-of-type(4) h1:first-letter {
  color: var(--pink);
}
.at-content .component-quick-check ul.quick-check-list li:nth-of-type(5) h1:first-letter {
  color: var(--orange);
}
.at-content .component-quick-check ul.quick-check-list li:nth-of-type(6) h1:first-letter {
  color: var(--dark-yellow);
}
.at-content .component-quick-check ul.quick-check-list li:nth-of-type(7) h1:first-letter {
  color: var(--bluegreen);
}
.component-when-to-signal {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Checked state styles */
  /* Pseudo-element for custom tick mark */
}
.component-when-to-signal p {
  font-weight: 900;
}
.component-when-to-signal ul {
  list-style: none;
  padding-inline-start: 0;
}
.component-when-to-signal li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 1rem 0;
}
.component-when-to-signal input {
  height: 0.8lh;
  width: 0.8lh;
  border: 1px solid var(--green);
  border-radius: 3px;
  /* Optional: Rounded corners */
  appearance: none;
  /* Remove default styles */
  background-color: transparent;
  /* Transparent by default */
  accent-color: var(--green);
  /* For modern browsers with support */
  cursor: pointer;
  /* Change cursor to indicate interactivity */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 1ch;
}
.component-when-to-signal input:checked {
  background-color: var(--pale-green);
  /* Green background when checked */
  color: var(--ocean-readable);
  /* Text color inside checkbox, if any */
  border: 2px solid var(--green);
  /* Maintain border color */
}
.component-when-to-signal input:checked::after {
  content: "✔";
  /* Tick symbol */
  color: black;
  /* Color of the tick */
}
.at-content .at-flex-strip .component-hand-signals {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  container-name: hand-signals;
  container-type: inline-size;
  padding: max(2vw, 1vh);
}
.at-content .at-flex-strip .component-hand-signals p {
  max-width: none;
  padding: 2rem;
  text-align: center;
  text-wrap: pretty;
}
.component-hand-signals div {
  display: flex;
  flex-direction: row;
}
.component-hand-signals figure {
  margin: 0;
  padding: 0;
  width: 33.33cqw;
  height: 100%;
}
/* Images within Each Figure */
.component-hand-signals figure img {
  width: 300%;
  max-height: none;
  max-width: none;
  top: 50%;
  left: 0;
  object-fit: contain;
}
.component-hand-signals figure:nth-child(2) img {
  visibility: hidden;
}
.component-hand-signals figure:nth-child(3) img {
  visibility: hidden;
}
/* Captions for Each Figure */
.component-hand-signals figure figcaption {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  white-space: nowrap;
  height: 4cqh;
}
.speech-bubbles ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  list-style: none;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0px 5px 3px #999);
}
.speech-bubbles ul li {
  margin-bottom: 1em;
  padding: 1em 1em 2.5em 1em;
  max-width: 15ch;
  text-align: center;
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-black);
}
.speech-bubbles ul li:nth-child(1) {
  margin-block-start: 2em;
  background: var(--pale-orange);
  clip-path: polygon(5% 0%, 100% 10%, 90% 75%, 55% 80%, 60% 100%, 40% 80%, 0% 85%);
}
.speech-bubbles ul li:nth-child(2) {
  rotate: 10deg;
  background: var(--pale-bluegreen);
  clip-path: polygon(0% 15%, 95% 0%, 100% 75%, 50% 75%, 35% 100%, 40% 75%, 5% 75%);
}
.speech-bubbles ul li:nth-child(3) {
  margin-block-start: 2em;
  background: var(--pale-pink);
  clip-path: polygon(0% 0%, 100% 5%, 95% 70%, 40% 70%, 35% 100%, 30% 70%, 5% 70%);
}
.speech-bubbles ul li:nth-child(4) {
  rotate: 10deg;
  background: var(--pale-green);
  clip-path: polygon(0% 15%, 95% 0%, 100% 75%, 50% 75%, 35% 100%, 40% 75%, 5% 75%);
}
.speech-bubbles ul li:nth-child(5) {
  background: var(--pale-red);
  clip-path: polygon(0% 0%, 100% 5%, 95% 70%, 40% 70%, 35% 100%, 30% 70%, 5% 70%);
}
.speech-bubbles ul li:nth-child(6) {
  rotate: -10deg;
  background: var(--bright-cyan);
  clip-path: polygon(5% 0%, 100% 10%, 90% 75%, 55% 80%, 60% 100%, 40% 80%, 0% 85%);
}
:root {
  --inner-padding: clamp(var(--s2), 4vw, var(--s3));
  --outer-padding: clamp(var(--s2), 4vw, var(--s3));
  --half-block-width: 50%;
  --font-size-large: clamp(24px, 3vw, 30px);
  --font-size-medium: clamp(19.6px, 2.8vw, 28px);
  --font-size-small: clamp(12px, 2.2vw, 18px);
  --unicode-down-arrow: "\2193";
  --ghost-white: #f4f4f8;
  --platinum: #e6e6ea;
  --bg-grass-meadow: url("/img/bg/grass-meadow.png");
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
a.center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /*
                            H1s are expected to have short text intended
                            to be single line only to not break layout
                         */
}
picture img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
picture.center {
  margin-inline: auto !important;
}
figure {
  position: relative;
  padding: 0;
  /* override global defaults */
}
figure > * {
  position: relative;
  width: 100%;
}
figure figcaption {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
figure.top-caption {
  flex-direction: column-reverse;
}
/*
    CUSTOM WIDGETS
*/
.at-button {
  background-color: #2D7CAF;
  border-radius: 4px;
}
/* Layout */
.screen {
  display: flex;
  flex-direction: column;
  margin-block-end: auto;
}
.screen header,
.screen section,
.screen main {
  flex: 1;
  display: flex;
  background-color: transparent;
}
.full-page {
  margin-inline: auto;
  width: 100%;
  max-width: var(--max-page-width);
}
.at-content {
  /*
          ASSUMPTION 1: ALL CONTENT DEFAULTS TO ROWS
  */
  container-type: inline-size;
  container-name: at-content;
  position: relative;
  display: flex;
  padding: calc(var(--outer-padding) / 2) var(--outer-padding);
  max-width: var(--max-content-width);
  min-width: var(--min-content-width);
  width: 100%;
  margin: 0 auto;
  gap: var(--outer-padding);
}
.at-content.wide {
  max-width: var(--max-page-width);
}
.at-content div,
.at-content picture,
.at-content figure {
  flex: 1;
  margin: 0;
}
.at-content h1,
.at-content p,
.at-content ul,
.at-content li {
  line-height: 1.4;
  text-align: left;
  max-width: none;
  width: auto;
}
.at-content picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.at-content p,
.at-content li,
.at-content figcaption,
.at-content textarea,
.at-content a,
.at-content input {
  font-size: calc(var(--font-size-medium) * 0.75);
}
.at-content p {
  text-wrap: pretty;
  padding: 0 0 1.5rem;
  margin: 0;
  text-align: initial;
  position: relative;
  line-height: 1.25;
  overflow-wrap: normal;
  padding-bottom: var(--inner-padding / 2);
}
.at-content .flex-smaller {
  flex: 0.6;
}
.main-layout-2 {
  /*
      ASSUMPTION 2: MAIN LAYOUT 2 IS A COL BASED LAYOUT FOR THE "MAIN CONTENT" ONLY
      ASSUMPTION 3: CONTAINED CONTENT WITHIN MAIN LAYOUT 2 IS LAYED OUT WITH A CUSTOM COMPONENT
  */
}
.main-layout-2 .at-content {
  flex-direction: column;
}
.the-gang > picture {
  position: relative;
  top: 5lh;
  aspect-ratio: unset;
  width: 100%;
}
/* Hide the default arrow in Chrome/Safari */
.at-nested summary::-webkit-details-marker {
  display: none;
}
/* Hide the default arrow in Firefox/other modern browsers */
.at-nested summary::marker {
  display: none;
}
.at-nested summary {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin: 1rem;
}
/* Optional: Style your custom toggle button */
.at-nested img.arrow {
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  transform: rotate(90deg);
  margin: 0 auto;
}
.at-extras h1,
.at-extras h2,
.at-extras h3,
.at-extras h4,
.at-extras h5,
.at-extras h6 {
  margin-inline: 0;
  margin-block: var(--inner-padding);
  padding: 0;
}
.road-map {
  --max-width: calc(1.2 * var(--max-page-width));
  --min-width: 1150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.road-map .the-gang {
  width: 100%;
  background: url('/img/bg/grass-meadow.png') no-repeat bottom;
  background-size: 100%;
  display: flex;
  justify-content: center;
  padding-block-end: 30px;
}
.road-map .the-gang img {
  min-width: var(--min-content-width);
  max-width: var(--max-width);
  width: 80%;
}
.road-map .bg-pale-light-blue {
  padding-block: 1em;
}
.road-map .pngmap {
  position: relative;
  display: flex;
  justify-content: center;
  padding-block: 1em;
  width: 100%;
  min-width: var(--min-width);
  max-width: var(--max-width);
  margin-inline-start: 3vw;
}
.road-map .pngmap > img {
  position: relative;
  left: -5.5%;
  width: 50%;
}
.road-map .map {
  position: relative;
  width: 100%;
  height: 900px;
  background: url('/img/just-road-map.svg') no-repeat center top;
  background-size: 50%;
}
.road-map .lesson {
  position: absolute;
  --font-size: 0.012;
  font-size: clamp(calc(var(--font-size) * var(--min-width)), calc(100vw * var(--font-size)), calc(var(--font-size) * var(--max-width)));
  display: flex;
  flex-direction: column;
  padding: 1em;
  width: 35ch;
  --h-width: 35ch;
  --p-width: 30ch;
}
.road-map .lesson .number {
  height: 2.5lh;
  display: flex;
  justify-content: start;
  align-items: end;
  padding-block-end: 0.25lh;
}
.road-map .lesson .number svg {
  color: var(--lesson-color);
  height: 80%;
  padding-inline-end: 1em;
}
.road-map .lesson .number img {
  height: 100%;
}
.road-map .lesson h2 {
  font-family: "Figtree-Black";
  font-weight: 900;
  font-size: 1.2em;
  width: var(--h-width);
  margin: 0;
  padding-block-end: 0.25lh;
}
.road-map .lesson p {
  width: var(--p-width);
  margin: 0;
  font-weight: 400;
  font-size: 1em;
}
.at-box-1 {
  border-radius: 12px;
  padding: var(--inner-padding);
}
.at-box-1 h1,
.at-box-1 h2,
.at-box-1 h3,
.at-box-1 h4,
.at-box-1 h5,
.at-box-1 h6 {
  margin: 0 0 var(--inner-padding) 0;
  padding: 0;
}
.at-host p {
  padding: var(--inner-padding) 0;
  line-height: 1.25;
}
.at-host h1 {
  font-size: calc(var(--font-size-large));
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
}
.at-host a[role=button] {
  white-space: nowrap;
  display: inline-block;
  margin-top: var(--inner-padding);
}
.at-host picture {
  flex: 0.8;
  aspect-ratio: unset;
}
.at-host .at-content {
  align-items: start;
}
.at-host .at-content div {
  flex: 3;
}
.at-host p:not(~a):after {
  /* This is a very special case on one host slde i dont think we need it*/
  content: var(--unicode-down-arrow);
  position: absolute;
  top: 100%;
  left: 2rem;
}
.at-host.bigger picture {
  flex: 1.2;
}
.at-bar {
  background-color: white;
}
.at-bar .at-content div,
.at-bar .at-content a {
  display: flex;
  align-items: center;
}
.at-note {
  background-color: var(--light-blue);
}
.at-note .at-content div,
.at-note .at-content a {
  display: flex;
  align-items: center;
}
.at-note .at-content p {
  padding: 0;
}
:root {
  --button-color: #2e7caf;
}
a[role=button] {
  font-size: 0.8em;
  font-weight: var(--font-weight-regular);
  text-decoration: none;
  padding: var(--s0) var(--s2);
  background: var(--button-color);
  color: var(--white);
  border-radius: var(--s-2);
}
a[role=button] .icon {
  width: 1cap;
  height: 1cap;
}
a[role=button]:not([disabled]):hover {
  --button-color: var(--ocean);
}
a[role=button][disabled] {
  --button-color: gray;
}
nav.pages {
  width: 100%;
  border-top: 1px solid var(--ocean);
}
nav.pages > div {
  max-width: var(--max-content-width);
  min-width: var(--min-content-width);
  margin-inline: auto;
  padding: var(--s1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  /* Optional: Prevent content bleed */
}
nav.pages > div a[role=button]:first-of-type {
  background-color: transparent;
  border: 2px solid var(--button-color);
  color: var(--button-color);
}
nav.pages > div p {
  margin: 0;
  padding: 0;
  font-size: 0.8em;
  font-weight: var(--font-weight-regular);
}
.at-walt .at-content {
  justify-content: center;
}
.at-walt .component-walt {
  flex: 1;
  padding: var(--inner-padding);
}
.at-walt .title {
  width: 100%;
}
.at-walt .component:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.at-walt .component:nth-child(2) .multi-column ul {
  columns: 2;
  column-fill: balance;
  height: clamp(10lh, 100%, 15lh);
}
.at-walt .component:nth-child(2) .multi-column ul li {
  break-inside: avoid-column;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.at-walt .at-content {
  gap: var(--outer-padding);
}
.at-walt .component {
  background-color: var(--walt-bg-color);
  border-radius: var(--s3);
  padding: var(--inner-padding);
  margin: 0;
}
.at-walt h2,
.at-walt h3,
.at-walt h4 {
  font-size: calc(var(--font-size-medium) * 0.8);
  font-weight: var(--font-weight-bold);
  max-width: none;
  text-wrap: auto;
  display: flex;
  align-items: center;
  line-height: 2;
  margin-bottom: calc(var(--inner-padding) / 2);
}
.at-walt li,
.at-walt p {
  font-size: calc(var(--font-size-medium) * 0.75);
  padding-block: calc(var(--inner-padding) / 8);
}
.at-walt .icon {
  width: 2em;
  height: 2em;
  margin-right: calc(var(--inner-padding) / 2);
}
.at-walt hr {
  border: none;
  border-top: 2px solid var(--ocean);
  margin: min(1vw, 2vh) auto;
}
.at-thumbcheck ul {
  list-style: none;
  padding-inline-start: 0;
}
.at-thumbcheck li {
  padding-block-end: 0.5lh;
  display: flex;
  align-items: baseline;
}
.at-thumbcheck input {
  height: 1lh;
  width: 1lh;
  min-width: 1lh;
  border: 2px solid var(--green);
  border-radius: 3px;
  appearance: none;
  background-color: transparent;
  color: var(--ocean-readable);
  accent-color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 1rem;
  margin-block: 0;
}
.at-thumbcheck input:after {
  content: "✘";
  color: transparent;
}
.at-thumbcheck input:checked {
  background-color: var(--pale-green);
}
.at-thumbcheck input:checked::after {
  content: "✔";
  color: var(--ocean-readable);
}
table {
  border-collapse: collapse;
  width: 100%;
  background: var(--ghost-white);
}
th,
td {
  border: 2px solid var(--platinum);
  text-align: left;
  vertical-align: top;
  padding: 0.5ch;
  font-size: calc(var(--font-size-medium) * 0.6);
}
th {
  font-weight: bold;
  background: var(--green);
}
tr:nth-child(even) {
  background: #fafafa;
}
.orderable li.success:first-child,
.draggable li.success:first-child,
.orderable li.success + li.success,
.draggable li.success + li.success {
  background-color: var(--pale-green) !important;
}
.orderable li.success:first-child::before,
.draggable li.success:first-child::before,
.orderable li.success + li.success::before,
.draggable li.success + li.success::before {
  content: counter(item-count);
}
.orderable ol,
.draggable ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
  counter-reset: item-count;
}
.orderable li,
.draggable li {
  -webkit-user-select: none;
  user-select: none;
  counter-increment: item-count;
  cursor: grab;
  background-color: var(--ghost-white);
  box-shadow: var(--shadow-3);
  border-radius: var(--s-1);
  margin: var(--s1);
  padding: var(--s0);
  display: flex;
  align-items: center;
}
.orderable li::before,
.draggable li::before {
  margin-right: var(--s1);
  margin-block: 0;
  padding: 0;
  text-align: center;
  content: "⭥";
}
.orderable li::before:active,
.draggable li::before:active {
  cursor: grabbing;
}
.orderable li:nth-child(4n+0),
.draggable li:nth-child(4n+0) {
  background-color: var(--faded-green);
}
.orderable li:nth-child(4n+1),
.draggable li:nth-child(4n+1) {
  background-color: var(--faded-pink);
}
.orderable li:nth-child(4n+2),
.draggable li:nth-child(4n+2) {
  background-color: var(--faded-bluegreen);
}
.orderable li:nth-child(4n+3),
.draggable li:nth-child(4n+3) {
  background-color: var(--faded-orange);
}
.quiz {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  align-items: center;
  height: 100%;
}
.quiz h2.quiz-title {
  font-size: var(--font-size-large);
  color: var(--ocean);
  font-weight: var(--font-weight-light);
  margin: 0 0 calc(var(--inner-padding) / 2) 0;
  max-width: none;
  text-wrap: auto;
}
.quiz ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.quiz li {
  padding-block-end: 0.5lh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.quiz label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: calc(var(--inner-padding) / 2);
  width: 100%;
  font-size: calc(var(--font-size-medium) * 0.75);
}
/* Radio Button Styling (Styled as Checkbox) */
.quiz input[type="radio"] {
  height: 1lh;
  width: 1lh;
  min-width: 1lh;
  border: 2px solid var(--green);
  border-radius: 3px;
  appearance: none;
  background-color: transparent;
  color: var(--ocean-readable);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 1rem;
  margin-block: 0;
  position: relative;
  opacity: 1;
}
.quiz input[type="radio"]::after {
  content: "";
  /* Initially empty until checked */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
/* Default checked state (before JS applies classes) */
.quiz input[type="radio"]:checked::after {
  content: "✔";
  color: var(--ocean-readable);
  background-color: var(--pale-green);
}
/* Correct answer styling (applied to input via JS) */
.quiz input[type="radio"].correct:checked {
  background-color: var(--pale-green);
  border-color: var(--green);
}
.quiz input[type="radio"].correct:checked::after {
  content: "✔";
  color: var(--ocean-readable);
}
/* Incorrect answer styling (applied to input via JS) */
.quiz input[type="radio"].incorrect:checked {
  background-color: red;
  border-color: red;
}
.quiz input[type="radio"].incorrect:checked::after {
  content: "✘";
  color: white;
  background-color: red;
  border-color: red;
}
/* Hover Effect on Checkbox */
.quiz label:hover + input[type="radio"] {
  border-color: #007bff;
}
/* Visually Hidden Button for Screen Readers */
.check-answer {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.quiz:has(input:checked) input {
  pointer-events: none;
}
.quiz:has(input:checked) input.correct {
  background-color: var(--pale-green);
}
.speech-bubble-hover h2 {
  max-width: none;
  font-weight: 500;
  text-align: center;
  padding: calc(var(--inner-padding) / 2);
}
.speech-bubble-hover figcaption {
  margin-top: 2rem;
  padding: 0;
}
.speech-bubble-hover input {
  opacity: 0;
  position: absolute;
}
.speech-bubble-hover :checked + label span.caption {
  filter: blur(0px);
}
.speech-bubble-hover :checked + label span.guide {
  display: none;
}
.speech-bubble-hover figcaption label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: var(--inner-padding);
  cursor: pointer;
}
.speech-bubble-hover figcaption label span.guide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(var(--font-size-small) * 2);
  text-transform: uppercase;
  font-variant: small-caps;
}
.speech-bubble-hover figcaption label span.caption {
  filter: blur(10px);
  text-transform: capitalize;
  font-size: var(--font-size-medium);
}
.speech-bubble-hover figcaption,
.speech-bubble-hover figcaption::before {
  background-color: var(--light-blue);
}
.speech-bubble-hover figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4rem;
  height: 4rem;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center center;
  z-index: -1;
}
.at-flex-strip {
  width: 100%;
  display: flex;
  gap: var(--inner-padding);
}
.at-flex-strip.center {
  justify-content: center;
}
.at-flex-strip.even {
  justify-content: space-evenly;
}
.at-flex-strip.left {
  justify-content: flex-start;
}
.at-flex-strip.center-one {
  justify-content: center;
}
.at-flex-strip.center-one > picture,
.at-flex-strip.center-one > figure {
  max-width: calc(100% / 3);
}
.at-flex-strip.center-two {
  justify-content: center;
  align-items: center;
}
.at-flex-strip.center-two > picture,
.at-flex-strip.center-two > figure,
.at-flex-strip.center-two p {
  max-width: calc(100% / 2);
}
.at-flex-strip.align-start {
  align-items: start;
}
.at-flex-strip > picture,
.at-flex-strip > figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 100px;
  min-width: 100px;
  aspect-ratio: unset;
}
.at-flex-strip > picture img,
.at-flex-strip > figure img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.at-flex-strip div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.at-flex-strip div.align-center {
  align-items: center;
}
.at-flex-strip div.flex-small {
  flex: 0.75;
}
.at-flex-strip .at-flex-strip {
  flex-direction: row;
}
.at-flex-strip .text,
.at-flex-strip .quiz {
  flex: 2;
}
.at-flex-wrap {
  width: 100%;
  /* special case for draggables  lesson 2 slide 7*/
}
.at-flex-wrap > ul,
.at-flex-wrap > ol,
.at-flex-wrap > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  container-type: inline-size;
  container-name: component-flex-wrap;
  list-style-position: inside;
}
.at-flex-wrap.at-flex-wrap-2 > ul > picture,
.at-flex-wrap.at-flex-wrap-2 > ol > picture,
.at-flex-wrap.at-flex-wrap-2 > div > picture,
.at-flex-wrap.at-flex-wrap-2 > ul > figure,
.at-flex-wrap.at-flex-wrap-2 > ol > figure,
.at-flex-wrap.at-flex-wrap-2 > div > figure,
.at-flex-wrap.at-flex-wrap-2 > ul > div,
.at-flex-wrap.at-flex-wrap-2 > ol > div,
.at-flex-wrap.at-flex-wrap-2 > div > div,
.at-flex-wrap.at-flex-wrap-2 > ul > li,
.at-flex-wrap.at-flex-wrap-2 > ol > li,
.at-flex-wrap.at-flex-wrap-2 > div > li,
.at-flex-wrap.at-flex-wrap-2 > ul > p,
.at-flex-wrap.at-flex-wrap-2 > ol > p,
.at-flex-wrap.at-flex-wrap-2 > div > p {
  width: calc(100% / 2);
}
.at-flex-wrap.at-flex-wrap-3 > ul > picture,
.at-flex-wrap.at-flex-wrap-3 > ol > picture,
.at-flex-wrap.at-flex-wrap-3 > div > picture,
.at-flex-wrap.at-flex-wrap-3 > ul > figure,
.at-flex-wrap.at-flex-wrap-3 > ol > figure,
.at-flex-wrap.at-flex-wrap-3 > div > figure,
.at-flex-wrap.at-flex-wrap-3 > ul > div,
.at-flex-wrap.at-flex-wrap-3 > ol > div,
.at-flex-wrap.at-flex-wrap-3 > div > div,
.at-flex-wrap.at-flex-wrap-3 > ul > li,
.at-flex-wrap.at-flex-wrap-3 > ol > li,
.at-flex-wrap.at-flex-wrap-3 > div > li,
.at-flex-wrap.at-flex-wrap-3 > ul > p,
.at-flex-wrap.at-flex-wrap-3 > ol > p,
.at-flex-wrap.at-flex-wrap-3 > div > p {
  width: calc(100% / 3);
}
.at-flex-wrap.at-flex-wrap-5 > ul > picture,
.at-flex-wrap.at-flex-wrap-5 > ol > picture,
.at-flex-wrap.at-flex-wrap-5 > div > picture,
.at-flex-wrap.at-flex-wrap-5 > ul > figure,
.at-flex-wrap.at-flex-wrap-5 > ol > figure,
.at-flex-wrap.at-flex-wrap-5 > div > figure,
.at-flex-wrap.at-flex-wrap-5 > ul > div,
.at-flex-wrap.at-flex-wrap-5 > ol > div,
.at-flex-wrap.at-flex-wrap-5 > div > div,
.at-flex-wrap.at-flex-wrap-5 > ul > li,
.at-flex-wrap.at-flex-wrap-5 > ol > li,
.at-flex-wrap.at-flex-wrap-5 > div > li,
.at-flex-wrap.at-flex-wrap-5 > ul > p,
.at-flex-wrap.at-flex-wrap-5 > ol > p,
.at-flex-wrap.at-flex-wrap-5 > div > p {
  width: calc(100% / 5);
}
.at-flex-wrap.at-flex-wrap-3 .draggable {
  height: 44rem;
}
.at-flex-wrap.at-flex-wrap-3 .draggable ol {
  height: 44rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  container-type: inline-size;
  container-name: component-flex-wrap;
  list-style-position: inside;
}
.at-flex-wrap.at-flex-wrap-3 .draggable ol li {
  margin: 3px;
  width: calc((100% - 18px) / 3);
  height: 20rem;
}
.at-flex-reveal:focus {
  outline: 1px dotted #ccc;
  border-radius: 5px;
}
.at-flex-reveal {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: calc(var(--inner-padding) / 3);
  cursor: pointer;
}
.at-flex-reveal > picture,
.at-flex-reveal > figure {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  aspect-ratio: unset;
}
.at-flex-reveal > picture img,
.at-flex-reveal > figure img {
  max-width: 100%;
  max-height: 100%;
}
.at-flex-reveal .caption {
  opacity: 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: calc(var(--inner-padding) / 3);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  background-color: white;
  box-shadow: var(--shadow-2);
}
.at-flex-reveal .caption p {
  display: initial;
}
.at-flex-reveal .title {
  padding-bottom: var(--inner-padding);
  font-size: calc(var(--font-size-medium) * 0.75);
  font-weight: normal;
  text-align: center;
  width: 100%;
  min-height: 2lh;
}
.at-flex-reveal input {
  opacity: 0;
  position: absolute;
}
.at-flex-reveal :checked ~ .caption {
  opacity: 1;
}
.at-flex-reveal :checked ~ .guide {
  display: none;
}
.at-flex-reveal :checked.incorrect ~ picture:after {
  display: flex;
  justify-content: center;
  align-items: center;
  content: '✗';
  color: white;
  font-size: var(--font-size-large);
  border-radius: 50%;
  background-color: var(--red);
  width: auto;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  z-index: 10;
}
.at-flex-reveal :checked.correct ~ picture:after {
  content: '✔';
  background-color: green;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: var(--font-size-large);
  border-radius: 50%;
  width: auto;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  z-index: 10;
}
.at-flex-reveal .guide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(var(--font-size-small) * 2);
}
.at-flex-reveal p {
  width: 100%;
  font-size: calc(var(--font-size-small) * 2);
}
.at-flex-reveal .text,
.at-flex-reveal .quiz {
  flex: 2;
}
.extra-activity:first-child {
  background-color: var(--light-blue);
}
.extra-activity {
  padding: var(--inner-padding) calc(var(--inner-padding) / 2);
}
.extra-activity h2 {
  width: 100%;
  max-width: none;
  font-weight: unset;
  padding: 0 0 var(--inner-padding) calc(var(--inner-padding) / 4);
}
.main-quiz-results li {
  --padding: calc(var(--inner-padding) / 2);
  /* Fix: Use calc() for custom property calculations */
  background-repeat: no-repeat;
  background-position: center left;
  padding: var(--padding) var(--padding) var(--padding) 60px;
  background-size: 50px;
}
.main-quiz-results .pass {
  color: green;
  list-style-type: none;
  /* Remove default list style */
  background-image: url("/img/icons/thumb-up.svg");
}
.main-quiz-results .fail {
  color: red;
  list-style-type: none;
  /* Remove default list style */
  background-image: url("/img/icons/thumb-down.svg");
}
@media screen and (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }
}
@font-face {
  font-family: Figtree;
  font-display: swap;
  font-weight: 300 700;
  src: url('../font/Figtree.woff2') format('woff2');
}
@font-face {
  font-family: Figtree;
  font-style: italic;
  font-display: swap;
  font-weight: 300 700;
  src: url('../font/Figtree-Italic.woff2') format('woff2');
}
@font-face {
  font-family: Figtree-Black;
  font-display: swap;
  font-weight: 700 900;
  src: url('../font/Figtree.woff2') format('woff2');
}
@font-face {
  font-family: Figtree-Black;
  font-style: italic;
  font-display: swap;
  font-weight: 700 900;
  src: url('../font/Figtree-Italic.woff2') format('woff2');
}
@font-face {
  font-family: OpenSans;
  font-display: swap;
  font-weight: 300 900;
  src: url('../font/OpenSans.woff2') format('woff2');
}
@font-face {
  font-family: OpenSans;
  font-style: italic;
  font-display: swap;
  font-weight: 300 900;
  src: url('../font/OpenSans-Italic.woff2') format('woff2');
}
:root {
  --gun-metal: #102633;
  --oxford-blue: #00274D;
  --color-1a: var(--oxford-blue);
  --color-1b: var(--gun-metal);
  /* Colors */
  --white: #fffffe;
  --ocean-readable: var(--color-1a);
  --ocean-readable-companion: var(--color-1b);
  --ocean: #001030;
  --ocean-trans: rgba(0, 16, 48, 0.95);
  --orange: #eb8c32;
  --cyan: #00a5d7;
  --light-blue: #DDEDF4;
  /*(221,237,244) */
  --yellow: #feda1a;
  --green: #85bf41;
  --green2: #add475;
  --pink: #dd4b8e;
  --red: #e41e38;
  --bluegreen: #009c81;
  --lightgreen: #d9f4ee;
  --purple: #9932cc;
  /* Amethyst */
  --color-light: white;
  --color-dark: black;
  /* extra colors */
  --dark-cyan: #017bc4;
  --dark-yellow: #fdb735;
  --pale-green: #add475;
  --pale-orange: #f5c288;
  --pale-yellow: #fffa8a;
  --pale-red: #f2b06b;
  --pale-bluegreen: #b4dfd4;
  --pale-pink: #eba3bf;
  --pale-light-blue: #ebf5fb;
  /* extra contrast when used on ocean bg */
  --bright-cyan: #00b0e6;
  --bright-pink: #ff80b9;
  /* faded/transparent colors */
  --faded-ocean: #00103020;
  --faded-orange: #eb8c3220;
  --faded-cyan: #00a5d720;
  --faded-light-blue: #DDEDF420;
  --faded-yellow: #feda1a20;
  --faded-green: #85bf4120;
  --faded-green2: #add47520;
  --faded-pink: #dd4b8e20;
  --faded-red: #e41e3820;
  --faded-bluegreen: #009c8120;
  --faded-lightgreen: #d9f4ee20;
  --faded-purple: #9932cc20;
  --faded-dark-cyan: #017bc420;
  --faded-dark-yellow: #fdb73520;
  --faded-green80: #85bf41b0;
  --faded-red80: #e41e38b0;
  --faded-white: #fffffe20;
  --walt-bg-color: var(--green2);
  --next-color: var(--bluegreen);
  --next-arrow-color: var(--white);
  --focus-color: #444;
  /* Sizing */
  --ratio: 1.4;
  --s0: 1rem;
  --s1: calc(var(--s0) * var(--ratio));
  --s2: calc(var(--s1) * var(--ratio));
  --s3: calc(var(--s2) * var(--ratio));
  --s4: calc(var(--s3) * var(--ratio));
  --s5: calc(var(--s4) * var(--ratio));
  --s-1: calc(var(--s0) / var(--ratio));
  --s-2: calc(var(--s-1) / var(--ratio));
  --s-3: calc(var(--s-2) / var(--ratio));
  --s-4: calc(var(--s-3) / var(--ratio));
  --s-5: calc(var(--s-4) / var(--ratio));
  /* Layout */
  --measure: 60ch;
  --header-height: 130px;
  --footer-height: 140px;
  --max-page-width: 1200px;
  --max-content-width: 1000px;
  --min-content-width: 700px;
  /* Typography */
  --main-font: OpenSans, sans-serif;
  --title-font: OpenSans, sans-serif;
  --font-size-small: var(--s-1);
  --font-size-base: var(--s0);
  --font-size-biggish: var(--s1);
  --font-size-big: var(--s2);
  font-family: var(--main-font);
  --font-weight-black: 900;
  --font-weight-bold: 700;
  --font-weight-semi-bold: 600;
  --font-weight-regular: 400;
  --font-weight-light: 300;
  /* Borders */
  --border-thin: var(--s-5);
  --border-thick: var(--s-3);
  /* Shadows */
  --shadow-3: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
    rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  /* Animation */
  --animation-scale-up-some: scale-up-some 0.5s var(--ease-3);
}
@keyframes scale-up-some {
  to {
    transform: scale(1.1);
  }
}
/* Color Classes */
.white {
  --fg-color: var(--white);
  color: var(--white);
}
.pink {
  --fg-color: var(--pink);
  color: var(--pink);
}
.red {
  --fg-color: var(--red);
  color: var(--red);
}
.green {
  --fg-color: var(--green);
  color: var(--green);
}
.orange {
  --fg-color: var(--orange);
  color: var(--orange);
}
.cyan {
  --fg-color: var(--cyan);
  color: var(--cyan);
}
.yellow {
  --fg-color: var(--yellow);
  color: var(--yellow);
}
.bluegreen {
  --fg-color: var(--bluegreen);
  color: var(--bluegreen);
}
.bright-cyan {
  --fg-color: var(--bright-cyan);
  color: var(--bright-cyan);
}
.bright-pink {
  --fg-color: var(--bright-pink);
  color: var(--bright-pink);
}
/* Background Color Classes */
.bg-pink {
  background-color: var(--pink);
}
.bg-red {
  background-color: var(--red);
}
.bg-green {
  background-color: var(--green);
}
.bg-green2 {
  background-color: var(--green2);
}
.bg-orange {
  background-color: var(--orange);
}
.bg-cyan {
  background-color: var(--cyan);
}
.bg-yellow {
  background-color: var(--yellow);
}
.bg-bluegreen {
  background-color: var(--bluegreen);
}
.bg-pale-light-blue {
  background-color: var(--pale-light-blue);
}
/* Global Styles */
* {
  box-sizing: border-box;
}
html {
  /*
        Scale the default browser font size from 16px to 10px
        This means that since rems are based on the root font-size
        the 1rem = 10px.  Everything is now in decimal.

        However rems will likely only be used when we DONT want something to scale.
    */
  font-size: 62.5%;
}
body {
  margin: 0;
  font-family: var(--main-font);
  font-weight: var(--font-weight-regular);
  color: var(--ocean-readable);
  background-color: var(--white);
  font-size: clamp(1rem, 3vw, 20px);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  max-width: 60ch;
  text-wrap: balance;
  font-size: clamp(2rem, 3vw, 4rem);
  font-family: var(--title-font);
  font-weight: var(--font-weight-bold);
}
p,
li,
blockquote {
  text-wrap: auto;
  font-size: clamp(1rem, 2.25vw, 3rem);
}
h1 {
  font-weight: var(--font-weight-black);
}
h2 {
  font-weight: var(--font-weight-black);
  margin: 0;
  line-height: 1.2;
}
h3 {
  font-weight: var(--font-weight-black);
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
h4 {
  line-height: 1.2;
  padding: 0;
  font-weight: var(--font-weight-bold);
  margin: 0;
}
h6 {
  font-weight: var(--font-weight-bold);
  font-size: clamp(1rem, 3vw, 2rem);
  line-height: 1.2;
  padding: 0;
  margin-block: 1em;
}
img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
ul {
  padding: 0;
  margin: 0;
  padding-inline-start: 1em;
}
iframe[src*="youtube.com"] {
  margin-block: 1em;
  display: block;
  inline-size: clamp(400px, 100%, 800px);
  margin-inline: auto;
  aspect-ratio: var(--aspect-ratio);
}
blockquote {
  margin: 0;
  flex: 0;
  font-style: normal;
}
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove default browser focus for mouse users */
*:focus:not(:focus-visible) {
  outline: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  /* Prevent line breaks */
  border: 0;
}
.dragging {
  opacity: 0.5;
}
.draggable li {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.overlap .droppable {
  position: relative;
  top: -20%;
  width: 100%;
  aspect-ratio: 1;
  border: 4px dotted var(--platinum);
  background-color: var(--faded-white);
  border-radius: 50%;
}
.overlap .droppable.dropped {
  border: 4px solid var(--white);
}
.dragItem {
  cursor: move;
  -webkit-user-select: none;
  user-select: none;
  transition: all 0.2s;
  border: 4px solid;
  outline: none;
}
.dragItem[data-order="0"] {
  border-color: var(--orange);
}
.dragItem[data-order="1"] {
  border-color: var(--cyan);
}
.dragItem[data-order="2"] {
  border-color: var(--pink);
}
.dragItem[data-order="3"] {
  border-color: var(--green);
}
.dragItem:hover {
  box-shadow: var(--shadow-1);
  animation: var(--animation-shake-z), var(--animation-scale-up-some) forwards;
  animation-timing-function: var(--ease-elastic-in-out-4);
}
.dragItem.round {
  border-radius: 50%;
}
.dragItem.round img {
  scale: 1.01;
}
.dragItem.disabled {
  pointer-events: none;
  opacity: 0;
}
.over {
  border: 2px dashed #000;
}
/* Components */
.next {
  position: fixed;
  bottom: 0;
  right: 10px;
  z-index: 101;
  height: var(--footer-height);
  aspect-ratio: 1/1;
  padding: 10px;
}
.next > svg {
  width: 100px;
  height: 100px;
  z-index: 1000;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.next > svg:hover {
  animation: var(--animation-shake-z);
}
.slot {
  position: relative;
  outline: 10px solid var(--pink);
  width: 100%;
  height: 100%;
}
figure {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: var(--s2);
}
figure iframe,
figure img {
  max-width: 100%;
  max-height: 100%;
}
figure figcaption {
  font-family: var(--main-font);
  overflow-wrap: normal;
  padding: var(--s1) 0;
  text-align: center;
  font-weight: var(--font-weight-regular);
  line-height: 1.25;
}
figure.polaroid {
  transform: rotate(-2deg);
  box-shadow: var(--shadow-3);
  border: var(--s-1) solid white;
  background-color: white;
  padding: 0;
}
figure.polaroid > img {
  max-width: 100%;
}
figure.polaroid > figcaption {
  font-weight: var(--font-weight-regular);
  box-shadow: none;
  background-color: white;
}
.video-play {
  background-image: url("/img/p/video-play-button.svg");
  background-repeat: no-repeat;
  background-position: center right;
  padding: 2rem 6rem 2rem 2rem;
  background-size: 8%;
}
.video-play span {
  text-decoration: underline;
}
a.video {
  background-image: url("/img/p/video-play-button.svg");
  background-repeat: no-repeat;
  background-position: center left;
  padding-inline-start: 0.9lh;
  background-size: 0.8lh;
}
.watch-this {
  background-image: url("/img/p/video-play-button.svg");
  background-repeat: no-repeat;
  background-position: top left;
  padding-inline-start: 3ch;
  background-size: 1lh;
}
body > svg {
  position: absolute;
}
#fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#fullscreen-overlay.active {
  display: flex;
}
#fullscreen-overlay > img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: var(--shadow-4);
  border: white var(--s-1) solid;
  border-radius: var(--s-2);
  cursor: pointer;
}
img.toggle {
  cursor: pointer;
}
.at-overhang-top {
  position: relative;
}
.at-overhang-top picture {
  position: absolute;
  bottom: 0;
  left: -80px;
  align-items: flex-end;
  height: 300%;
  width: 150%;
}
.at-overhang-top picture img {
  object-fit: contain;
}
.shadow3 {
  box-shadow: var(--shadow-3);
}
/*  BEGIN NEW STYLES DEC 24*/
.lesson_1 .slide_2 .main-layout-1 picture {
  height: 8lh;
}
.lesson_1 .slide_3 figure {
  max-width: 20ch;
}
.lesson_1 .slide_4 picture.man img {
  width: 70%;
}
.lesson_1 .slide_4 picture.molecule {
  width: 60%;
}
.lesson_1 .slide_6 .at-flex-reveal {
  max-width: 20ch;
  align-items: center;
}
.lesson_1 .slide_6 .at-flex-reveal p {
  font-size: calc(var(--font-size-medium) * 0.6);
}
.lesson_1 .slide_9 main p {
  width: 60%;
}
.lesson_1 .slide_7 .caption {
  background-color: var(--pale-light-blue);
  margin-inline: auto;
}
.lesson_1 .slide_7 .caption p {
  max-width: 40ch;
}
.lesson_1 .slide_7 main .at-content {
  width: 80%;
  aspect-ratio: 3/2.5;
  min-width: 800px;
  max-width: 1600px;
}
.lesson_1 .slide_7 .gas {
  position: absolute;
  width: 25%;
}
.lesson_1 .slide_7 .gas :checked ~ picture:after {
  top: 85%;
  height: 40%;
  background-color: var(--red);
  border-radius: var(--radius-blob-1);
}
.lesson_1 .slide_7 .gas :checked.correct ~ picture:after {
  background-color: var(--green);
  border-radius: var(--radius-blob-3);
}
.lesson_1 .slide_7 .gas:nth-child(1) {
  left: 3%;
  top: 2%;
}
.lesson_1 .slide_7 .gas:nth-child(2) {
  left: 50%;
  top: 5%;
  z-index: 20;
}
.lesson_1 .slide_7 .gas:nth-child(3) {
  left: 68%;
  top: 30%;
  z-index: 10;
}
.lesson_1 .slide_7 .gas:nth-child(4) {
  left: 5%;
  top: 36%;
  z-index: 10;
}
.lesson_1 .slide_7 .gas:nth-child(5) {
  left: 62%;
  top: 60%;
}
.lesson_1 .slide_7 .gas:nth-child(6) {
  left: 37%;
  top: 35%;
}
.lesson_1 .slide_7 .gas:nth-child(7) {
  left: 20%;
  top: 70%;
}
.lesson_2 .slide_2 picture.bigger {
  width: 100%;
  aspect-ratio: unset;
}
.lesson_2 .slide_4 picture {
  aspect-ratio: unset;
}
.lesson_2 .slide_5 picture {
  aspect-ratio: unset;
}
.lesson_2 .slide_5 iframe {
  flex: 1.15;
}
.lesson_2 .slide_7 .at-flex-reveal .caption,
.lesson_2 .slide_8 .at-flex-reveal .caption,
.lesson_2 .slide_9 .at-flex-reveal .caption {
  background-color: var(--pale-light-blue);
}
.lesson_2 .slide_7 .at-flex-reveal p,
.lesson_2 .slide_8 .at-flex-reveal p,
.lesson_2 .slide_9 .at-flex-reveal p {
  font-size: calc(var(--font-size-medium) * 0.7);
}
.lesson_2 .slide_10 picture.smaller {
  height: 10lh;
}
.lesson_2 .slide_11 main picture {
  width: 100%;
}
.lesson_2 .slide_12 picture.smaller {
  height: 7lh;
}
.lesson_3 .alt.main-layout-2 {
  background-color: var(--faded-green);
}
.lesson_3 .slide_2 p {
  width: 75%;
}
.lesson_3 .slide_4 .even picture {
  min-width: 5lh;
}
.lesson_3 .slide_5 .alt h6 {
  color: var(--green);
}
.lesson_3 .slide_5 .at-box-1 {
  background-color: var(--pale-orange);
}
.lesson_3 .slide_5 picture {
  max-width: 30ch;
}
.lesson_3 .slide_5 .footprints + picture {
  flex: 0;
  width: 300px;
}
.lesson_3 .slide_5 .footprints picture {
  flex: 0;
  width: 200px;
}
.lesson_3 .slide_5 .calc-co2 {
  justify-content: start;
  margin-left: var(--s1);
}
.lesson_3 .slide_5 .calc-co2 h5 {
  margin-top: 0;
  margin-bottom: 0.6lh;
}
.lesson_3 .slide_5 .calc-co2 picture {
  width: 200px;
}
.lesson_3 .slide_6 .big-tree {
  justify-self: end;
  display: flex;
  flex-direction: row;
}
.lesson_3 .slide_6 .big-tree picture {
  height: 6lh;
  scale: 1.5;
}
.lesson_3 .slide_7 picture.smaller {
  height: 10lh;
}
.lesson_3 .slide_9 main .at-content {
  width: 80%;
  aspect-ratio: 2/3;
  min-width: 800px;
  max-width: 1200px;
}
.lesson_3 .slide_9 .tree {
  position: absolute;
  width: 25%;
}
.lesson_3 .slide_9 .tree picture {
  border: 1.2rem solid;
  border-radius: 50%;
}
.lesson_3 .slide_9 .tree picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  scale: 1.01;
  /* cover fringing on images */
}
.lesson_3 .slide_9 .tree :checked ~ picture:after {
  display: none;
}
.lesson_3 .slide_9 .tree :checked.correct ~ picture:after {
  display: none;
}
.lesson_3 .slide_9 .tree:nth-child(1) {
  left: 0%;
  top: 10%;
  width: 31%;
  z-index: 15;
}
.lesson_3 .slide_9 .tree:nth-child(1) picture {
  border-color: var(--orange);
}
.lesson_3 .slide_9 .tree:nth-child(2) {
  left: 35%;
  top: 5%;
  z-index: 20;
  width: 25%;
}
.lesson_3 .slide_9 .tree:nth-child(2) picture {
  border-color: var(--green);
}
.lesson_3 .slide_9 .tree:nth-child(3) {
  left: 75%;
  top: 40%;
  z-index: 10;
  width: 250px;
}
.lesson_3 .slide_9 .tree:nth-child(3) picture {
  border-color: var(--pink);
}
.lesson_3 .slide_9 .tree:nth-child(4) {
  left: 65%;
  top: 0%;
  z-index: 15;
  width: 44%;
}
.lesson_3 .slide_9 .tree:nth-child(4) picture {
  border-color: var(--yellow);
}
.lesson_3 .slide_9 .tree:nth-child(5) {
  left: 0%;
  top: 65%;
  width: 37%;
}
.lesson_3 .slide_9 .tree:nth-child(5) picture {
  border-color: var(--dark-cyan);
}
.lesson_3 .slide_9 .tree:nth-child(6) {
  left: 25%;
  top: 30%;
  width: 50%;
  z-index: 10;
}
.lesson_3 .slide_9 .tree:nth-child(6) picture {
  border-color: var(--red);
}
.lesson_3 .slide_9 .tree:nth-child(7) {
  left: 75%;
  top: 70%;
  width: 25%;
}
.lesson_3 .slide_9 .tree:nth-child(7) picture {
  border-color: var(--bluegreen);
}
.lesson_3 .slide_14 picture.smaller {
  flex: 0.2;
  aspect-ratio: unset;
}
.lesson_4 .slide_4 .hine-box {
  border-radius: var(--s1);
  padding: var(--s2);
  box-shadow: var(--shadow-2);
  background-color: var(--faded-orange);
}
.lesson_4 .slide_4 .hine-box img {
  width: 15ch;
}
.lesson_4 .slide_5 picture {
  width: 100%;
}
.lesson_4 .slide_5 .main-layout-2 > .at-content {
  gap: 0;
}
.lesson_4 .slide_5 .draggable {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  padding-block-end: var(--s1);
}
.lesson_4 .slide_5 .draggable .at-flex-strip {
  align-items: space-around;
  gap: var(--s1);
}
.lesson_4 .slide_5 .dragItem {
  font-size: calc(var(--font-size-small) * 2);
  flex: 1;
  border-radius: var(--s-1);
  border: none;
  padding: var(--s-1);
}
.lesson_4 .slide_5 .dragItem.disabled {
  height: 0;
  overflow: hidden;
}
.lesson_4 .slide_5 .dragItem[data-order="0"] {
  background-color: var(--faded-orange);
}
.lesson_4 .slide_5 .dragItem[data-order="1"] {
  background-color: var(--faded-cyan);
}
.lesson_4 .slide_5 .dragItem[data-order="2"] {
  background-color: var(--faded-pink);
}
.lesson_4 .slide_5 .dragItem[data-order="3"] {
  background-color: var(--faded-green);
}
.lesson_4 .slide_5 .dragItem[data-order="4"] {
  background-color: var(--faded-yellow);
}
.lesson_4 .slide_5 .dragItem[data-order="5"] {
  background-color: var(--faded-bluegreen);
}
.lesson_4 .slide_5 .dragItem[data-order="6"] {
  background-color: var(--faded-purple);
}
.lesson_4 .slide_5 .dragItem[data-order="7"] {
  background-color: var(--faded-red);
}
.lesson_4 .slide_5 .drops .at-flex-strip {
  gap: var(--s1);
  padding-block-end: var(--s1);
}
.lesson_4 .slide_5 .drops picture {
  margin-block-end: -1lh;
}
.lesson_4 .slide_5 .dt {
  justify-content: start;
  gap: var(--s1);
}
.lesson_4 .slide_5 .dt > * {
  flex: 1;
}
.lesson_4 .slide_5 .dt .droppable {
  z-index: 10;
  font-size: calc(var(--font-size-small) * 2);
  text-align: center;
  border-radius: var(--s-1);
  background-color: var(--pale-light-blue);
  border: 2px dotted var(--bluegreen);
  width: 100%;
  padding: var(--s-1);
}
.lesson_4 .slide_5 .dt .droppable.dropped {
  height: auto;
  text-align: unset;
  border: 2px solid var(--bluegreen);
}
.lesson_4 .slide_8 .at-content .bike img {
  width: 80%;
}
.lesson_4 .slide_9 picture {
  aspect-ratio: unset;
}
.lesson_4 .slide_9 .signals {
  gap: 0;
}
.lesson_4 .slide_9 figure img {
  height: 15lh;
  max-height: 15lh;
  min-height: 15hl;
}
.lesson_4 .slide_9 figure figcaption::before {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1ch;
}
.lesson_4 .slide_9 figure:nth-of-type(1) > figcaption::before {
  content: "1";
  background-color: var(--pale-orange);
}
.lesson_4 .slide_9 figure:nth-of-type(2) > figcaption::before {
  content: "2";
  background-color: var(--pale-bluegreen);
}
.lesson_4 .slide_9 figure:nth-of-type(3) > figcaption::before {
  content: "3";
  background-color: var(--pale-pink);
}
.lesson_4 .slide_10 .at-flex-reveal {
  align-items: center;
}
.lesson_4 .slide_10 .at-flex-reveal picture {
  min-height: 9lh;
}
.lesson_4 .slide_10 .at-flex-reveal picture::after {
  display: none;
}
.lesson_4 .slide_12 .component-risky-behaviours .count {
  background-color: var(--pale-green);
  padding: 1ch;
  border-radius: var(--s-1);
  text-align: center;
  margin-inline: auto;
  margin-block-end: var(--s0);
  position: sticky;
  top: var(--s1);
  z-index: 20;
  box-shadow: var(--shadow-3);
}
.lesson_4 .slide_12 .component-risky-behaviours .count.done {
  animation: var(--animation-shake-z), var(--animation-scale-up-some) forwards;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours input {
  opacity: 0;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours.done input {
  opacity: 1;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours {
  position: relative;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  counter-reset: warn-count;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d {
  position: absolute;
  width: 8%;
  height: 11%;
  counter-increment: warn-count;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops input {
  appearance: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: radial-gradient(circle at center, transparent 0, transparent 50%, var(--yellow) 100%);
  border: 2px solid var(--orange);
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops input:checked {
  opacity: 1;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .caption {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  min-width: 20ch;
  min-height: 3lh;
  padding: 1ch;
  display: none;
  border-radius: var(--s-1);
  box-shadow: var(--shadow-3);
  background-color: var(--pale-yellow);
  color: var(--ocean);
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .caption::before {
  position: absolute;
  top: -0.5lh;
  left: -0.5lh;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  content: counter(warn-count);
  margin-inline-end: 1ch;
  width: 1lh;
  height: 1lh;
  font-size: 0.8em;
  padding: 0.1em;
  border-radius: 50%;
  border: 3px solid var(--pale-yellow);
  background-color: var(--ocean);
  color: var(--pale-yellow);
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(5) > .caption {
  left: -50%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(6) > .caption {
  left: -50%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(7) > .caption {
  left: -150%;
  top: -230%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(10) > .caption {
  top: -10%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops input:checked + .caption {
  display: block;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(1) {
  left: 29%;
  top: 18%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(2) {
  left: 6%;
  top: 24%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(2) {
  left: 32%;
  top: 27%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(3) {
  left: 54.5%;
  top: 28%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(4) {
  left: 61.5%;
  top: 38%;
  width: 12%;
  height: 15%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(5) {
  width: 12%;
  height: 15%;
  left: 72%;
  top: 41%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(6) {
  width: 12%;
  height: 15%;
  left: 71.5%;
  top: 58%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(7) {
  width: 12%;
  height: 15%;
  left: 88%;
  top: 48%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(8) {
  width: 13%;
  height: 17%;
  left: 37.5%;
  top: 55%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(9) {
  width: 10%;
  height: 15%;
  left: 32%;
  top: 45%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(10) {
  width: 36%;
  height: 33%;
  left: 2%;
  top: 66%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(11) {
  left: 6%;
  top: 24%;
}
.lesson_4 .slide_12 .component-risky-behaviours .risky-behaviours .drops .d:nth-of-type(12) {
  width: 10%;
  height: 20%;
  left: 0%;
  top: 34%;
}
.lesson_5 .underlap {
  margin-top: -150px;
  z-index: -10;
}
.lesson_5 .slide_10 ol {
  list-style-image: url('/img/trans/ATHOP-icon.jpg');
}
.lesson_6 .jaunty {
  rotate: -5deg;
}
.lesson_6 .border {
  border: 2px solid var(--faded-ocean);
}
.lesson_6 .float-right {
  float: right;
  width: 35%;
  margin-left: 2ch;
}
.lesson_6 input.inline {
  width: 10ch;
  margin-inline-start: 2ch;
  border: 2px solid var(--green);
  border-radius: 3px;
}
.lesson_6 .slide_3 .ptbutton {
  vertical-align: baseline;
  height: 0.8lh;
  border: 1px solid var(--ocean);
  border-radius: var(--s-1);
  padding-inline: 1ch;
}
.lesson_6 .slide_5 textarea {
  width: 100%;
  margin-block-end: 1lh;
}
.lesson_6 table.editable td {
  padding: 0;
}
.lesson_6 table.editable textarea {
  font-size: calc(2 * var(--font-size-small));
  background-color: transparent;
  border: none;
  width: 100%;
  height: 100%;
  margin: 0;
  min-height: 2lh;
  max-height: 2lh;
  min-width: 15ch;
  max-width: 25ch;
}
.bwq {
  counter-reset: question-count;
}
.bwq .quiz-title::before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  content: counter(question-count);
  background-color: var(--ocean);
  color: var(--white);
  border-radius: 50%;
  height: 1lh;
  min-width: 1lh;
  margin-inline-end: 1ch;
  padding: 3px;
  font-size: 0.8em;
}
.bwq picture {
  max-height: 3lh;
}
.bwq .at-flex-strip {
  counter-increment: question-count;
  padding-top: 0.5lh;
}
.bwq .at-flex-strip:nth-child(even) {
  background-color: var(--pale-light-blue);
}
/*# sourceMappingURL=global.css.map */