#json {
  all:revert;
  font-family: "Helvetica Neue",Helvetica,sans-serif;
  font-size: 13px;
  white-space: pre-wrap;
  background-color: #f7f8fd;
  border: 1px solid #e5e9f8;
  margin-top: 5px;
  margin-bottom: 5px;
  max-height: 400px;
  min-width: 800px;
  width: 90%;
  overflow: auto;
  padding: 10px;
}

#json li {
  position: relative;
}

#json ul {
  list-style: none;
  margin-left: 10px;
  padding: 0;
}

.prop {
  color: rgb(0, 114, 153);
}

.null {
  color: #A52A2A;
}

.bool {
  color: rgb(170, 93, 0);
}

.num {
  color: rgb(170, 93, 0);
}

.string {
  color: rgb(170, 93, 0);
  white-space: pre-wrap;
}

.collapser {
  position: absolute;
  left: -1em;
  top: -.2em;
  cursor: pointer;
  transform: rotate(90deg);
  transition: transform .2s;
}

.collapser:before {
  content: "▸";
  -moz-user-select: none;
}

.collapsible.collapsed {
  height: 1.2em;
  width: 1em;
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin: 0 !important;
}

.collapsible.collapsed:before {
  content: "…";
  width: 1em;
}

.collapser.collapsed {
  transform: rotate(0deg);
}

.q {
  display: inline-block;
  width: 0;
  color: transparent;
}

.quoted .q {
  display: inline;
  width: auto;
  color: inherit;
  font-weight: normal;
}
