input[type=range] {
    -webkit-appearance: none;
    margin: 4vh 0;
    background-color: rgba(0,0,0,0);
    width: 100%;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-runnable-track {
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
    background: rgba(255,255,255,0.3);
    border-radius: 2.5px;
  }
  input[type=range]::-webkit-slider-thumb {
    height: 36px;
    width: 36px;
    border-radius: 18px;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -16px;
  }
  
  
  
  input[type=range]:focus::-webkit-slider-runnable-track {
      background: rgba(255,255,255,0.3);
  }
  input[type=range]::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animate: 0.2s;
      background: rgba(255,255,255,0.3);
    border-radius: 1.3px;
  }
  input[type=range]::-moz-range-thumb {
    height: 36px;
    width: 16px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
  }
  input[type=range]::-ms-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
  }
  input[type=range]::-ms-fill-lower {
      background: rgba(255,255,255,0.3);
    border-radius: 2.6px;
  }
  input[type=range]::-ms-fill-upper {
      background: rgba(255,255,255,0.3);
    border: 0.2px solid #010101;
    border-radius: 2.6px;
  }
  input[type=range]::-ms-thumb {
    height: 36px;
    width: 16px;
    border-radius: 3px;
    background: #ffffff;
    cursor: pointer;
  }
  input[type=range]:focus::-ms-fill-lower {
      background: rgba(255,255,255,0.3);
  }
  input[type=range]:focus::-ms-fill-upper {
      background: rgba(255,255,255,0.3);
  }
  