//slider css
.ui-slider-handle.ui-corner-all.ui-state-default {
  border-radius: 10px;
  box-shadow: $mm-boxshadow;
  color: transparent;
  border: none;
  background-color: $mm-neutral-white;
  width: 16px;
  height: 16px;
  &:focus {
    outline: none;
  }
  &:hover {
    cursor: pointer;
  }
}

.ui-slider.ui-corner-all.ui-widget.ui-widget-content {
  height: 4px;
  border-radius: 0;
  border: none;
  background-color: $mm-neutral-gray-30;
  margin-top: 10px;
  margin-bottom: 10px;
}
.ui-slider-range.ui-corner-all.ui-widget-header {
  background-color: $mm-core-digital-blue-70;
  //top: 2px;
}

fieldset:disabled {
  .ui-slider {
    .ui-slider-range {
      background-color: $mm-neutral-gray-40;
    }
  }
}