dashboard {
  display: flex;
  flex-wrap: wrap;
}
dashboard fieldset {
  display: inline-block;
  min-width: 0;
  flex: 1 1 auto;
  width: 50%;
}
dashboard fieldset legend {
  display: block;
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}
input[type=range]:hover {
  opacity: 1;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #04AA6D;
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #04AA6D;
  cursor: pointer;
}
/*# sourceMappingURL=global.css.map */