/**
 * Default styles for the dygraphs charting library.
 */

.dygraph-legend {
    position: absolute;
    left: 6% !important;
    top: -5% !important;
    bottom: unset !important;
    z-index: 10;
    width: 100%;
    min-width: 115px;
    background: none;
    line-height: normal;
    text-align: left;
    overflow: visible;
    font-size: 0.8125rem;
    display: inline-flex;
}

.dygraph-legend b {
	font-weight: bold;
}

.dygraph-legend span {
	cursor: pointer;
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	user-select:none;
	margin-right: 20px;
}

/* styles for a solid line in the legend */
.dygraph-legend-line {
  display: inline-block;
  position: relative;
  bottom: .5ex;
  padding-left: 1em;
  height: 1px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  /* border-bottom-color is set based on the series color */
}

/* styles for a dashed line in the legend, e.g. when strokePattern is set */
.dygraph-legend-dash {
  display: inline-block;
  position: relative;
  bottom: .5ex;
  height: 1px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  /* border-bottom-color is set based on the series color */
  /* margin-right is set based on the stroke pattern */
  /* padding-left is set based on the stroke pattern */
}

.dygraph-roller {
  position: absolute;
  z-index: 10;
}

/* This class is shared by all annotations, including those with icons */
.dygraph-annotation {
  position: absolute;
  z-index: 10;
  overflow: hidden;
}

/* This class only applies to annotations without icons */
/* Old class name: .dygraphDefaultAnnotation */
.dygraph-default-annotation {
	width: 11px !important;
	height: 11px !important;
	border: 5.5px solid;
	border-radius: 20px;
	background: #fff;
	cursor: pointer;
	transform: translate(2.5px, 14px);
}

.dygraph-default-annotation:hover {
	box-shadow: 1px 1px 3px 1px rgba(0,0,0,1);
}

div.noneHide {
	width: 18px !important;
	height: 18px !important;
	border: 1px solid;
	background: #ffffff;
	text-align: center;
	font-weight: 500;
	font-size: 0.75rem !important;
	line-height: 17px;
	border-radius: 20px;
	cursor: pointer;
	transform: translate(0, 0);
	z-index:15;
}

div.noneHide:hover {
	font-weight: 600;
	box-shadow: 1px 1px 3px 1px rgba(0,0,0,1);
	z-index: 50;
}

.dygraph-axis-label {
  /* position: absolute; */
  /* font-size: 14px; */
  z-index: 10;
  line-height: normal;
  overflow: hidden;
  color: black;  /* replaces old axisLabelColor option */
}

.dygraph-axis-label-x {
}

.dygraph-axis-label-y {
}

.dygraph-axis-label-y2 {
}

.dygraph-title {
  margin-top: -140px;
  font-size: 0.9375rem;
  font-weight: 400;
  z-index: 10;
  text-align: center;
  font-weight: bold;
  /* font-size: based on titleHeight option */
}

.dygraph-xlabel {
  text-align: center;
  /* font-size: based on xLabelHeight option */
}

/* For y-axis label */
.dygraph-label-rotate-left {
  text-align: center;
  /* See http://caniuse.com/#feat=transforms2d */
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}

/* For y2-axis label */
.dygraph-label-rotate-right {
  text-align: center;
  /* See http://caniuse.com/#feat=transforms2d */
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
}