body {
    background: #A5A5A5;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background-color: lightgrey;
  }
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
  }
  input[type="range"]:hover {
      background-color: white;
    
  }
  input[type="range"]::-webkit-slider-thumb {
    height: 100%;
    width: 10px;
    cursor: pointer;
    
    -webkit-appearance: none;
    border: 0px solid #29334f;
    background: #93c2f1;
 }
  