body {
  background-color: white;
  color: gray;
  font-family: sans-serif;
  font-size: 0px;
  overflow-x: auto;
  margin: 10px 0px 10px 10px;
  opacity: 0;
}
#svg {
  font-size: 14px;
}
#svg #map-bg-rect {
  fill: #8bd1da;
}
#svg #state-paths-g path.state-path {
  pointer-events: none;
  fill: white;
  stroke: gainsboro;
  stroke-width: 1px;
}
#svg #state-paths-g path.state-path.inactive {
  fill: #8bd1da;
}
#svg #nodes-g {
  cursor: -webkit-grab;
  fill: rosybrown;
  stroke: gainsboro;
  stroke-width: 1px;
}
#svg #links-g {
  pointer-events: none;
  fill-opacity: 0.5;
  fill: rosybrown;
}
#svg #info-bg-rect {
  fill: white;
  stroke: gainsboro;
  stroke-width: 1px;
}
#svg #info-g g.info-text-g {
  pointer-events: none;
}
#svg #info-g g.info-text-g text {
  dominant-baseline: middle;
  text-anchor: middle;
}
#filters-div {
  text-align: center;
}
#filters-div .filter-group {
  display: inline-block;
  margin: 10px 5px 0px 5px;
  outline: 1px solid gainsboro;
}
#filters-div .filter-group .filter-cell {
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  outline: 0.5px solid gainsboro;
}
#filters-div .filter-group .filter-cell * {
  cursor: pointer;
}
#options-div {
  text-align: center;
}
#options-div .option-group {
  display: inline-block;
  margin: 10px 5px 0px 5px;
  outline: 1px solid gainsboro;
}
#options-div .option-group div {
  height: 16px;
  line-height: 16px;
}
#options-div .option-group > * {
  font-size: 14px;
}
#options-div .option-group .option-category {
  display: inline-block;
  float: left;
}
#options-div .option-group .option-row {
  display: inline-block;
  float: right;
  text-align: left;
}
#options-div .option-group label {
  display: inline-block;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  dominant-baseline: central;
}
#options-div .option-group input[type='Range'] {
  cursor: -webkit-grab;
  margin: 0px;
}
#debug-text {
  position: absolute;
  font-family: monospace;
  font-size: 14px;
  white-space: pre;
}
.unselectable {
  -webkit-touch-callout: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  -ms-user-select: none;
}
.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
