/* Axis Styles */
.axis {
  shape-rendering: crispEdges;
  stroke-width: 1px;

  line, path {
    stroke: #ddd;
    fill: none;
    shape-rendering: crispEdges;
  }
}

.x.axis path {
  display: none;
}

.tick text {
  font-size: 8pt;
  fill: #848e96;
}

/* Brush Styling */
.brush .extent {
  stroke: #fff;
  fill-opacity: .125;
  shape-rendering: crispEdges;
}

@vis-hover-opacity: 0.65;

/* SVG Element Default Styling */
rect {
  stroke: none;
  opacity: 1;

  &:hover {
    opacity: @vis-hover-opacity;
  }
}

circle {
  opacity: 0;

  &:hover {
    opacity: 1;
    stroke-width: 10px;
    stroke-opacity: @vis-hover-opacity;
  }
}

.overlap_area {
  opacity: 0.6;
}

.blur_shape {
  opacity: 0.3 !important;
}

path {
  &:hover {
    //opacity: @vis-hover-opacity;
  }
}

.slice {
  &:hover {
    opacity: @vis-hover-opacity;
  }
}

.leaflet-clickable {
  &:hover {
    stroke-width: 10px;
    stroke-opacity: @vis-hover-opacity;
  }
}

/* Visualization Styling */
.line {
  circle {
    opacity: 1;

    &:hover {
      stroke-width: 10px;
      stroke-opacity: @vis-hover-opacity;
    }
  }
}

.endzone {
  opacity: 0.05;
  fill: #000;
  pointer-events: none;
}
