@charset "UTF-8";
* {
  position: relative;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: inherit;
  line-height: initial;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  vertical-align: top;
  cursor: default;
}

*:not(input) {
  -webkit-user-select: none;
  -webkit-user-drag: none;
  user-select: none;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  --border-color: gray;
  --around-color: lightgray;
  --title-color: lightgray;
  --red: #ff3b30;
  --green: #34c759;
  --blue: #007aff;
  --indigo: #5856d6;
  --orange: #ff9500;
  --purple: #af52de;
  --teal: #5ac8fa;
  --yellow: #ffcc00;
}

html body {
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  line-height: 130%;
  display: flex;
}

html body main {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  --bar-width: 5rem;
}

html body main header {
  width: var(--bar-width);
  height: var(--bar-width);
  border-right: 0.1rem solid var(--border-color);
  border-bottom: 0.1rem solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

html body main header h1 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.5rem;
}

html body main header h1::before {
  content: "→";
}

html[data-flex-direction="row-reverse"] body main header h1::before {
  content: "←";
}

html[data-flex-direction="column"] body main header h1::before {
  content: "↓";
}

html[data-flex-direction="column-reverse"] body main header h1::before {
  content: "↑";
}

html body main section.horizontal {
  flex: 1 0 calc(100% - var(--bar-width));
  height: var(--bar-width);
  border-bottom: 0.1rem solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--around-color);
}

html body main section.horizontal::before {
  content: attr(data-left);
  position: absolute;
  left: 1rem;
}

html body main section.horizontal::after {
  content: attr(data-right);
  position: absolute;
  right: 1rem;
}

html body main section.horizontal h1 {
  font-size: 1.8rem;
}

html body main section.vertical {
  width: var(--bar-width);
  height: calc(100% - var(--bar-width));
  border-right: 0.1rem solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--around-color);
}

html body main section.vertical::before {
  content: attr(data-top);
  overflow: visible;
  transform: rotate(-90deg);
  position: absolute;
  top: 8rem;
  width: 15rem;
  text-align: right;
}

html body main section.vertical::after {
  content: attr(data-bottom);
  overflow: visible;
  transform: rotate(-90deg);
  position: absolute;
  bottom: 8rem;
  width: 15rem;
}

html body main section.vertical h1 {
  font-size: 1.8rem;
  white-space: nowrap;
  overflow: visible;
  transform: rotate(-90deg);
}

html body main article {
  flex: 1 1;
  height: calc(100% - var(--bar-width));
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: initial;
  border: 0.3rem solid var(--border-color);
  border-bottom-width: 0.4rem;
  overflow-x: auto;
  overflow-y: auto;
}

html body main article[data-hover] {
  box-shadow: inset 0 0 0.5rem black;
}

html body main article::before {
  content: "Container";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
  opacity: 0.2;
}

html body main article div {
  --size: 10rem;
  border-radius: var(--size);
  border: 0.3rem solid rgba(0, 0, 0, 0.333);
  font-size: 2rem;
  color: white;
  text-shadow: 0 0 0.333rem black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

html body main article div[data-hover] {
  border-color: white;
  box-shadow: 0 0 1rem black;
}

html body main article div[data-hover]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  opacity: 0.1;
}

html body main article div:nth-child(1), html body main article div:nth-child(9), html body main article div:nth-child(17) {
  background-color: var(--red);
}

html body main article div:nth-child(2), html body main article div:nth-child(10), html body main article div:nth-child(18) {
  background-color: var(--green);
}

html body main article div:nth-child(3), html body main article div:nth-child(11), html body main article div:nth-child(19) {
  background-color: var(--blue);
}

html body main article div:nth-child(4), html body main article div:nth-child(12), html body main article div:nth-child(20) {
  background-color: var(--orange);
}

html body main article div:nth-child(5), html body main article div:nth-child(13), html body main article div:nth-child(21) {
  background-color: var(--teal);
}

html body main article div:nth-child(6), html body main article div:nth-child(14), html body main article div:nth-child(22) {
  background-color: var(--purple);
}

html body main article div:nth-child(7), html body main article div:nth-child(15), html body main article div:nth-child(23) {
  background-color: var(--indigo);
}

html body main article div:nth-child(8), html body main article div:nth-child(16), html body main article div:nth-child(24) {
  background-color: var(--yellow);
}

html body main article div h1 {
  flex-grow: 1;
  flex-shrink: 1;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: var(--size);
  min-height: var(--size);
}

html body main article div h1:empty::before {
  content: attr(title);
}

html body aside {
  flex: 0 0 auto;
  width: 25rem;
  border-left: 0.1rem solid var(--border-color);
  display: flex;
  flex-direction: column;
  background-color: whitesmoke;
}

html body aside > section.items {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

html body aside > section.items > h1 {
  flex: 0 0 auto;
  position: sticky;
  top: -0.1rem;
  margin-top: -0.1rem;
  background-color: var(--title-color);
  border-top: 0.1rem solid var(--border-color);
  border-bottom: 0.1rem solid var(--border-color);
  z-index: 1;
  font-size: 1.3rem;
  display: flex;
}

html body aside > section.items > h1[data-collapse] svg.collapse {
  transform: rotate(180deg);
}

html body aside > section.items > h1[data-collapse] + article {
  display: none;
}

html body aside > section.items > h1:first-child {
  padding: 0.3rem 0.6rem;
  padding-right: 0;
}

html body aside > section.items > h1 span {
  margin-right: auto;
}

html body aside > section.items > h1 a {
  font-weight: normal;
  padding: 0.1rem 0.3rem;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  line-height: 130%;
  margin: -0.1rem 0;
  margin-right: 0.2rem;
}

html body aside > section.items > h1 a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

html body aside > section.items > h1 input {
  flex: 1 1;
  border: none;
  padding: 0.3rem 0.6rem;
  padding-right: 0.3rem;
  font-weight: bold;
  background-color: transparent;
  cursor: text;
}

html body aside > section.items > h1 input::placeholder {
  color: inherit;
  opacity: 1;
}

html body aside > section.items > h1 svg {
  --dim: 1.8rem;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  width: var(--dim);
  height: var(--dim);
  padding: 0.1rem;
  border-radius: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

html body aside > section.items > h1 svg.copy {
  display: none;
}

html body aside > section.items > h1 svg:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

html body aside > section.items > article {
  flex: 0 0 auto;
  padding: 0.5rem;
  font-size: 1.4rem;
  background: linear-gradient(white, whitesmoke);
}

html body aside > section.items > article:not(:last-child) {
  border-bottom: 0.1rem solid var(--border-color);
}

html body aside > section.items > article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.25;
}

html body aside > section.items > article:nth-of-type(2)::before, html body aside > section.items > article:nth-of-type(10)::before, html body aside > section.items > article:nth-of-type(18)::before {
  background-color: var(--red);
}

html body aside > section.items > article:nth-of-type(3)::before, html body aside > section.items > article:nth-of-type(11)::before, html body aside > section.items > article:nth-of-type(19)::before {
  background-color: var(--green);
}

html body aside > section.items > article:nth-of-type(4)::before, html body aside > section.items > article:nth-of-type(12)::before, html body aside > section.items > article:nth-of-type(20)::before {
  background-color: var(--blue);
}

html body aside > section.items > article:nth-of-type(5)::before, html body aside > section.items > article:nth-of-type(13)::before, html body aside > section.items > article:nth-of-type(21)::before {
  background-color: var(--orange);
}

html body aside > section.items > article:nth-of-type(6)::before, html body aside > section.items > article:nth-of-type(14)::before, html body aside > section.items > article:nth-of-type(22)::before {
  background-color: var(--teal);
}

html body aside > section.items > article:nth-of-type(7)::before, html body aside > section.items > article:nth-of-type(15)::before, html body aside > section.items > article:nth-of-type(23)::before {
  background-color: var(--purple);
}

html body aside > section.items > article:nth-of-type(8)::before, html body aside > section.items > article:nth-of-type(16)::before, html body aside > section.items > article:nth-of-type(24)::before {
  background-color: var(--indigo);
}

html body aside > section.items > article:nth-of-type(9)::before, html body aside > section.items > article:nth-of-type(17)::before, html body aside > section.items > article:nth-of-type(25)::before {
  background-color: var(--yellow);
}

html body aside > section.items > article div {
  overflow: visible;
  display: flex;
  justify-content: space-between;
}

html body aside > section.items > article div:not(:first-child) {
  margin-top: 0.5rem;
}

html body aside > section.items > article div[data-disabled] {
  opacity: 0.333;
}

html body aside > section.items > article div input, html body aside > section.items > article div select {
  width: 12.5rem;
}

html body aside > section.items > article hr {
  border: none;
  height: 0.75rem;
}

html body aside > section.items::after {
  content: "";
  display: block;
  width: 100%;
  flex: 1 1 auto;
  background: linear-gradient(var(--border-color) 0, var(--border-color) 0.1rem, transparent 0.1rem);
}

html body aside > section.toolbar {
  border-top: 0.1rem solid var(--border-color);
  padding: 0.2rem;
  background-color: var(--title-color);
}

html body aside > section.toolbar div {
  display: inline-flex;
  align-items: center;
  border-radius: 0.4rem;
  padding-left: 0.2rem;
  padding-right: 0.5rem;
  height: 1.8rem;
}

html body aside > section.toolbar div:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

html body aside > section.toolbar div svg {
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.1rem;
}

html body aside > section.toolbar div h1 {
  font-size: 1.3rem;
  font-weight: normal;
}
