input[type="radio"] {
  -webkit-appearance: checkbox; /* Chrome, Safari, Opera */
  -moz-appearance: checkbox;    /* Firefox */
  -ms-appearance: checkbox;     /* not currently supported */
  appearance: checkbox;
}

input[type="range"] {
  -webkit-appearance: None; /* Chrome, Safari, Opera */
    -moz-appearance: None;    /* Firefox */
    -ms-appearance: None;     /* not currently supported */
  appearance: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  padding: 0;
  background-color: lightgrey;
}

input[type="range"]::-webkit-slider-thumb {
  box-shadow: none;
  border: 1px solid #d3d3d3;
  box-shadow: 0px 5px 5px rgba(0,0,0,0.25);

  height: 25px;
  width: 10px;
  border-radius: 22px;
  background: blue;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}

input[type="range"]::-ms-thumb {
  box-shadow: none;
  border: 1px solid #d3d3d3;
  box-shadow: 0px 5px 5px rgba(0,0,0,0.25);

  height: 25px;
  width: 10px;
  border-radius: 22px;
  background: blue;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}

input[type="range"]::-moz-range-thumb {
  box-shadow: none;
  border: 1px solid #d3d3d3;
  box-shadow: 0px 5px 5px rgba(0,0,0,0.25);

  height: 25px;
  width: 10px;
  border-radius: 22px;
  background: blue;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -5px;
}

.sliderticks {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  height: 2rem;
}

.sliderticks span {
  display: flex;
  justify-content: center;
  width: 1px;
  height: 10px;
  background: #d3d3d3;
  line-height: 40px;
}

.h-slider {
  margin-bottom: 1em;
  background-color: #e3ecff;
}

.card {
  margin-bottom: 1em;
}

.card ul {
  list-style-type: none;
  padding-inline-start: 1rem;
}

.subtitle {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
}