@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;600;800&family=Source+Code+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@font-face {
  font-family: 'Avenir Next';
  src: url(public/fonts/94f2f163d4b698242fef.otf);
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-weight: 400;
  src: url(/fnt/c39581384bcfe728af02.woff2);
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url(/fnt/bdbbdeddfdfff17b0879.woff2);
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Flow Circular';
  src: url(public/fonts/853ff76f08786ae44ca0.woff);
  font-display: swap;
}
:root {
  --default-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
    'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Microsoft YaHei Light', sans-serif;
  --mermaid-font: var(--default-font);
  --reveal-font: var(--default-font);
  --font-monospace: 'Source Code Pro', monospace;
}
.theme-dark {
  --background-primary: #202020;
  --background-primary-alt: #1a1a1a;
  --background-secondary: #161616;
  --background-secondary-alt: #000000;
  --background-modifier-border: #333;
  --background-modifier-form-field: rgba(0, 0, 0, 0.3);
  --background-modifier-form-field-highlighted: rgba(0, 0, 0, 0.22);
  --background-modifier-box-shadow: rgba(0, 0, 0, 0.3);
  --background-modifier-success: #197300;
  --background-modifier-error: #3d0000;
  --background-modifier-error-rgb: 61, 0, 0;
  --background-modifier-error-hover: #470000;
  --background-modifier-cover: rgba(0, 0, 0, 0.8);
  --text-accent: #7f6df2;
  --text-accent-hover: #8875ff;
  --text-normal: #dcddde;
  --text-muted: #999;
  --text-muted-rgb: 153, 153, 153;
  --text-faint: #666;
  --text-error: #ff3333;
  --text-error-hover: #990000;
  --text-highlight-bg: rgba(255, 255, 0, 0.4);
  --text-highlight-bg-active: rgba(255, 128, 0, 0.4);
  --text-selection: rgba(23, 48, 77, 0.99);
  --text-on-accent: #dcddde;
  --interactive-normal: #2a2a2a;
  --interactive-hover: #303030;
  --interactive-accent: #483699;
  --interactive-accent-rgb: 72, 54, 153;
  --interactive-accent-hover: #4d3ca6;
  --interactive-success: #197300;
  --scrollbar-active-thumb-bg: rgba(255, 255, 255, 0.2);
  --scrollbar-bg: rgba(255, 255, 255, 0.05);
  --scrollbar-thumb-bg: rgba(255, 255, 255, 0.1);
  --highlight-mix-blend-mode: lighten;
}
.theme-light {
  --background-primary: #ffffff;
  --background-primary-alt: #f5f6f8;
  --background-secondary: #f2f3f5;
  --background-secondary-alt: #e3e5e8;
  --background-modifier-border: #ddd;
  --background-modifier-form-field: #fff;
  --background-modifier-form-field-highlighted: #fff;
  --background-modifier-box-shadow: rgba(0, 0, 0, 0.1);
  --background-modifier-success: #a4e7c3;
  --background-modifier-error: #990000;
  --background-modifier-error-rgb: 230, 135, 135;
  --background-modifier-error-hover: #bb0000;
  --background-modifier-cover: rgba(0, 0, 0, 0.8);
  --text-accent: #705dcf;
  --text-accent-hover: #7a6ae6;
  --text-normal: #2e3338;
  --text-muted: #888888;
  --text-muted-rgb: 136, 136, 136;
  --text-faint: #999999;
  --text-error: #800000;
  --text-error-hover: #990000;
  --text-highlight-bg: rgba(255, 255, 0, 0.4);
  --text-highlight-bg-active: rgba(255, 128, 0, 0.4);
  --text-selection: rgba(204, 230, 255, 0.99);
  --text-on-accent: #f2f2f2;
  --interactive-normal: #f2f3f5;
  --interactive-hover: #e9e9e9;
  --interactive-accent: #7b6cd9;
  --interactive-accent-rgb: 123, 108, 217;
  --interactive-accent-hover: #8273e6;
  --interactive-success: #197300;
  --scrollbar-active-thumb-bg: rgba(0, 0, 0, 0.2);
  --scrollbar-bg: rgba(0, 0, 0, 0.05);
  --scrollbar-thumb-bg: rgba(0, 0, 0, 0.1);
  --highlight-mix-blend-mode: darken;
}
.page-container {
  width: 50vw;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  background-color: var(--background-primary);
}
.page-title {
  font-weight: 800;
  font-size: 46px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
}
a {
  color: var(--text-accent);
  outline: none;
}
a:hover {
  color: var(--text-accent-hover);
}
audio {
  outline: none;
}
hr {
  border: none;
  border-top: 1px solid;
  border-color: var(--background-modifier-border);
  margin: 26px 0;
}
[contenteditable] {
  outline: none;
}
.button-container {
  margin-top: 20px;
}
button {
  color: var(--text-normal);
  background-color: var(--interactive-normal);
  border-radius: 4px;
  border: none;
  padding: 6px 20px;
  cursor: pointer;
  margin-right: 12px;
  font-family: 'Inter', sans-serif;
  outline: none;
  user-select: none;
}
button:hover {
  background-color: var(--interactive-hover);
}
button.mod-cta {
  background-color: var(--interactive-accent);
  color: var(--text-on-accent);
}
button.mod-cta a {
  color: inherit;
  text-decoration: none;
}
button.mod-cta:hover {
  background-color: var(--interactive-accent-hover);
}
button.mod-muted {
  background-color: var(--background-secondary-alt);
  color: var(--text-muted);
}
button.mod-muted:hover {
  background-color: var(--background-secondary-alt);
}
button.mod-warning {
  background-color: var(--background-modifier-error);
  color: var(--text-on-accent);
}
button.mod-warning:hover {
  background-color: var(--background-modifier-error-hover);
}
.icon-button-group {
  display: inline-block;
}
.icon-button {
  display: inline-block;
  color: var(--interactive-normal);
}
.rich-button {
  width: auto;
  padding-top: 5px;
}
.rich-button-icon {
  position: relative;
  top: 6px;
}
.rich-link {
  color: var(--text-accent);
  position: relative;
  padding-left: 30px;
}
.rich-link-icon {
  position: absolute;
  left: 5px;
  top: 3px;
}
.input-label {
  display: inline-block;
  width: 150px;
  text-align: right;
  margin-right: 8px;
}
.input-button {
  padding: 6px 14px;
  margin-left: 14px;
  color: var(--text-muted);
  font-size: 16px;
  position: relative;
  top: -1px;
}
.input-button:hover {
  color: var(--text-normal);
}
input[type='text'],
input[type='search'],
input[type='email'],
input[type='password'],
input[type='number'] {
  background: var(--background-modifier-form-field);
  border: 1px solid var(--background-modifier-border);
  color: var(--text-normal);
  font-family: 'Inter', sans-serif;
  padding: 5px 14px;
  font-size: 16px;
  border-radius: 4px;
  outline: none;
  height: 30px;
}
input[type='text']:hover,
input[type='search']:hover,
input[type='email']:hover,
input[type='password']:hover,
input[type='number']:hover {
  background-color: var(--background-modifier-form-field-highlighted);
}
input[type='text']:active,
input[type='search']:active,
input[type='email']:active,
input[type='password']:active,
input[type='number']:active,
input[type='text']:focus,
input[type='search']:focus,
input[type='email']:focus,
input[type='password']:focus,
input[type='number']:focus {
  border-color: var(--interactive-accent);
}
input[type='text']::placeholder,
input[type='search']::placeholder,
input[type='email']::placeholder,
input[type='password']::placeholder,
input[type='number']::placeholder {
  color: var(--text-faint);
}
input[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.checkbox-container {
  cursor: pointer;
  background-color: var(--background-secondary-alt);
  border-radius: 14px;
  display: inline-block;
  height: 22px;
  position: relative;
  user-select: none;
  width: 42px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
  transition: background 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border 0.15s ease-in-out,
    opacity 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.checkbox-container.is-enabled {
  background-color: var(--interactive-accent);
}
.checkbox-container.is-enabled:after {
  transform: translate3d(19px, 0, 0);
}
.checkbox-container.is-enabled:active:after {
  left: -4px;
}
.checkbox-container:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
}
.checkbox-container:after {
  pointer-events: none;
  content: '';
  display: block;
  position: absolute;
  background-color: #fff;
  width: 15px;
  height: 15px;
  margin: 3px;
  border-radius: 9px;
  transition: transform 0.15s ease-in-out, width 0.1s ease-in-out, left 0.1s ease-in-out,
    -webkit-transform 0.15s ease-in-out;
  left: 0;
  transform: translate3d(3px, 0, 0);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15);
}
.checkbox-container:active:after {
  width: 20px;
}
.dropdown {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--text-normal);
  line-height: 1.3;
  padding: 0.6em 1.9em 0.5em 0.8em;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid var(--background-modifier-border);
  border-radius: 0.5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--background-modifier-form-field);
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23483699%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}
.dropdown::-ms-expand {
  display: none;
}
.dropdown:hover {
  background-color: var(--background-modifier-form-field-highlighted);
}
.dropdown:focus {
  border-color: var(--interactive-accent);
  outline: none;
}
.dropdown option {
  font-weight: normal;
  background-color: var(--background-primary);
}
*[dir='rtl'] .dropdown,
:root:lang(ar) .dropdown,
:root:lang(iw) .dropdown {
  background-position: left 0.7em top 50%, 0 0;
  padding: 0.6em 0.8em 0.5em 1.4em;
}
kbd {
  font-family: var(--font-monospace);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  background-color: var(--background-secondary);
}
.mod-warning {
  color: var(--text-error);
}
.horizontal-link-group {
  text-align: center;
}
.horizontal-link-group a,
.horizontal-link-group span {
  margin: 0 10px;
}
.horizontal-preference-group {
  display: flex;
}
.horizontal-preference-group button {
  border-radius: 0;
  margin: 0 -1px;
}
.horizontal-preference-group button:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.horizontal-preference-group button:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.horizontal-preference-group button.is-selected {
  background-color: var(--interactive-accent);
  color: var(--text-on-accent);
}
.horizontal-preference-group button.is-selected:hover {
  background-color: var(--interactive-accent-hover);
}
.footer-link-group {
  list-style: none;
  display: inline-block;
  margin: 0 30px;
  padding: 0;
}
.footer-header {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
}
.footer-link {
  margin: 4px 0;
}
.horizontal-tab-header {
  display: flex;
}
.horizontal-tab-nav-item {
  background-color: var(--background-secondary-alt);
  padding: 10px 6px 10px 24px;
  cursor: default;
  font-size: 16px;
}
.horizontal-tab-nav-item.is-active {
  background-color: var(--background-secondary);
}
.horizontal-tab-nav-item:hover {
  background-color: var(--background-secondary);
}
.horizontal-tab-nav-item {
  border-top: 3px solid transparent;
}
.horizontal-tab-nav-item:first-child {
  border-top-left-radius: 6px;
}
.horizontal-tab-nav-item:last-child {
  border-top-right-radius: 6px;
}
.horizontal-tab-nav-item.is-active {
  border-top-color: var(--interactive-accent);
}
.horizontal-tab-content {
  background-color: var(--background-secondary);
  padding: 5px 30px;
}
.prompt {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 10px;
  background-color: var(--background-primary);
  z-index: 1;
  position: absolute;
  top: 80px;
  width: 700px;
  max-width: 80vw;
  max-height: 70vh;
}
input.prompt-input {
  width: 100%;
  padding: 9px 20px 8px 20px;
  font-size: 16px;
  border-radius: 6px;
  height: 40px;
}
.prompt-results {
  list-style: none;
  margin: 0;
  padding: 10px 0 0 0;
  overflow-y: auto;
}
.prompt-result {
  padding: 10px 20px;
  border-radius: 6px;
  color: var(--text-muted);
  cursor: pointer;
}
.prompt-result:hover {
  background-color: var(--background-primary);
}
.prompt-result.is-active {
  background-color: var(--background-primary-alt);
  color: var(--text-normal);
}
.prompt-instructions {
  user-select: none;
  font-size: 13px;
  opacity: 0.7;
  padding: 10px 10px 2px 10px;
  text-align: center;
}
.prompt-instruction {
  display: inline-block;
  margin-right: 20px;
}
.prompt-instruction-command {
  font-size: 12px;
  font-weight: 900;
  margin-right: 4px;
}
.components-container .menu {
  position: relative;
  display: inline-block;
}
.is-flashing {
  transition: background-color 1s ease;
  background-color: var(--text-highlight-bg);
  color: var(--text-normal);
}
.is-flashing * {
  background-color: transparent !important;
  color: var(--text-normal);
}
.card-container {
  display: flex;
}
.card {
  background-color: var(--background-secondary-alt);
  border-radius: 4px;
  border: 1px solid var(--background-modifier-border);
  margin: 0 10px;
  padding: 15px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card ul {
  padding: 0;
}
.card .button-container {
  margin: 10px 0;
}
.card li {
  margin: 5px 0;
}
.card.u-clickable {
  cursor: pointer;
}
.card.u-clickable:hover {
  border: 1px solid var(--interactive-accent);
  background-color: rgba(var(--interactive-accent-rgb), 0.1);
}
.card.is-selected {
  border: 1px solid var(--interactive-accent);
  background-color: rgba(var(--interactive-accent-rgb), 0.2);
}
.card-title {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: var(--text-muted);
}
.card-description {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 20px;
  flex-grow: 1;
}
.empty-state {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.empty-state-container {
  max-width: 480px;
  max-height: 280px;
  margin: 20px;
}
.empty-state-title {
  margin-top: 20px;
  font-weight: 800;
  font-size: 32px;
  position: relative;
}
.empty-state-action-list {
  font-size: 17px;
  line-height: 24px;
  color: var(--text-muted);
  margin-top: 20px;
}
.empty-state-action {
  cursor: pointer;
  line-height: 36px;
}
.empty-state-action:hover {
  color: var(--text-accent-hover);
}
.empty-state-close-button {
  margin-left: 8px;
  position: absolute;
  top: -2px;
  left: -46px;
  color: var(--text-muted);
  cursor: pointer;
}
.empty-state-close-button:hover {
  color: var(--text-normal);
}
.flair {
  background-color: var(--interactive-normal);
  border-radius: 4px;
  color: var(--text-normal);
  font-size: 10px;
  letter-spacing: 0.05em;
  margin-left: 8px;
  padding: 2px 4px;
  position: relative;
  text-transform: uppercase;
  vertical-align: super;
  white-space: nowrap;
}
.flair.mod-pop {
  background-color: var(--interactive-accent);
  color: var(--text-on-accent);
}
input[type='range'] {
  width: 100px;
  -webkit-appearance: none;
  background-color: var(--background-modifier-border);
  border-radius: 3px;
}
input[type='range']::-webkit-slider-runnable-track {
  height: 6px;
  -webkit-appearance: none;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  border-radius: 6px;
  width: 12px;
  height: 12px;
  cursor: ew-resize;
  background: var(--interactive-accent);
  position: relative;
  top: -3px;
}
input[type='range'] {
  outline: none;
}
textarea {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-primary);
  color: var(--text-normal);
  border: 1px solid var(--background-modifier-border);
  outline: none;
  font-size: 16px;
  line-height: 24px;
  resize: none;
  border-radius: 4px;
  padding: 10px 20px;
}
.clickable-icon {
  color: var(--text-muted);
  cursor: pointer;
  margin: 0 6px;
}
.clickable-icon:hover {
  color: var(--text-normal);
}
.loader-cube {
  width: 40px;
  height: 40px;
  margin: 100px auto;
}
.loader-cube .sk-cube {
  width: 33%;
  height: 33%;
  background-color: var(--interactive-accent);
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.loader-cube .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loader-cube .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loader-cube .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.loader-cube .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.loader-cube .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loader-cube .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loader-cube .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.loader-cube .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.loader-cube .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@-webkit-keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes sk-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
.is-loading {
  position: relative;
}
.is-loading:before {
  content: ' ';
  position: absolute;
  top: 0;
  width: 0;
  height: 3px;
  background-color: var(--interactive-accent);
  animation: 1000ms ease-in-out 300ms infinite progress-bar;
}
.list-item {
  display: flex;
  padding: 4px 8px;
  margin: 4px 0;
  line-height: 1em;
  align-items: center;
}
.list-item-part:not(:first-child) {
  margin-left: 10px;
}
.list-item-part.mod-extended {
  flex-grow: 1;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  margin-top: 5vh;
}
.lightbox:target {
  display: block;
}
.u-center-text {
  text-align: center;
}
.u-faded-text {
  color: var(--text-muted);
}
.u-pop {
  color: var(--text-accent-hover);
}
.u-muted {
  color: var(--text-muted);
}
.u-small {
  font-size: 0.8em;
}
.u-clickable {
  cursor: pointer;
}
.u-pop-bg {
  background-color: var(--interactive-accent);
  color: var(--text-on-accent);
  display: inline-block;
  padding: 3px 16px;
  border-radius: 20px;
  opacity: 0.6;
  cursor: default;
}
.u-pop-bg:hover {
  opacity: 1;
}
.components-container h3 {
  font-weight: 600;
  font-size: 30px;
  margin: 60px 0 25px 0;
}
.components-container .checkbox-demo {
  margin: 10px 0;
}
.components-container .checkbox-demo label {
  display: inline-block;
  width: 300px;
}
.components-container .prompt {
  position: static;
}
.drag-ghost {
  position: fixed;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: var(--background-secondary);
  border: 1px solid var(--background-secondary-alt);
  box-shadow: 0 2px 8px var(--background-modifier-box-shadow);
  z-index: var(--layer-dragged-item);
  max-width: 300px;
}
.drag-ghost-self {
  display: flex;
}
.drag-ghost-self svg {
  vertical-align: middle;
  align-self: center;
  margin-right: 8px;
  flex-shrink: 0;
}
.drag-ghost-self span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.drag-ghost-action {
  padding: 2px 0;
  font-size: 14px;
  color: var(--text-muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
input[type='color'] {
  -webkit-appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
input[type='color']::-webkit-color-swatch-wrapper {
  padding: 0;
}
input[type='color']::-webkit-color-swatch {
  border: 2px solid var(--background-modifier-border);
  border-radius: 14px;
  height: 24px;
}
.menu {
  background-color: var(--background-primary);
  border-radius: 4px;
  border: 1px solid var(--background-modifier-border);
  box-shadow: 0 2px 8px var(--background-modifier-box-shadow);
  position: fixed;
  z-index: var(--layer-menu);
  user-select: none;
  max-height: calc(100% - 25px);
  overflow: hidden;
}
.menu.mod-no-icon .menu-item-icon {
  display: none;
}
.menu {
  padding: 4px 0;
}
.menu-separator {
  height: 0;
  margin: 4px 0;
  border-bottom: 1px solid var(--background-modifier-border);
}
.menu-separator:last-child,
.menu-separator:first-child {
  display: none;
}
.menu-separator + .menu-separator {
  display: none;
}
.menu-item {
  padding: 2px 14px 3px 14px;
  cursor: pointer;
  font-size: 14px;
  height: 32px;
  line-height: 31px;
  white-space: nowrap;
}
.menu-item.is-disabled {
  cursor: default;
  color: var(--text-faint);
}
.menu-item.is-label {
  cursor: default;
  pointer-events: none;
  font-size: 20px;
  color: var(--text-muted);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.menu-item:hover:not(.is-disabled):not(.is-label) {
  background-color: var(--background-secondary);
}
.menu-item-icon {
  display: inline-block;
  width: 28px;
  color: var(--text-muted);
  position: relative;
  top: 2px;
}
.menu-item-title {
  display: inline-block;
}
::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb-bg);
}
::-webkit-scrollbar {
  background-color: var(--scrollbar-bg);
}
::-webkit-scrollbar-thumb:active {
  background-color: var(--scrollbar-active-thumb-bg);
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  border-radius: 100px;
}
::-webkit-scrollbar-thumb {
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:active {
  border-radius: 100px;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb-bg) var(--scrollbar-bg);
}
.tooltip {
  animation: pop-down 200ms forwards ease-in-out;
  box-shadow: 0 2px 8px var(--background-modifier-box-shadow);
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  color: #dcddde;
  font-size: 14px;
  left: 50%;
  line-height: 20px;
  max-width: 300px;
  padding: 5px 14px;
  position: fixed;
  text-align: center;
  transform: translateX(-50%);
  z-index: var(--layer-tooltip);
  pointer-events: none;
  white-space: pre-wrap;
}
.tooltip.mod-right {
  animation: pop-right 200ms forwards ease-in-out;
  transform: translateY(-50%);
}
.tooltip.mod-left {
  animation: pop-right 200ms forwards ease-in-out;
  transform: translateY(-50%);
}
.tooltip.mod-error {
  width: 200px;
  background-color: var(--background-modifier-error);
  color: var(--text-on-accent);
}
.tooltip.mod-wide {
  max-width: 450px;
  width: 400px;
}
.tooltip .tooltip-arrow {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 0;
  margin-left: -5px;
  border-bottom: 5px solid rgba(0, 0, 0, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: ' ';
  font-size: 0;
  line-height: 0;
}
.tooltip.mod-right .tooltip-arrow {
  top: calc(50% - 5px);
  left: -5px;
  border-right: 5px solid rgba(0, 0, 0, 0.9);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.tooltip.mod-left .tooltip-arrow {
  top: calc(50% - 5px);
  left: calc(100% + 5px);
  border-left: 5px solid rgba(0, 0, 0, 0.9);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.tooltip.mod-top .tooltip-arrow {
  top: calc(100%);
  border-top: 5px solid rgba(0, 0, 0, 0.9);
  border-bottom: 5px solid transparent;
}
.tooltip.mod-error .tooltip-arrow {
  border-bottom-color: var(--background-modifier-error);
}
.tooltip.mod-error.mod-right .tooltip-arrow {
  border-right-color: var(--background-modifier-error);
  border-bottom: 5px solid transparent;
}
.tooltip.mod-error.mod-left .tooltip-arrow {
  border-left-color: var(--background-modifier-error);
  border-bottom: 5px solid transparent;
}
[aria-label] svg {
  pointer-events: none;
}
@keyframes pop-down {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(1);
  }
  20% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1.02);
  }
  40% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
@keyframes pop-right {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(1);
  }
  20% {
    opacity: 0.7;
    transform: translateY(-50%) scale(1.02);
  }
  40% {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}
@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
.inline-block {
  display: inline-block;
  vertical-align: middle;
}
.hidden-token {
  display: inline;
  font-size: 1px !important;
  letter-spacing: -1ch;
  font-family: monospace;
  color: transparent;
}
.view-actions {
  padding: 4px 10px;
  display: flex;
  justify-content: flex-end;
}
.view-action {
  margin: 0 8px;
  cursor: pointer;
  color: var(--text-muted);
  position: relative;
  top: 3px;
}
.view-action:hover,
.view-action.is-active {
  color: var(--text-accent);
}
.editor .cl-hashtag {
  color: var(--text-muted);
  text-decoration: underline;
}
.document-search-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: var(--background-primary-alt);
  display: flex;
  flex-direction: column;
  padding: 5px;
  z-index: var(--layer-popover);
  border-top: 1px solid var(--background-secondary);
}
.document-search-container.mod-replace-mode {
  height: 80px;
}
.document-search,
.document-replace {
  width: 100%;
  display: flex;
  height: 40px;
  overflow: hidden;
}
.document-replace {
  display: none;
}
.document-search-container.mod-replace-mode .document-replace {
  display: flex;
}
input.document-search-input,
input.document-replace-input {
  border: none;
  flex-grow: 1;
  height: 28px;
  margin: 1px 8px;
}
input.document-search-input.mod-no-match,
input.document-replace-input.mod-no-match {
  background-color: rgba(var(--background-modifier-error-rgb), 0.4);
}
input.document-search-input.mod-no-match:hover,
input.document-replace-input.mod-no-match:hover {
  background-color: rgba(var(--background-modifier-error-rgb), 0.4);
}
.document-search-button {
  height: 26px;
  font-size: 14px;
  padding: 0 6px;
  color: var(--text-muted);
  margin: 2px 4px;
}
.document-search-button:hover {
  color: var(--text-normal);
}
.document-search-close-button {
  color: var(--text-faint);
  cursor: pointer;
  position: relative;
  top: 2px;
  font-size: 26px;
  line-height: 10px;
  padding: 0 5px;
}
.document-search-close-button:before {
  content: '\D7';
}
.document-search-close-button:hover {
  color: var(--text-normal);
}
.view-content {
  width: 100%;
  height: calc(100% - 36px);
}
.drag-ghost.mod-leaf {
  display: flex;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 20px;
  padding: 4px 16px;
  z-index: var(--layer-tooltip);
}
.drag-ghost-icon {
  margin-right: 6px;
  position: relative;
  top: 1px;
}
body.is-hovering-clickable,
body.is-hovering-clickable * {
  cursor: pointer !important;
}
::selection {
  background-color: var(--text-selection);
}
.markdown-preview-view {
  font-size: var(--editor-font-size);
  line-height: 1.5;
  padding: 20px 30px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: auto;
  overflow-wrap: break-word;
  color: var(--text-normal);
  user-select: text;
  -webkit-user-select: text;
}
.markdown-preview-view img:not([width]),
.markdown-preview-view audio,
.markdown-preview-view video {
  max-width: 100%;
  outline: none;
}
.markdown-preview-view h1,
.markdown-preview-view h2,
.markdown-preview-view h3,
.markdown-preview-view h4,
.markdown-preview-view h5,
.markdown-preview-view h6 {
  margin: 15px 0;
}
.markdown-preview-view h1 {
  font-size: 2em;
}
.markdown-preview-view h2 {
  font-size: 1.6em;
}
.markdown-preview-view h3 {
  font-size: 1.37em;
}
.markdown-preview-view h4 {
  font-size: 1.25em;
}
.markdown-preview-view h5,
.markdown-preview-view h6 {
  font-size: 1.12em;
}
.markdown-preview-view h6 {
  color: var(--text-muted);
}
.markdown-preview-view.is-readable-line-width {
  max-width: 50%;
  min-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.markdown-preview-view .internal-link {
  text-decoration: underline;
  cursor: pointer;
}
.markdown-preview-view .internal-link.is-unresolved {
  opacity: 0.5;
}
.markdown-preview-view table {
  border-collapse: collapse;
  margin-bottom: 20px;
}
.markdown-preview-view th {
  font-weight: 800;
}
.markdown-preview-view th,
.markdown-preview-view td {
  padding: 4px 10px;
  border: 1px solid var(--background-modifier-border);
}
.markdown-preview-view blockquote {
  border-radius: 0 4px 4px 0;
  border: 1px solid var(--background-modifier-border);
  border-left-width: 5px;
  padding: 10px 20px;
  margin-inline-start: 30px;
  margin-inline-end: 30px;
}
.markdown-preview-view blockquote > :first-child {
  margin-top: 0;
}
.markdown-preview-view blockquote > :last-child {
  margin-bottom: 0;
}
.markdown-preview-view mark {
  background-color: var(--text-highlight-bg);
  color: var(--text-normal);
}
.markdown-preview-view mark .internal-link {
  color: var(--text-normal);
}
.markdown-preview-view .markdown-embed,
.markdown-preview-view .file-embed {
  border-top: 1px solid var(--background-modifier-border);
  border-bottom: 1px solid var(--background-modifier-border);
  padding: 4px 0;
  margin: 28px 0;
}
.markdown-preview-view .file-embed {
  padding: 15px 20px;
  border: 1px solid var(--background-modifier-border);
  border-radius: 6px;
}
.markdown-preview-view .file-embed.mod-empty {
  color: var(--text-muted);
}
.markdown-preview-view .pdf-embed {
  width: 100%;
  height: 800px;
}
.markdown-preview-view .internal-embed:not(.image-embed) {
  display: block;
}
.markdown-preview-view .markdown-embed-content {
  max-height: 800px;
  overflow: hidden;
}
.markdown-preview-view .markdown-embed-content > .markdown-preview-view {
  max-height: 800px;
}
.markdown-preview-view .markdown-embed-content p:first-child {
  margin-top: 6px;
}
.markdown-preview-view .internal-query.is-embed {
  margin: 28px 0;
  border-top: 1px solid var(--background-modifier-border);
  border-bottom: 1px solid var(--background-modifier-border);
}
.markdown-preview-view .internal-query.is-embed .internal-query-header {
  text-align: center;
  padding: 4px 0 12px 0;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
}
.markdown-preview-view .internal-query.is-embed .internal-query-header-icon {
  color: var(--text-faint);
  margin-right: 6px;
  display: flex;
}
.markdown-preview-view .internal-query.is-embed .internal-query-header-title {
  font-size: 17px;
  font-weight: 600;
}
.markdown-preview-view .internal-query.is-embed .internal-query-header-title:before,
.markdown-preview-view .internal-query.is-embed .internal-query-header-title:after {
  content: '"';
}
.markdown-preview-view ul > li.task-list-item {
  list-style: none;
  text-indent: -1.5em;
}
.markdown-preview-view ul > li.task-list-item > * {
  text-indent: 0;
}
.markdown-preview-view ul > li.task-list-item.is-checked {
  text-decoration: line-through;
  color: var(--text-faint);
}
.markdown-preview-view .task-list-item-checkbox {
  width: 15px;
  height: 15px;
  position: relative;
  top: 3px;
  margin-right: 6px;
  filter: hue-rotate(42deg);
}
.markdown-preview-view li.is-collapsed > ul,
.markdown-preview-view li.is-collapsed > ol {
  display: none;
}
.markdown-preview-view .heading-collapse-indicator {
  margin-left: -30px;
  padding: 0 10px;
}
.markdown-preview-view:not(.allow-fold-lists) .list-collapse-indicator {
  display: none;
}
.markdown-preview-view:not(.allow-fold-headings) .heading-collapse-indicator {
  display: none;
}
.markdown-preview-view code {
  color: #c7254e;
  font-family: var(--font-monospace);
  background-color: var(--background-primary-alt);
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 0.85em;
}
.markdown-preview-view pre code {
  padding: 0;
}
.markdown-preview-view pre {
  padding: 6px 10px;
  background-color: var(--background-primary-alt);
  border-radius: 4px;
  white-space: pre-wrap;
}
.markdown-preview-view pre code {
  border: none;
}
.markdown-preview-view hr {
  border: none;
  border-top: 2px solid;
  border-color: var(--background-modifier-border);
}
.markdown-embed .markdown-preview-view {
  padding: 20px 10px 10px 10px;
}
.footnote-backref {
  color: var(--text-muted);
  text-decoration: none;
}
.footnote-backref:hover {
  color: var(--text-accent);
}
.mjx-container {
  outline: none;
}
.markdown-embed,
.file-embed {
  position: relative;
}
.markdown-embed-link,
.file-embed-link {
  position: absolute;
  top: 8px;
  right: 20px;
  color: var(--text-faint);
  cursor: pointer;
}
.markdown-embed-link:hover,
.file-embed-link:hover {
  color: var(--text-accent);
}
.markdown-embed-title,
.file-embed-title {
  font-size: 26px;
  line-height: 52px;
  top: 5px;
  left: 0;
  right: 0;
  width: 100%;
}
.file-embed-icon {
  color: var(--text-muted);
  vertical-align: middle;
}
.file-embed {
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.file-embed:hover {
  background-color: var(--background-primary-alt);
  border: 1px solid var(--interactive-accent);
}
.markdown-embed-title {
  font-weight: 900;
  text-align: center;
  height: 50px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
mjx-container {
  outline: none;
}
.external-link {
  background-position: center right;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent, transparent),
    url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjxzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyBjbGFzcz0naS1leHRlcm5hbCcgdmlld0JveD0nMCAwIDMyIDMyJyB3aWR0aD0nMTQnIGhlaWdodD0nMTQnIGZpbGw9J25vbmUnIHN0cm9rZT0nIzg4ODg4OCcgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJyBzdHJva2Utd2lkdGg9JzkuMzglJz48cGF0aCBkPSdNMTQgOSBMMyA5IDMgMjkgMjMgMjkgMjMgMTggTTE4IDQgTDI4IDQgMjggMTQgTTI4IDQgTDE0IDE4Jy8+PC9zdmc+DQo=);
  background-size: 13px;
  padding-right: 16px;
  background-position-y: 4px;
}
a.internal-query {
  background-position: center left;
  background-repeat: no-repeat;
  padding-left: 16px;
  background-image: url(public/images/e09d687ba58dd144020c.svg);
  background-position-y: 4px;
  background-size: 15px;
}
.published-container {
  width: 100%;
  height: 100%;
}
@media print {
  html,
  body {
    padding-top: 0 !important;
    overflow: auto !important;
    height: auto !important;
  }
  iframe,
  .app-container,
  .progress-bar,
  .markdown-embed-link {
    display: none !important;
  }
  body > :not(.print) {
    display: none !important;
  }
  .print .markdown-preview-view {
    -webkit-print-color-adjust: exact;
    color: initial;
  }
  .print .markdown-preview-view mark {
    color: initial;
  }
  .print .markdown-preview-view code[class*='language-'],
  .print .markdown-preview-view pre[class*='language-'] {
    white-space: pre-wrap;
  }
  .print .external-link {
    background: none;
    padding-right: 0;
  }
}
.item-list {
  flex-grow: 1;
  padding-bottom: 20px;
  overflow-y: auto;
}
.drop-indicator {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  border: 2px solid var(--interactive-accent);
  pointer-events: none;
}
.drop-indicator:not(.is-active) {
  display: none;
}
@keyframes progress-bar {
  0% {
    width: 0;
    left: 0;
  }
  5% {
    width: 0;
    left: 0;
  }
  50% {
    width: 100%;
    right: 0;
  }
  95% {
    width: 0;
    right: 0;
  }
  100% {
    width: 0;
    right: 0;
  }
}
.copy-search-result-container {
  display: flex;
  flex-direction: column;
}
.copy-search-result-textarea {
  height: 400px;
}
.outgoing-link-item {
  margin: 4px 16px 4px 10px;
}
.slides-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  transition: -webkit-transform 0.8s ease 0s;
  background-color: #191919;
  z-index: var(--layer-slides);
  border: none;
}
.slides-close-btn {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--text-faint);
  cursor: pointer;
  z-index: 1;
}
.slides-close-btn:hover {
  color: var(--text-muted);
}
.reveal input[type='checkbox'] {
  width: 24px;
  height: 24px;
}
.reveal .task-list-item,
.reveal .footnote-item {
  list-style: none;
}
.reveal .task-list-item {
  margin-left: -1.5em;
}
audio {
  width: 100%;
  height: 46px;
}
.theme-dark audio {
  filter: invert(100%);
}
.tag-pane-tag.is-active {
  background-color: var(--interactive-accent);
  color: var(--text-on-accent);
}
.tag-pane-tag.is-active .tag-pane-tag-count {
  background-color: var(--background-secondary-alt);
  color: var(--text-normal);
}
.tag-pane-tag.is-active:hover {
  background-color: var(--interactive-accent);
  color: var(--text-on-accent);
}
.tag-pane-tag-text,
.tag-pane-tag-count {
  display: inline-block;
}
.tag-pane-tag-text {
  word-break: break-word;
  flex-grow: 1;
}
.tag-container {
  font-size: 14px;
  padding: 0 10px;
  overflow: auto;
}
.notice-container {
  z-index: var(--layer-notice);
  position: fixed;
  top: 22px;
  right: 0;
  padding: 10px;
  overflow: hidden;
}
.notice {
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--background-modifier-box-shadow);
  color: #dcddde;
  font-size: 14px;
  line-height: 22px;
  padding: 10px 20px;
  max-width: 300px;
  margin-bottom: 14px;
  white-space: pre-wrap;
}
.theme-dark .notice {
  background-color: var(--interactive-accent);
  color: var(--text-on-accent);
}
.progress-bar {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--background-modifier-cover);
  z-index: var(--layer-modal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.progress-bar-message {
  margin-bottom: 20px;
  opacity: 1;
  color: var(--text-on-accent);
}
.progress-bar-indicator {
  position: relative;
  height: 8px;
  margin: 0 10vw;
  width: 90vw;
  overflow-x: hidden;
  border-radius: 3px;
}
.progress-bar-line {
  position: absolute;
  opacity: 0.4;
  background-color: var(--interactive-accent);
  width: 150%;
  height: 8px;
}
.progress-bar-subline {
  position: absolute;
  background-color: var(--interactive-accent);
  height: 8px;
}
.progress-bar-subline.mod-increase {
  animation: increase 2s infinite;
}
.progress-bar-subline.mod-decrease {
  animation: decrease 2s 0.5s infinite;
}
.progress-bar .progress-bar-subline {
  transition: width 150ms ease-in-out;
}
@keyframes increase {
  from {
    left: -5%;
    width: 5%;
  }
  to {
    left: 130%;
    width: 100%;
  }
}
@keyframes decrease {
  from {
    left: -80%;
    width: 80%;
  }
  to {
    left: 110%;
    width: 10%;
  }
}
body {
  --layer-cover: 5;
  --layer-sidedock: 10;
  --layer-status-bar: 15;
  --layer-popover: 30;
  --layer-slides: 45;
  --layer-modal: 50;
  --layer-notice: 60;
  --layer-menu: 65;
  --layer-tooltip: 70;
  --layer-dragged-item: 80;
}
.theme-dark {
  --opacity-translucency: 0.75;
}
.theme-light {
  --opacity-translucency: 0.6;
}
.login-field {
  max-width: 500px;
  margin: 1em auto;
}
.spellchecker-dictionary-container {
  max-height: 60vh;
  overflow: auto;
}
.spellchecker-dictionary-item {
  display: flex;
  margin-bottom: 10px;
}
.spellchecker-dictionary-word {
  flex-grow: 1;
}
.spellchecker-dictionary-remove-button {
  cursor: pointer;
  color: var(--text-muted);
  margin-right: 10px;
}
.spellchecker-dictionary-remove-button:hover {
  color: var(--text-normal);
}
.theme-light {
}
.theme-light code[class*='language-'],
.theme-light pre[class*='language-'] {
  color: black;
  background: none;
  text-shadow: 0 1px white;
  font-family: var(--font-monospace);
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
.theme-light pre[class*='language-']::-moz-selection,
.theme-light pre[class*='language-']::-moz-selection,
.theme-light code[class*='language-']::-moz-selection,
.theme-light code[class*='language-']::-moz-selection {
  text-shadow: none;
  background: #b3d4fc;
}
.theme-light pre[class*='language-']::selection,
.theme-light pre[class*='language-']::selection,
.theme-light code[class*='language-']::selection,
.theme-light code[class*='language-']::selection {
  text-shadow: none;
  background: #b3d4fc;
}
@media print {
  .theme-light code[class*='language-'],
  .theme-light pre[class*='language-'] {
    text-shadow: none;
  }
}
.theme-light pre[class*='language-'] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
}
.theme-light:not(pre) > code[class*='language-'],
.theme-light pre[class*='language-'] {
  background: #f5f2f0;
}
.theme-light:not(pre) > code[class*='language-'] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}
.theme-light .token.comment,
.theme-light .token.prolog,
.theme-light .token.doctype,
.theme-light .token.cdata {
  color: slategray;
}
.theme-light .token.punctuation {
  color: #999;
}
.theme-light .token.namespace {
  opacity: 0.7;
}
.theme-light .token.property,
.theme-light .token.tag,
.theme-light .token.boolean,
.theme-light .token.number,
.theme-light .token.constant,
.theme-light .token.symbol,
.theme-light .token.deleted {
  color: #905;
}
.theme-light .token.selector,
.theme-light .token.attr-name,
.theme-light .token.string,
.theme-light .token.char,
.theme-light .token.builtin,
.theme-light .token.inserted {
  color: #690;
}
.theme-light .token.operator,
.theme-light .token.entity,
.theme-light .token.url,
.theme-light .language-css .token.string,
.theme-light .style .token.string {
  color: #9a6e3a;
  background: hsla(0, 0%, 100%, 0.5);
}
.theme-light .token.atrule,
.theme-light .token.attr-value,
.theme-light .token.keyword {
  color: #07a;
}
.theme-light .token.function,
.theme-light .token.class-name {
  color: #dd4a68;
}
.theme-light .token.regex,
.theme-light .token.important,
.theme-light .token.variable {
  color: #e90;
}
.theme-light .token.important,
.theme-light .token.bold {
  font-weight: bold;
}
.theme-light .token.italic {
  font-style: italic;
}
.theme-light .token.entity {
  cursor: help;
}
.theme-dark {
}
.theme-dark code[class*='language-'],
.theme-dark pre[class*='language-'] {
  color: #f8f8f2;
  background: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  font-family: var(--font-monospace);
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
.theme-dark pre[class*='language-'] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  border-radius: 0.3em;
}
.theme-dark:not(pre) > code[class*='language-'],
.theme-dark pre[class*='language-'] {
  background: var(--background-primary-alt);
}
.theme-dark:not(pre) > code[class*='language-'] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}
.theme-dark .token.comment,
.theme-dark .token.prolog,
.theme-dark .token.doctype,
.theme-dark .token.cdata {
  color: slategray;
}
.theme-dark .token.punctuation {
  color: #f8f8f2;
}
.theme-dark .token.namespace {
  opacity: 0.7;
}
.theme-dark .token.property,
.theme-dark .token.tag,
.theme-dark .token.constant,
.theme-dark .token.symbol,
.theme-dark .token.deleted {
  color: #f92672;
}
.theme-dark .token.boolean,
.theme-dark .token.number {
  color: #ae81ff;
}
.theme-dark .token.selector,
.theme-dark .token.attr-name,
.theme-dark .token.string,
.theme-dark .token.char,
.theme-dark .token.builtin,
.theme-dark .token.inserted {
  color: #a6e22e;
}
.theme-dark .token.operator,
.theme-dark .token.entity,
.theme-dark .token.url,
.theme-dark .language-css .token.string,
.theme-dark .style .token.string,
.theme-dark .token.variable {
  color: #f8f8f2;
}
.theme-dark .token.atrule,
.theme-dark .token.attr-value,
.theme-dark .token.function,
.theme-dark .token.class-name {
  color: #e6db74;
}
.theme-dark .token.keyword {
  color: #66d9ef;
}
.theme-dark .token.regex,
.theme-dark .token.important {
  color: #fd971f;
}
.theme-dark .token.important,
.theme-dark .token.bold {
  font-weight: bold;
}
.theme-dark .token.italic {
  font-style: italic;
}
.theme-dark .token.entity {
  cursor: help;
}
.starter-screen {
  display: flex;
  flex-direction: column;
  background-color: var(--background-secondary);
  width: 100%;
  height: 100%;
}
.starter-screen-inner {
  flex-grow: 1;
  display: flex;
  height: calc(100% - 24px);
}
.open-folder-input[type='text'] {
  font-size: 14px;
  width: 200px;
  height: 28px;
}
.browse-folder-button {
  margin-left: 10px;
}
.open-folder-button {
  margin-top: 14px;
  padding: 6px 40px;
}
.starter .notice {
  top: 38px;
}
.list-item-collapse-indicator {
  position: absolute;
  left: -22px;
  top: -2px;
  color: var(--text-faint);
  padding: 5px;
}
.list-item-collapse-indicator:after {
  content: '\00a0';
}
.list-item-collapse-indicator:hover {
  color: var(--text-muted);
}
.pane-empty {
  color: var(--text-muted);
  font-size: 16px;
  width: 200px;
  margin: 5px auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.pull-action {
  position: absolute;
  background-color: var(--background-secondary-alt);
  z-index: var(--layer-popover);
  color: var(--text-muted);
  font-size: 90%;
  transition: background-color ease-in-out 150ms;
}
.pull-action.mod-activated {
  background-color: var(--interactive-accent);
  color: var(--text-on-accent);
}
.pull-down-action {
  top: 0;
  width: 100%;
  padding: 30px 10px;
  text-align: center;
  border-bottom: 1px solid var(--background-modifier-border);
  box-shadow: 0 2px 8px var(--background-modifier-box-shadow);
}
.pull-out-action {
  top: 50%;
  padding: 30px 10px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
body {
  --editor-font-size: 16px;
  text-rendering: optimizeLegibility;
  font-family: var(--default-font);
  line-height: 1.5em;
  font-size: 16px;
  background-color: var(--background-primary);
  color: var(--text-normal);
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
ul ul,
ol ul {
  list-style-type: disc;
}
ol ol ul,
ol ul ul,
ul ol ul,
ul ul ul {
  list-style-type: disc;
}
body {
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}
body [contenteditable='true'],
body [contenteditable=''] {
  user-select: text;
  -webkit-user-select: text;
}
body.is-grabbing,
body.is-grabbing * {
  cursor: -moz-grabbing !important;
  cursor: -webkit-grabbing !important;
}
.app-container {
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
  flex-direction: column;
}
.app-container.no-transition * {
  transition: none !important;
}
.app-container.is-text-garbled * {
  font-family: 'Flow Circular', sans-serif !important;
  line-height: 1.45em !important;
}
.horizontal-main-container {
  width: 100%;
  display: flex;
  overflow: hidden;
  flex: 1 0 0;
}
:focus {
  outline: none;
}

#theme-btn {
  position: absolute;
  color: var(--text-normal);
  border: var(--text-faint) 3px solid;
  margin: -10px;
  padding: 5px;
  right: 30px;
  z-index: 1;
}
