
  .range-bar {
    width: 76%;
    height:20px;
      background-color: rgba(242, 242, 242, 0);
      border-radius: 10px;
    box-shadow: inset 4px 7px 22px -7px rgba(166,176,191,1);
    transform: rotateZ(90deg);
    margin-top: 35%;
    margin-left: -30%;
    margin-right: -33%;
  }

  input[type="range"] {
    -webkit-appearance: none;
  }

  input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background-color: transparent;
    border: none;
  }

  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    margin-top: -10px;
  }
  
  #myRange::-webkit-slider-thumb {
    background-color: rgb(96, 173, 244);
    box-shadow: 0 0 0 6px rgb(255, 255, 255);
  }

  #myRange::-moz-range-thumb {
    background-color: rgb(96, 173, 244);
    box-shadow: 0 0 0 6px rgb(255, 255, 255);
    width: 24px;
    height: 24px;
    border-radius: 100px;
    border:none;
    cursor: pointer;
  }

  #myRange::-ms-thumb {
    background-color: rgb(96, 173, 244);
    box-shadow: 0 0 0 4px rgb(255, 255, 255);
  }


  @media screen and (max-width: 600px) {
  
    .range-bar {
      width: 110px;
      height:20px;
      margin-top: 30px;
      margin-left: -35px;
      margin-right: -40px;
    }
  }
