.chartSection {
  background: white;
  padding-top: 30px;
  padding-bottom: 30px;
}

.chart-container {
	position: relative;
	height: 70vh;
	min-height: 400px;
	max-height: 80vw;
	width: 80vw;
	min-width: 600px
	max-width: 100vh;
}

.sliderLabel {
  display: inline;
}

.slider {
  -webkit-appearance: none;
  width: 80%;
  height: 16px;
  border-radius: 5px;   
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  vertical-align: middle;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%; 
  background: #4CAF50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px !important;
  height: 34px;
  vertical-align: middle;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.switchslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d3d3d3;
  opacity: 0.7;
  -webkit-transition: .4s;
  transition: .4s;
}

/* Mouse-over effects */
.switchslider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

.switchslider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .switchslider {
  background-color: #4CAF50;
}

input:focus + .switchslider {
  box-shadow: 0 0 1px #4CAF50;
}

input:checked + .switchslider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.switchslider.round {
  border-radius: 34px;
}

.switchslider.round:before {
  border-radius: 50%;
}

[class="0-legend"] {
  list-style: none;
  padding-left: 0;
  margin-block-end: 0em;
}
[class="0-legend"] li {
  display: inline-block;
  padding: 0 13px;
}
[class="0-legend"] li span {
  border-radius: 13px;
  display: inline-block;
  height: 26px;
  margin-right: 10px;
  width: 26px;
  vertical-align: middle;
}