.progress-bars {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 50px 12%;
}  
  
    .speed_control_items {
      display: flex;
      flex-direction: row;
      margin: 10px 1%;
      justify-content: center;
      align-items: center;
    }

    .speed_control_items .label {
      margin-bottom: 5px;
      margin-right: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
     
    }
    
    .label img {
        width: 30px;
    }

    .audio-speed-control {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }
    .progress-bar {
      display: flex;
      align-items: center;
      gap: 20px;
      width: 100%;
      justify-content: center;
    }
    
    .progress-bar span {
        width: 30px;
    }
    .progress-bar input {
        width: 300px;
    }
    
    .progress-bar label {
        width: 200px;
        display: flex;
        justify-content: flex-end;
    }    

    .progress-bar input[type="range"] {
      -webkit-appearance: none;
      appearance: none;
      
      height: 1px;
      border-radius: 5px;
      background: #ddd;
      outline: none;
      cursor: pointer;
    }

    .progress-bar input[type="range"]::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      background: linear-gradient(to left, #F7C6CC, #DE3733);
      border-radius: 50%;
      cursor: pointer;
      border: 1px solid #DE3733;
      margin-top: -10px;
    }

    .progress-bar input[type="range"]::-moz-range-thumb {
      width: 20px;
      height: 20px;
      background: linear-gradient(to left, #F7C6CC, #DE3733);
      border-radius: 50%;
      cursor: pointer;
      border: 1px solid #DE3733;
      margin-top: -10px;
    }

    .value-display {
      margin-left: 10px;
      font-size: 14px;
      color: #555;
      text-align: left;
      width: 30px;
    }



    
    @media (max-width: 550px) {  
    
    .progress-bars {
   
    margin: 50px 3% 50px 5%;
}  
  
    .progress-bar-container {
    
      margin: 10px 1%;
    }
    
    }
