@charset "UTF-8";
/***
* DO NOT ADD/MODIFY STYLING HERE. IT WILL BE OVERWRITTEN IF YOU UPDATE THE TEMPLATE VERSION.
* MODIFY THE custom-style.scss FILE INSTEAD.
***/
body {
  overflow-x: hidden;
}

.content {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 90px;
  position: relative;
}
@media (max-width: 800px) {
  .content {
    margin-top: 75px;
  }
}

.external-link {
  background-position: center right;
  background-repeat: no-repeat;
  background-image: linear-gradient(transparent, transparent), url("/img/outgoing.svg");
  background-size: 13px;
  padding-right: 16px;
  background-position-y: 4px;
  cursor: pointer;
}

.markdown-preview-view pre.mermaid {
  background: white;
  border-radius: 25px;
  padding: 10px;
}

div.transclusion {
  position: relative;
  padding: 8px;
}
div.transclusion .markdown-embed-link {
  z-index: 99;
  display: block;
  width: auto !important;
}

.admonition-title {
  font-size: 1.4rem;
}

div[class*=language-ad-] .admonition-title::before,
div[class*=callout-] .admonition-title::before {
  font-size: 1.4rem;
  margin-bottom: 10px;
  margin-right: 10px;
}

code[class*=language-ad-] {
  font-family: "Roboto", sans-serif;
  white-space: normal !important;
}

.theme-light div[class*=language-ad-] {
  color: rgb(12, 12, 12);
}

.theme-dark div[class*=language-ad-] {
  color: rgb(230, 230, 230);
}

ul.task-list {
  list-style: none;
  padding-left: 15px;
}

.sidebar {
  position: fixed;
  top: 50%;
  transform: translateY(calc(-50% + 75px));
  right: 0;
  height: 100%;
  min-width: 25px;
  display: flex;
  z-index: 3;
  max-width: 350px;
}

.expand-line {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar-container {
  padding-right: 20px;
  width: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 87%;
}

.toc {
  padding-right: 5px;
  background-color: var(--background-primary);
  padding: 10px;
  border-radius: 10px;
}

.toc-container {
  font-size: 1rem;
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 10px;
  border-left: 1px solid var(--text-accent);
}
.toc-container ul {
  list-style-type: none;
  padding-inline-start: 15px !important;
  margin-top: 0;
  margin-bottom: 0;
}
.toc-container ul:not(:first-child) {
  margin-bottom: 3px;
}
.toc-container li {
  padding-top: 4px;
}
.toc-container li::before {
  content: "# " !important;
  color: var(--text-accent);
  font-size: 0.8rem;
}
.toc-container li a {
  text-decoration: none;
}
.toc-container li a:hover {
  text-decoration: underline;
}

.toc-title-container {
  display: flex;
  justify-content: flex-start;
}
.toc-title-container .toc-title {
  font-size: 1.2rem !important;
  color: var(--h6-color);
  width: fit-content;
  padding: 3px 7px 3px 0;
  border-radius: 10px 10px 0 0;
}

.backlinks {
  flex: 1;
  margin-top: 10px;
  background-color: var(--background-primary);
  border-radius: 10px;
  padding: 10px;
}
.backlinks .backlink-title {
  margin: 4px 0;
  font-size: 18px !important;
  color: var(--h6-color);
}

.backlink-list {
  border-left: 1px solid var(--text-accent);
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
}

.backlink-card {
  padding-bottom: 8px;
  border-radius: 4px;
  width: 100%;
  font-size: 1rem;
  margin-left: 10px;
  color: var(--text-accent);
}
.backlink-card i {
  font-size: 0.8rem;
}

.no-backlinks-message {
  font-size: 0.8rem;
  color: var(--text-normal);
}

.graph .graph-title-container {
  display: flex;
  justify-content: flex-end;
  width: 320px;
}
.graph .graph-title {
  width: fit-content;
  background-color: var(--background-secondary);
  margin: 10px 0 0 0;
  padding: 3px 7px;
  font-size: 1.2rem !important;
  border-radius: 10px 10px 0 0;
  color: var(--h6-color);
}

#link-graph {
  background-color: var(--background-secondary);
  margin-bottom: 20px;
  border-radius: 10px 0 10px 10px;
  width: fit-content;
}

@media (max-width: 1400px) {
  #link-graph {
    border-radius: 0 10px 10px 10px;
  }
  .sidebar {
    position: relative;
    transform: none;
    border-radius: 4px;
    margin-top: 50px;
    max-width: 700px;
    margin: auto;
    border-radius: 0;
    border-top: 2px solid var(--background-secondary);
    justify-content: space-between;
  }
  .sidebar-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .graph {
    flex: 1;
  }
  .graph .graph-title-container {
    justify-content: flex-start;
  }
  .toc {
    display: none;
  }
}
@media (max-width: 800px) {
  .sidebar-container {
    display: flex;
    flex-direction: column-reverse;
  }
}
.filetree-sidebar {
  margin: 0;
  z-index: 10;
  padding: 10px;
  top: 0px;
  left: 0;
  position: fixed;
  height: 100%;
  background-color: var(--background-secondary);
  color: var(--text-muted);
  overflow-y: auto;
  width: 250px;
}
.filetree-sidebar h1 {
  font-size: 32px !important;
}
@media (max-width: 800px) {
  .filetree-sidebar h1 {
    display: none;
  }
  .filetree-sidebar .search-button {
    width: 100%;
    margin: 2px;
  }
}

.empty-navbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -60px;
}
@media (max-width: 800px) {
  .empty-navbar {
    justify-content: center;
  }
}
.empty-navbar .search-button {
  margin: 10px 65px 10px 65px;
}

.navbar {
  background-color: var(--background-secondary);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding-left: var(--file-margins);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1400px) {
  .navbar {
    position: fixed;
  }
}
@media (max-width: 800px) {
  .navbar h1 {
    font-size: 18px !important;
  }
}
.navbar .navbar-inner {
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 800px) {
  .navbar .search-button {
    min-width: 36px;
    margin: 10px 25px 10px 25px;
  }
}
.navbar .search-text {
  display: flex;
  justify-content: center;
}
@media (max-width: 800px) {
  .navbar .search-text {
    display: none;
  }
}

.notelink {
  padding: 5px 0 5px 25px;
}
.notelink a:hover {
  text-decoration: underline !important;
}

.foldername-wrapper {
  cursor: pointer;
  margin: 4px 0 4px 2px;
}

.inner-folder {
  padding: 3px 0 3px 10px;
}

.notelink.active-note {
  color: var(--text-accent);
  background-color: var(--background-primary);
  transform: translateX(10px);
}
.notelink.active-note a {
  color: var(--text-accent);
}

.fullpage-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 5;
}

.search-container {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 15;
  height: 100%;
  justify-content: center;
  display: none;
}

.search-container.active {
  display: flex;
}

.search-box {
  transform: translateY(100px);
  background-color: var(--background-primary);
  max-width: 80%;
  width: 900px;
  border-radius: 15px;
  padding: 10px;
  height: fit-content;
}

.search-box input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 2rem;
  background-color: var(--background-primary);
  color: var(--text-primary);
}

.search-box input:focus {
  outline: none;
}

#search-results {
  margin-top: 20px;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  justify-content: center;
  max-height: 50vh;
}

#search-results .searchresult {
  margin-bottom: 15px;
  list-style: none;
  background-color: var(--background-secondary);
  padding: 10px;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
}
#search-results .searchresult.active {
  border: 2px solid var(--text-accent);
}

.search-box-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.navigation-hint {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-right: 20px;
}

.search-link {
  display: block;
  margin-bottom: 4px;
  font-size: 1.4rem;
}

.search-button {
  background-color: var(--background-primary);
  border-radius: 20px;
  height: 2em;
  display: flex;
  align-items: center;
  min-width: 150px;
  margin: 10px 40px 10px 10px;
  border: 1px solid var(--text-normal);
  cursor: pointer;
}
.search-button > span {
  padding: 3px 3px 3px 10px;
}
.search-button > i {
  margin-left: 10px;
}
.search-button:hover {
  border: 1px solid var(--text-accent);
}

@media (max-width: 800px) {
  .search-keys {
    display: none;
  }
}

div[class*=language-ad-],
div[class*=callout-] {
  font-family: "Roboto", sans-serif;
  word-wrap: break-word;
  border-radius: 6px;
  display: block;
  font-size: 1rem;
  margin-top: 1rem;
  outline-color: rgb(230, 230, 230);
  padding: 1rem;
  position: relative;
  transition: height 0.5s ease-in, opacity 0.5s ease-in;
  word-break: break-word;
  white-space: normal !important;
}

.header-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 5px;
}

.header-meta {
  margin-bottom: 10px;
}

div.language-ad-note .admonition-title::before,
div.callout-note .admonition-title::before {
  content: "🖊️";
}

div.language-ad-tip .admonition-title::before,
div.callout-tip .admonition-title::before {
  content: "💡";
}

div.language-ad-warning .admonition-title::before,
div.callout-warning .admonition-title::before {
  content: "⚠️";
}

div.language-ad-important .admonition-title::before,
div.callout-important .admonition-title::before {
  content: "❗️";
}

div.language-ad-caution .admonition-title::before,
div.callout-caution .admonition-title::before {
  content: "⚠️";
}

div.language-ad-info .admonition-title::before,
div.callout-info .admonition-title::before {
  content: "ℹ";
}

div.language-ad-example .admonition-title::before,
div.callout-example .admonition-title::before {
  content: "🗒️";
}

div.language-ad-seealso .admonition-title::before,
div.callout-seealso .admonition-title::before {
  content: "🖊️";
}

div.language-ad-abstract .admonition-title::before,
div.callout-abstract .admonition-title::before {
  content: "📚";
}

div.language-ad-summary .admonition-title::before,
div.callout-summary .admonition-title::before {
  content: "📚";
}

div.language-ad-tldr .admonition-title::before,
div.callout-tldr .admonition-title::before {
  content: "📚";
}

div.language-ad-todo .admonition-title::before,
div.callout-todo .admonition-title::before {
  content: "☑️";
}

div.language-ad-hint .admonition-title::before,
div.callout-hint .admonition-title::before {
  content: "🔥";
}

div.language-ad-success .admonition-title::before,
div.callout-success .admonition-title::before {
  content: ✅;
}

div.language-ad-check .admonition-title::before,
div.callout-check .admonition-title::before {
  content: "✅";
}

div.language-ad-done .admonition-title::before,
div.callout-done .admonition-title::before {
  content: "✅";
}

div.language-ad-question .admonition-title::before,
div.callout-question .admonition-title::before {
  content: "❓";
}

div.language-ad-help .admonition-title::before,
div.callout-help .admonition-title::before {
  content: "❓";
}

div.language-ad-faq .admonition-title::before,
div.callout-faq .admonition-title::before {
  content: "❓";
}

div.language-ad-attention .admonition-title::before,
div.callout-attention .admonition-title::before {
  content: "⚠️";
}

div.language-ad-failure .admonition-title::before,
div.callout-failure .admonition-title::before {
  content: "❌";
}

div.language-ad-fail .admonition-title::before,
div.callout-fail .admonition-title::before {
  content: "❌";
}

div.language-ad-missing .admonition-title::before,
div.callout-missing .admonition-title::before {
  content: "❌";
}

div.language-ad-danger .admonition-title::before,
div.callout-danger .admonition-title::before {
  content: "⚡";
}

div.language-ad-error .admonition-title::before,
div.callout-error .admonition-title::before {
  content: "⚡";
}

div.language-ad-bug .admonition-title::before,
div.callout-bug .admonition-title::before {
  content: "🐞";
}

div.language-ad-quote .admonition-title::before,
div.callout-quote .admonition-title::before {
  content: "💬";
}

div.language-ad-cite .admonition-title::before,
div.callout-cite .admonition-title::before {
  content: "💬";
}

div.language-ad-note,
div.callout-note {
  background-color: rgba(68, 138, 255, 0.5);
}

div.language-ad-seealso,
div.callout-seealso {
  background-color: rgba(68, 138, 255, 0.5);
}

div.language-ad-abstract,
div.callout-abstract {
  background-color: rgba(0, 176, 255, 0.5);
}

div.language-ad-summary,
div.callout-summary {
  background-color: rgba(0, 176, 255, 0.5);
}

div.language-ad-tldr,
div.callout-tldr {
  background-color: rgba(0, 176, 255, 0.5);
}

div.language-ad-info,
div.callout-info {
  background-color: rgba(0, 184, 212, 0.5);
}

div.language-ad-todo,
div.callout-todo {
  background-color: rgba(0, 184, 212, 0.5);
}

div.language-ad-tip,
div.callout-tip {
  background-color: rgba(0, 191, 165, 0.5);
}

div.language-ad-hint,
div.callout-hint {
  background-color: rgba(0, 191, 165, 0.5);
}

div.language-ad-important,
div.callout-important {
  background-color: rgba(0, 191, 165, 0.5);
}

div.language-ad-success,
div.callout-success {
  background-color: rgba(0, 200, 83, 0.5);
}

div.language-ad-check,
div.callout-check {
  background-color: rgba(0, 200, 83, 0.5);
}

div.language-ad-done,
div.callout-done {
  background-color: rgba(0, 200, 83, 0.5);
}

div.language-ad-question,
div.callout-question {
  background-color: rgba(100, 221, 23, 0.5);
}

div.language-ad-help,
div.callout-help {
  background-color: rgba(100, 221, 23, 0.5);
}

div.language-ad-faq,
div.callout-faq {
  background-color: rgba(100, 221, 23, 0.5);
}

div.language-ad-warning,
div.callout-warning {
  background-color: rgba(255, 145, 0, 0.5);
}

div.language-ad-caution,
div.callout-caution {
  background-color: rgba(255, 145, 0, 0.5);
}

div.language-ad-attention,
div.callout-attention {
  background-color: rgba(255, 145, 0, 0.5);
}

div.language-ad-failure,
div.callout-failure {
  background-color: rgba(255, 82, 82, 0.5);
}

div.language-ad-fail,
div.callout-fail {
  background-color: rgba(255, 82, 82, 0.5);
}

div.language-ad-missing,
div.callout-missing {
  background-color: rgba(255, 82, 82, 0.5);
}

div.language-ad-danger,
div.callout-danger {
  background-color: rgba(255, 23, 68, 0.5);
}

div.language-ad-error,
div.callout-error {
  background-color: rgba(255, 23, 68, 0.5);
}

div.language-ad-bug,
div.callout-bug {
  background-color: rgba(245, 0, 87, 0.5);
}

div.language-ad-example,
div.callout-example {
  background-color: rgba(124, 77, 255, 0.5);
}

div.language-ad-quote,
div.callout-quote {
  background-color: rgba(158, 158, 158, 0.5);
}

div.language-ad-cite,
div.callout-cite {
  background-color: rgba(158, 158, 158, 0.5);
}

/*# sourceMappingURL=digital-garden-base.css.map */
