.jVzQRR {
    width: 100%;
    color: #FFF;
    background-color: #333;
    background-image: url("../website/img/responsive/audio-player-background.png");
    background-size: cover;
    background-position: center center;
  }
  
  .hOoEix {
    max-width: 320px;
    width: 100%;
    margin: 0px auto;
  }
  
  .WPhZV {
    width: 100%;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
  }
  
  .jTjVKK {
    width: 100%;
    position: relative;
    padding: 20px 20px 0px;
    max-width: 100%;
  }
  
  .jgmTwE {
    display: flex;
    flex-direction: row;
    padding-bottom: 20px;
  }
  
  .cuHQPn {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 6px;
    position: relative;
  }
  
  .ijnwJt {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow: hidden;
  }
  
  .bKmYOd {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    object-fit: cover;
    user-select: none;
  }
  
  .hMVzIl {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 20px;
    position: relative;
  }
  
  .bHqlOR {
    font-family: "Roboto Condensed";
    font-size: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -moz-box-orient: vertical;
  }
  
  .eFQtqG {
    margin-top: auto;
  }
  
  .eJVSpz {
    display: flex;
    -moz-box-pack: justify;
    justify-content: space-between;
    -moz-box-align: center;
    align-items: center;
    margin-top: 12px;
  }
  
  .bKUcZP {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    -moz-box-align: center;
    align-items: center;
    width: 100%;
  }
  
  
  .icono-volumeHigh, .icono-volumeMedium, .icono-volumeMute{
    margin: 6px !important;
  }
  
  .audio-player {
    height: 50px;
    width: auto;
    font-family: arial;
    color: white;
    font-size: 0.75em;
    overflow: hidden;
    display: grid;
    grid-template-rows: 44px auto;
  }
  .audio-player .timeline {
    position: relative;
  }
  .audio-player .timeline .progress {
    background: coral;
    width: 0%;
    height: 100%;
    transition: 0.25s;
  }
  .audio-player .controls {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0 2px;
  }
  .audio-player .controls > * {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .audio-player .controls .toggle-play.play {
    cursor: pointer;
    position: relative;
    left: 0;
    height: 0;
    width: 0;
    border: 7px solid #0000;
    border-left: 13px solid white;
  }
  .audio-player .controls .toggle-play.play:hover {
    transform: scale(1.1);
  }
  .audio-player .controls .toggle-play.pause {
    height: 15px;
    width: 20px;
    cursor: pointer;
    position: relative;
  }
  .audio-player .controls .toggle-play.pause:before {
    position: absolute;
    top: 0;
    left: 0px;
    background: white;
    content: "";
    height: 15px;
    width: 3px;
  }
  .audio-player .controls .toggle-play.pause:after {
    position: absolute;
    top: 0;
    right: 8px;
    background: white;
    content: "";
    height: 15px;
    width: 3px;
  }
  .audio-player .controls .toggle-play.pause:hover {
    transform: scale(1.1);
  }
  .audio-player .controls .time {
    display: flex;
  }
  .audio-player .controls .time > * {
    padding: 2px;
  }
  .audio-player .controls .volume-container {
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  .audio-player .controls .volume-container .volume-button {
    height: 26px;
    display: flex;
    align-items: center;
  }
  .audio-player .controls .volume-container .volume-button .volume {
    transform: scale(0.7);
  }
  .audio-player .controls .volume-container .volume-slider {
    position: absolute;
    left: -3px;
    top: 15px;
    z-index: -1;
    width: 0;
    height: 15px;
    background: white;
    box-shadow: 0 0 20px #000a;
    transition: 0.25s;
  }
  .audio-player .controls .volume-container .volume-slider .volume-percentage {
    background: coral;
    height: 100%;
    width: 75%;
  }
  .audio-player .controls .volume-container:hover .volume-slider {
    left: -123px;
    width: 120px;
  }