@media screen {
    span.info-audio-label{
      font-size: 0.9rem;
    }

    div.info-audio-player-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        align-content: stretch;
      }
  
      div.player-controls {
        /* width: 2.5%; */
        margin-right: 2.5%;
      }
  
      div.player-controls .amplitude-play-pause {
        width: 2rem;
        height: 2rem;
        border-radius: 0.3rem;
        border: solid 1px #3FCFD5;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="15pt" height="15pt" viewBox="0 0 34 34" version="1.1" color=" %233FCFD5"><g fill="currentColor" id="surface1" ><path d="M 9.171875 3.632812 C 6.472656 2.1875 4.28125 3.371094 4.28125 6.273438 L 4.28125 27.703125 C 4.28125 30.609375 6.472656 31.789062 9.171875 30.347656 L 29.257812 19.605469 C 31.960938 18.160156 31.960938 15.816406 29.257812 14.371094 Z M 9.171875 3.632812 "/></g></svg>');
        background-size: auto;
        background-position: center;
        background-repeat: no-repeat;
      }
  
      div.player-controls .amplitude-play-pause.amplitude-playing {
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="15pt" height="15pt" viewBox="0 0 34 34" version="1.1" color="%233FCFD5"><g fill="currentColor" id="surface1"><path d="M 13.738281 6.28125 C 13.730469 3.382812 8.804688 3.371094 8.804688 6.273438 L 8.804688 27.703125 C 8.804688 30.609375 13.769531 30.722656 13.78125 27.828125 C 13.820312 15.136719 13.710938 20.960938 13.738281 6.28125 Z M 13.738281 6.28125 "/><path d="M 25.015625 6.257812 C 25.003906 3.359375 20.078125 3.347656 20.078125 6.25 L 20.078125 27.675781 C 20.078125 30.582031 25.046875 30.699219 25.058594 27.800781 C 25.09375 15.113281 24.988281 20.9375 25.015625 6.257812 Z M 25.015625 6.257812 "/></g></svg>');
        background-size: auto;
      }
  
      div.progress-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        align-items: center;
        align-content: stretch;
        margin-left:1rem;
        width: 80%;
      }
  
      div.progress-container .current-time {
        /* width: 5%; */
        margin-right: 5%;
      }
  
      div.progress-container progress {
        width: 87%;
        margin-right: 1.5rem;
      }
  
      div.progress-container progress[value] {
        height: 0.5rem;
        -webkit-appearance: none;
        appearance: none;
      }
  
      div.progress-container progress[value]::-webkit-progress-bar {
        background-color: #eee;
        border-radius: 0.5rem;
  
      }
  
      div.progress-container progress[value]::-webkit-progress-value {
        background-color: #3FCFD5;
        border-radius: 0.5rem;
      }
  
      div.progress-container progress[value]::-moz-progress-bar {
        background-color: #3FCFD5;
        border-radius: 0.5rem;
      }
  
      div.progress-container .duration {
        /* width: 5%; */
      }  
}

@media screen and (max-width: 600px){
  div.progress-container .current-time {
   /* width: 5%; */
     margin: 0;
  }

  div.progress-container progress{
    margin: 0 2% 0 2%;

  }

  div.progress-container .info-audio-divider{
    margin: 0 3% 0 3%;

  }

}
