/* src/neuroglancer/widget/tab_view.css */
.neuroglancer-tab-view {
  display: flex;
  flex-direction: column;
}
.neuroglancer-tab-view-bar {
  display: block;
  background-color: #333;
  border-bottom: 1px solid white;
}
.neuroglancer-tab-label {
  display: inline-block;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: none;
  margin-right: 4px;
  padding-top: 1px;
  padding-left: 2px;
  padding-right: 2px;
  font: 10pt sans-serif;
  font-weight: bold;
  cursor: pointer;
}
.neuroglancer-tab-label:hover {
  color: #daa520;
}
.neuroglancer-tab-label.neuroglancer-selected-tab-label {
  background-color: black;
  border-top: 1px solid white;
  border-left: 1px solid white;
  border-right: 1px solid white;
  border-bottom: 1px solid black;
  padding-bottom: 1px;
  margin-bottom: -1px;
}
.neuroglancer-stack-view {
  display: contents;
}
.neuroglancer-tab-view > .neuroglancer-stack-view > .neuroglancer-tab-content {
  flex: 1;
  flex-basis: 0px;
  height: 0px;
  min-height: 0px;
  padding: 2px;
}

/* src/neuroglancer/status.css */
#statusContainer {
  position: absolute;
  bottom: 0px;
  z-index: 100;
  background-color: #808080;
  color: white;
  margin: 0px;
  padding: 0px;
  font: 10pt sans-serif;
}
#statusContainer li {
  width: 100vw;
  max-height: 25vh;
  overflow-y: auto;
}
.neuroglancer-status-header {
  display: inline-block;
  font: 10pt sans-serif;
  font-weight: bold;
  background-color: #333;
  padding: 2px;
}

/* src/neuroglancer/ui/selection_details.css */
.neuroglancer-selection-details-body {
  height: 0px;
  flex: 1;
  overflow-y: auto;
  flex-basis: 0px;
  min-height: 0px;
}
.neuroglancer-selection-details-position {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: left;
  font-family: monospace;
  font-size: medium;
}
.neuroglancer-selection-details-position-dimension + .neuroglancer-selection-details-position-dimension {
  margin-left: 8px;
}
.neuroglancer-selection-details-position-dimension-name {
  color: #ff6;
}
.neuroglancer-selection-details-position-dimension-coordinate {
  margin-left: 5px;
  user-select: text;
}
.neuroglancer-selection-details-layer {
  margin-top: 4px;
  margin-bottom: 4px;
  border: 1px solid #222;
}
.neuroglancer-selection-details-layer-title {
  cursor: pointer;
  background-color: #222;
  font-family: sans-serif;
  font-size: 10pt;
}
.neuroglancer-selection-details-layer-title:hover {
  background-color: #333;
}
.neuroglancer-selection-details-layer-body {
  padding: 2px;
  display: flex;
  flex-direction: column;
}

/* src/neuroglancer/ui/side_panel.css */
.neuroglancer-side-panel-column {
  display: flex;
  flex-direction: column;
  min-width: 0px;
}
.neuroglancer-side-panel-row {
  display: flex;
  flex-direction: row;
  min-height: 0px;
}
.neuroglancer-side-panel {
  display: flex;
  flex-direction: column;
  min-width: 0px;
  overflow: hidden;
}
.neuroglancer-side-panel-titlebar {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: sans-serif;
  font-size: 10pt;
  background-color: #03c;
  padding: 2px;
  color: white;
}
.neuroglancer-side-panel-title {
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.neuroglancer-side-panel-drop-zone {
  z-index: 1000;
  display: none;
}
[data-neuroglancer-side-panel-drag] .neuroglancer-side-panel-drop-zone {
  display: block;
}
.neuroglancer-resize-gutter-vertical {
  height: 1px;
  background-color: #333;
  background-clip: content-box;
  padding-top: 2px;
  padding-bottom: 2px;
  cursor: row-resize;
}
.neuroglancer-resize-gutter-horizontal {
  width: 1px;
  background-color: #333;
  background-clip: content-box;
  padding-right: 2px;
  padding-left: 2px;
  cursor: col-resize;
}

/* src/neuroglancer/ui/drag_and_drop.css */
.neuroglancer-drag-status {
  position: absolute;
  top: 0px;
  z-index: 1000;
  background-color: yellow;
  color: black;
  font: 10pt sans-serif;
  padding: 2px;
}

/* src/neuroglancer/widget/icon.css */
.neuroglancer-icon {
  display: inline-flex;
  text-decoration: none;
  align-self: center;
  white-space: nowrap;
  padding-left: 2px;
  padding-right: 2px;
  min-width: 18px;
  min-height: 18px;
  border-radius: 20%;
  align-items: center;
  justify-content: center;
  color: white;
  font: 12px sans-serif;
  cursor: pointer;
  font-weight: 900;
  margin-left: 1px;
  margin-right: 1px;
}
.neuroglancer-icon svg {
  width: 16px;
  height: 16px;
  fill: transparent;
  stroke: white;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.neuroglancer-icon:hover {
  background-color: #db4437;
}

/* src/neuroglancer/widget/checkbox_icon.css */
.neuroglancer-checkbox-icon.light-background[data-checked=true] {
  background-color: rgba(0, 0, 0, 0.5);
}
.neuroglancer-checkbox-icon.dark-background[data-checked=true] {
  background-color: rgba(255, 255, 255, 0.2);
}

/* src/neuroglancer/datasource/graphene/graphene.css */
.neuroglancer-graphene-tab .neuroglancer-annotation-toolbox {
  display: none;
}
.neuroglancer-graphene-tab div[data-color="#ff0000"] > .neuroglancer-annotation-position {
  color: red;
}
.neuroglancer-graphene-tab div[data-color="#0000ff"] > .neuroglancer-annotation-position {
  color: #4444ff;
}
.graphene-multicut-status {
  display: flex;
  flex-direction: row;
}
.graphene-multicut-status > .activeGroupIndicator {
  padding: 2px;
  margin: auto 0;
  background-color: red;
  font: 12px sans-serif;
  font-weight: 900;
}
.graphene-multicut-status > .activeGroupIndicator.blueGroup {
  background-color: blue;
}
.graphene-multicut-status > .activeGroupIndicator::after {
  content: "Red";
}
.graphene-multicut-status > .activeGroupIndicator.blueGroup::after {
  content: "Blue";
}
.graphene-merge-segments-status {
  display: flex;
  gap: 10px;
}
.graphene-merge-segments-point {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* src/neuroglancer/ui/tool.css */
.neuroglancer-tool-key-binding {
  display: inline-block;
  color: #0ff;
  font: 9pt monospace;
  white-space: pre;
}
.neuroglancer-tool-key-binding:hover {
  outline: 1px solid #fff;
}
.neuroglancer-tool-key-binding::before {
  content: "[";
}
.neuroglancer-tool-key-binding::after {
  content: "]";
}
.neuroglancer-tool-key-binding::before,
.neuroglancer-tool-key-binding::after {
  color: #999;
}
.neuroglancer-tool-button {
  display: inline-flex;
  flex-direction: row;
}
#statusContainer li.neuroglancer-tool-status {
  max-height: 50vh;
}
.neuroglancer-tool-status-bindings {
  background-color: #333;
}
.neuroglancer-tool-status-content {
  display: flex;
  flex-direction: row;
}
.neuroglancer-tool-status-header-container {
  background-color: #555;
  width: min-content;
  padding: 3px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.neuroglancer-tool-status-header {
  align-self: center;
}
.neuroglancer-tool-status-body {
  flex: 1;
  padding: 2px;
}

/* src/neuroglancer/segmentation_user_layer.css */
.neuroglancer-segmentation-rendering-tab {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.neuroglancer-segmentation-rendering-tab .neuroglancer-shader-code-widget {
  height: 6em;
}
.neuroglancer-segmentation-dropdown-skeleton-shader-header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.neuroglancer-segmentation-layer-skeleton-shader-overlay .neuroglancer-shader-code-widget {
  width: 80vw;
  height: 80vh;
}
.neuroglancer-segment-list-entry {
  display: flex;
  flex-direction: row;
  width: min-content;
  min-width: 100%;
  background-color: black;
  align-items: start;
}
.neuroglancer-segment-list-entry.neuroglancer-segment-list-entry-double-line {
  display: inline-flex;
  min-width: initial;
  background-color: initial;
}
.neuroglancer-segment-list-entry[data-selected=true],
.neuroglancer-selection-details-segment[data-selected=true] {
  background-color: #222;
}
.neuroglancer-segment-list-entry-copy-container {
  display: flex;
  flex-direction: column;
}
.neuroglancer-segment-list-entry-id-container {
  order: 1;
  align-self: center;
}
.neuroglancer-segment-list-entry-id,
.neuroglancer-selection-details-segment-id {
  display: block;
  font-family: monospace;
  font-size: medium;
  flex-shrink: 0;
  text-align: right;
  color: black;
  background-color: white;
  user-select: text;
  width: var(--neuroglancer-segment-list-width);
}
.neuroglancer-segment-list .neuroglancer-segment-list-entry-sticky {
  position: sticky;
  left: 0;
}
.neuroglancer-segment-list-entry-sticky {
  white-space: nowrap;
  flex-direction: row;
  align-items: start;
  background-color: inherit;
  display: flex;
}
.neuroglancer-segment-list-entry-extra-property {
  padding-left: 8px;
  flex-shrink: 0;
  text-align: right;
  user-select: text;
}
.neuroglancer-selection-details-segment-description,
.neuroglancer-selection-details-segment-property {
  font-family: sans-serif;
  font-size: small;
}
.neuroglancer-selection-details-segment-property {
  display: flex;
  flex-direction: row;
}
.neuroglancer-selection-details-segment-property-name {
  user-select: text;
  font-style: italic;
}
.neuroglancer-selection-details-segment-property-value {
  text-align: right;
  flex: 1;
}
.neuroglancer-segmentation-toolbox {
  display: inline-block;
}
.neuroglancer-segmentation-toolbox .neuroglancer-tool-button + .neuroglancer-tool-button {
  margin-left: 1em;
}

/* src/neuroglancer/ui/annotations.css */
.neuroglancer-annotations-tab {
  display: flex;
  align-items: stretch;
  flex: 1;
  flex-direction: column;
}
.neuroglancer-annotation-list {
  position: relative;
  margin: 0px;
  padding: 0px;
  margin-top: 2px;
  overflow-y: auto;
  height: 0px;
  flex: 1;
  flex-basis: 0px;
  min-height: 0px;
}
.neuroglancer-annotation-list-entry {
  display: grid;
  grid-auto-rows: min-content;
  cursor: pointer;
  justify-content: start;
}
.neuroglancer-annotation-position {
  display: contents;
}
.neuroglancer-annotation-layer-view {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
}
.neuroglancer-annotation-list-header {
  grid-auto-rows: min-content;
  display: grid;
  padding-bottom: 2px;
  justify-content: start;
}
.neuroglancer-annotation-coordinate {
  font-family: monospace;
  text-align: right;
}
.neuroglancer-annotation-icon {
  grid-column: symbol;
  padding-right: 5px;
}
.neuroglancer-annotation-description {
  grid-column: dim / -1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.neuroglancer-annotation-list-entry-delete {
  grid-column: delete;
  margin-left: 1ch;
  align-self: start;
  visibility: hidden;
}
.neuroglancer-annotation-list-entry:hover > .neuroglancer-annotation-list-entry-delete {
  visibility: visible;
}
.neuroglancer-annotation-hover {
  background-color: #333;
}
.neuroglancer-annotation-selected {
  background-color: #939;
}
.neuroglancer-annotation-hover.neuroglancer-annotation-selected {
  background-color: #969;
}
.neuroglancer-tab-content.neuroglancer-annotation-details {
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.neuroglancer-annotation-details-title {
  display: flex;
  flex-direction: row;
  background-color: #03c;
  align-self: stretch;
  padding: 2px;
}
.neuroglancer-voxel-coordinates-link {
  cursor: pointer;
}
.neuroglancer-voxel-coordinates-link:hover {
  background-color: #db4437;
}
.neuroglancer-annotation-details-icon {
  display: inline-block;
  margin-right: 5px;
}
.neuroglancer-annotation-details-title-text {
  display: inline-block;
  flex: 1;
}
textarea.neuroglancer-annotation-details-description {
  align-self: stretch;
  background-color: #222;
  color: white;
  font: 10pt sans-serif;
  border: 0px;
  outline: 0px;
  resize: none;
  overflow-y: scroll;
}
div.neuroglancer-annotation-details-description {
  align-self: stretch;
  color: white;
  font: 10pt sans-serif;
}
.neuroglancer-annotation-details-position {
}
.neuroglancer-annotation-toolbox {
  display: flex;
  align-items: stretch;
}
.neuroglancer-annotation-segment-list {
}
.neuroglancer-annotation-segment-item {
  color: black;
  background-color: white;
}
.neuroglancer-annotations-view-dimension {
  font-family: monospace;
  text-align: right;
}
.neuroglancer-annotations-view-dimension-name {
  color: #ff6;
}
.neuroglancer-annotations-view-dimension-scale {
  color: #bbb;
}
.neuroglancer-annotations-view-dimension-scale:not(:empty)::before {
  content: "(";
  margin-left: 1ch;
}
.neuroglancer-annotations-view-dimension-scale:not(:empty)::after {
  content: ")";
}
.neuroglancer-annotation-relationship-label,
.neuroglancer-annotation-property-label {
  margin-right: 5px;
}
.neuroglancer-selected-annotation-details-position-grid {
  display: grid;
  grid-auto-rows: auto;
  font-family: monospace;
  font-size: medium;
  grid-auto-flow: dense;
}
.neuroglancer-selected-annotation-details-icon {
  grid-rows: 1 / -1;
  grid-column: icon;
  align-self: start;
}
.neuroglancer-selected-annotation-details-delete {
  grid-rows: 1 / -1;
  grid-column: delete;
  align-self: start;
}
.neuroglancer-selected-annotation-details-position-dim {
  color: #ff6;
  margin-left: 1ch;
}
.neuroglancer-selected-annotation-details-position-coord {
  text-align: right;
  margin-left: 0.5ch;
}
.neuroglancer-related-segment-list-title {
  font-family: sans-serif;
  font-size: small;
  background-color: #333;
}
.neuroglancer-related-segment-list-header {
  display: flex;
  flex-direction: row;
}
.neuroglancer-related-segment-list {
}
.neuroglancer-annotation-property {
  display: flex;
  flex-direction: row;
  font-family: sans-serif;
  font-size: small;
}
.neuroglancer-annotation-property-label {
  color: #999;
}
.neuroglancer-annotation-property-value {
  text-align: right;
  font-family: monospace;
  font-size: medium;
  flex: 1;
}
input.neuroglancer-segment-list-entry-id {
  outline: 0px;
  border: 0px;
  text-align: left;
}
.neuroglancer-segment-list-entry-new > .neuroglancer-segment-list-entry-copy {
  visibility: hidden;
}
.neuroglancer-segment-list-entry-new > input[type=checkbox] {
  visibility: hidden;
}
.neuroglancer-segment-list-entry-delete {
  order: 0;
}
.neuroglancer-selection-annotation-status {
  font-family: sans-serif;
  font-size: small;
}

/* src/neuroglancer/ui/segment_list.css */
:root {
  --neuroglancer-segment-list-width: auto;
}
.neuroglancer-segment-list {
  position: relative;
  overflow-y: auto;
  overflow-x: scroll;
  flex: 1;
}
.neuroglancer-segment-display-tab {
  display: flex;
  flex-direction: column;
}
.neuroglancer-segment-query-errors {
  margin: 0px;
  list-style-type: none;
  padding: 0px;
  padding-left: 3px;
  background-color: #333;
}
.neuroglancer-segment-query-errors > li {
  display: block;
  color: red;
}
.neuroglancer-segment-list-entry:not(.neuroglancer-segment-list-entry-double-line) .neuroglancer-segment-list-entry-unmapped-id:empty + .neuroglancer-segment-list-entry-copy {
  display: none;
}
.neuroglancer-segment-list-entry.neuroglancer-segment-list-entry-double-line .neuroglancer-segment-list-entry-unmapped-id:empty + .neuroglancer-segment-list-entry-copy {
  visibility: hidden;
}
.neuroglancer-segment-list-entry-name:empty + .neuroglancer-segment-list-entry-filter {
  display: none;
}
.neuroglancer-segment-list-entry-name {
  order: 1000;
  display: inline-block;
  font-family: monospace;
  font-size: medium;
  user-select: text;
  white-space: nowrap;
}
.neuroglancer-segment-list-query {
  background-color: #151515;
  color: white;
  font-family: monospace;
  font-size: medium;
  border: 2px solid #333;
  padding: 2px;
  outline: 0px;
}
.neuroglancer-segment-list-query::placeholder {
  color: #aaa;
}
.neuroglancer-segment-list-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #333;
}
.neuroglancer-segment-list-entry-copy {
  order: -2;
  visibility: hidden;
}
.neuroglancer-segment-list-entry:hover .neuroglancer-segment-list-entry-copy {
  visibility: visible;
}
.neuroglancer-segment-list-entry-visible-checkbox {
  order: -1;
}
.neuroglancer-segment-list-entry[data-visible-list] .neuroglancer-segment-list-entry-sticky::before {
  order: -1000;
  content: " ";
  display: inline-block;
  width: 2px;
  flex-shrink: 0;
  margin-right: -2px;
  align-self: stretch;
  margin-bottom: 2px;
  background-color: #999;
}
.neuroglancer-segment-list-entry-filter {
  visibility: hidden;
  grid-column: filter;
  order: 999;
}
.neuroglancer-segment-list-entry:hover .neuroglancer-segment-list-entry-filter {
  visibility: visible;
}
.neuroglancer-segment-query-result-tag-list {
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: [include] min-content [exclude] min-content [tag] 1fr [count] min-content;
}
.neuroglancer-segment-query-result-tag {
  display: contents;
}
.neuroglancer-segment-query-result-tag:hover * {
  background-color: #222;
}
.neuroglancer-segment-query-result-tag-name {
  grid-column: tag;
  white-space: nowrap;
  cursor: pointer;
  font-weight: bold;
}
.neuroglancer-segment-query-result-tag-name::before {
  content: "#";
  color: #aaa;
  font-weight: normal;
}
.neuroglancer-segment-query-result-tag-toggle {
  display: inline-block;
  white-space: nowrap;
}
.neuroglancer-segment-query-result-tag-include {
  grid-column: include;
}
.neuroglancer-segment-query-result-tag-exclude {
  grid-column: exclude;
}
.neuroglancer-segment-query-result-statistics {
  background-color: #333;
  max-height: 40%;
  flex-shrink: 0;
  overflow: auto;
}
.neuroglancer-segment-query-result-statistics:not(:empty) {
  padding-top: 3px;
}
.neuroglancer-segment-query-result-statistics:not(:empty) + .neuroglancer-segment-list-status {
  border-top: 1px solid white;
}
.neuroglancer-segment-query-result-statistics-separator {
  height: 3px;
  background-color: #333;
  border-bottom: 1px solid white;
}
.neuroglancer-segment-query-result-tag-count {
  grid-column: count;
  text-align: right;
}
.neuroglancer-segment-query-result-tag-count:not(:empty)::before {
  content: "(";
  color: #aaa;
}
.neuroglancer-segment-query-result-tag-count:not(:empty)::after {
  content: ")";
  color: #aaa;
}
.neuroglancer-segment-query-result-numerical-list {
  display: flex;
  flex-direction: column;
}
.neuroglancer-segment-query-result-numerical-plot-container {
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  padding: 2px;
}
.neuroglancer-segment-query-result-numerical-plot {
  display: block;
  height: 30px;
  cursor: ew-resize;
  justify-self: stretch;
  border: 1px solid #666;
}
.neuroglancer-segment-query-result-numerical-plot-bound {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  border: 0;
  margin: 0;
  font: 10pt sans-serif;
  pointer-events: auto;
}
.neuroglancer-segment-query-result-numerical-plot-window-bound {
  color: cyan;
}
.neuroglancer-segment-query-result-numerical-plot-range-bound {
  color: white;
}
.neuroglancer-segment-query-result-numerical-plot-bounds {
  display: flex;
  flex-direction: row;
  color: #aaa;
}
.neuroglancer-segment-query-result-numerical-plot-bound-constraint-symbol {
  align-self: center;
}
.neuroglancer-segment-query-result-numerical-plot-bound-constraint-spacer {
  flex: 1;
  color: white;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.neuroglancer-segment-query-result-numerical-plot-label {
  cursor: pointer;
}
.neuroglancer-segment-query-result-numerical-plot-sort,
.neuroglancer-segment-list-header-label-sort {
  visibility: hidden;
}
.neuroglancer-segment-query-result-numerical-plot-label:hover .neuroglancer-segment-query-result-numerical-plot-sort,
.neuroglancer-segment-list-header-label:hover .neuroglancer-segment-list-header-label-sort {
  visibility: visible;
}
.neuroglancer-segment-query-result-numerical-plot-container:hover .neuroglancer-segment-query-result-numerical-plot-bounds-window {
  visibility: visible;
}
.neuroglancer-segment-query-result-numerical-plot-bounds-window {
  justify-content: space-between;
  margin-top: -16px;
  visibility: hidden;
  pointer-events: none;
}
.neuroglancer-segment-list-entry.neuroglancer-segment-list-header {
  background-color: #666;
}
.neuroglancer-segment-list-header .neuroglancer-segment-list-entry-id {
  background-color: inherit;
  color: white;
  text-align: center;
}
.neuroglancer-segment-list-header-label {
  cursor: pointer;
  font: 10pt sans-serif;
}
.neuroglancer-segment-list-header .neuroglancer-segment-list-entry-extra-property {
  text-align: center;
}

/* src/neuroglancer/widget/invlerp.css */
.neuroglancer-invlerp-cdfpanel {
  height: 50px;
  cursor: ew-resize;
}
.neuroglancer-invlerp-cdfpanel,
.neuroglancer-invlerp-legend-panel {
  border: 1px solid #666;
}
.neuroglancer-invlerp-legend-panel {
  height: 15px;
}
.neuroglancer-invlerp-widget-bound {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  border: 0;
  margin: 0;
  font-family: monospace;
  font-size: medium;
}
.neuroglancer-invlerp-widget-window-bound {
  color: cyan;
}
.neuroglancer-invlerp-widget-range-bound {
  color: white;
}
.neuroglancer-invlerp-widget-bounds {
  display: flex;
}
.neuroglancer-invlerp-widget-range-spacer {
  flex: 1;
  text-align: center;
}
.neuroglancer-invlerp-widget-window-bounds {
  justify-content: space-between;
}

/* src/neuroglancer/ui/segment_split_merge_tools.css */
.neuroglancer-merge-segments-status {
  display: flex;
  flex-direction: row;
}
.neuroglancer-merge-segments-status .neuroglancer-segment-list-entry {
  margin-left: 1em;
  margin-right: 1em;
}

/* src/neuroglancer/overlay.css */
.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  z-index: 100;
  color: black;
  padding: 1em;
}

/* src/neuroglancer/widget/layer_control.css */
.neuroglancer-layer-options-control-container .neuroglancer-layer-control-label-container {
  margin-right: auto;
}
.neuroglancer-layer-control-label-container {
  white-space: nowrap;
}
.neuroglancer-layer-control-label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.neuroglancer-layer-control-label-text-container {
  display: flex;
  flex-direction: row;
  align-items: start;
}
.neuroglancer-layer-control-container {
  margin-top: 1.5px;
  margin-bottom: 1.5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.neuroglancer-layer-control-control {
  flex: 1;
  margin-left: 5px;
  max-width: 500px;
}
select.neuroglancer-layer-control-control,
input[type=checkbox].neuroglancer-layer-control-control,
input[type=color].neuroglancer-layer-control-control {
  flex: initial;
}

/* src/neuroglancer/widget/linked_layer.css */
.neuroglancer-linked-layer-widget-layer {
  display: flex;
  flex-direction: row;
}
.neuroglancer-linked-layer-widget-layer:hover {
  background-color: #333;
}

/* src/neuroglancer/widget/shader_code_widget.css */
.neuroglancer-shader-code-widget.invalid-input {
  border: 1px solid red;
}
.neuroglancer-shader-code-widget.valid-input {
  border: 1px solid green;
}
.neuroglancer-shader-code-widget {
  border: 1px solid transparent;
}

/* node_modules/codemirror/lib/codemirror.css */
.CodeMirror {
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}
.CodeMirror-lines {
  padding: 4px 0;
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px;
}
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  background-color: white;
}
.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {
}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}
.CodeMirror-guttermarker {
  color: black;
}
.CodeMirror-guttermarker-subtle {
  color: #999;
}
.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor-mark {
  background-color: rgba(20, 255, 20, 0.5);
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  0% {
  }
  50% {
    background-color: transparent;
  }
  100% {
  }
}
@-webkit-keyframes blink {
  0% {
  }
  50% {
    background-color: transparent;
  }
  100% {
  }
}
@keyframes blink {
  0% {
  }
  50% {
    background-color: transparent;
  }
  100% {
  }
}
.CodeMirror-overwrite .CodeMirror-cursor {
}
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}
.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}
.cm-s-default .cm-header {
  color: blue;
}
.cm-s-default .cm-quote {
  color: #090;
}
.cm-negative {
  color: #d44;
}
.cm-positive {
  color: #292;
}
.cm-header,
.cm-strong {
  font-weight: bold;
}
.cm-em {
  font-style: italic;
}
.cm-link {
  text-decoration: underline;
}
.cm-strikethrough {
  text-decoration: line-through;
}
.cm-s-default .cm-keyword {
  color: #708;
}
.cm-s-default .cm-atom {
  color: #219;
}
.cm-s-default .cm-number {
  color: #164;
}
.cm-s-default .cm-def {
  color: #00f;
}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {
}
.cm-s-default .cm-variable-2 {
  color: #05a;
}
.cm-s-default .cm-variable-3,
.cm-s-default .cm-type {
  color: #085;
}
.cm-s-default .cm-comment {
  color: #a50;
}
.cm-s-default .cm-string {
  color: #a11;
}
.cm-s-default .cm-string-2 {
  color: #f50;
}
.cm-s-default .cm-meta {
  color: #555;
}
.cm-s-default .cm-qualifier {
  color: #555;
}
.cm-s-default .cm-builtin {
  color: #30a;
}
.cm-s-default .cm-bracket {
  color: #997;
}
.cm-s-default .cm-tag {
  color: #170;
}
.cm-s-default .cm-attribute {
  color: #00c;
}
.cm-s-default .cm-hr {
  color: #999;
}
.cm-s-default .cm-link {
  color: #00c;
}
.cm-s-default .cm-error {
  color: #f00;
}
.cm-invalidchar {
  color: #f00;
}
.CodeMirror-composing {
  border-bottom: 2px solid;
}
div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0b0;
}
div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #a22;
}
.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, .3);
}
.CodeMirror-activeline-background {
  background: #e8f2ff;
}
.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}
.CodeMirror-scroll {
  overflow: scroll !important;
  margin-bottom: -50px;
  margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none;
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}
.CodeMirror-vscrollbar,
.CodeMirror-hscrollbar,
.CodeMirror-scrollbar-filler,
.CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}
.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}
.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection {
  background-color: transparent;
}
.CodeMirror-gutter-wrapper ::-moz-selection {
  background-color: transparent;
}
.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}
.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}
.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px;
}
.CodeMirror-widget {
}
.CodeMirror-rtl pre {
  direction: rtl;
}
.CodeMirror-code {
  outline: none;
}
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre {
  position: static;
}
div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}
.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}
.CodeMirror-selected {
  background: #d9d9d9;
}
.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}
.CodeMirror-crosshair {
  cursor: crosshair;
}
.CodeMirror-line::selection,
.CodeMirror-line > span::selection,
.CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}
.CodeMirror-line::-moz-selection,
.CodeMirror-line > span::-moz-selection,
.CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}
.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}
.cm-force-border {
  padding-right: .1px;
}
@media print {
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
.cm-tab-wrap-hack:after {
  content: "";
}
span.CodeMirror-selectedtext {
  background: none;
}

/* node_modules/codemirror/addon/lint/lint.css */
.CodeMirror-lint-markers {
  width: 16px;
}
.CodeMirror-lint-tooltip {
  background-color: #ffd;
  border: 1px solid black;
  border-radius: 4px 4px 4px 4px;
  color: black;
  font-family: monospace;
  font-size: 10pt;
  overflow: hidden;
  padding: 2px 5px;
  position: fixed;
  white-space: pre;
  white-space: pre-wrap;
  z-index: 100;
  max-width: 600px;
  opacity: 0;
  transition: opacity .4s;
  -moz-transition: opacity .4s;
  -webkit-transition: opacity .4s;
  -o-transition: opacity .4s;
  -ms-transition: opacity .4s;
}
.CodeMirror-lint-mark {
  background-position: left bottom;
  background-repeat: repeat-x;
}
.CodeMirror-lint-mark-warning {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=);
}
.CodeMirror-lint-mark-error {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==);
}
.CodeMirror-lint-marker {
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 16px;
  width: 16px;
  vertical-align: middle;
  position: relative;
}
.CodeMirror-lint-message {
  padding-left: 18px;
  background-position: top left;
  background-repeat: no-repeat;
}
.CodeMirror-lint-marker-warning,
.CodeMirror-lint-message-warning {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=);
}
.CodeMirror-lint-marker-error,
.CodeMirror-lint-message-error {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=);
}
.CodeMirror-lint-marker-multiple {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: right bottom;
  width: 100%;
  height: 100%;
}

/* src/neuroglancer/widget/position_widget.css */
.neuroglancer-position-widget {
  display: inline-flex;
  align-items: center;
}
.neuroglancer-position-widget input:disabled {
  pointer-events: none;
}
.neuroglancer-position-widget .neuroglancer-copy-button:first-child {
  display: none;
}
.neuroglancer-position-dimension-coordinate,
.neuroglancer-position-dimension-name,
.neuroglancer-position-dimension-scale {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  border: 0;
  margin: 0;
  font-family: monospace;
  font-size: medium;
}
.neuroglancer-position-dimension[data-coordinate-array=valid] .neuroglancer-position-dimension-scale {
  display: none;
}
.neuroglancer-position-dimension[data-coordinate-array=invalid] .neuroglancer-position-dimension-scale {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: red;
}
.neuroglancer-position-dimension-coordinate {
  color: white;
}
.neuroglancer-position-widget input:invalid,
.neuroglancer-position-widget input::placeholder,
.neuroglancer-position-widget input[data-is-valid=false] {
  text-decoration: solid underline red;
}
.neuroglancer-position-widget *:focus {
  outline: 0px;
}
.neuroglancer-position-dimension[data-dropdown-visible=true]::after {
  content: "";
  display: block;
  left: 0px;
  right: 0px;
  bottom: -1px;
  position: absolute;
  border-bottom: 1px solid black;
  z-index: 100;
  height: 0px;
}
.neuroglancer-position-dimension-dropdown,
.neuroglancer-position-dimension-coordinate-dropdown {
  position: absolute;
  min-width: calc(100% + 2px);
  border: 1px solid #aaa;
  box-sizing: border-box;
  padding: 2px;
  left: -1px;
  z-index: 100;
  background-color: black;
}
.neuroglancer-position-dimension-dropdown {
  display: grid;
  grid-template-areas: "labels . graph";
  grid-template-rows: 1fr;
  grid-template-columns: 0fr 3px 0fr;
}
.neuroglancer-position-dimension-coordinate-dropdown {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.neuroglancer-dimension-dropdown-coordinate-entry {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.neuroglancer-dimension-dropdown-coordinate-entry:hover {
  background-color: #333;
}
.neuroglancer-dimension-dropdown-coordinate-label {
  width: var(--neuroglancer-coordinate-label-width);
  color: #0ff;
}
.neuroglancer-position-dimension-dropdown:focus,
.neuroglancer-position-dimension-coordinate-dropdown:focus {
  outline: 0px;
}
.neuroglancer-position-dimension-dropdown-lowerbound,
.neuroglancer-position-dimension-dropdown-upperbound,
.neuroglancer-position-dimension-dropdown-hoverposition {
  grid-area: labels;
  text-align: right;
}
.neuroglancer-position-dimension-dropdown canvas {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  grid-area: graph;
}
.neuroglancer-position-dimension:focus-within,
.neuroglancer-position-dimension[data-dropdown-visible=true] {
  border: 1px solid #aaa;
  background-color: black;
}
.neuroglancer-position-dimension {
  border: 1px solid transparent;
  position: relative;
  display: inline-block;
  font-family: monospace;
  font-size: medium;
  white-space: nowrap;
}
.neuroglancer-position-dimension-name {
  color: #ff6;
  padding-left: 2px;
}
.neuroglancer-position-dimension-scale-container[data-is-empty=false]::before {
  content: "(";
  color: #aaa;
}
.neuroglancer-position-dimension-scale-container[data-is-empty=false]::after {
  content: ")";
  color: #aaa;
}
.neuroglancer-position-dimension-scale-container[data-is-empty=false] {
  margin-right: 5px;
}
.neuroglancer-position-dimension-scale {
  color: #bbb;
}
.neuroglancer-position-dimension-scale-container {
  margin-right: 2px;
  margin-left: 4px;
}
.neuroglancer-mouse-position-widget {
  margin-left: 1ch;
  vertical-align: center;
  font-family: monospace;
  font-size: medium;
  color: orange;
  white-space: pre;
}
.neuroglancer-position-dimension-coordinate-label {
  display: inline-block;
  color: #0ff;
}
.neuroglancer-position-dimension-coordinate-label:not(:empty)::before {
  content: "[";
  color: #aaa;
}
.neuroglancer-position-dimension-coordinate-label:not(:empty)::after {
  content: "]";
  color: #aaa;
}

/* src/neuroglancer/widget/range.css */
.range-slider {
  display: flex;
  flex-direction: row;
  white-space: nowrap;
  justify-content: flex-end;
}
.range-slider input[type=range] {
  background: transparent;
  flex-basis: 0px;
}
.range-slider input[type=number] {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: 0px;
}
.range-slider input[type=range]::-moz-range-track {
  background-color: white;
}

/* src/neuroglancer/widget/render_scale_widget.css */
.neuroglancer-render-scale-widget {
  margin-top: 2px;
  margin-bottom: 2px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.neuroglancer-render-scale-widget-prompt {
  white-space: nowrap;
}
.neuroglancer-render-scale-widget > canvas {
  height: 36px;
  flex: 1;
  flex-basis: 0px;
  width: 0px;
}
.neuroglancer-render-scale-widget-legend {
  width: 10ch;
  font-size: 11px;
  text-align: right;
}
.neuroglancer-render-scale-widget-legend > div {
  height: 12px;
}

/* src/neuroglancer/widget/segmentation_color_mode.css */
.neuroglancer-segmentation-color-seed-control {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.neuroglancer-segmentation-color-seed-control input {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: 0px;
}

/* src/neuroglancer/image_user_layer.css */
.neuroglancer-image-dropdown {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  height: 0px;
}
.neuroglancer-image-dropdown .neuroglancer-shader-code-widget {
  flex-shrink: 0;
  height: 8em;
  border: 1px solid transparent;
}
.neuroglancer-image-dropdown-top-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.neuroglancer-image-layer-shader-overlay .neuroglancer-shader-code-widget {
  width: 80vw;
  height: 80vh;
}
.neuroglancer-selection-details-value-grid {
  display: grid;
  grid-auto-rows: auto;
  font-family: monospace;
  font-size: medium;
  align-items: center;
}
.neuroglancer-selection-details-value-grid-dim {
  grid-column: dim;
  color: #ff6;
}
.neuroglancer-selection-details-value-grid-dim::after {
  content: "=";
  color: #aaa;
}
.neuroglancer-selection-details-value-grid-coord {
  grid-column: coord;
  color: #aaa;
  margin-right: 1ch;
}
.neuroglancer-selection-details-value-grid-value {
  grid-column: value;
  user-select: text;
}

/* src/neuroglancer/widget/channel_dimensions_widget.css */
.neuroglancer-channel-dimensions-widget-dim {
  display: contents;
}
.neuroglancer-channel-dimensions-widget {
  display: grid;
  grid-template-columns: [name] min-content [lower] min-content [upper] min-content;
}
.neuroglancer-channel-dimensions-widget-name-container {
  grid-column: name;
}
.neuroglancer-channel-dimensions-widget-name[data-is-valid=false],
.neuroglancer-channel-dimensions-widget-name::placeholder {
  text-decoration: solid underline red;
}
.neuroglancer-channel-dimensions-widget-name {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  border: 0;
  margin: 0;
  font-family: monospace;
  font-size: medium;
  color: #ff6;
}
.neuroglancer-channel-dimensions-widget-name,
.neuroglancer-channel-dimensions-widget-lower,
.neuroglancer-channel-dimensions-widget-upper {
  font-family: monospace;
}
.neuroglancer-channel-dimensions-widget-lower {
  grid-column: lower;
  text-align: right;
}
.neuroglancer-channel-dimensions-widget-upper {
  grid-column: upper;
  text-align: right;
}
.neuroglancer-channel-dimensions-widget-lower,
.neuroglancer-channel-dimensions-widget-upper {
  text-align: right;
  margin-left: 1ch;
  user-select: text;
}
.neuroglancer-channel-dimensions-widget-upper::after {
  content: ")";
}
.neuroglancer-channel-dimensions-widget-lower::after {
  content: ",";
}
.neuroglancer-channel-dimensions-widget-lower::before {
  content: "[";
}
.neuroglancer-channel-dimensions-widget-upper::after,
.neuroglancer-channel-dimensions-widget-lower::before,
.neuroglancer-channel-dimensions-widget-lower::after {
  color: #999;
}

/* src/neuroglancer/single_mesh_user_layer.css */
.neuroglancer-single-mesh-dropdown .neuroglancer-single-mesh-attribute-widget {
  max-height: 6em;
  margin-bottom: 8px;
}
.neuroglancer-single-mesh-dropdown .neuroglancer-shader-code-widget {
  height: 6em;
  width: 60ch;
  border: 1px solid transparent;
}
.neuroglancer-single-mesh-dropdown-top-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.neuroglancer-single-mesh-shader-overlay .neuroglancer-shader-code-widget {
  width: 80vw;
  height: 80vh;
}
.neuroglancer-single-mesh-attribute-widget {
  word-wrap: break-word;
  overflow-y: auto;
  display: grid;
  grid-template-columns: [type] auto [name] auto [range] auto;
}
.neuroglancer-single-mesh-layer-shader-overlay .neuroglancer-single-mesh-attribute-widget {
  max-height: 20vh;
}
.neuroglancer-single-mesh-attribute {
  font-family: monospace;
  display: contents;
}
.neuroglancer-single-mesh-attribute-type {
  color: #c6c;
  grid-column: type;
}
.neuroglancer-single-mesh-attribute-name {
  margin-left: 1ch;
  color: white;
  grid-column: name;
  user-select: text;
}
.neuroglancer-single-mesh-attribute-range {
  grid-column: range;
  margin-left: 1ch;
  white-space: nowrap;
  color: #999;
  grid-column: range;
}

/* src/neuroglancer/annotation/user_layer.css */
.neuroglancer-annotation-rendering-tab {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.neuroglancer-annotation-rendering-tab .neuroglancer-shader-code-widget {
  flex-shrink: 0;
}
.neuroglancer-annotation-shader-property-list {
  max-height: 8em;
  overflow: auto;
  flex-shrink: 0;
}
.neuroglancer-annotation-shader-property {
  white-space: pre;
  font-family: monospace;
  font-size: medium;
}
.neuroglancer-annotation-shader-property-type {
  color: #c6c;
  margin-right: 1ch;
}
.neuroglancer-annotation-shader-property-identifier {
  user-select: text;
}
.neuroglancer-annotation-shader-property-identifier::after {
  content: "()";
  color: #999;
}

/* src/neuroglancer/ui/default_viewer.css */
html,
body {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  background-color: black;
  color: white;
}
body {
  position: relative;
  display: flex;
  flex-direction: column;
}
#neuroglancer-container {
  width: 100vw;
  overflow: hidden;
  flex: 1;
}

/* node_modules/intro.js/introjs.css */
.introjs-overlay {
  position: absolute;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 999999;
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.introjs-showElement {
  z-index: 9999999 !important;
}
tr.introjs-showElement > td {
  z-index: 9999999 !important;
  position: relative;
}
tr.introjs-showElement > th {
  z-index: 9999999 !important;
  position: relative;
}
.introjs-disableInteraction {
  z-index: 99999999 !important;
  position: absolute;
  background-color: #fff;
  opacity: 0;
}
.introjs-relativePosition {
  position: relative;
}
.introjs-helperLayer {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  z-index: 9999998;
  border-radius: 4px;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.introjs-helperLayer * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.introjs-helperLayer :before {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.introjs-helperLayer :after {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.introjs-tooltipReferenceLayer {
  font-family:
    "Helvetica Neue",
    Inter,
    ui-sans-serif,
    "Apple Color Emoji",
    Helvetica,
    Arial,
    sans-serif;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  visibility: hidden;
  z-index: 100000000;
  background-color: transparent;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.introjs-tooltipReferenceLayer * {
  font-family:
    "Helvetica Neue",
    Inter,
    ui-sans-serif,
    "Apple Color Emoji",
    Helvetica,
    Arial,
    sans-serif;
}
.introjs-helperNumberLayer {
  font-family:
    "Helvetica Neue",
    Inter,
    ui-sans-serif,
    "Apple Color Emoji",
    Helvetica,
    Arial,
    sans-serif;
  color: #9e9e9e;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.introjs-arrow {
  border: 5px solid transparent;
  content: "";
  position: absolute;
}
.introjs-arrow.top {
  top: -10px;
  left: 10px;
  border-bottom-color: #fff;
}
.introjs-arrow.top-right {
  top: -10px;
  right: 10px;
  border-bottom-color: #fff;
}
.introjs-arrow.top-middle {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: #fff;
}
.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-left-color: #fff;
}
.introjs-arrow.right-bottom {
  bottom: 10px;
  right: -10px;
  border-left-color: #fff;
}
.introjs-arrow.bottom {
  bottom: -10px;
  left: 10px;
  border-top-color: #fff;
}
.introjs-arrow.bottom-right {
  bottom: -10px;
  right: 10px;
  border-top-color: #fff;
}
.introjs-arrow.bottom-middle {
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
  border-top-color: #fff;
}
.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-right-color: #fff;
}
.introjs-arrow.left-bottom {
  left: -10px;
  bottom: 10px;
  border-right-color: #fff;
}
.introjs-tooltip {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  visibility: visible;
  background-color: #fff;
  min-width: 250px;
  max-width: 300px;
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 30px rgba(33, 33, 33, .3);
  box-shadow: 0 3px 30px rgba(33, 33, 33, .3);
  -webkit-transition: opacity .1s ease-out;
  -o-transition: opacity .1s ease-out;
  transition: opacity .1s ease-out;
}
.introjs-tooltiptext {
  padding: 20px;
}
.introjs-dontShowAgain {
  padding-left: 20px;
  padding-right: 20px;
}
.introjs-dontShowAgain input {
  padding: 0;
  margin: 0;
  margin-bottom: 2px;
  display: inline;
  width: 10px;
  height: 10px;
}
.introjs-dontShowAgain label {
  font-size: 14px;
  display: inline-block;
  font-weight: 400;
  display: inline-block;
  margin: 0 0 0 5px;
  padding: 0;
  background-color: #fff;
  color: #616161;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.introjs-tooltip-title {
  font-size: 18px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  float: left;
  line-height: 32px;
}
.introjs-tooltip-header {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
}
.introjs-tooltip-header:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
.introjs-tooltipbuttons {
  border-top: 1px solid #e0e0e0;
  padding: 10px;
  text-align: right;
  white-space: nowrap;
}
.introjs-tooltipbuttons:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}
.introjs-button {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid #bdbdbd;
  text-decoration: none;
  text-shadow: 1px 1px 0 #fff;
  font-size: 14px;
  color: #424242;
  white-space: nowrap;
  cursor: pointer;
  outline: 0;
  background-color: #f4f4f4;
  border-radius: .2em;
  zoom: 1;
  display: inline;
}
.introjs-button:hover {
  outline: 0;
  text-decoration: none;
  border-color: #9e9e9e;
  background-color: #e0e0e0;
  color: #212121;
}
.introjs-button:focus {
  outline: 0;
  text-decoration: none;
  background-color: #eee;
  -webkit-box-shadow: 0 0 0 .2rem rgba(158, 158, 158, .5);
  box-shadow: 0 0 0 .2rem rgba(158, 158, 158, .5);
  border: 1px solid #616161;
  color: #212121;
}
.introjs-button:active {
  outline: 0;
  text-decoration: none;
  background-color: #e0e0e0;
  border-color: #9e9e9e;
  color: #212121;
}
.introjs-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.introjs-skipbutton {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  color: #616161;
  float: right;
  font-size: 20px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 7px 10px;
}
.introjs-skipbutton:focus,
.introjs-skipbutton:hover {
  color: #212121;
  outline: 0;
  text-decoration: none;
}
.introjs-prevbutton {
  float: left;
}
.introjs-nextbutton {
  float: right;
}
.introjs-disabled {
  color: #9e9e9e;
  border-color: #bdbdbd;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: default;
  background-color: #f4f4f4;
  background-image: none;
  text-decoration: none;
}
.introjs-disabled:focus,
.introjs-disabled:hover {
  color: #9e9e9e;
  border-color: #bdbdbd;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: default;
  background-color: #f4f4f4;
  background-image: none;
  text-decoration: none;
}
.introjs-hidden {
  display: none;
}
.introjs-bullets {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.introjs-bullets ul {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  clear: both;
  margin: 0 auto 0;
  padding: 0;
  display: inline-block;
}
.introjs-bullets ul li {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  list-style: none;
  float: left;
  margin: 0 2px;
}
.introjs-bullets ul li a {
  -webkit-transition: width .1s ease-in;
  -o-transition: width .1s ease-in;
  transition: width .1s ease-in;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}
.introjs-bullets ul li a:focus,
.introjs-bullets ul li a:hover {
  width: 15px;
  background: #999;
  text-decoration: none;
  outline: 0;
}
.introjs-bullets ul li a.active {
  width: 15px;
  background: #999;
}
.introjs-progress {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: hidden;
  height: 10px;
  margin: 10px;
  border-radius: 4px;
  background-color: #e0e0e0;
}
.introjs-progressbar {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  float: left;
  width: 0%;
  height: 100%;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  background-color: #08c;
}
.introjsFloatingElement {
  position: absolute;
  height: 0;
  width: 0;
  left: 50%;
  top: 50%;
}
.introjs-fixedTooltip {
  position: fixed;
}
.introjs-hint {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  background: 0 0;
  width: 20px;
  height: 15px;
  cursor: pointer;
}
.introjs-hint:focus {
  border: 0;
  outline: 0;
}
.introjs-hint:hover > .introjs-hint-pulse {
  background-color: rgba(60, 60, 60, .57);
}
.introjs-hidehint {
  display: none;
}
.introjs-fixedhint {
  position: fixed;
}
@-webkit-keyframes introjspulse {
  0% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, .7);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .7);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px transparent;
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes introjspulse {
  0% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, .7);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, .7);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px transparent;
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
    -webkit-box-shadow: 0 0 0 0 transparent;
    box-shadow: 0 0 0 0 transparent;
  }
}
.introjs-hint-pulse {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 15px;
  height: 15px;
  border-radius: 30px;
  background-color: rgba(136, 136, 136, .24);
  z-index: 10;
  position: absolute;
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out;
  -webkit-animation: introjspulse 2s infinite;
  animation: introjspulse 2s infinite;
}
.introjs-hint-no-anim .introjs-hint-pulse {
  -webkit-animation: none;
  animation: none;
}
.introjs-hint-dot {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background: 0 0;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 1;
  opacity: 0;
}

/* node_modules/intro.js/themes/introjs-modern.css */
.introjs-tooltip {
  background-color: rgba(000, 0, 0, 0.5);
  color: #fff;
}
.introjs-button,
.introjs-button:hover,
.introjs-button:focus,
.introjs-button:active,
.introjs-disabled,
.introjs-disabled:focus,
.introjs-disabled:hover {
  outline: none;
  background-image: none;
  background-color: transparent;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 50px;
  box-shadow: none;
  border-shadow: none;
  text-shadow: none;
}
.introjs-button:hover,
.introjs-button:focus,
.introjs-button:active {
  border: 1px solid #fff;
}
.introjs-disabled,
.introjs-disabled:focus,
.introjs-disabled:hover {
  color: #ccc;
  border: 1px solid transparent;
}
.introjs-arrow {
  border: 10px solid #fff;
}
.introjs-arrow.top,
.introjs-arrow.top-middle,
.introjs-arrow.top-right {
  border-color: transparent transparent rgba(000, 0, 0, 0.5);
  top: -20px;
  left: 20px;
}
.introjs-arrow.bottom,
.introjs-arrow.bottom-middle,
.introjs-arrow.bottom-right {
  border-color: rgba(000, 0, 0, 0.5) transparent transparent;
  bottom: -20px;
  left: 20px;
}
.introjs-arrow.left,
.introjs-arrow.right {
  top: 20px;
}
.introjs-arrow.left-bottom,
.introjs-arrow.right-bottom {
  bottom: 20px;
}
.introjs-arrow.left,
.introjs-arrow.left-bottom {
  left: -20px;
  border-color: transparent rgba(000, 0, 0, 0.5) transparent transparent;
}
.introjs-arrow.right,
.introjs-arrow.right-bottom {
  right: -20px;
  border-color: transparent transparent transparent rgba(000, 0, 0, 0.5);
}

/* src/neuroglancer/viewer.css */
.neuroglancer-viewer {
  outline: 0px;
}
.neuroglancer-viewer-top-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #222;
  margin-bottom: 3px;
  padding-right: 2px;
}
.neuroglancer-viewer-side-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 80%;
  color: #fff;
}

/* src/neuroglancer/noselect.css */
.neuroglancer-noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.neuroglancer-select-text {
  -webkit-touch-callout: default;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* src/neuroglancer/data_panel_layout.css */
.neuroglancer-data-panel-layout-controls {
  position: absolute;
  top: 2px;
  right: 2px;
  display: flex;
  align-items: start;
}
.neuroglancer-data-panel-layout-controls > button {
  display: flex;
  margin: 2px;
  border: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  flex-direction: row;
  align-self: top;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  font-size: 15px;
  width: 18px;
  height: 18px;
  color: white;
}
.neuroglancer-data-panel-layout-controls > button > div {
  display: inline-block;
  text-align: center;
  line-height: 12px;
  width: 15px;
  height: 15px;
}
.neuroglancer-data-panel-layout-controls > button:hover {
  color: #6ff;
}

/* src/neuroglancer/perspective_view/panel.css */
label.perspective-panel-show-slice-views {
  pointer-events: none;
  position: absolute;
  right: 2px;
  bottom: 22px;
  font-family: sans-serif;
  font-size: small;
  color: grey;
}
input.perspective-panel-show-slice-views {
  pointer-events: all;
}
label.perspective-panel-show-move-tran {
  pointer-events: none;
  position: absolute;
  right: 2px;
  bottom: 42px;
  font-family: sans-serif;
  font-size: small;
  color: grey;
}
input.perspective-panel-show-move-tran {
  pointer-events: all;
}
label.perspective-panel-show-move-rota {
  pointer-events: none;
  position: absolute;
  right: 2px;
  bottom: 62px;
  font-family: sans-serif;
  font-size: small;
  color: grey;
}
input.perspective-panel-show-move-rota {
  pointer-events: all;
}
canvas.canvas-absolute {
  position: absolute;
}
div.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 1000;
}
div.loading-content {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #00BFFF;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  margin: auto;
  margin-top: 20%;
}
div.loading-text {
  width: 100px;
  height: 50px;
  margin: auto;
  text-align: center;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.perspective-panel-slider {
  position: absolute;
  right: 0px;
  bottom: 130px;
  font-family: sans-serif;
  font-size: small;
  pointer-events: all;
  width: 120px;
  color: grey;
  border-color: grey;
  background-color: white;
}
label.perspective-panel-slider-label {
  pointer-events: none;
  position: absolute;
  right: 130px;
  bottom: 133px;
  font-family: sans-serif;
  font-size: small;
  color: grey;
}
button.perspective-panel-button-21 {
  position: absolute;
  right: 12px;
  bottom: 160px;
  font-family: sans-serif;
  font-size: small;
  pointer-events: all;
  width: 120px;
  color: grey;
  border-color: grey;
  background-color: white;
}
button.perspective-panel-button-rota-arg {
  position: absolute;
  left: 150px;
  bottom: 70px;
  font-family: sans-serif;
  font-size: small;
  pointer-events: all;
  width: 50px;
  color: grey;
  border-color: grey;
  background-color: white;
}
button.perspective-panel-button-reset {
  position: absolute;
  left: 150px;
  bottom: 30px;
  font-family: sans-serif;
  font-size: small;
  pointer-events: all;
  width: 50px;
  color: grey;
  border-color: grey;
  background-color: white;
}
input.perspective-panel-input-rota-arg1 {
  position: absolute;
  left: 70px;
  bottom: 82px;
  font-family: sans-serif;
  font-size: small;
  pointer-events: all;
  background-color: white;
  width: 50px;
  border-color: grey;
  color: red;
}
input.perspective-panel-input-rota-arg2 {
  position: absolute;
  left: 70px;
  bottom: 52px;
  font-family: sans-serif;
  font-size: small;
  pointer-events: all;
  background-color: white;
  width: 50px;
  border-color: grey;
  color: green;
}
input.perspective-panel-input-rota-arg3 {
  position: absolute;
  left: 70px;
  bottom: 22px;
  font-family: sans-serif;
  font-size: small;
  pointer-events: all;
  background-color: white;
  width: 50px;
  border-color: grey;
  color: blue;
}
label.perspective-panel-label-rota-arg1 {
  pointer-events: none;
  position: absolute;
  left: 10px;
  bottom: 85px;
  font-family: sans-serif;
  font-size: small;
  color: red;
}
label.perspective-panel-label-rota-arg2 {
  pointer-events: none;
  position: absolute;
  left: 10px;
  bottom: 55px;
  font-family: sans-serif;
  font-size: small;
  color: green;
}
label.perspective-panel-label-rota-arg3 {
  pointer-events: none;
  position: absolute;
  left: 10px;
  bottom: 25px;
  font-family: sans-serif;
  font-size: small;
  color: blue;
}
div.angle-intro-div {
}
label.progressLabel {
  pointer-events: none;
  position: absolute;
  left: 30px;
  top: 5px;
  font-family: sans-serif;
  font-size: 14px;
  color: grey;
}
div.progressDivRaw {
  width: 240px;
  height: 20px;
  border: 1px solid #C8C8C8;
  background: white;
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  margin-left: 70px;
  border-color: grey;
}
div.progressDivSeg {
  width: 240px;
  height: 20px;
  border: 1px solid #C8C8C8;
  background: white;
  position: relative;
  margin: 0 auto;
  margin-top: 10px;
  margin-left: 70px;
  border-color: grey;
}
div.progressBar {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 20px;
  width: 100%;
  line-height: 20px;
  color: white;
  text-align: center;
  font-size: 14px;
  font-family: sans-serif;
  clip: rect(0px, 0, 40px, 0px);
  background: #00A1F5;
  border-color: grey;
}
div.progressText {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 20px;
  line-height: 20px;
  color: grey;
  text-align: center;
  font-size: 14px;
  font-family: sans-serif;
}
label.progressLabelRaw {
  pointer-events: none;
  position: absolute;
  left: 30px;
  top: 30px;
  font-family: sans-serif;
  font-size: 14px;
  color: grey;
}
label.progressLabelSeg {
  pointer-events: none;
  position: absolute;
  left: 30px;
  top: 60px;
  font-family: sans-serif;
  font-size: 14px;
  color: grey;
}
label.progressTips {
  pointer-events: none;
  position: absolute;
  left: 30px;
  top: 90px;
  font-family: sans-serif;
  font-size: 14px;
  color: grey;
}

/* src/neuroglancer/rendered_data_panel.css */
.neuroglancer-rendered-data-panel {
  cursor: crosshair;
  position: relative;
  outline: 0;
  touch-action: none;
  color: #fff;
  text-align: left;
}

/* src/neuroglancer/widget/display_dimensions_widget.css */
.neuroglancer-display-dimensions-widget {
  position: absolute;
  cursor: default;
  top: 2px;
  left: 2px;
  background-color: rgba(0, 0, 0, 0.3);
}
.neuroglancer-display-dimensions-widget-dimension-grid {
  display: grid;
  grid-template-rows: 0fr 0fr 0fr 0fr;
  grid-template-columns: 0fr 0fr 0fr;
}
.neuroglancer-display-dimensions-widget input {
  outline: 0px;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  margin: 0;
  border: 0;
  padding: 2px;
}
.neuroglancer-display-dimensions-widget input,
.neuroglancer-display-dimensions-widget {
  font-family: monospace;
  color: white;
}
.neuroglancer-display-dimensions-widget-dimension:hover {
  outline: 1px solid black;
}
.neuroglancer-display-dimensions-widget-name[data-is-valid=false] {
  text-decoration: solid underline red;
}
.neuroglancer-display-dimensions-widget-scale-factor {
  text-align: right;
  align-items: end;
  display: inline-block;
  white-space: nowrap;
  margin-left: 2px;
}
.neuroglancer-display-dimensions-widget-scale {
  display: inline-block;
  white-space: nowrap;
  padding-left: 10px;
}
.neuroglancer-display-dimensions-widget-scale:not(:empty)::before {
  content: "(";
}
.neuroglancer-display-dimensions-widget-scale:not(:empty)::after {
  content: ")";
}
.neuroglancer-display-dimensions-widget-scale-factor::after {
  content: "\d7";
}
.neuroglancer-display-dimensions-widget-scale {
  text-align: right;
  margin-left: 5px;
}
.neuroglancer-display-dimensions-widget:not(:hover):not([data-active="true"]) .neuroglancer-display-dimensions-widget-scale-factor,
.neuroglancer-display-dimensions-widget:not(:hover):not([data-active="true"]) .neuroglancer-display-dimensions-widget-scale,
.neuroglancer-display-dimensions-widget:not(:hover):not([data-active="true"]) .neuroglancer-display-dimensions-widget-default,
.neuroglancer-display-dimensions-widget:not(:hover):not([data-active="true"]) .neuroglancer-depth-range-widget-grid,
.neuroglancer-display-dimensions-widget:not(:hover):not([data-active="true"]) .neuroglancer-depth-range-relative-checkbox-label {
  display: none;
}
.neuroglancer-display-dimensions-widget-dimension[data-is-modified=true] .neuroglancer-display-dimensions-widget-scale-factor,
.neuroglancer-display-dimensions-widget-dimension[data-is-modified=true] .neuroglancer-display-dimensions-widget-scale {
  visibility: hidden;
}
.neuroglancer-display-dimensions-widget *:focus {
  outline: 0px;
}
.neuroglancer-display-dimensions-widget-default {
  grid-row: 4;
  grid-column-start: 1;
  grid-column-end: 3;
  display: inline-block;
  white-space: nowrap;
}
.neuroglancer-display-dimensions-widget-default input {
  margin-right: 3px;
}
.neuroglancer-depth-range-widget-grid {
  margin-top: 1em;
  display: grid;
  display: grid;
  grid-template-columns: 0fr 0fr 0fr;
  grid-auto-rows: 0fr;
}
.neuroglancer-depth-range-widget-dimension-names:not(:empty)::before {
  content: "(";
}
.neuroglancer-depth-range-widget-dimension-names:not(:empty)::after {
  content: ")";
}
.neuroglancer-depth-range-widget-dimension-names {
  margin-left: 1ch;
  white-space: nowrap;
}

/* src/neuroglancer/help/input_event_bindings.css */
.neuroglancer-help-body {
  flex-basis: 0px;
  flex: 1;
  height: 0px;
  min-height: 0px;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
}
.neuroglancer-help-scroll-container {
  flex: 1;
  flex-basis: 0px;
  position: relative;
  overflow: auto;
}
.neuroglancer-help-scroll-container div + h2 {
  margin-top: 1em;
}
.neuroglancer-help-scroll-container h2 {
  font-size: 10pt;
  padding: 4px;
  position: sticky;
  top: 0;
  background-color: #333;
  margin-top: 0px;
}
.neuroglancer-help-scroll-container .dt {
  font-family: monospace;
  font-weight: bold;
  color: yellow;
}
.neuroglancer-help-scroll-container .dd {
  font-size: 10pt;
  margin-left: 4ex;
}

/* src/neuroglancer/layer_groups_layout.css */
.neuroglancer-layout-split-drop-zone {
  position: absolute;
  z-index: 1000;
}
.neuroglancer-drag-over {
  background-color: rgba(0, 0, 255, 0.5);
}
.neuroglancer-stack-layout-row > .neuroglancer-stack-layout-drop-placeholder {
  padding-left: 4px;
  padding-right: 4px;
  width: 1px;
  cursor: col-resize;
}
.neuroglancer-stack-layout-column > .neuroglancer-stack-layout-drop-placeholder {
  padding-top: 4px;
  padding-bottom: 4px;
  height: 1px;
  cursor: row-resize;
}
.neuroglancer-stack-layout-drop-placeholder {
  background-clip: content-box;
  background-color: #666;
  z-index: 1;
}
.neuroglancer-stack-layout-drop-placeholder.neuroglancer-drag-over {
  background-clip: border-box;
  background-color: rgba(128, 128, 255, 0.5);
}
.neuroglancer-stack-layout-drop-placeholder:first-child,
.neuroglancer-stack-layout-drop-placeholder:last-child {
  display: none;
}

/* src/neuroglancer/layer_group_viewer.css */
.neuroglancer-panel {
  flex: 1;
}
.neuroglancer-show-panel-borders .neuroglancer-panel {
  border-style: solid;
  border-color: black;
  border-width: 2px;
}
.neuroglancer-panel:focus-within {
  border-color: white;
}
.neuroglancer-layer-group-viewer {
  outline: 0px;
}
.neuroglancer-layer-group-viewer-context-menu {
  flex-direction: column;
  align-items: stretch;
}
.neuroglancer-layer-group-viewer-context-menu label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.neuroglancer-layer-group-viewer-context-menu select::before {
  flex: 1;
  content: " ";
}
.neuroglancer-layer-group-viewer-context-menu select {
  margin-left: 5px;
}

/* src/neuroglancer/ui/context_menu.css */
.neuroglancer-context-menu {
  position: absolute;
  z-index: 100;
  border: 1px solid white;
  background-color: black;
  box-shadow: 5px 5px 2px 1px rgba(0, 0, 0, 0.5);
  font-family: sans-serif;
  font-size: 11pt;
  padding: 5px;
  color: white;
  outline: 0px;
}

/* src/neuroglancer/ui/layer_bar.css */
:root {
  --layer-number-color: #9a7518;
}
.neuroglancer-layer-panel {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -5px;
  margin-top: -1px;
  z-index: -0.1;
  overflow: hidden;
}
.neuroglancer-layer-item {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: #ccc;
  font-family: sans-serif;
  font-size: 10pt;
  background-color: black;
  padding: 1px;
}
.neuroglancer-layer-item,
.neuroglancer-layer-add-button {
  margin: 1px;
  margin-left: 5px;
}
.neuroglancer-layer-item[data-selected=true] {
  border-color: #8c8;
}
.neuroglancer-layer-item[data-selected=true]:hover {
  border-color: #3c3;
}
.neuroglancer-layer-item:hover {
  border-color: #daa520;
}
.neuroglancer-layer-item[data-pick=true] .neuroglancer-layer-item-label {
  background-color: #939;
}
.neuroglancer-layer-item-label {
  display: inline-block;
  position: relative;
  background-color: #222;
  padding-right: 3px;
}
.neuroglancer-layer-item-number {
  display: inline-block;
  background-color: var(--layer-number-color);
  font-weight: bold;
  padding-left: 1px;
  padding-right: 1px;
}
.neuroglancer-layer-panel[data-show-hover-values=true] .neuroglancer-layer-item-value {
  display: inline-block;
  font-family: monospace;
  font-size: medium;
  max-width: 50ch;
  margin-left: 1ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipses;
  text-align: center;
}
.neuroglancer-layer-panel[data-show-hover-values=false] .neuroglancer-layer-item-value {
  display: none;
}
.neuroglancer-layer-item[data-visible=false] .neuroglancer-layer-item-label {
  text-decoration: line-through;
}
.neuroglancer-layer-item[data-visible=false] {
  color: #bbb;
}
.neuroglancer-layer-panel-drop-zone {
  display: inline-block;
  flex: 1;
}
.neuroglancer-layer-item-visible-progress,
.neuroglancer-layer-item-prefetch-progress {
  position: absolute;
  left: 0px;
  height: 2px;
  background-color: #666;
}
.neuroglancer-layer-item-visible-progress {
  top: 0px;
}
.neuroglancer-layer-item-prefetch-progress {
  bottom: 0px;
}
.neuroglancer-layer-item-value-container {
  display: grid;
  grid-template-columns: min-content;
  align-items: center;
}
.neuroglancer-layer-item-value {
  grid-row: 1;
  grid-column: 1;
  visibility: visible;
}
.neuroglancer-layer-item-button-container {
  grid-row: 1;
  grid-column: 1;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  visibility: hidden;
  justify-self: right;
}
.neuroglancer-layer-panel:hover .neuroglancer-layer-item-value {
  visibility: hidden;
}
.neuroglancer-layer-panel:hover .neuroglancer-layer-item-button-container {
  visibility: visible;
}

/* src/neuroglancer/ui/layer_list_panel.css */
.neuroglancer-layer-list-panel-items {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: auto;
  height: 0px;
  min-height: 0px;
  flex-basis: 0px;
}
.neuroglancer-layer-list-panel-item {
  display: flex;
  flex-direction: row;
  padding: 2px;
  border: 1px solid #aaa;
  margin: 2px;
}
.neuroglancer-layer-list-panel-item[data-selected=true] {
  border-color: #3c3;
}
.neuroglancer-layer-list-panel-item[data-archived=true] {
  border-color: #666;
}
.neuroglancer-layer-list-panel-item[data-archived=true] .neuroglancer-layer-side-panel-name,
.neuroglancer-layer-list-panel-item[data-archived=true] .neuroglancer-icon svg {
  color: #999;
  stroke: #999;
}
.neuroglancer-layer-list-panel-item:hover {
  background-color: #333;
}
.neuroglancer-layer-list-panel-item-number {
  font-family: sans-serif;
  background-color: var(--layer-number-color);
  color: white;
  font-weight: bold;
  display: inline-block;
}
.neuroglancer-layer-list-panel-item:not(:hover) > .neuroglancer-layer-list-panel-item-delete {
  display: none;
}
.neuroglancer-layer-list-panel-item:not(:hover) > .neuroglancer-layer-list-panel-item-controls {
  display: none;
}

/* src/neuroglancer/ui/layer_side_panel.css */
[data-neuroglancer-layer-panel-pinned=false] .neuroglancer-side-panel-titlebar.neuroglancer-layer-side-panel-title {
  background-color: #393;
}
[data-neuroglancer-layer-visible=false] .neuroglancer-side-panel-titlebar.neuroglancer-layer-side-panel-title input {
  text-decoration: line-through;
}
.neuroglancer-layer-side-panel-name {
  flex: 1;
  background-color: transparent;
  border: 0px;
  color: white;
  outline: 0px;
  width: 0px;
  min-width: 0px;
}
.neuroglancer-layer-side-panel-tab-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  font: 10pt sans-serif;
}
.neuroglancer-layer-side-panel-type-measure {
  position: absolute;
  visibility: hidden;
  top: 0px;
  height: auto;
  width: auto;
  white-space: nowrap;
}
.neuroglancer-layer-side-panel-type,
.neuroglancer-layer-side-panel-type-measure {
  padding-left: 3px;
  padding-right: 3px;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 10pt;
  box-sizing: border-box;
}
.neuroglancer-layer-side-panel-type {
  -webkit-appearance: none;
  color: white;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  margin-right: 5px;
  border: 0px;
  outline: 0px;
}
.neuroglancer-layer-side-panel-type option {
  background-color: #000;
}

/* node_modules/codemirror/addon/fold/foldgutter.css */
.CodeMirror-foldmarker {
  color: blue;
  text-shadow:
    #b9f 1px 1px 2px,
    #b9f -1px -1px 2px,
    #b9f 1px -1px 2px,
    #b9f -1px 1px 2px;
  font-family: arial;
  line-height: .3;
  cursor: pointer;
}
.CodeMirror-foldgutter {
  width: .7em;
}
.CodeMirror-foldgutter-open,
.CodeMirror-foldgutter-folded {
  cursor: pointer;
}
.CodeMirror-foldgutter-open:after {
  content: "\25be";
}
.CodeMirror-foldgutter-folded:after {
  content: "\25b8";
}

/* src/neuroglancer/ui/state_editor.css */
.neuroglancer-state-editor {
  width: 80%;
}
.close-button {
  position: absolute;
  right: 15px;
}

/* src/neuroglancer/ui/statistics.css */
.neuroglancer-statistics-panel-body {
  flex: 1;
  flex-basis: 0px;
  min-width: 0px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  font: 10pt sans-serif;
}
.neuroglancer-statistics-panel-body > table {
  position: relative;
  flex: 1;
  width: 100%;
}
.neuroglancer-statistics-panel-body > table > thead td {
  position: sticky;
  top: 0px;
  z-index: 2;
  background-color: #333;
  font-weight: bold;
}
.neuroglancer-statistics-panel-body > table > tbody tr:hover {
  background-color: #336;
}

/* src/neuroglancer/ui/viewer_settings.css */
.neuroglancer-settings-body {
  flex-basis: 0px;
  flex: 1;
  height: 0px;
  min-height: 0px;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  font-size: 10pt;
}
.neuroglancer-settings-body input[type=text],
.neuroglancer-settings-body input[type=number] {
  background-color: #333;
  color: #fff;
  border: 0px;
}
.neuroglancer-settings-scroll-container {
  flex: 1;
  flex-basis: 0px;
  position: relative;
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.neuroglancer-settings-scroll-container > * {
  margin-top: 3px;
}
.neuroglancer-settings-title {
  align-self: stretch;
}
.neuroglancer-settings-scroll-container > label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.neuroglancer-settings-scroll-container > label > input::before {
  flex: 1;
  content: " ";
}
.neuroglancer-settings-scroll-container > label > input {
  margin-left: 5px;
  width: 11ch;
}
.neuroglancer-settings-limit-widget > input {
  width: 11ch;
}

/* src/neuroglancer/widget/annotation_tool_status.css */
.neuroglancer-annotation-tool-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow-x: scroll;
  scrollbar-width: none;
}
.neuroglancer-annotation-tool-status::-webkit-scrollbar {
  display: none;
}
.neuroglancer-annotation-tool-status-widget + .neuroglancer-annotation-tool-status-widget {
  margin-left: 3px;
}
.neuroglancer-annotation-tool-status-widget:hover {
  outline: 1px solid #fff;
}
.neuroglancer-annotation-tool-status-widget {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.neuroglancer-annotation-tool-status-widget-layer-number {
  display: inline-block;
  font: 10pt sans-serif;
  font-weight: bold;
  background-color: #9a7518;
}
.neuroglancer-annotation-tool-status-widget-key {
  display: inline-block;
  font: 9pt monospace;
  color: #0ff;
}
.neuroglancer-annotation-tool-status-widget-key::before {
  content: "[";
}
.neuroglancer-annotation-tool-status-widget-key::after {
  content: "]";
}
.neuroglancer-annotation-tool-status-widget-key::before,
.neuroglancer-annotation-tool-status-widget-key::after {
  color: #999;
}
.neuroglancer-annotation-tool-status-widget-description {
  display: inline-block;
  color: #3c3;
  font: 10pt sans-serif;
  white-space: nowrap;
}
.neuroglancer-annotation-tool-status-widget-delete {
  visibility: hidden;
}
.neuroglancer-annotation-tool-status-widget:hover > .neuroglancer-annotation-tool-status-widget-delete {
  visibility: inherit;
}
