:host {
  width: 100%;
  display: block;
  --link-color: var(--accent, #2a8ed4);
  --bg-color: transparent;
  --border-color: #d1d9e0b3;
  --mark-color: #fff8c5;
  --content-text: #1f2328;
  --content-text-light: #efefef;
  --endpoint-color-anonymous: #ea2b51;
  --endpoint-color-institution: #ea5e2b;
  --endpoint-color-user: #1eda6d;
  --alert-color-note: #1f6feb;
  --alert-color-tip: #238636;
  --alert-color-important: #8957e5;
  --alert-color-warning: #9e6a03;
  --alert-color-caution: #da3633;
  --detail-color-warning: #f48a2d;
  --code-bg-color: #f4f4f4;
  --code-bg-color-light: var(--code-bg-light, #121212);
  background-color: var(--bg-color, transparent);
  padding: 0px 8px;
  box-sizing: border-box;
  color: var(--color);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16px;
  line-height: 1.5;
  word-wrap: break-word;
}
:host > #markdown {
  display: contents;
}
:host > #markdown[data-copy-disabled] .ufm-snippet .copy-container {
  display: none !important;
}
:host > #markdown[data-heading-anchors-disabled] .ufm-heading > a {
  display: none;
}
:host > #markdown[data-mode=light] {
  --color: var(--text, #000000);
  --color-secondary: #343434;
  --content-color: #f4f4f4;
  --code-bg-color: var(--content-color);
  --content-hover-color: #d5d5d5;
  --endpoint-color-user: #038b3b;
}
:host > #markdown[data-mode=light] .ufm-custom-emoji > .dark {
  display: none;
}
:host > #markdown[data-mode=dark] {
  --color: var(--text, #ffffff);
  --color-secondary: #c1c1c1;
  --content-color: #171719;
  --code-bg-color: var(--content-color);
  --content-hover-color: #29292d;
  --content-text: #efefef;
}
:host > #markdown[data-mode=dark] .ufm-custom-emoji > .light {
  display: none;
}
:host > #markdown[data-mode=dark] .ufm-snippet code span, :host > #markdown[data-snippets-dark] .ufm-snippet code span {
  color: var(--shiki-dark) !important;
  background-color: var(--shiki-dark-bg) !important;
  font-style: var(--shiki-dark-font-style) !important;
  font-weight: var(--shiki-dark-font-weight) !important;
  text-decoration: var(--shiki-dark-text-decoration) !important;
}
:host > #markdown[data-mode=light][data-snippets-dark] {
  --code-bg-color: var(--code-bg-color-light);
}
:host > #markdown[data-mode=light][data-snippets-dark] pre {
  --content-text: var(--content-text-light);
}
:host > #markdown[data-mode=light][data-snippets-dark] .copy-container .fa {
  color: #c1c1c1;
  --content-hover-color: #29292d;
}
:host .ufm-heading {
  position: relative;
  cursor: pointer;
  padding-left: 20px;
  margin-left: -20px;
}
:host .ufm-heading h1 + a {
  --y: 12px;
}
:host .ufm-heading h2 + a {
  --y: 8px;
}
:host .ufm-heading h3 + a {
  --y: 5px;
}
:host .ufm-heading h4 + a {
  --y: 3px;
}
:host .ufm-heading h5 + a {
  --y: 1px;
}
:host .ufm-heading h6 + a {
  --y: 0px;
}
:host .ufm-heading > a {
  display: contents;
  text-decoration: none !important;
}
:host .ufm-heading > a > span {
  color: var(--color-secondary);
  opacity: 0;
  transition: opacity 0.2s ease;
  transition-delay: 0.1s;
  position: absolute;
  display: flex;
  justify-content: center;
  margin-left: -28px;
  top: var(--y, 0px);
  font-size: 16px;
}
:host .ufm-heading:hover > a > span, :host .ufm-heading:active > a > span {
  opacity: 1;
}
:host details[type] {
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  --detail-color: transparent;
  border-left: 3px solid;
  border-right: 3px solid;
  border-color: var(--detail-color);
}
:host details[type] summary {
  font-weight: bold;
  color: var(--detail-color);
}
:host details[type=warning] {
  --detail-color: var(--detail-color-warning);
}
:host .markdown-alert {
  padding: 0.5rem 1rem;
  --alert-color: var(--color);
  border-left: 0.25em solid var(--alert-color);
  margin-bottom: 1rem;
}
:host .markdown-alert.markdown-alert-note {
  --alert-color: var(--alert-color-note);
}
:host .markdown-alert.markdown-alert-tip {
  --alert-color: var(--alert-color-tip);
}
:host .markdown-alert.markdown-alert-important {
  --alert-color: var(--alert-color-important);
}
:host .markdown-alert.markdown-alert-warning {
  --alert-color: var(--alert-color-warning);
}
:host .markdown-alert.markdown-alert-caution {
  --alert-color: var(--alert-color-caution);
}
:host .markdown-alert > p:first-of-type {
  display: flex;
  margin-bottom: 1rem;
  font-weight: 500;
  align-items: center;
  line-height: 1;
  color: var(--alert-color);
}
:host .markdown-alert > p:first-of-type > span {
  margin-right: 8px;
}
:host .markdown-alert > p:last-of-type {
  margin-bottom: 0;
}
:host .ufm-endpoint {
  color: var(--endpoint-color) !important;
}
:host .ufm-endpoint.anonymous {
  --endpoint-color: var(--endpoint-color-anonymous);
}
:host .ufm-endpoint.institution {
  --endpoint-color: var(--endpoint-color-institution);
}
:host .ufm-endpoint.user {
  --endpoint-color: var(--endpoint-color-user);
}
:host #ufm-toc {
  display: contents;
}
:host .ufm-custom-emoji {
  display: contents;
  --icon-size: 12px;
}
:host .ufm-custom-emoji > span {
  line-height: 100%;
  position: relative;
  margin-left: 2px;
  margin-right: 2px;
  top: 0px;
  width: var(--icon-size);
  height: var(--icon-size);
  display: inline-block;
}
:host .ufm-snippet {
  position: relative;
  display: flex;
  flex-direction: column;
}
:host .ufm-snippet > header {
  height: 3rem;
  width: 100%;
  gap: 6px;
  border-bottom: 1px solid var(--border-color);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 1rem;
  color: var(--content-text);
}
:host .ufm-snippet > header > div {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: monospace;
}
:host .ufm-snippet > header > .fa {
  font-size: larger;
}
:host .ufm-snippet > div {
  gap: 4px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
:host .ufm-snippet > div > code {
  overflow-x: auto;
}
:host .ufm-snippet > div > code::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
:host .ufm-snippet > div > .copy-container {
  transition: opacity 0.1s;
  opacity: 0;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  margin-top: 15px;
}
@media screen and (max-width: 380px) {
  :host .ufm-snippet > div > .copy-container {
    display: none;
  }
}
:host .ufm-snippet > div > .copy-container > .fa {
  width: 20px;
  height: 20px;
  background-color: transparent;
  padding: 5px;
  margin-top: -10px;
  margin-right: -10px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: var(--color-secondary);
  opacity: 0.3;
  font-size: large;
  transition: background-color 0.1s, opacity 0.1s, transform 0.1s;
}
:host .ufm-snippet > div > .copy-container > .fa.fa-check {
  color: #1a8d1a !important;
  opacity: 1 !important;
}
:host .ufm-snippet > div > .copy-container > .fa:active, :host .ufm-snippet > div > .copy-container > .fa:hover {
  opacity: 1;
  background-color: var(--content-hover-color);
}
:host .ufm-snippet > div > .copy-container > .fa:active {
  transform: scale(0.95);
}
:host .ufm-snippet > div .copy-container:has(.fa-check) {
  opacity: 1;
}
:host .ufm-snippet:hover .copy-container {
  opacity: 1;
}
:host ul > li:has(input[type=checkbox]) {
  margin-inline-start: -20px !important;
}
:host ul li:has(input[type=checkbox]), :host ol li:has(input[type=checkbox]) {
  list-style-type: none;
}
:host ul li:has(input[type=checkbox]) ::marker, :host ol li:has(input[type=checkbox]) ::marker {
  display: none !important;
}
:host ul li:has(input[type=checkbox]) ::-webkit-details-marker, :host ol li:has(input[type=checkbox]) ::-webkit-details-marker {
  display: none;
}
:host a {
  color: var(--link-color);
  text-decoration: none;
  cursor: pointer;
}
:host a:hover {
  text-decoration: underline;
}
:host p {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--color);
}
:host details, :host figcaption, :host figure {
  display: block;
}
:host summary {
  display: list-item;
}
:host summary h1, :host summary h2, :host summary h3, :host summary h4, :host summary h5, :host summary h6 {
  display: inline-block;
}
:host summary h1, :host summary h2 {
  padding-bottom: 0;
  border-bottom: 0;
}
:host *[hidden] {
  display: none !important;
}
:host abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
:host b, :host strong {
  font-weight: 600;
}
:host dfn {
  font-style: italic;
}
:host h1 {
  margin: 0.67em 0;
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 2em;
  border-bottom: 1px solid var(--border-color);
}
:host h1 .ufm-custom-emoji {
  --icon-size: 22px;
}
:host mark {
  background-color: var(--mark-color);
  color: var(--content-text);
}
:host small {
  font-size: 90%;
}
:host sub, :host sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
:host sub {
  bottom: -0.25em;
}
:host sup {
  top: -0.5em;
}
:host img {
  border-style: none;
  max-width: 100%;
  box-sizing: content-box;
}
:host code, :host kbd, :host pre, :host samp {
  font-family: monospace;
  font-size: 1em;
}
:host figure {
  margin: 1em 2.5rem;
}
:host hr {
  box-sizing: content-box;
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid #d1d9e0b3;
  height: 0.25em;
  padding: 0;
  margin: 1.5rem 0;
  background-color: #d1d9e0;
  border: 0;
}
:host input {
  font: inherit;
  margin: 0;
  overflow: visible;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
:host [type=button], :host [type=reset], :host [type=submit] {
  -webkit-appearance: button;
  appearance: button;
}
:host [type=checkbox], :host [type=radio] {
  box-sizing: border-box;
  padding: 0;
}
:host [type=number]::-webkit-inner-spin-button, :host [type=number]::-webkit-outer-spin-button {
  height: auto;
}
:host [type=search]::-webkit-search-cancel-button, :host [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}
:host ::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
:host ::-webkit-file-upload-button {
  -webkit-appearance: button;
  appearance: button;
  font: inherit;
}
:host ::placeholder {
  color: #59636e;
  opacity: 1;
}
:host hr::before {
  display: table;
  content: "";
}
:host hr::after {
  display: table;
  clear: both;
  content: "";
}
:host table {
  border-spacing: 0;
  border-collapse: collapse;
  display: block;
  width: max-content;
  max-width: 100%;
  overflow: auto;
  font-variant: tabular-nums;
}
:host table td, :host table th {
  padding: 6px 13px;
  border: 1px solid #d1d9e0;
}
:host table td > :last-child {
  margin-bottom: 0;
}
:host table tr {
  background-color: var(--bg-color);
  border-top: 1px solid #d1d9e0b3;
}
:host table tr:nth-child(2n) {
  background-color: var(--content-color);
}
:host table img {
  background-color: transparent;
}
:host table img[align=right] {
  padding-left: 20px;
}
:host table img[align=left] {
  padding-right: 20px;
}
:host table th {
  font-weight: 600;
}
:host details summary {
  cursor: pointer;
}
:host a:focus, :host [role=button]:focus, :host input[type=radio]:focus, :host input[type=checkbox]:focus {
  outline: 2px solid var(--link-color);
  outline-offset: -2px;
  box-shadow: none;
}
:host a:focus:not(:focus-visible), :host [role=button]:focus:not(:focus-visible), :host input[type=radio]:focus:not(:focus-visible), :host input[type=checkbox]:focus:not(:focus-visible) {
  outline: solid 1px transparent;
}
:host a:focus-visible, :host [role=button]:focus-visible, :host input[type=radio]:focus-visible, :host input[type=checkbox]:focus-visible {
  outline: 2px solid var(--link-color);
  outline-offset: -2px;
  box-shadow: none;
}
:host a:not([class]):focus, :host a:not([class]):focus-visible, :host input[type=radio]:focus, :host input[type=radio]:focus-visible, :host input[type=checkbox]:focus, :host input[type=checkbox]:focus-visible {
  outline-offset: 0;
}
:host kbd {
  display: inline-block;
  padding: 0.25rem;
  font: 11px ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  line-height: 10px;
  color: var(--content-text);
  vertical-align: middle;
  background-color: var(--content-color);
  border: solid 1px #d1d9e0b3;
  border-bottom-color: #d1d9e0b3;
  border-radius: 6px;
  box-shadow: inset 0 -1px 0 #d1d9e0b3;
}
:host h1, :host h2, :host h3, :host h4, :host h5, :host h6 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.25;
}
:host h2 {
  font-weight: 600;
  padding-bottom: 0.3em;
  font-size: 1.5em;
  border-bottom: 1px solid #d1d9e0b3;
}
:host h2 .ufm-custom-emoji {
  --icon-size: 18px;
}
:host h3 {
  font-weight: 600;
  font-size: 1.25em;
}
:host h3 .ufm-custom-emoji {
  --icon-size: 16px;
}
:host h4 {
  font-weight: 600;
  font-size: 1em;
}
:host h4 .ufm-custom-emoji {
  --icon-size: 14px;
}
:host h5 {
  font-weight: 600;
  font-size: 0.875em;
}
:host h5 .ufm-custom-emoji {
  --icon-size: 12px;
}
:host h6 {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.85em;
}
:host h6 .ufm-custom-emoji {
  --icon-size: 10px;
}
:host h1 tt, :host h1 code, :host h2 tt, :host h2 code, :host h3 tt, :host h3 code, :host h4 tt, :host h4 code, :host h5 tt, :host h5 code, :host h6 tt, :host h6 code {
  padding: 0 0.2em;
  font-size: inherit;
}
:host blockquote {
  margin: 0;
  padding: 0 1em;
  color: #59636e;
  border-left: 0.25em solid #d1d9e0;
}
:host blockquote > :first-child {
  margin-top: 0;
}
:host blockquote > :last-child {
  margin-bottom: 0;
}
:host ol[type="a s"] {
  list-style-type: lower-alpha;
}
:host ol[type="A s"] {
  list-style-type: upper-alpha;
}
:host ol[type="i s"] {
  list-style-type: lower-roman;
}
:host ol[type="I s"] {
  list-style-type: upper-roman;
}
:host ol[type="1"] {
  list-style-type: decimal;
}
:host olol:not([type]) {
  list-style-type: decimal;
}
:host ul, :host ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2em;
}
:host ol ol, :host ul ol {
  list-style-type: lower-roman;
}
:host ul ul ol, :host ul ol ol, :host ol ul ol, :host ol ol ol {
  list-style-type: lower-alpha;
}
:host ul ul, :host ul ol, :host ol ol, :host ol ul {
  margin-top: 0;
  margin-bottom: 0;
}
:host li > p {
  margin-top: 1rem;
}
:host li + li {
  margin-top: 0.25em;
}
:host dd {
  margin-left: 0;
}
:host dl {
  padding: 0;
}
:host dl dt {
  padding: 0;
  margin-top: 1rem;
  font-size: 1em;
  font-style: italic;
  font-weight: 600;
}
:host dl dd {
  padding: 0 1rem;
  margin-bottom: 1rem;
}
:host tt, :host code, :host samp {
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
}
:host pre {
  margin-top: 0;
  margin-bottom: 0;
  font-family: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace;
  font-size: 12px;
  word-wrap: normal;
}
:host input::-webkit-outer-spin-button, :host input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}
:host::before {
  display: table;
  content: "";
}
:host::after {
  display: table;
  clear: both;
  content: "";
}
:host > *:first-child {
  margin-top: 0 !important;
}
:host > *:last-child {
  margin-bottom: 0 !important;
}
:host a:not([href]) {
  color: inherit;
  text-decoration: none !important;
}
:host p, :host blockquote, :host ul, :host ol, :host dl, :host table, :host pre, :host details {
  margin-top: 0;
  margin-bottom: 1rem;
}
:host code, :host tt {
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 85%;
  white-space: break-spaces;
  background-color: #818b981f;
  border-radius: 6px;
}
:host code br, :host tt br {
  display: none;
}
:host del code {
  text-decoration: inherit;
}
:host samp {
  font-size: 85%;
}
:host .highlight {
  margin-bottom: 1rem;
}
:host .highlight pre {
  margin-bottom: 0;
  word-break: normal;
}
:host pre {
  overflow: hidden;
  font-size: 85%;
  line-height: 1.45;
  color: var(--content-text);
  background-color: var(--code-bg-color);
  border-radius: 6px;
}
:host pre code {
  padding: 1rem !important;
  font-size: 100%;
  overflow: auto;
}
:host pre code {
  margin: 0;
  word-break: normal;
  white-space: pre;
  background: transparent;
  border: 0;
}
:host pre code, :host pre tt {
  display: inline-block;
  max-width: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  line-height: inherit;
  word-wrap: normal;
  background-color: transparent;
  border: 0;
}
:host .ufm-tabs > .ufm-tabs-content {
  margin-top: 14px;
}
:host .ufm-tabs > .ufm-tabs-content > .ufm-tab {
  display: none;
}
:host .ufm-tabs > .ufm-tabs-content > .ufm-tab[data-active=true] {
  display: block;
}
:host .ufm-tabs > .ufm-tabs-button-container {
  display: inline-flex;
}
:host .ufm-tabs > .ufm-tabs-button-container > button {
  background-color: transparent;
  border: 0;
  appearance: none;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: var(--color);
  border-bottom: 2px solid transparent;
}
:host .ufm-tabs > .ufm-tabs-button-container > button:hover {
  cursor: pointer;
  opacity: 0.8;
}
:host .ufm-tabs > .ufm-tabs-button-container > button[data-active=true] {
  color: var(--accent);
  border-color: var(--accent);
}
:host .ufm-tabs > .ufm-tabs-button-container > button > .fa {
  margin-right: 4px;
}
:host .ufm-tabs > .ufm-tabs-button-container > button[data-active=false] {
  color: var(--color-secondary);
}
:host .ufm-tabs > .ufm-tabs-button-container > button[disabled] {
  text-decoration: line-through;
  opacity: 1 !important;
}
:host .ufm-tabs > .ufm-tabs-button-container > button[disabled]:hover {
  cursor: not-allowed !important;
}
