.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#grid {
  width: 75%;
  position: relative;
  height: 600px;
  overflow: hidden;
}

#minimap {
  width: 20%;
  position: relative;
}

#grid canvas, #minimap canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

#grid svg, #minimap svg {
  position: relative;
  z-index: 2;
}

.axis path {
  display: none;
}

.axis line {
  fill: none;
  stroke: #ccc;
  shape-rendering: crispEdges;
  pointer-events: none;
}

.axis text {
  font: 11px sans-serif;
  font-weight: normal;
  fill: #595959;
}

.axis text.brushed {
  fill: #2991c9;
  font-weight: bold;
}

.brush .extent {
  fill: none;
  fill-opacity: 0;
  stroke: none;
}

#minimap .brush .extent {
  stroke: black;
  fill: aquamarine;
  fill-opacity: 0.1;
}

#minimap .brush .resize {
  display: none;
}

.d3-tip {
  line-height: 1;
  font-weight: bold;
  padding: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 2px;
  pointer-events: none;
  position: relative;
  z-index: 4;
}

/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline;
  font-size: 10px;
  width: 100%;
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  position: absolute;
  pointer-events: none;
  z-index: 4;
}

.viz-actions {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
/*# sourceMappingURL=rolemining.css.map */