/* Built: 2026-01-03T06:29:42.587Z */
@charset "UTF-8";
#content-alert {
  z-index: 1000;
  background-color: var(--theme-popup-bg);
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#content-alert .title {
  font-size: 1.5em;
}
#content-alert .warning {
  max-width: 600px;
}
#content-alert .warning::before {
  background-color: var(--theme-popup-bg);
}
#content-alert button {
  margin: 1em 0.5em;
  border: 1px solid var(--theme-popup-border);
  border-radius: 4px;
  padding: 0.5em 1em;
  cursor: pointer;
}
#content-alert button.primary-button {
  background-color: var(--links);
}
#content-alert button.primary-button:hover {
  filter: brightness(1.25);
}

:root {
  --sans-font: "Reddit Sans", "Open Sans", sans-serif;
  --mono-font: "Inconsolata", monospace;
  --code-font-size: 1em;
  --toc-width: 200px;
  --font-size: clamp(0.95rem, 0.8167rem + 0.5333vw, 1.15rem);
  --border-radius: 0.5em;
  --transition-duration: 0.1s;
  --transition-easing: ease-in-out;
  --notification-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05),
    0 0 0.1rem rgba(0, 0, 0, 0.1);
  font-size: var(--font-size);
}
@media (prefers-reduced-motion) {
  :root {
    --transition-duration: 0s;
    --transition-easing: none;
  }
}

* {
  transition: var(--transition-duration) var(--transition-easing);
  transition-property: background-color, border-color, box-shadow;
}

html {
  font-optical-sizing: auto;
  font-family: var(--sans-font);
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  font-size: 1em;
}

li {
  margin: 0.5em 0;
}

hr {
  margin: 1em 0;
  border: none;
  border-top: 0.1em solid var(--scrollbar);
}

p {
  margin: 1em 0;
}

blockquote {
  border: 1px solid var(--quote-border);
  border-radius: var(--border-radius);
  margin: 1rem 0;
  padding: 0 1rem;
}

.require-javascript {
  display: none;
}

.content-wrap {
  overflow: visible;
}

.theme-popup {
  left: unset;
  right: 60px;
}

.content a.email,
.content a.phone {
  color: inherit;
}
.content a.email:visited,
.content a.phone:visited {
  color: inherit;
}
.content p, .content > ul {
  line-height: 1.5;
}

figure {
  text-align: center;
}
figure img {
  border-radius: var(--border-radius);
}
figure figcaption {
  font-style: italic;
  font-size: 0.85em;
  opacity: 0.75;
}

main h1 {
  counter-reset: section var(--section-number) subsection;
}
main h1::before {
  content: counters(section, ".") ". " !important;
}
main h2 {
  counter-increment: subsection;
  counter-reset: subsubsection;
}
main h2::before {
  content: counters(section, ".") "." counters(subsection, ".") ". " !important;
}
main h3 {
  counter-increment: subsubsection;
}
main h3::before {
  content: counters(section, ".") "." counters(subsection, ".") "." counters(subsubsection, ".") ". " !important;
}
main h1::before,
main h2::before,
main h3::before {
  font-weight: 300;
  font-variant: tabular-nums;
  display: inline-block;
  width: 4em !important;
  margin-inline-start: calc(-4em - 0.5rem) !important;
  margin-right: 0.5rem;
  text-align: right;
}
main h1::before .sidebar-collapsible,
main h2::before .sidebar-collapsible,
main h3::before .sidebar-collapsible {
  display: none;
}
main h1:target::before,
main h2:target::before,
main h3:target::before {
  background-color: color-mix(in srgb, var(--links) 40%, transparent);
}
main h4::before:target,
main h5::before:target,
main h6::before:target {
  content: "»";
  width: 1em !important;
  margin-inline-start: calc(-1em - 0.5rem) !important;
  margin-right: 0.5rem;
  text-align: right;
  color: var(--search-mark-bg);
}

#information-table table {
  margin: 0;
}
#information-table table thead {
  display: none;
}
#information-table table tr {
  background-color: transparent;
}
#information-table table td {
  border: none;
  padding: 0.25em 0;
}
#information-table table td:nth-child(1) {
  font-weight: 600;
  padding-right: 0.5em;
}
#information-table table td:nth-child(1)::before, #information-table table td:nth-child(1)::after {
  content: '"';
  opacity: 0.5;
  font-weight: 400;
}
#information-table table td:nth-child(2)::before {
  content: "=";
  opacity: 0.5;
  padding-right: 0.5em;
}
#information-table a[href^="#preferences-"] {
  font-size: 0.75em;
}

.preferences {
  border: 1px solid var(--theme-popup-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.preferences > * {
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}
.preferences > *:first-child {
  border-radius: 0;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.preferences > *:last-child {
  border-radius: 0;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.preferences > *:not(:last-child) {
  border-bottom: 1px solid var(--theme-popup-border);
}
.preferences > *:target {
  outline: 2px solid var(--sidebar-active);
  outline-offset: -2px;
}
.preferences > *:hover {
  background-color: color-mix(in srgb, var(--sidebar-bg) 50%, transparent) !important;
  color: var(--sidebar-fg);
}

#presets {
  padding: 0;
}
#presets .preset {
  display: grid;
  grid-template: "name checkmark" "description checkmark";
  grid-template-columns: 1fr auto;
  margin: 0;
  padding: 0.75rem 1rem;
  padding-bottom: 0.85rem; /* same as p font-size */
  text-align: left;
}
#presets .preset:checked {
  background-color: var(--theme-popup-border);
}
#presets .preset strong {
  grid-area: name;
}
#presets .preset p {
  grid-area: description;
}
#presets .preset input[type=radio] {
  grid-area: checkmark;
}
#presets p {
  margin: 0;
  font-size: 0.85em;
  opacity: 0.75;
}
#presets input[type=radio] {
  align-self: center;
  appearance: none;
}
#presets input[type=radio]::before {
  content: " ";
  font-family: "Material Icons";
  font-size: 1.5em;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
}
#presets input[type=radio]:checked::before {
  content: "\e5ca";
}

#namevars label {
  display: grid;
  grid-template: "name name" "input revert";
  grid-template-columns: 1fr auto;
  user-select: none;
}
#namevars label:hover {
  background-color: inherit;
}
#namevars label:focus-within {
  background-color: var(--sidebar-bg);
  color: var(--sidebar-fg);
}
#namevars label span {
  font-size: 0.85rem;
  font-weight: bold;
  margin: 0.75rem 1rem;
  margin-bottom: 0.25rem;
}
#namevars label > span:first-child {
  grid-area: name;
}
#namevars label .input {
  grid-area: input;
}
#namevars label .revert-button {
  grid-area: revert;
}
#namevars .input {
  font-family: inherit;
  font-size: inherit;
  padding: 0.35em 0rem;
  margin: 0 1rem;
  margin-bottom: 0.25rem;
  text-indent: 0;
  border: none;
  background-color: transparent;
}
#namevars .input:focus {
  outline: none;
}
#namevars .revert-button {
  background-color: transparent;
  border: none;
  border-radius: var(--border-radius);
  padding: 0;
  margin: 0.25rem;
  margin-left: 0;
}
#namevars .revert-button:hover {
  background-color: var(--search-mark-bg);
}
#namevars .revert-button .material-icons {
  line-height: 0;
}

:root {
  --menu-bar-height: 40px;
  --content-max-width: 660px;
}

#menu-bar .center {
  flex: 1;
}
#menu-bar .scrolled {
  overflow: visible;
}

#shadow-overlay {
  position: fixed;
  top: var(--menu-bar-height);
  left: 0;
  width: 100%;
  height: 100%;
  transition: none;
  pointer-events: none;
}
#shadow-overlay .scrolled {
  --shade-color: var(--sidebar-shade-color);
  box-shadow: inset 0 1px var(--shade-color);
  background: linear-gradient(to bottom, var(--shade-color), transparent 4px);
}

span.namevar {
  color: var(--inline-code-color);
  transition: background-color 0.5s var(--transition-easing);
}
span.namevar.changed {
  background-color: var(--search-mark-bg);
  transition: none;
}

.warning {
  padding: 0 1.5rem;
  border-inline-start: 0.1em solid var(--warning-border);
}
.warning::before {
  font-size: 1.25rem;
  height: 1.25rem;
  line-height: 1.25;
  margin-inline-start: -3.075rem;
}

:root {
  --sidebar-width: clamp(150px, 20vw, 300px);
  --sidebar-shade-color-light: rgba(0 0 0 / 7%);
  --sidebar-shade-color-dark: rgba(0 0 0 / 25%);
  --sidebar-shade-color: light-dark(
    var(--sidebar-shade-color-light),
    var(--sidebar-shade-color-dark)
  );
  /* Hack: we're resetting this in the actual element. */
  --sidebar-resize-indicator-width: 0px;
}

.sidebar {
  z-index: 100;
  box-shadow: inset -1px 0 var(--sidebar-shade-color);
}
.sidebar .sidebar-resize-handle {
  --sidebar-resize-indicator-width: 0.5rem;
  right: 0;
}
.sidebar .sidebar-scrollbox {
  padding: 1em;
}

.chapter {
  counter-reset: item -1;
}
.chapter > li {
  display: flex;
  flex-direction: column;
}
.chapter > li[data-section] {
  counter-increment: item;
}
.chapter > li > ol {
  counter-reset: subitem;
  display: block;
  padding-inline-start: 2.5rem;
  list-style: decimal;
  font-size: 0.9em;
}
.chapter > li > ol > li {
  counter-increment: subitem;
  display: list-item;
}
.chapter > li > ol > li::marker {
  content: counter(item) "." counter(subitem) ". ";
}
.chapter > li:not(.expanded) + li > ol {
  display: block;
}

.admonition {
  --admonition-border-radius: var(--border-radius);
  font-size: 0.95em;
  padding: 0;
  border-radius: var(--admonition-border-radius);
  border-inline-start-width: 0;
  background-color: color-mix(in srgb, var(--sidebar-bg) 50%, transparent) !important;
}
.admonition.admonish-warning {
  border-width: 0.1rem;
}
.admonition:not(.admonish-warning) {
  border: 1px solid var(--theme-popup-border) !important;
}
.admonition > .admonition-title {
  background: none !important;
  width: 100%;
  min-height: unset !important;
  margin-inline: 0 !important;
  padding-block: 1em !important;
  padding-inline: 3.25em 1rem !important;
  border-top-left-radius: var(--admonition-border-radius);
  border-top-right-radius: var(--admonition-border-radius);
}
.admonition > .admonition-title::before {
  top: 1em !important;
  inset-inline-start: 1rem !important;
  width: 1.5em !important;
  height: 1.5em !important;
}
.admonition > :not(.admonition-title) {
  padding-inline: 1rem !important;
}
.admonition > :not(.admonition-title) > p:first-child {
  margin-top: 0;
}

html-encrypted:has(> .decrypted-content) {
  --stripe: 20px;
  --stripe-1: color-mix(in srgb, var(--warning-border) 15%, transparent);
  --stripe-2: color-mix(in srgb, var(--warning-border) 05%, transparent);
  display: flex;
  flex-direction: column;
  border: 0.1rem solid var(--warning-border);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--notification-shadow);
}
html-encrypted:has(> .decrypted-content):before {
  top: 0;
  left: 0;
  width: 100%;
  content: "🔓 Decrypted / Confidential";
  font-size: 0.85em;
  opacity: 0.75;
  padding: 0.5rem 1rem;
  background-image: repeating-linear-gradient(135deg, var(--stripe-1) 0px, var(--stripe-1) calc(var(--stripe) / 2), var(--stripe-2) calc(var(--stripe) / 2), var(--stripe-2) calc(var(--stripe)));
}
html-encrypted > div.decrypted-content {
  margin: 0.5em 1em;
  background: var(--bg);
  padding: 0.5rem;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
html-encrypted > div.decrypted-content h4,
html-encrypted > div.decrypted-content h5,
html-encrypted > div.decrypted-content h6 {
  margin: 1em 0;
}

.encrypted-notification {
  font-style: italic;
  opacity: 0.8;
}

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