/*** Style for the dichotomized line chart in Daxplore Explorer ***/
.dichtimeline__legend {
  display: flex;
  flex-direction: column;
}

.explorer-dichtimeline__zoom-y {
  background: no-repeat center/100% url(../../img/magnifying-glass-plus-solid.svg);
  width: 15px;
  opacity: 0.6;
  height: 15px;
  bottom: 5px;
  cursor: pointer;
  left: 5px;
  position: absolute;
}

.explorer-dichtimeline__zoom-y:hover {
  opacity: 0.7;
}

.explorer-dichtimeline__zoom-y:active {
  bottom: 6px;
  opacity: 0.75;
}

.explorer-dichtimeline__zoom-y--unzoom {
  background: no-repeat center/100% url(../../img/magnifying-glass-minus-solid.svg);
  width: 17px;
  height: 17px;
  opacity: 0.8;
}

.explorer-dichtimeline__zoom-y--unzoom:hover {
  opacity: 0.95;
}

.explorer-dichtimeline__zoom-y--unzoom:active {
  opacity: 1.0;
} 

.dichtimeline__save-image {
  float: right;
  margin-bottom: 5px;
  position: relative;
  top: 5px;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  /* IE11 CSS styles go here */
  /* TODO use Modernizr instead of IE-check */
  /* Hide save image button in IE11 because of a known svg bug */
  /* https://connect.microsoft.com/IE/feedbackdetail/view/925655 */
  .dichtimeline__save-image {
    display: none;
  }
}
