


/* This rule removes the browser's default styling */
input[type="range"].circle {
  appearance: none;
  -webkit-appearance: none;
  width: 75%;
  height: 1.1rem;
  box-shadow: none; 
}

/* This rule applies to the track, or the part that the thumb slides across */
input[type="range"].circle::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: #fff;
  border-radius: 1.3px;
  box-shadow: none; 
}

input[type="range"].circle::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: #fff;
  border-radius: 1.3px;
  box-shadow: none; 
}

/* This rule applies to the thumb */
input[type="range"].circle::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  height: 80px;
  width: 80px;
  margin-top: -35px;
  box-shadow: none; 
  background: url("../../static/assets/elements/golden_paw.png") no-repeat;
  background-size: contain;
}

@media (min-width: 992px) {
  input[type="range"].circle::-webkit-slider-thumb {
    height: 80px;
    width: 80px;
    margin-top: -45px;
    border: none; 
    -webkit-appearance: none;
    box-shadow: none;
    background: transparent;
    background: url("../../static/assets/elements/golden_paw.png") no-repeat;
    background-size: contain;
  }
}

input[type="range"].circle::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border: none;
  height: 80px;
  width: 80px;
  border: none; 
  box-shadow: none; 
  margin-top: -35px;
  background: transparent;
  background: url("../../static/assets/elements/golden_paw.png") no-repeat;
  background-size: contain;
}

@media (min-width: 992px) {
  input[type="range"].circle::-moz-range-thumb {
    height: 80px;
    width: 80px;
    margin-top: -45px;
    background: url("../../static/assets/elements/golden_paw.png") no-repeat;
    background-size: contain;
  }
}
