*,
*::after,
*::before {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  outline: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior: none;
  position: relative;
  width: 100%;
  min-height: 100svh;
  text-rendering: optimizeSpeed;
}

:is(a) {
  background-color: transparent;
  text-decoration: none;
}
:is(a):link {
  color: inherit;
}
:is(a):visited {
  color: inherit;
}
:is(a):hover, :is(a):active {
  outline: 0;
}
:is(a):focus {
  outline: thin dotted;
}
:is(a):not([class]) {
  text-decoration-skip-ink: auto;
}

:is(button) {
  background: none;
  color: inherit;
  line-height: 1em;
  cursor: pointer;
}
:is(button) > * {
  pointer-events: none;
}

:is(img, picture) {
  border: 0;
  border-style: none;
  display: block;
  max-width: 100%;
}

:where(figure, picture) > img {
  height: auto;
}

:is(input, button, textarea, select) {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :has(:target) {
    scroll-behavior: smooth;
  }
}
:root {
  --page-rem-size: 16px;
  --rem: 0.0625rem;
  --em: 0.0625em;
  --vmax: 0.05208333333333vmax;
  --vmin: 0.09259259259259vmin;
  --grid-container: var(--em) * 1420;
  --grid-padding: 5dvw;
}

html {
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (width < 37.5rem) {
  html {
    font-size: max(16px, 4vw);
  }
}
@media (width >= 37.5625rem) {
  html {
    font-size: 1rem;
  }
}
@media (width > 1920px) {
  html {
    font-size: 0.8333333333vmax;
  }
}

@media (width < 37.5rem) {
  [desktop] {
    display: none !important;
    visibility: hidden;
  }
}

@media (width >= 37.5625rem) {
  [mobile] {
    display: none !important;
    visibility: hidden;
  }
}

@media (width < 64rem) {
  [expanded] {
    display: none !important;
    visibility: hidden;
  }
}

@media (width >= 64.0625rem) {
  [collapsed] {
    display: none !important;
    visibility: hidden;
  }
}

.container-grid {
  --padding-inline: 1.25rem;
  --fixed-max-width: var(--grid-container);
  --breakout-max-width: 2dvw;
  display: grid;
  grid-template-columns: [fluid-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-max-width)) [fixed-start] min(100% - var(--padding-inline) * 2, var(--fixed-max-width)) [fixed-end] minmax(0, var(--breakout-max-width)) [breakout-end] minmax(var(--padding-inline), 1fr) [fluid-end];
}
.container-grid > :not(.breakout, .fluid),
.container-grid > .fixed {
  grid-column: fixed;
}
.container-grid > .breakout {
  grid-column: breakout;
}
.container-grid > .fluid {
  grid-column: fluid;
}
.container-grid > .padded {
  padding: 1.25rem;
}

.stack-grid {
  display: grid;
  grid-template-areas: "stack";
  place-items: center;
}
.stack-grid > .stacked {
  grid-area: stack;
}

.column-grid {
  --_grid-column-count: var(--grid-column-count, 1);
  --_grid-column-gap: var(--grid-column-gap, 1rem);
  --_grid-row-gap: var(--grid-row-gap, 1rem);
  display: grid;
  grid-template-columns: repeat(var(--_grid-column-count), 1fr);
  grid-template-columns: repeat(var(--_grid-column-count), minmax(0, 1fr));
  column-gap: var(--_grid-column-gap);
  row-gap: var(--_grid-row-gap);
}
.column-grid.col-2 {
  --grid-column-count: 2;
}
.column-grid.col-3 {
  --grid-column-count: 3;
}
.column-grid.col-4 {
  --grid-column-count: 4;
}
.column-grid.col-5 {
  --grid-column-count: 5;
}
.column-grid.col-6 {
  --grid-column-count: 6;
}
@media (width < 100rem) {
  .column-grid.col-4, .column-grid.col-5, .column-grid.col-6 {
    --grid-column-count: 4;
  }
}
@media (width < 80rem) {
  .column-grid.col-3, .column-grid.col-4, .column-grid.col-5, .column-grid.col-6 {
    --grid-column-count: 3;
  }
}
@media (width < 37.5rem) {
  .column-grid.col-2, .column-grid.col-3, .column-grid.col-4, .column-grid.col-5, .column-grid.col-6 {
    --grid-column-count: 2;
  }
  .column-grid.mobile-grid-3 {
    --grid-column-count: 3;
  }
  .column-grid.mobile-grid-4 {
    --grid-column-count: 4;
  }
  .column-grid.mobile-grid-5 {
    --grid-column-count: 5;
  }
  .column-grid.mobile-grid-6 {
    --grid-column-count: 6;
  }
  .column-grid.mobile-list {
    --grid-column-count: 1;
  }
}

@supports not (display: grid) {
  .container-grid {
    width: min(90dvw, var(--fixed-max-width));
    margin-inline: auto;
  }
  .stack-grid {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .stack-grid > .stacked {
    position: absolute;
  }
  .column-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@keyframes slide-right-fade-in {
  0% {
    opacity: 0;
    transform: translateX(-20vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-left-fade-in {
  0% {
    opacity: 0;
    transform: translateX(20vw);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-top-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20vh);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-bottom-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-20vh);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    scale: 0.85;
    opacity: 0;
  }
  50% {
    opacity: 0.6667;
  }
  90% {
    opacity: 0;
  }
  100% {
    scale: 2;
  }
}
@keyframes tooltip-top {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tooltip-bottom {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
[scrollfx] {
  opacity: 0;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  backface-visibility: hidden;
}

[scrollfx].visible {
  animation-name: fade-in;
  animation-duration: 600ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

[scrollfx].top.visible {
  animation-name: slide-top-fade-in;
}

[scrollfx].right.visible {
  animation-name: slide-right-fade-in;
}

[scrollfx].bottom.visible {
  animation-name: slide-bottom-fade-in;
}

[scrollfx].left.visible {
  animation-name: slide-left-fade-in;
}

button {
  cursor: pointer;
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  isolation: isolate;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
button[disabled] {
  opacity: 0.25;
  pointer-events: none;
  cursor: default;
}

*[disabled] {
  filter: saturate(0) brightness(0.75);
  pointer-events: none !important;
}

.carousel {
  width: 100%;
  height: auto;
  background-color: #808080;
}

.carousel.stacked {
  display: grid;
  place-items: center;
  isolation: isolate;
  position: relative;
}
.carousel.stacked > * {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.carousel.stacked .dots-carousel {
  position: absolute;
}

:is(.wrapper-carousel,
.content-carousel) {
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.wrapper-carousel {
  width: 100%;
  isolation: isolate;
  align-items: center;
}

.content-carousel {
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  flex-wrap: nowrap;
  align-items: stretch;
  isolation: auto;
  z-index: 1;
}
.content-carousel > * {
  position: relative;
  float: left;
  flex-grow: 1;
  flex-shrink: 0;
}

:is(.filler-carousel,
.handle-carousel) {
  position: absolute;
  background: transparent;
  width: 100%;
  height: 100%;
}

.filler-carousel {
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 0;
  pointer-events: none;
  cursor: default;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.filler-carousel > * {
  position: absolute;
  flex: 0 0 100%;
}

.handle-carousel {
  z-index: 2;
}

:is(.nav-carousel,
.dots-carousel) {
  display: flex;
  z-index: 3;
  pointer-events: none;
  cursor: default;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
:is(.nav-carousel,
.dots-carousel) > * {
  pointer-events: all;
}

.nav-carousel :where(.prev-slide)::before {
  content: "<";
}

.nav-carousel :where(.next-slide)::before {
  content: ">";
}

.nav-carousel {
  justify-content: space-between;
  width: 100%;
}

.dots-carousel {
  justify-content: center;
  align-items: center;
  gap: 0.3125em;
  font-size: 1em;
  bottom: 0;
}
.dots-carousel li {
  list-style: none;
  width: 0.625em;
  height: 0.625em;
  border: 1px solid currentColor;
  border-radius: 100vw;
  transition: width 200ms ease;
}
.dots-carousel li[active] {
  background-color: currentColor;
}

.content-carousel > *,
.filler-carousel > * {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.carousel :is(img, source, .header_ui) {
  transition: opacity var(--transition-duration) ease;
}

.carousel:not(.loaded) :is(img, source, .header_ui) {
  visibility: hidden;
  opacity: 0;
}

dialog {
  background: transparent;
  margin: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

dialog::backdrop {
  background-color: var(--color-backdrop);
  backdrop-filter: blur(5px);
  opacity: 1;
}

.modal-wrap {
  display: grid;
  grid-template-areas: "modal-stack";
  place-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  cursor: default;
}

.modal {
  width: 100%;
  width: min(100%, 33.75rem);
  max-height: 100dvh;
  max-height: 70dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  isolation: isolate;
  overflow-y: auto;
  animation-name: fade-in;
  animation-duration: 300ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
  grid-area: modal-stack;
  background-color: var(--color-box);
  color: var(--color-text);
  padding: 1.25rem;
}
.modal > * {
  margin-block: 0.5rem;
}
.modal > *:first-child {
  margin-block-start: 0;
}
.modal > *:last-child {
  margin-block-end: 0;
}
.modal {
  scrollbar-width: 0.2rem;
}
.modal {
  scrollbar-color: hsl(0, 0%, 50%) hsla(0, 0%, 0%, 0);
}
.modal::-webkit-scrollbar {
  width: 0.2rem;
  height: 0.2rem;
}
.modal::-webkit-scrollbar-track-piece {
  background-color: hsla(0, 0%, 0%, 0);
}
.modal::-webkit-scrollbar-thumb:vertical {
  height: 0.2rem;
  background-color: hsl(0, 0%, 50%);
}
.modal::-webkit-scrollbar-thumb:horizontal {
  width: 0.2rem;
  background-color: hsl(0, 0%, 50%);
}
.modal > * {
  flex: 0 0 auto;
}
@media (height <= 580px) {
  .modal {
    max-height: unset;
  }
}
@media (width <= 600px) {
  .modal {
    padding: 0.625rem;
  }
}
.modal.top {
  animation-name: slide-top-fade-in;
}
.modal.right {
  animation-name: slide-right-fade-in;
}
.modal.bottom {
  animation-name: slide-bottom-fade-in;
}
.modal.left {
  animation-name: slide-left-fade-in;
}

:is(.modal,
.modal-video) {
  max-height: 92dvh;
  margin-block: auto;
  margin-inline: auto;
  pointer-events: auto;
  z-index: 2;
}

.modal-textbox {
  overflow-y: auto;
  padding-block: 0.3125rem;
  padding-inline: 0.625rem;
  flex: 1 1 100%;
}
.modal-textbox > * {
  margin-block: 1.25rem;
}
.modal-textbox > *:first-child {
  margin-block-start: 0;
}
.modal-textbox > *:last-child {
  margin-block-end: 0;
}
.modal-textbox {
  scrollbar-width: 0.2rem;
}
.modal-textbox {
  scrollbar-color: hsl(0, 0%, 50%) hsla(0, 0%, 0%, 0);
}
.modal-textbox::-webkit-scrollbar {
  width: 0.2rem;
  height: 0.2rem;
}
.modal-textbox::-webkit-scrollbar-track-piece {
  background-color: hsla(0, 0%, 0%, 0);
}
.modal-textbox::-webkit-scrollbar-thumb:vertical {
  height: 0.2rem;
  background-color: hsl(0, 0%, 50%);
}
.modal-textbox::-webkit-scrollbar-thumb:horizontal {
  width: 0.2rem;
  background-color: hsl(0, 0%, 50%);
}
@media (max-height: 580px) {
  .modal-textbox {
    flex: 1 0 auto;
  }
}

.modal-video {
  width: min(96%, 60rem);
  aspect-ratio: 16/9;
  padding: unset !important;
  overflow: hidden !important;
}
.modal-video > iframe {
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.modal_close {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 5vw;
  height: 5vw;
  position: fixed;
  top: 0;
  right: 0;
  color: var(--color-heading);
  font-family: Arial !important;
}
.modal_close::before {
  content: "+";
  display: block;
  transform: rotate(45deg);
  font-size: 4vw;
}
@media (width < 64rem) {
  .modal_close {
    width: 20px;
    height: 20px;
    top: 5px;
    right: 5px;
  }
  .modal_close::before {
    font-size: 38px;
  }
}

#page-top-navigation {
  position: sticky;
  z-index: 1010;
  top: 0;
  opacity: 1 !important;
  transition: transform 200ms ease-in-out, translate 200ms ease-in-out;
}

#page-top-navigation.topped {
  translate: 0;
}

#page-top-navigation.pushed {
  translate: 0 -3.125rem;
}
@media (width <= 600px) {
  #page-top-navigation.pushed {
    translate: 0 -2.5rem;
  }
}

#sgw-top-navigation {
  position: sticky;
  z-index: 1010;
  opacity: 1 !important;
  top: 0;
  width: 100%;
  justify-content: center;
  background-color: hsl(0, 0%, 0%);
}
#sgw-top-navigation #sgw_gnb_div {
  position: static;
}

#stickyHamburger {
  position: fixed;
  z-index: 1010;
  top: 0;
  left: 0;
  max-width: 70%;
  cursor: pointer;
}
#stickyHamburger a > div {
  height: 40px;
  padding: 0 0.625rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (width > 600px) {
  #stickyHamburger {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  #sgw_gnb_div.lightboxmode {
    overflow: unset !important;
  }
}
nav.sticky {
  transition: transform 200ms ease-in-out, translate 200ms ease-in-out;
  isolation: isolate;
  display: flex;
  align-items: center;
}

nav.sticky.topped,
nav.sticky.bottomed {
  position: sticky;
}

nav.sticky.topped {
  top: 0;
}

nav.sticky.bottomed {
  bottom: 0;
}

.accordion dt {
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}
.accordion dt > button {
  all: unset;
  width: 100%;
}
.accordion dd {
  display: none;
}
.accordion dd[aria-hidden=false] {
  display: block;
}

.tab-contents > *[tabindex="-1"] {
  display: none;
  visibility: hidden;
}

.tab-navs {
  display: flex;
  flex-wrap: wrap;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.tab-ribbons {
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap !important;
}
.tab-ribbons > * {
  flex-shrink: 0;
}
@media (width >= 37.5625rem) {
  .tab-ribbons {
    scrollbar-width: 0.2rem;
  }
  .tab-ribbons {
    scrollbar-color: hsl(0, 0%, 50%) hsla(0, 0%, 0%, 0);
  }
  .tab-ribbons::-webkit-scrollbar {
    width: 0.2rem;
    height: 0.2rem;
  }
  .tab-ribbons::-webkit-scrollbar-track-piece {
    background-color: hsla(0, 0%, 0%, 0);
  }
  .tab-ribbons::-webkit-scrollbar-thumb:vertical {
    height: 0.2rem;
    background-color: hsl(0, 0%, 50%);
  }
  .tab-ribbons::-webkit-scrollbar-thumb:horizontal {
    width: 0.2rem;
    background-color: hsl(0, 0%, 50%);
  }
}

button:is(.hamburger, .hamburger-close) {
  aspect-ratio: 1/1;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  background-color: none;
}

button.hamburger {
  font-weight: 700;
  font-size: 1.5em;
}

nav.hamburger {
  position: fixed;
  inset-block: 0;
  height: 100vh;
  height: 100dvh;
  width: min(100%, 400px);
  padding: 1.25rem;
  z-index: 1000;
  translate: -400px;
  transition: translate 200ms ease-in-out;
  isolation: isolate;
  overflow-y: auto;
}
nav.hamburger {
  scrollbar-width: 0.2rem;
}
nav.hamburger {
  scrollbar-color: hsl(0, 0%, 50%) hsla(0, 0%, 0%, 0);
}
nav.hamburger::-webkit-scrollbar {
  width: 0.2rem;
  height: 0.2rem;
}
nav.hamburger::-webkit-scrollbar-track-piece {
  background-color: hsla(0, 0%, 0%, 0);
}
nav.hamburger::-webkit-scrollbar-thumb:vertical {
  height: 0.2rem;
  background-color: hsl(0, 0%, 50%);
}
nav.hamburger::-webkit-scrollbar-thumb:horizontal {
  width: 0.2rem;
  background-color: hsl(0, 0%, 50%);
}

.tooltip {
  cursor: pointer;
  position: relative;
  isolation: auto !important;
}

[popover] {
  width: min(90%, 18.75rem);
}

.timer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-transform: uppercase;
}
.timer div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 4ch;
}
.timer div::after {
  font-size: 0.5em;
  margin-inline-start: 2px;
}
.timer div.days::after {
  content: "d";
}
.timer div.hours::after {
  content: "h";
}
.timer div.minutes::after {
  content: "m";
}
.timer div.seconds::after {
  content: "s";
}
.timer div > p {
  font-variant-numeric: tabular-nums;
}
@media (width < 37.5rem) {
  .timer span {
    display: none;
  }
}

.slider {
  display: grid;
  grid-template-areas: "slider";
  isolation: isolate;
}

.slider_content {
  grid-area: slider;
  display: grid;
  grid-template-areas: "slider-content";
  justify-content: center;
  align-items: center;
  transition-property: opacity;
  transition-duration: 0ms;
  transition-timing-function: ease;
  opacity: 0;
}
.slider_content:first-child {
  visibility: visible;
  opacity: 1;
}

:where(.slider_content) {
  background-color: #808080;
}

:where(.slider_dots, .slider_arrows) {
  display: flex;
  pointer-events: none;
  z-index: 2;
}

:where(.slider_dot, .slider_arrow) {
  pointer-events: all;
  cursor: pointer;
}

:where(.slider_arrows) {
  justify-content: space-between;
  grid-area: slider;
  align-self: center;
}

:where(.slider_prev)::before {
  content: "<";
}

:where(.slider_next)::before {
  content: ">";
}

:where(.slider_dots) {
  justify-content: center;
  grid-area: slider;
  align-self: flex-end;
  gap: 10px;
}

:where(.slider_dot) {
  width: 20px;
  height: 20px;
  list-style: none;
  background-color: var(--color-box-contrast);
}

:where(.slider_dot.active) {
  background-color: var(--color-text);
}

/* BASE FONTS */
.systemui {
  font-family: system-ui, sans-serif;
}
.transitional {
  font-family: Charter, 'Bitstream Charter', 'Sitka Text', Cambria, serif;
}
.oldstyle {
  font-family: 'Iowan Old Style', 'Palatino Linotype', 'URW Palladio L', P052, serif;
}
.humanist {
  font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
}
.geometrist {
  font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
}
.classical {
  font-family: Optima, Candara, 'Noto Sans', source-sans-pro, sans-serif;
}
.neogrotesque {
  font-family: Inter, Roboto, 'Helvetica Neue', 'Arial Nova', 'Nimbus Sans', Arial, sans-serif;
}
.monospaceslab {
  font-family: 'Nimbus Mono PS', 'Courier New', monospace;
}
.monospacecode {
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
}
.industrial {
  font-family: Bahnschrift, 'DIN Alternate', 'Franklin Gothic Medium', 'Nimbus Sans Narrow', sans-serif-condensed, sans-serif;
}
.roundedsans {
  font-family: ui-rounded, 'Hiragino Maru Gothic ProN', Quicksand, Comfortaa, Manjari, 'Arial Rounded MT', 'Arial Rounded MT Bold', Calibri, source-sans-pro, sans-serif;
}
.slabserif {
  font-family: Rockwell, 'Rockwell Nova', 'Roboto Slab', 'DejaVu Serif', 'Sitka Small', serif;
}
.antique {
  font-family: Superclarendon, "Bookman Old Style", "URW Bookman", "URW Bookman L", "Georgia Pro", Georgia, serif;
}
.didone {
  font-family: Didot, 'Bodoni MT', 'Noto Serif Display', 'URW Palladio L', P052, Sylfaen, serif;
}
.handwritten {
  font-family: 'Segoe Print', 'Bradley Hand', Chilanka, TSCu_Comic, casual, cursive;
}


.hiddenHeading {
  font-size: 0;
  visibility: visible;
}

@media (width > 1920px) {
  header picture img {
    width: 100%;
  }
}

#interface {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-block-end: 2.5rem;
}
@media (width < 50rem) {
  #interface {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

#interface > *:not(.timer) {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#interface .timer {
  flex: 1 1 100%;
  flex-wrap: wrap;
}
#interface .timer::before {
  flex: 1 1 100%;
  text-align: center;
}

#interface button {
  position: relative;
  padding: 1rem 0.2rem;
  width: 100%;
  text-transform: uppercase;
}
#interface button::after, #interface button::before {
  content: "";
  position: absolute;
}
#interface button::after {
  inset: 3px;
  border-radius: 0.0625rem;
  background-color: transparent;
  z-index: -1;
  opacity: 0;
  transition: opacity 150ms ease-in;
}
#interface button::before {
  inset: 2px;
  z-index: -2;
}
@media (hover: hover) {
  #interface button:hover::after {
    opacity: 1;
  }
}

.attributes {
  width: fit-content;
  margin-inline: auto;
  gap: 2.5rem;
  margin-block: 2.5rem;
}

.attributes button.tooltip {
  width: 6.25rem;
  height: 6.25rem;
  transition: filter 150ms ease-in;
}
.attributes button.tooltip img {
  width: 60%;
  height: 60%;
  margin: auto;
}
@media (hover: hover) {
  .attributes button.tooltip {
    cursor: pointer;
  }
  .attributes button.tooltip:hover {
    filter: brightness(1.1);
  }
}

.attributes [popover]:popover-open {
  animation: popoverIn 150ms ease-in forwards;
}
.attributes [popover]:popover-open h3 {
  text-wrap: pretty;
  line-height: 1.1;
  margin-block-end: 0.375rem;
}
.attributes [popover]:popover-open p,
.attributes [popover]:popover-open li {
  font-size: 0.8125rem;
  margin-block-start: 0.25rem;
}
.attributes [popover]:popover-open ul {
  margin-inline-start: 1em;
}
.attributes [popover]:popover-open li {
  margin-inline-start: -0.3em;
}
.attributes [popover]:popover-open::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -2;
}
@media (width < 37.5rem) {
  .attributes [popover]:popover-open {
    margin: auto;
  }
}
.kit-attributes {
  max-width: unset;
}
.kit-attributes figure img{
  margin-inline: auto;
}
.kit-attributes div:first-child {
  flex-basis: 100%;
}
.kit-attributes .attributes {
  margin-block: 1.5rem;
}

@keyframes popoverIn {
  from {
    opacity: 0;
    translate: 0 -20px;
  }
  to {
    opacity: 1;
    translate: 0;
  }
}
.extra {
  gap: 1.875rem;
  margin-inline: auto;
  max-width: 56.25rem;
}
.extra figure img {
  aspect-ratio: 16/9;
  width: 100%;
  margin-inline: auto;
  height: auto;
}
.extra figcaption {
  text-align: center;
  margin-block-start: 0.3125rem;
}
@media (width <= 50rem) {
  .extra {
    display: flex;
    flex-direction: column;
  }
}

.reward figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
}
.reward figure img {
  width: 100%;
  margin-inline: auto;
  height: auto;
}
.reward figcaption {
  text-align: center;
  margin-block-start: 0.3125rem;
}

.headings {
  --inset: -46px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.375rem;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.headings * {
  flex: 0 1 auto;
}
.headings::after, .headings::before {
  position: absolute;
  display: block;
  height: 70px;
}
.headings::after {
  rotate: 180deg;
  right: var(--inset);
}
.headings::before {
  left: var(--inset);
}
@media (width <= 45rem) {
  .headings {
    --inset: -66px;
    flex-direction: column;
  }
}
@media (width > 30rem) {
  .headings::after, .headings::before {
    content: url("../images/heading-ends.webp");
  }
}