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

* {
  border: 0;
  border-radius: 0;
  margin: 0;
  outline: 0;
  padding: 0;
}

a,
div,
p,
span,
sub,
sup {
  color: var(--color-font);
}

a,
body,
canvas,
div,
html,
p,
span,
sub,
sup {
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-size: 100%;
  vertical-align: baseline;
}

html,
body {
  overflow: hidden;
}

body {
  font-family: BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", meiryo, sans-serif;
  font-size: 0;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

a {
  background: transparent;
  font-size: 0;
  text-decoration: none;
  vertical-align: baseline;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg {
  border: 0;
  stroke-width: 0;
}

::-webkit-scrollbar {
  display: none;
}

:root {
  --color-font: #e6edf6;
  --color-group-header-font: #8496ad;
  --color-muted: #68788f;
  --color-icon: #8fa1b8;
  --color-body-background: #080d1a;
  --color-panel-background: #111c30;
  --color-panel-header-background: #0d1626;
  --color-chip-background: #1a253a;
  --color-chip-selected-background: #2b3c58;
}

.Logo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 28px;
}
.Logo-Text {
  color: var(--color-font);
  font-family: "Rubik Iso", BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", meiryo, sans-serif;
  font-size: 22px;
  line-height: 2;
  cursor: pointer;
  user-select: none;
}

.ApplicationMenu {
  position: fixed;
  top: 56px;
  left: 0;
  bottom: 0;
  z-index: 25;
  display: none;
  flex-direction: column;
  width: 320px;
  background: var(--color-panel-background);
  border-radius: 0 12px 0 0;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}
.ApplicationMenu[data-open] {
  display: flex;
}
.ApplicationMenu-Section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}
.ApplicationMenu-Section + .ApplicationMenu-Section {
  border-top: 1px solid var(--color-panel-header-background);
}
.ApplicationMenu-Link {
  padding: 0 24px;
}
.ApplicationMenu-Link-Name {
  display: block;
  font-size: 15px;
  line-height: 23px;
  color: var(--color-font);
  text-decoration: none;
}
.ApplicationMenu-Link-Description {
  font-size: 12px;
  line-height: 20px;
  color: var(--color-muted);
}

.PanelControl {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 56px;
  padding: 0 32px;
}
.PanelControl-Item {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 21px;
  color: var(--color-muted);
  cursor: pointer;
  user-select: none;
}
.PanelControl-Item[data-open] {
  color: var(--color-font);
}

.PanelColumn {
  position: fixed;
  left: 0;
  top: 56px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-height: calc(100vh - 56px);
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}

.Panel {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: max-content;
  background: var(--color-panel-background);
  border-radius: 12px 8px 8px 8px;
  overflow: hidden;
}
.Panel[data-panel]:not([data-open]) {
  display: none;
}
.Panel[data-float] {
  position: fixed;
}
.Panel[data-edge-left] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.Panel[data-edge-right] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.Panel[data-edge-top] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.Panel[data-edge-bottom] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.Panel[data-panel=information], .Panel[data-panel=usage] {
  width: 320px;
}
.Panel[data-panel=usage] {
  height: 320px;
}
.Panel-Header {
  flex-shrink: 0;
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: grab;
  user-select: none;
}
.Panel-Header:active {
  cursor: grabbing;
}
.Panel-CloseIcon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-icon);
  cursor: pointer;
}
.Panel-CloseIcon svg {
  visibility: hidden;
}
.Panel-CloseIcon:hover svg {
  visibility: visible;
}
.Panel-Title {
  display: flex;
  align-items: center;
  height: 32px;
  background: var(--color-panel-header-background);
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-font);
  border-bottom-right-radius: 12px;
}
.Panel-Title[data-end] {
  padding: 0 16px;
}
.Panel-Main {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px 16px;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
}
.Panel-Text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.Panel-Text h1 {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: var(--color-font);
}
.Panel-Text p {
  font-size: 12px;
  line-height: 20px;
  color: var(--color-group-header-font);
}
.Panel-Handle {
  position: absolute;
  z-index: 1;
}
.Panel-Handle[data-direction=n] {
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  cursor: ns-resize;
}
.Panel-Handle[data-direction=s] {
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  cursor: ns-resize;
}
.Panel-Handle[data-direction=e] {
  top: 0;
  right: 0;
  bottom: 0;
  width: 6px;
  cursor: ew-resize;
}
.Panel-Handle[data-direction=w] {
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  cursor: ew-resize;
}
.Panel-Handle[data-direction=ne] {
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  cursor: nesw-resize;
  z-index: 2;
}
.Panel-Handle[data-direction=nw] {
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  cursor: nwse-resize;
  z-index: 2;
}
.Panel-Handle[data-direction=se] {
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  cursor: nwse-resize;
  z-index: 2;
}
.Panel-Handle[data-direction=sw] {
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  cursor: nesw-resize;
  z-index: 2;
}

.Orbital[data-fixed] .Panel {
  position: fixed;
  top: 56px;
  left: 0;
  right: auto;
}
.Orbital[data-fixed] .Panel-Header {
  cursor: default;
}

.ChipRow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.ChipRow-Label {
  font-size: 11px;
  line-height: 24px;
  color: var(--color-muted);
}

.Chip {
  display: flex;
  align-items: center;
  height: 24px;
  padding: 0 12px;
  background: var(--color-chip-background);
  border-radius: 12px;
  font-size: 12px;
  line-height: 24px;
  color: var(--color-muted);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.Chip[data-selected] {
  background: var(--color-chip-selected-background);
  color: var(--color-font);
}
.Chip sub {
  color: inherit;
}

.Information {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.Information-Title {
  font-size: 17px;
  line-height: 26px;
  font-weight: 500;
  color: var(--color-font);
}
.Information-Meta {
  font-size: 11px;
  line-height: 18px;
  color: var(--color-muted);
}
.Information-Description {
  margin-top: 6px;
  font-size: 13px;
  line-height: 21px;
  color: var(--color-group-header-font);
}
.Information-Caption {
  font-size: 11px;
  line-height: 18px;
  color: var(--color-muted);
}

.Legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.Legend-Item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  line-height: 18px;
  color: var(--color-group-header-font);
}
.Legend-Swatch {
  width: 10px;
  height: 10px;
  background: var(--swatch-color);
  border-radius: 50%;
}

.Orbital {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: var(--color-body-background);
  color: var(--color-font);
  font-family: BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDGothic", meiryo, sans-serif;
  font-size: 13px;
  -webkit-font-smoothing: antialiased;
}
.Orbital[data-mode=cloud] .OrbitalView {
  cursor: grab;
}

.OrbitalView {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}