.plugin.reassembly {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
.plugin.reassembly a {
  color: var(--theme-color-tertiary);
  text-decoration: underline;
}
.plugin.reassembly .topBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: black;
  display: flex;
  padding: 2px;
  justify-content: center;
  align-items: center;
}
.plugin.reassembly .topBar span {
  display: flex;
}
.plugin.reassembly .topBar input {
  width: 40px;
}
.plugin.reassembly .topBar .title {
  font-family: monospace;
  font-size: 20px;
  font-weight: bold;
  margin-right: 20px;
}
.plugin.reassembly .topBar .subtitle {
  margin-left: 20px;
  font-family: monospace;
  font-size: 16px;
}
.plugin.reassembly .topBar button {
  margin: 0 2px;
}
.plugin.reassembly .hidden {
  display: none;
}
.plugin.reassembly .shapeList {
  display: flex;
  width: 100vw;
  overflow-x: scroll;
}
.plugin.reassembly .shapeList::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.plugin.reassembly .shapeList::-webkit-scrollbar-thumb {
  background: white;
}
.plugin.reassembly .shapeList::-webkit-scrollbar-track {
  background: #222;
}
.plugin.reassembly .shapeList {
  scrollbar-face-color: white;
  scrollbar-track-color: #222;
}
.plugin.reassembly .shapeList {
  scrollbar-color: white #222;
  scrollbar-width: auto;
}
.plugin.reassembly .shapeList .shape {
  margin: 10px;
  box-sizing: content-box;
  border: 1px solid red;
  width: 200px;
  height: 200px;
  position: relative;
  min-height: 0;
}
.plugin.reassembly .shapeList .shape canvas {
  width: 200px;
  height: 200px;
  z-index: 1;
}
.plugin.reassembly .shapeList .shape button {
  z-index: 2;
  right: 0;
  bottom: 0;
  position: absolute;
}
.plugin.reassembly .shapeList .active {
  border-color: lime;
}
.plugin.reassembly .shapeElems {
  background: black;
  display: flex;
  height: 500px;
}
.plugin.reassembly .shapeElems canvas {
  height: 500px;
}
.plugin.reassembly .shapeElems .col {
  display: flex;
  flex-direction: column;
}
.plugin.reassembly .shapeElems .vertList, .plugin.reassembly .shapeElems .portList {
  max-height: 400px;
  overflow: scroll;
}
.plugin.reassembly .shapeElems .vert, .plugin.reassembly .shapeElems .port {
  padding: 5px;
}

/*# sourceMappingURL=style.css.map */
