@import "https://unpkg.com/open-props";
/* Base styles (desktop) */
header {
  background: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--header-height);
  padding: 0 1vw;
}
header h1.logo {
  white-space: nowrap;
  color: var(--green);
}
header img,
header svg {
  height: 50px;
  aspect-ratio: 1/1;
}
header img.smaller,
header svg.smaller {
  height: 46px;
}
.header-logo {
  width: 200px;
  height: var(--header-height);
}
nav {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
/* Main navigation */
ul.main-nav {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0 50px 0 0;
  height: 100%;
  position: relative;
}
ul.main-nav > li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 2vw 1rem;
}
ul.main-nav > li > a > svg,
ul.main-nav > li > a > span {
  color: white;
}
ul.main-nav > li:hover {
  background: white;
}
ul.main-nav > li:hover > a > svg,
ul.main-nav > li:hover > a > span,
ul.main-nav > li:hover > svg,
ul.main-nav > li:hover > div > span {
  color: var(--ocean);
}
/* Submenu styling */
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;
}
ul.main-nav > li > div > ul a {
  padding: 0.3em;
  display: block;
  color: white;
}
ul.main-nav > li > div > ul a:hover {
  background: white;
  color: var(--ocean);
}
ul.main-nav > li:hover > div > ul {
  display: block;
}
ul.main-nav > li > div > ul li {
  display: block;
  padding: 0.5em 1em;
  white-space: nowrap;
}
ul.main-nav > li > div > ul li a {
  color: inherit;
  text-decoration: none;
}
/* Anchor wrapping adjustments */
ul.main-nav > li > a {
  display: contents;
}
/* Mobile version */
@media only screen and (max-width: 767px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }
  nav,
  ul.main-nav {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  ul.main-nav {
    padding: 0;
  }
  ul.main-nav > li {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0.5em 1em;
  }
  /* Make submenus positioned static on mobile */
  ul.main-nav > li > div > ul {
    position: static;
    width: 100%;
    /* Initially hide submenus */
    display: none;
    border: none;
    padding: 0;
  }
  /* When the parent li is given an active class, show submenu */
  ul.main-nav > li.active > div > ul {
    display: block;
  }
}
footer {
  width: 100%;
  background: var(--ocean);
  color: var(--white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: var(--footer-height);
  font-size: 0.7em;
  font-weight: var(--font-weight-regular);
}
footer svg {
  color: var(--white);
  height: 70px;
  width: 70px;
}
footer div:nth-of-type(2) svg {
  height: 30px;
  width: auto;
}
footer div {
  display: flex;
  flex-direction: column;
  margin: 1rem;
}
footer a {
  color: var(--white);
}
:root {
  --inner-padding: clamp(var(--s2), 4vw, var(--s2));
  --outer-padding: clamp(var(--s2), 4vw, var(--s4));
  --half-block-width: 50%;
  --max-screen-width: 1280px;
  --font-size-large: clamp(var(--s2), 3vw, 3.5vh);
  --font-size-medium: clamp(var(--s1), 2.25vw, 2.7vh);
  --font-size-small: clamp(var(--s0), 1.5vw, 1.8vh);
  --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;
}
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 {
  /*
      Intent: to be the global default for all pictures across the site.
              Where the rule breaks the intent is to override these settings.
  */
  width: var(--half-block-width);
  aspect-ratio: 1;
}
picture img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
}
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;
}
/*
    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;
}
.at-content {
  /*
          ASSUMPTION 1: ALL CONTENT DEFAULTS TO ROWS
  */
  xborder: 1px dotted red;
  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-screen-width);
  width: 100%;
  margin: 0 auto;
  gap: var(--outer-padding);
}
.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 {
  font-size: calc(var(--font-size-medium) * 0.75);
  text-wrap: pretty;
  padding: 0 0 1.5rem;
  margin: 0;
  text-align: initial;
  position: relative;
  line-height: 1.25;
  overflow-wrap: normal;
}
.at-content li {
  font-size: calc(var(--font-size-medium) * 0.75);
}
.at-content p {
  padding-bottom: var(--inner-padding / 2);
}
.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 {
  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 {
  background: #eee;
  border: 1px solid #ccc;
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  transform: rotate(90deg);
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 0 0 3px #ccc;
}
.at-host p {
  font-size: calc(var(--font-size-medium) * 0.75);
  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: 1.2;
}
.at-host picture img {
  height: unset;
}
.at-host div {
  flex: 3;
  padding: var(--inner-padding);
}
.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-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 {
  position: static;
  /* Sticky positioning */
  bottom: 0;
  /* Sticks to the bottom of the viewport when scrolling */
  border-top: 1px solid var(--ocean);
  padding: var(--s1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  /* Optional: Prevent content bleed */
  z-index: 10;
  /* Ensure it stays above other content */
}
nav.pages a[role=button]:first-of-type {
  background-color: transparent;
  border: 2px solid var(--button-color);
  color: var(--button-color);
}
nav.pages 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 .component-walt p,
.at-walt .component-walt li {
  font-size: var(--font-size-small);
}
.at-walt .title {
  width: 100%;
}
.at-walt li {
  list-style-position: outside;
  list-style-type: "•";
  padding-left: 1rem;
}
.at-walt .component:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.at-walt .component:nth-child(2) ul {
  columns: 2;
  column-fill: auto;
  height: clamp(10lh, 100%, 15lh);
}
.at-walt .component:nth-child(2) li {
  break-inside: avoid-column;
}
.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: calc(var(--inner-padding) / 8);
}
.at-walt .icon {
  width: 1em;
  height: 1em;
  margin-right: calc(var(--inner-padding) / 2);
}
.at-walt hr {
  border: none;
  border-top: 2px solid var(--ocean);
  margin: min(1vw, 2vh) auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: var(--ghost-white);
}
th,
td {
  border: 3px solid var(--platinum);
  text-align: left;
  padding: calc(var(--inner-padding) / 2);
  font-size: calc(var(--font-size-medium) * 0.6);
}
th {
  font-weight: bold;
  background: var(--green);
}
tr:nth-child(even) {
  background: #fafafa;
}
.orderable,
.draggable {
  width: auto;
}
.orderable .success,
.draggable .success {
  background-color: var(--green);
}
.orderable ol,
.draggable ol {
  margin: 0;
  padding: 0;
}
.orderable li,
.draggable li {
  cursor: grab;
  background-color: var(--ghost-white);
  list-style-type: none;
  height: 10rem;
  font-size: calc(var(--font-size-medium) * 0.75);
  box-shadow: 0 0 5px var(--platinum);
  border: 1px solid var(--platinum);
  border-radius: 5px;
  margin: calc(var(--inner-padding) / 2) 0;
  padding: calc(var(--inner-padding) / 2);
  display: flex;
  align-items: center;
}
.orderable li::before,
.draggable li::before {
  padding-left: calc(var(--inner-padding) / 2);
  padding-right: calc(var(--inner-padding) / 2);
  margin-right: calc(var(--inner-padding) / 2);
  content: "⭥";
  border-right: 3px dashed var(--platinum);
}
.orderable li::before:active,
.draggable li::before:active {
  cursor: grabbing;
}
.draggable li::before {
  content: "✥";
}
.quiz {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.quiz h2 {
  color: var(--green);
  font-weight: 600;
  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;
}
.quiz label {
  background-color: var(--ghost-white);
  list-style-type: none;
  height: 10rem;
  width: 100%;
  font-size: calc(var(--font-size-medium) * 0.75);
  box-shadow: 0 0 5px var(--platinum);
  border: 1px solid var(--platinum);
  border-radius: 5px;
  margin: 0 0 calc(var(--inner-padding) / 2) 0;
  padding: calc(var(--inner-padding) / 2);
  display: flex;
  align-items: center;
}
input:focus + label {
  outline: 2px dashed hotpink;
  outline-offset: 2px;
  /* Adds space between the element and the outline */
}
.quiz label.correct {
  background-color: var(--green);
}
.quiz label.incorrect {
  background-color: red;
}
/* 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;
}
/* General Radio Button Styling */
.quiz input[type="radio"] {
  opacity: 0;
  position: absolute;
}
.quiz label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: calc(var(--inner-padding) / 2);
}
.quiz label::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 2px solid #555;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin-right: 5rem;
}
/* Hover Effect */
.quiz label:hover::before {
  background-color: #007bff;
}
.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 input:focus + label {
  outline: 2px dashed hotpink;
  outline-offset: 2px;
  /* Adds space between the element and the outline */
}
.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);
  container-type: inline-size;
  container-name: component-flex-strip;
}
.at-flex-strip.center {
  justify-content: center;
}
.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;
}
.at-flex-strip.center-two > picture,
.at-flex-strip.center-two > figure {
  max-width: calc(100% / 3);
}
.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 .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 {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: var(--inner-padding);
  container-type: inline-size;
  container-name: component-flex-reveal;
}
.at-flex-reveal .caption {
  filter: blur(10px);
}
.at-flex-reveal > div {
  display: flex;
  justify-content: space-evenly;
}
.at-flex-reveal > div h2 {
  font-size: var(--font-size-large);
}
.at-flex-reveal > div h2,
.at-flex-reveal > div label {
  width: 100%;
  text-align: center;
  margin: 0 0 calc(var(--inner-padding) / 2) 0;
}
.at-flex-reveal > div input {
  opacity: 0;
  position: absolute;
}
.at-flex-reveal > div input:focus + label {
  outline: 2px dashed hotpink;
  outline-offset: 2px;
}
.at-flex-reveal > div label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.at-flex-reveal > div .guide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(var(--font-size-small) * 2);
}
.at-flex-reveal > div :checked + label .caption {
  filter: blur(0);
}
.at-flex-reveal > div :checked + label .guide {
  display: none;
}
.at-flex-reveal > div p {
  width: 100%;
  text-align: center;
  /*Centering text here as it makes sense in this specific case.*/
  font-size: var(--font-size-medium);
}
.at-flex-reveal > picture,
.at-flex-reveal > figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 100px;
  min-width: 100px;
  aspect-ratio: unset;
}
.at-flex-reveal > picture img,
.at-flex-reveal > figure img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.at-flex-reveal div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.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");
}
@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-red: #f2b06b;
  --pale-bluegreen: #b4dfd4;
  --pale-pink: #eba3bf;
  /* 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;
  --walt-bg-color: var(--green2);
  --next-color: var(--bluegreen);
  --next-arrow-color: var(--white);
  --focus-color: hotpink;
  /* 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;
  /* 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;
}
/* 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);
}
/* 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);
}
/* 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-semi-bold);
  color: var(--ocean-readable);
  background-color: var(--white);
}
body,
h1,
h2,
h3,
h4,
p,
li,
blockquote {
  font-size: clamp(1rem, 2.5vw, 2.5vh);
}
h1,
h2,
h3,
h4 {
  max-width: 60ch;
  text-wrap: balance;
  font-size: clamp(1rem, 2.5vw, 2.5vh);
  font-family: var(--title-font);
  font-weight: var(--font-weight-bold);
}
p,
li,
blockquote {
  max-width: 60ch;
  text-wrap: auto;
  font-size: clamp(1rem, 2.5vw, 2.5vh);
}
/* For even rows */
p:nth-of-type(even) {
  color: var(--ocean-readable-companion);
}
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;
}
img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
ul {
  padding: 0;
  margin: 0;
}
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;
}
/* Global Focus Outline */
:focus {
  outline: 2px dashed var(--focus-color);
  /* Use a default color or a CSS variable */
  outline-offset: 2px;
  /* Adds space between the element and the outline */
}
/* 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;
}
.droppable-highlight {
  outline: 2px dashed gold;
  /* Use a default color or a CSS variable */
}
.disabled {
  pointer-events: none;
  opacity: 0.2;
}
.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: 2vw;
}
figure iframe,
figure img {
  max-width: 100%;
  max-height: 100%;
}
figure figcaption {
  font-family: var(--main-font);
  overflow-wrap: normal;
  padding: 1vw 0;
  text-align: center;
  font-weight: var(--font-weight-semi-bold);
  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;
}
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);
}
/*  BEGIN NEW STYLES DEC 24*/
.lesson_2 .slide_5 img {
  max-width: 30ch;
}
.lesson_2 .slide_9 main picture,
.lesson_2 .slide_8 main picture,
.lesson_2 .slide_10 main picture {
  justify-content: flex-start;
}
.lesson_2 .slide_9 main img,
.lesson_2 .slide_8 main img,
.lesson_2 .slide_10 main img {
  max-width: 250px;
  max-height: 250px;
}
.lesson_2 .slide_12 main picture {
  /*border: 1px solid red;*/
  width: 100%;
}
/*# sourceMappingURL=global.css.map */