/*
 * Resets
 *
 */
html {
  box-sizing: border-box;
}

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

html[data-initialized=false] {
  /* opacity: 0; */
}

html[data-initialized=true] {
  opacity: 1 !important;
  transition: 0.25s opacity;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

/*
* Media
*
*/
/* This is the most extreme application so we many want to adjust it */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
[hidden] {
  display: none;
}

/*
 * Custom Properties
 *
 */
:root {
  --base-text-color: var(--color-neutral-400);
  --light-text-color: var(--color-neutral-300);
  --viewport-margin: var(--space-medium);
  --text-xx-small: 0.875rem;
  --material: "Material Icons";
  --font-base-family: "Muli", "system-ui", "sans-serif";
}

@media (min-width: 720px) {
  :root {
    --viewport-margin: var(--space-xx-large);
  }
}
body[data-class=text] {
  --record-width: 75ch;
}

/*
 * Globals 
 *
 */
body {
  margin: 0;
  color: var(--base-text-color);
  font-size: var(--text-base-size);
  font-family: var(--font-base-family);
  line-height: var(--line-height-default);
  accent-color: var(--color-teal-400);
}

ol,
ul,
ul.list-unstyled {
  list-style: none;
  padding: 0;
}

ul:not([class]) ul:not([class]) {
  margin-left: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* fight me */
ul ul {
  margin-left: 1rem;
}

ul.list-bulleted {
  list-style: initial;
  padding: revert;
}

ol.list-numbered, text-block ol:not([class]) {
  list-style: decimal;
  padding: revert;
}

a {
  color: var(--color-teal-400);
  text-decoration: underline;
}

a[data-current=true] {
  color: var(--color-neutral-600);
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration-thickness: 2px; /** TODO: HOVE **/
}

a.group {
  display: inner-flex;
  align-items: center;
}

a.bedazzled-link {
  text-decoration: none;
  display: inline-flex;
  gap: 0.25rem;
  align-items: flex-start;
}

a.bedazzled-link span:not(.material-icons) {
  text-decoration: underline;
}
a.bedazzled-link span:not(.material-icons).postscript {
  text-decoration: none;
  color: var(--base-text-color);
}
a.bedazzled-link span:not(.material-icons):hover .postscript {
  text-decoration: underline;
}

a.bedazzled-link[data-selected=true] .material-icons {
  color: var(--color-neutral-500);
}

a.bedazzled-link[data-selected=true] span:not(.material-icons) {
  text-decoration: none;
  color: var(--color-neutral-500);
}

:not([disabled]):not(#maincontent):not(#chat):not(summary):focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--color-maize-400), 0 0 0 3px var(--color-neutral-400);
  border-radius: 2px !important;
}

img {
  width: auto;
}

address {
  font-style: normal;
}

main {
  margin-top: 2rem;
  margin-bottom: 2rem;
  /* avoid squishing main with the footer */
  min-height: 65vh;
}

p img {
  width: initial;
}

/*
 * Viewport Margins
 *
 * Handles the need for page content to be centered
 * in the visible view port window and manage the
 * amount of margin between the site and the edge
 * of the screen's viewport.
 */
.viewport-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--viewport-margin);
  padding-right: var(--viewport-margin);
}

/*
* Actions
*
*/
.actions {
  padding-bottom: 2em;
  border-bottom: 1px solid var(--color-neutral-100);
}

/*
* Blocks
*
*/
.hero {
  margin: 1em 0 2em;
}

.hero__image {
  max-width: 100%;
}

.contact-icon {
  color: var(--color-teal-400);
}

/** Lists **/
.list__links ul li {
  margin-top: 0.5em;
}

/*
 * Anchors/Links
 *
 */
.active-link {
  text-decoration: none;
  color: var(--color-neutral-400);
}

.link-box {
  margin: 0 0 0.5em 0;
  padding: 0.5em 0;
  display: inline-flex;
  color: var(--base-text-color);
}

.link-box a {
  border-left: 2px solid transparent;
}

.link-box a:hover {
  border-left: 2px solid var(--color-teal-400);
}

.link-box > * {
  margin: 0.25em;
}

/* WEBSITE HEADER */
.website-sub-header {
  width: 100%;
  background: var(--color-blue-500);
  color: white;
  font-weight: 600; /* semibold */
  font-size: var(--text-small);
  padding: 0.5rem 0;
}

.website-sub-header a {
  color: white;
  text-decoration: none;
}

.website-sub-header a:hover span:not(.material-icons),
.website-sub-header a:focus span:not(.material-icons) {
  text-decoration: underline;
}

.website-sub-header .material-icons {
  font-size: 1.5rem;
}

m-website-header nav a {
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-weight: 800;
  /* color: #637381; */
  color: var(--color-neutral-300);
  letter-spacing: 1.25px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

m-website-header nav a:hover span:not(.material-icons),
m-website-header nav a:focus span:not(.material-icons) {
  text-decoration: underline;
}

m-website-header nav a .material-icons {
  font-size: 1.5em;
}

@media screen and (max-width: 500px) {
  m-website-header nav {
    margin-top: 1rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 52rem) {
  .website-header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 52rem) {
  .mobile-nav {
    display: none;
  }
}
@media (max-width: 52rem) {
  m-website-header nav.primary-nav {
    display: none;
  }
}
.mobile-nav .submenu-container {
  border-top: 1px solid var(--color-neutral-100);
  margin-top: 20px;
  position: absolute;
  right: -1rem;
  width: 50vw;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px 0px;
  z-index: 101;
}

.mobile-nav .primary-container ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.mobile-nav .primary-container ul li {
  border-bottom: 1px solid rgb(229, 233, 237);
  padding: 1rem;
}

.mobile-nav .primary-container ul a {
  text-decoration: none;
  color: var(--color-neutral-400);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.mobile-nav .primary-container ul a:hover {
  text-decoration: underline;
}

.mobile-nav .utility-container ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  background-color: var(--color-blue-100);
}

.mobile-nav .utility-container ul li {
  padding: 1rem;
}

.mobile-nav .utility-container ul a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-neutral-400);
}

@media (max-width: 64rem) {
  .utility-nav {
    margin-top: 1rem;
  }
}
@media (max-width: 52rem) {
  .utility-nav {
    display: none;
  }
}
.utility-nav ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-flow: row wrap;
}

.utility-nav ul li {
  display: inline;
}

.utility-nav ul li:not(:last-child) {
  margin-right: 1rem;
}

.utility-nav ul li a {
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--color-neutral-300);
  text-transform: uppercase;
  font-weight: var(--bold);
  letter-spacing: 1.25px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/*
 * Utilities
 *
 * 
 */
.py-1 {
  display: flex;
  gap: 0.25rem;
}

.border {
  border: solid 2px var(--color-neutral-100);
}

.no-border {
  border: 0;
}

.border-bottom {
  border-bottom: solid 1px var(--color-neutral-100);
}

.border-rounded {
  border-radius: 0.5rem;
}

.underline {
  text-decoration: underline;
}

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

.light-text-color {
  color: var(--light-text-color);
}

.base-text-color {
  color: var(--base-text-color);
}

.bold {
  font-weight: var(--bold);
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

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

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

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

.justify-end {
  justify-content: end;
}

.flex-flow-rw {
  flex-flow: row wrap;
}

.flex-flow-row {
  flex-flow: row nowrap;
}

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

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

.flex-justify-center {
  justify-content: center;
}

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

.flex-gap-0_25 {
  gap: 0.25rem;
}

.flex-gap-0_5 {
  gap: 0.5rem;
}

.flex-gap-1 {
  gap: 1rem;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.center-grid {
  justify-self: center;
  align-self: center;
}

.m-0 {
  margin: 0 !important;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-0_5 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

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

.mt-0_5 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2em;
}

.ml-2 {
  margin-left: 2em;
}

.p-2 {
  padding: 2rem;
}

.p-1 {
  padding: 1rem;
}

.p-half {
  padding: 0.5em;
}

.pr-0 {
  padding-right: 0;
}

.pr-1 {
  padding-right: 1rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.gap-0_25 {
  gap: 0.25em;
}

.gap-0_5 {
  gap: 0.5em;
}

.gap-0_75 {
  gap: 0.75rem;
}

.gap-1 {
  gap: 1rem;
}

.nowrap {
  white-space: nowrap;
}

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

.text-xxx-small {
  font-size: var(--text-xxx-small) !important;
}

.text-xx-small {
  font-size: var(--text-xx-small) !important;
}

.text-x-small {
  font-size: var(--text-x-small) !important;
}

.text-x-large {
  font-size: var(--text-x-large) !important;
}

.text-large {
  font-size: var(--text-large) !important;
}

.text-medium {
  font-size: var(--text-medium) !important;
}

.text-muted {
  color: var(--color-neutral-400);
}

.flex--wide {
  flex-basis: 100%;
  flex-shrink: 0;
}

.hidden {
  display: none;
}

.w-100 {
  width: 100% !important;
}

/*
 * Buttons
 */
.button,
button {
  outline: none;
  /* display: inline-block; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0 0.75rem;
  padding: var(--space-x-small) var(--space-small);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: var(--bold);
  font-family: var(--font-base-family);
  border-radius: var(--radius-default);
  align-items: center;
  min-height: 2.5rem;
  margin: 0; /** must remove margin for Safari */
  text-decoration: none;
}

.button--small {
  padding: var(--space-x-small) var(--space-small);
}

.button--large {
  padding: var(--space-small) var(--space-xxx-large);
}

.button:focus {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--color-indigo-400);
}

.button:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-neutral-400);
}

.button--primary {
  background: var(--color-teal-400);
  border: solid 1px var(--color-teal-400);
  color: #fff;
}

.button--secondary {
  background: var(--color-neutral-100);
  border: solid 1px var(--color-neutral-100);
  color: var(--color-neutral-400);
}

.button--cta {
  background: var(--color-maize-400);
  border: solid 1px var(--color-maize-400);
  color: var(--color-neutral-400);
}

.button-icon {
  bottom: 0.25em;
  position: relative;
}

.button--ghost {
  border: solid 1px var(--color-neutral-500);
  border-radius: 4px;
  color: var(--color-neutral-500);
  background: white;
  padding: 0.5em 1em;
  margin: 0.25em;
  text-decoration: none;
}

.button--ghost.button--small {
  padding: var(--space-x-small) var(--space-small);
  font-size: 0.875rem;
}

.button + .button, .button + sl-button, sl-button + .button {
  margin-left: 0.5em;
}

button[disabled] {
  opacity: 0.25;
}

button.nav {
  background: #fff;
  border: none;
}

button.button[aria-expanded]::after {
  font-family: "Material Icons";
  font-size: 2.5rem;
  content: "\e5d2";
  color: var(--color-neutral-400);
}

button.button[aria-expanded=true]::after {
  font-family: "Material Icons";
  font-size: 2.5rem;
  content: "\e5cd";
  color: var(--color-neutral-400);
}

/*
 * Record Container
 *
 */
/* section.records {
  container-type: inline-size;
  container-name: section--records-wrap;
}

@container section--records-wrap ( max-width: 600px ) {
  dl.record {
    max-width: none;
    width: 100%;
  }
} */
dl.record {
  /* max-width: 65vw; */
  max-width: var(--record-width, 65ch);
  display: block;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .record {
    max-width: 90vw;
  }
}
.record > div {
  display: grid;
  grid-template-columns: 12rem 1fr;
  column-gap: 0;
  border-bottom: 1px solid var(--color-neutral-100);
}

.record dd > *:first-child {
  margin-top: 0;
}

.record dd > *:last-child {
  margin-bottom: 0;
}

.record dt {
  font-weight: var(--bold);
}

.record > div[data-key=relevance], .results > div[data-key=relevance] {
  display: none;
}

dl.record dt,
dl.record dd {
  padding: var(--space-small) 0;
  margin-left: 0;
  border-bottom: none;
}

dl.record.record--compact dd, dl.record.record--compact dt {
  padding: var(--space-xx-small);
}

dl.record dd {
  /* for longer/wrapping dt */
  padding-left: var(--space-small);
}

dl.record dd + dd {
  grid-column: 2/3;
  border-top: 1px solid var(--color-indigo-100);
}

dl.record .text--copyable {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  word-break: break-word;
}

dl.record .text--copyable.copied::after {
  content: "Copied to clipboard";
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0.25rem;
  font-size: 0.875rem;
  padding: 0.5rem;
  display: block;
  background: var(--color-green-100);
  color: black;
  white-space: nowrap;
  animation: fade-out 0s ease-in 5s;
  animation-fill-mode: forwards;
}

@keyframes fade-out {
  25% {
    opacity: 0.75;
  }
  50% {
    opacity: 0.5;
  }
  75% {
    opacity: 0.25;
  }
  100% {
    visibility: hidden;
    display: none;
    width: 0;
    height: 0;
  }
}
.record .text--copyable > span {
  flex-grow: 1;
  font-family: monospace;
  font-size: 0.875rem;
}

span.url {
  word-break: break-all;
}

.record .text--copyable button[data-action] {
  flex-grow: 0;
  align-self: flex-start;
  width: auto;
}

/* Text Block/ prose */
.text-block {
  /* width: max(75%); */
  max-width: 75ch; /* Set line length for readability */
}

.text-block h2 {
  font-size: 1.25rem;
}

.text-block img {
  max-width: 100%;
}

.text-block > div > ul:not([class]) {
  list-style: initial;
  padding: revert;
}

.text--small {
  font-size: 0.875rem !important;
}

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

.capitalize {
  text-transform: capitalize;
}

.material-symbols-outlined {
  font-variation-settings: "wght" 300, "opsz" 20;
}

.material-symbols-outlined:hover {
  font-variation-settings: "wght" 500, "FILL" 1;
}

.float-right {
  float: right;
  margin: 1rem;
}

.float-right img, img.float-right {
  padding: 1rem;
  border: 1px solid var(--color-neutral-100);
}

.float-right figcaption {
  font-size: 0.875rem;
  max-width: 20ch;
}

img.brand {
  border-radius: 0;
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 0.25rem solid;
  border-color: var(--color-neutral-500);
  opacity: 0.25;
}

p.plaintext {
  white-space: pre-line;
}

section[data-item-encoding-level="4"] p.plaintext,
article[data-item-encoding-level="4"] p.plaintext {
  white-space: normal;
}

.fullview-page + .fullview-page {
  padding-top: 2rem;
  border-top: 2px solid var(--color-neutral-100);
}

a.ptr-link {
  margin: 0 0.5rem;
}
a.ptr-link .material-icons {
  vertical-align: text-bottom;
}

.inline-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  scroll-padding-top: 2rem;
  white-space: wrap;
}

html[data-highlight-state=off] .inline-highlight a {
  display: none;
}

.hl-link {
  display: inline-flex;
  align-items: center;
}

.hl-link .material-icons {
  font-size: 1rem;
}

.button--highlight {
  padding: var(--space-xxx-small);
  min-height: 0;
}

.hilite1 {
  background-color: #ffff00;
}

.fullview-main {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-left: 1rem;
  line-height: 2;
}
.fullview-main .inner {
  width: 100%;
}

.pre-line {
  white-space: pre-line;
  line-height: 1.75;
}

ul.fullview-toc {
  list-style: initial;
  margin-left: 1rem;
}

.fullview-thumbnail, .fullview-blank {
  flex-basis: 350px;
  flex-shrink: 0;
}

.fullview-thumbnail > a {
  display: block;
}

.fullview-thumbnail figure {
  position: sticky;
  top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fullview-thumbnail img {
  border: 1px solid var(--color-neutral-400);
  padding: 0.5rem;
  width: auto;
  max-width: 100%;
}

.fullview-thumbnail a:hover img,
.fullview-thumbnail a:hover span {
  /* outline: 1px solid var(--color-neutral-300);
  outline-offset: 2px; */
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-neutral-400);
}

.fullview-page {
  padding-bottom: 2rem;
}

.fullview-heading {
  font-weight: bold;
  margin: 0.5rem 0;
  line-height: 1.5;
}

.fullview-heading-1 {
  font-size: 1.5rem;
}

.fullview-heading-2 {
  font-size: 1.25rem;
}

.fullview-heading-3 {
  font-size: 1.125rem;
}

.titlepage {
  text-align: center;
}

.footnote-link {
  display: inline-flex;
  min-height: 2rem;
  min-width: 2rem;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  margin: 0 0.25rem;
  line-height: 0;
  border: 1px solid var(--color-neutral-500);
  vertical-align: bottom;
  text-decoration: none;
}

.footnote-link .material-icons {
  font-size: 1.5rem;
}

.footnote-anchor .bi-x-diamond-fill {
  height: 1.5rem;
  width: 1.5rem;
}

.footnote-text {
  padding: 0.5rem;
}

.footnote-text > * {
  margin-top: 0;
}

del {
  background-color: var(--color-pink-100);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  vertical-align: bottom;
}
del .material-icons {
  font-size: 1rem;
  color: var(--color-pink-500);
}
del::before, del::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
del::before {
  content: " [deletion start] ";
}
del::after {
  content: " [deletion end] ";
}

ins[data-function=replace] {
  text-decoration: none;
}

ins[data-function=add] {
  text-decoration: none;
}

ins[data-function=add] {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 0.875rem;
  gap: 0.125rem;
  vertical-align: super;
  line-height: 0.5;
  background: var(--color-green-100);
}
ins[data-function=add] .material-icons {
  font-size: 1rem;
  color: #008230;
}
ins[data-function=add]::before {
  content: " [addition start] ";
}
ins[data-function=add]::after {
  content: " [addition end] ";
}
ins[data-function=add]::before, ins[data-function=add]::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

ins[data-function=replace] {
  background-color: var(--color-green-100);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  vertical-align: bottom;
}
ins[data-function=replace] .material-icons {
  font-size: 1rem;
  color: #008230;
}
ins[data-function=replace]::before {
  content: " [addition start] ";
}
ins[data-function=replace]::after {
  content: " [addition end] ";
}
ins[data-function=replace]::before, ins[data-function=replace]::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.edit-wrap {
  display: inline-flex;
  flex-direction: column-reverse;
  vertical-align: top;
  font-size: 0.875rem;
  margin-top: -0.25rem;
  margin-left: 0.125rem;
  margin-right: 0.125rem;
  line-height: 0;
}

.unclear {
  background-color: var(--color-maize-100);
  color: var(--color-neutral-400);
}

.unclear::after {
  content: " [unclear] ";
  /* color: #5e6f7d; */
  /* color: var(--color-neutral-400); */
}

.supplied {
  background-color: var(--color-maize-100);
  color: var(--color-neutral-400);
}
.supplied::after {
  content: " [supplied by ed.]";
}

.fullview-main .name {
  padding: 0 0.25rem;
}
.fullview-main .name .name--reg {
  display: inline-block;
  background: var(--color-green-100);
}
.fullview-main .name .name--reg::before {
  content: "[";
  font-weight: bold;
  font-size: 1.1rem;
}
.fullview-main .name .name--reg::after {
  content: "]";
  font-weight: bold;
  font-size: 1.1rem;
}

.fullview-main figure {
  border: 1px solid var(--color-neutral-100);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.fullview-main figure img {
  width: auto;
  max-width: 100%;
  border: 1px solid var(--color-neutral-400);
  padding: 0.5rem;
}

.fullview-main a:not(.button):hover img,
.fullview-main a:not(.button):hover span {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-neutral-400);
}

.fullview-main figure figcaption {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.fullview-main figure figcaption p {
  margin: 0;
}
.fullview-main figure figcaption p + p {
  margin-top: 1em;
}

.lg {
  margin-left: 1rem;
}

.lg + .lg {
  margin-top: 1rem;
}

.line {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  width: 100%;
}
.line:has(.edit-wrap) {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.line:hover {
  background: var(--color-indigo-100);
}
.line .line--number {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--color-blue-300);
}

.line--indent1, .indentlevel1 {
  margin-left: 1em;
}

.line--indent2 {
  margin-left: 2em;
}

.q1 {
  /* margin-left: 5%;
  margin-right: 15%;
  padding-top: 1em;
  margin-bottom: 1rem; */
  margin-left: 1rem;
  padding: 1rem;
  border-left: 0.5rem solid var(--color-teal-100);
}

.q1--block {
  padding-top: 0;
}

.salute svg line {
  stroke: rgb(0, 0, 0);
  stroke-width: 2;
}

.foreign {
  font-style: italic;
}

.rend-i, .rend-italic {
  font-style: italic;
}

.rend-underline {
  background-image: linear-gradient(120deg, #1F1C2C, #928DAB 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.1em;
  background-position: 0 100%;
  transition: background-size 0.25s ease-in;
}

.rend-superscript {
  font-size: 75%;
  vertical-align: top;
}

.rend-superscriptunderline {
  font-size: 75%;
  vertical-align: top;
  text-decoration: dotted underline;
}

.gap {
  white-space: pre-line;
  font-family: monospace;
  color: #c64b0e;
  margin: 0 0.125rem;
}
.gap .gap--reason {
  font-family: var(--font-base-family);
  background: var(--color-maize-100);
}
.gap .gap--reason::before {
  content: " [";
  font-weight: bold;
}
.gap .gap--reason::after {
  content: "]";
  font-weight: bold;
}

.opener {
  padding: 1rem;
  border-left: 0.5rem solid var(--color-teal-100);
  margin: 1rem 0;
}

.closer {
  padding: 1rem;
  border-left: 0.5rem solid var(--color-teal-100);
  margin: 1rem 0;
}

.sp {
  margin-bottom: 1rem;
}

.stage {
  margin-bottom: 1rem;
  /* font-style: italic; */
}

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

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

.speaker {
  font-size: 1.125em;
  font-weight: bold;
}

.notenumber {
  font-weight: bold;
  display: inline-block;
  padding: 0 0.25rem 0 0.5rem;
}

.note {
  padding: 0.25rem;
  background: var(--color-maize-100);
  border: 1px solid var(--color-maize-500);
  display: inline-block;
}
.note .note--number {
  font-weight: bold;
  padding: 0.25rem;
  background: var(--color-maize-100);
}
.note .note--content {
  margin-left: 0.25rem;
  background: var(--color-maize-100);
  color: var(--color-neutral-400);
}

.inline-note {
  background: var(--color-maize-100);
  display: block;
}
.inline-note.inline {
  display: inline-block;
}

.div-heading {
  display: flex;
  padding: 0.25rem;
  padding-left: 0;
  font-weight: bold;
  background: var(--color-blue-100);
  border-top: 1px solid var(--color-teal-500);
  border-bottom: 2px solid var(--color-teal-500);
}

.display-inline {
  display: inline-block;
}

.inline-note-edge {
  font-weight: bold;
  font-size: 125%;
}

html[data-annotations-state=off] .annotated {
  display: none !important;
}

html[data-annotations-state=on] .corr, html[data-annotations-state=on] .sic--expanded {
  background-color: var(--color-green-100);
}
html[data-annotations-state=on] .sic {
  /* color: var(--color-neutral-400); */
  background-color: var(--color-neutral-100);
}
html[data-annotations-state=on] .abbr--expanded {
  color: var(--color-neutral-300);
}

html[data-highlight-state=off] .hilite1 {
  background-color: transparent;
}

html {
  scroll-padding-top: 2rem;
}

@media screen and (max-width: 600px) {
  .fullview-main {
    flex-direction: column;
  }
  .fullview-blank {
    display: none;
  }
}
.bs-caret {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-caret-up-fill' viewBox='0 0 16 16'%3E%3Cpath d='m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z'/%3E%3C/svg%3E");
}

.milestone--paragraph-page {
  font-size: 0.875rem;
  color: var(--color-neutral-300);
}

.milestone--rule {
  padding: 1rem;
  margin: 1rem;
  text-align: center;
}
.milestone--rule span {
  font-size: 1.5rem;
  white-space: nowrap;
}

main {
  margin: 0;
}

.mirador-companion-area-left .mirador-companion-windows {
  box-shadow: 5px 0 5px -5px var(--color-neutral-500);
}

.mirador-osd-container {
  display: grid !important;
  grid-template-rows: 1fr min-content;
  row-gap: 8px;
}
.mirador-osd-container .openseadragon-container {
  grid-row: 1/2;
}

.mirador-canvas-nav {
  width: 96% !important;
  left: 50%;
  bottom: 4px !important;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid var(--color-neutral-100) !important;
  border-radius: 0.5rem;
  align-items: center;
  position: relative !important;
  grid-row: 2/3;
}
.mirador-canvas-nav .mirador-osd-info {
  width: auto;
}

li.MuiListItem-root img[role=presentation] {
  border: 1px solid var(--color-neutral-100);
  padding: 2px;
}
li.MuiListItem-root .MuiTypography-body1 {
  font-size: 0.875rem;
  white-space: wrap;
}

dl.record {
  width: 100%;
  column-gap: 1rem;
}

.fullview-main {
  display: block;
  margin: 0;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .ocr-wrap {
    min-width: calc(100dvw - 50px) !important;
  }
}
.loader {
  position: relative;
  display: block;
  height: 8rem;
  width: 8rem;
  transition: all 0.3s;
  transition-timing-function: ease-in;
  animation: spinHourglas 1750ms infinite;
}

.loader::after {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: 0 0;
  border-width: 2em;
  border-color: #9b9b9b transparent;
  border-radius: 50%;
  border-style: solid;
}

@keyframes spinHourglas {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    transform: rotate(180deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  100% {
    transform: rotate(360deg);
  }
}

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