html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border-width: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  min-height: 100%;
}

ol, ul {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "''";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
  height: 100%;
}

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

body, label, input, textarea, button, select {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(51, 51, 51);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: bold;
  color: rgb(51, 51, 51);
}

h1 {
  font-size: 200%;
}

h2 {
  font-size: 180%;
}

h3 {
  font-size: 160%;
}

h4 {
  font-size: 140%;
}

h5 {
  font-size: 120%;
}

h6 {
  font-size: 100%;
}

action, function, on, init, map-value, property, on-property-change, map-property {
  display: none;
}

input, textarea {
  border-radius: 5px;
  border-color: rgb(204, 204, 204);
  border-style: solid;
  border-width: 1px;
  padding: 5px 8px;
}

[view~=content-container] {
  max-width: 800px;
  padding: 0px 20px;
}

[view~=navigation-bar] {
  border-width: 0px;
  border-bottom-width: 2px;
  border-color: rgb(238, 224, 224);
  border-style: solid;
}

@media (min-width: 800px) {
  [view~=navigation-bar] {
    position: sticky;
    top: 0px;
    z-index: 1000;
    background-color: rgb(255, 255, 255, 0.98);
  }
}

[view~=navigation-bar] .container {
  padding: 12px 0px;
}

@media (max-width: 799px) {
  [view~=navigation-bar] .container {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
  }
}

@media (max-width: 799px) {
  [view~=navigation-bar] .container > [view~=spacer] {
    display: none;
  }
}

[view~=navigation-bar] .itemContainer {
  position: relative;
}

[view~=navigation-bar] .itemContainer > :first-child {
  visibility: hidden;
}

[view~=navigation-bar] .itemContainer > :last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

[view~=navigation-bar] .item {
  padding: 6px 12px;
  margin: 0px 8px;
  text-decoration: none;
  color: rgb(51, 51, 51);
}

[view~=navigation-bar] .item:visited {
  color: rgb(51, 51, 51);
}

[view~=navigation-bar] .item:hover {
  background-color: rgb(238, 238, 238);
  border-radius: 5px;
}

[view~=navigation-bar] .item.current {
  font-weight: bold;
}

[view~=navigation-bar] .left {
  margin-right: 20px;
}

@media (max-width: 799px) {
  [view~=navigation-bar] .left {
    flex-basis: 100%;
    justify-content: center;
  }
}

[view~=navigation-bar] .left > a {
  line-height: 1.0;
  text-decoration: none;
}

[view~=navigation-bar] .right {
  margin-left: 20px;
}

[view~=action-button] {
  cursor: pointer;
  padding: 6px 14px;
  background-color: rgb(252, 243, 243);
  border-radius: 5px;
  border-width: 2px;
  border-color: rgb(238, 224, 224);
  border-style: solid;
}

[view~=action-button]:hover {
  opacity: 0.8;
}

[view~=action-button]:active {
  opacity: 0.6;
}

[view~=vstack] {
  display: flex;
  flex-direction: column;
}

[view~=vstack][alignment=left] {
  align-items: flex-start;
}

[view~=vstack][alignment=center] {
  align-items: center;
}

[view~=vstack][alignment=right] {
  align-items: flex-end;
}

[view~=vstack] > [h-position=left] {
  align-self: flex-start;
}

[view~=vstack] > [h-position=center] {
  align-self: center;
}

[view~=vstack] > [h-position=right] {
  align-self: flex-end;
}

[view~=vstack] > [v-size=expand] {
  flex-grow: 1.0;
}

[view~=vstack] > [v-size=fixed] {
  flex-shrink: 0.0;
}

[view~=vstack] > [v-size=fraction] {
  flex-shrink: 0.0;
}

[view~=vstack] > [view~=vstack], [view~=vstack] > [view~=hstack], [view~=vstack] > [view~=zstack] {
  width: 100%;
}

[view~=vstack] > [h-size=expand] {
  width: 100%;
}

[view~=vstack] > [h-size=intrinsic] {
  width: unset;
}

[view~=vstack] > [v-size=expand] {
  align-self: stretch;
}

[view~=vstack] > [view~=spacer] {
  width: auto !important;
}

[view~=hstack] {
  display: flex;
  flex-direction: row;
}

[view~=hstack][alignment=top] {
  align-items: flex-start;
}

[view~=hstack][alignment=middle] {
  align-items: center;
}

[view~=hstack][alignment=bottom] {
  align-items: flex-end;
}

[view~=hstack] > [v-position=top] {
  align-self: flex-start;
}

[view~=hstack] > [v-position=middle] {
  align-self: center;
}

[view~=hstack] > [v-position=bottom] {
  align-self: flex-end;
}

[view~=hstack] > [h-size=expand] {
  flex-grow: 1.0;
}

[view~=hstack] > [h-size=fixed] {
  flex-shrink: 0.0;
}

[view~=hstack] > [h-size=fraction] {
  flex-shrink: 0.0;
}

[view~=hstack] > [view~=vstack], [view~=hstack] > [view~=zstack] {
  width: 100%;
}

[view~=hstack] > [v-size=expand] {
  align-self: stretch;
}

[view~=hstack] > [h-size=intrinsic] {
  width: unset;
}

[view~=hstack] > [h-size=expand] {
  width: 100%;
}

[view~=hstack] > [view~=spacer] {
  height: auto !important;
}

[view~=zstack] {
  position: relative;
}

[view~=zstack] > [zstack-overlay] {
  position: absolute;
}

[view~=zstack] > [h-size=expand] {
  width: 100%;
}

[view~=zstack] > [v-size=expand] {
  height: 100%;
}

[view~=spacer] {
  flex-shrink: 1.0;
  flex-grow: 1.0;
  align-self: stretch !important;
}

[view~=spacer][h-size=fixed] {
  flex-grow: 0.0;
}

[view~=spacer][h-size=fraction] {
  flex-grow: 0.0;
}

[view~=spacer][h-size=intrinsic] {
  flex-grow: 0.0;
}

[view~=spacer][v-size=fixed] {
  flex-grow: 0.0;
}

[view~=spacer][v-size=fraction] {
  flex-grow: 0.0;
}

[view~=spacer][v-size=intrinsic] {
  flex-grow: 0.0;
}

[view~=modal-container] {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
}

[view~=modal-container] > .background {
  pointer-events: none;
  background-color: black;
  opacity: 0.0;
}

[view~=body-text] {
  font-size: 16px;
}

[view~=body-text].bold {
  font-weight: bold;
}

[view~=body-text].secondary {
  color: #888;
}

[view~=code-example] {
  max-width: 996px;
  padding: 0px 20px;
}

[view~=code-example] .console {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  height: 160px;
  overflow: scroll;
  display: none;
}

[view~=code-example] > [view~=hstack] {
  align-items: stretch;
}

@media (min-width: 800px) {
  [view~=code-example] > .mobile-warning {
    display: none;
  }
}

[view~=code-example] .toolbar {
  width: 600px;
  padding-left: 12px;
}

@media (max-width: 799px) {
  [view~=code-example] .toolbar {
    display: none;
  }
}

[view~=code-example] .preview-container {
  background-color: #eeeeee;
  border-radius: 5px;
  padding: 0px 12px;
}

@media (max-width: 799px) {
  [view~=code-example] .preview-container {
    display: none;
  }
}

[view~=code-example] .editor {
  width: 600px;
  flex-shrink: 0.0;
}

@media (max-width: 799px) {
  [view~=code-example] .editor {
    width: 100%;
  }
}

[view~=code-example] .editor > [view~=zstack] {
  overflow: hidden;
  border-radius: 5px;
  background-color: #282c34;
}

[view~=code-example] .editor pre, [view~=code-example] .editor textarea {
  font-family: monospace;
  font-size: 13px;
  border-style: solid;
  border-width: 0px;
  padding: 12px 16px;
}

[view~=code-example] .editor pre {
  border-color: transparent;
  white-space: pre-wrap;
  max-height: 640px;
  overflow: hidden;
}

[view~=code-example] .editor textarea {
  background-color: #282c34;
  color: #abb2bf;
  border-color: blue;
  outline: none;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  resize: none;
}

[view~=overview-section] {
  font-size: 16px;
  line-height: 1.5;
}

[view~=overview-section] ul {
  list-style-type: disc;
}

[view~=overview-section] b {
  font-weight: bold;
}

[view~=demo-form] {
  width: auto !important;
  gap: 12px;
  padding: 8px;
}

[view~=definition-list] {
  list-style-type: disc;
}

[view~=definition-list] > [view~=definition-item] {
  margin-bottom: 12px;
}

[view~=sidebar] {
  position: fixed;
  top: 0px;
  bottom: 0px;
  left: 0px;
  border-right: 1px solid #ccc;
  z-index: 1100;
}

[view~=sidebar] > .content {
  padding: 12px 8px;
  background-color: white;
  overflow-y: scroll;
}

[view~=sidebar].hidden {
  display: none;
}

[view~=sidebar] > .navbar {
  background-color: rgb(238, 238, 238);
  padding: 3px 8px;
}

[view~=sidebar] > .navbar > button {
  border: none;
  background-color: transparent;
  padding: 6px;
}

[view~=sidebar] > .navbar > button > img {
  display: block;
}

[view~=header] {
  background-color: rgb(252, 243, 243);
  padding: 48px 0px;
  border-color: rgb(238, 224, 224);
  border-style: solid;
  border-bottom-width: 2px;
}

[view~=html-source] {
  font-family: monospace;
  font-size: 14px;
  border-radius: 5px;
  background-color: rgb(238, 238, 238);
  padding: 20px;
  overflow-x: scroll;
}

[view~=multicolumn] {
  column-count: 3;
  column-gap: 20px;
}

[view~=reference-section] > .container > .list {
  flex-wrap: wrap;
  column-gap: 20px;
}

[view~=reference-section] > .container > .list > a {
  display: inline-block;
  min-width: 240px;
  color: #333;
}

[view~=command-reference] .row {
  gap: 20px;
}

[view~=command-reference] .header {
  font-weight: bold;
}

[view~=command-reference] .name {
  min-width: 150px;
}

[view~=command-reference] .type {
  min-width: 120px;
}
