#content_radio {
  position: fixed;
  bottom: 0;
  z-index: 99999;
  display: none;
  grid-template-columns: 10rem 1fr;
  width: 100%;
  background-color: #373a3c;
  /* border-radius: 0.5rem 0.5rem 0 0; */
  box-shadow: 0 1rem 1.5rem #10101024;
  overflow: hidden;
}
#load-text_radio {
  color: white;
  
}
  .animation-player {
    height: 30px;
    display: none;
 
    align-items: center;
    background: transparent;
  }
  .wave {
    width: 10px;
    height: 20px;
    border-radius: 10px;
    background:  #E50C0E;
    margin: 2px;
    animation: wave 1s linear infinite;
   
  }
  .wave:nth-child(2) {
    animation-delay: 0.1s;
  }
  .wave:nth-child(3) {
    animation-delay: 0.2s;
  }
  .wave:nth-child(4) {
    animation-delay: 0.3s;
  }
  .wave:nth-child(5) {
    animation-delay: 0.4s;
  }
  .wave:nth-child(6) {
    animation-delay: 0.5s;
  }
  .wave:nth-child(7) {
    animation-delay: 0.6s;
  }
  .wave:nth-child(8) {
    animation-delay: 0.7s;
  }
  .wave:nth-child(9) {
    animation-delay: 0.8s;
  }
  .wave:nth-child(10) {
    animation-delay: 0.9s;
  }
  
  
  @keyframes wave {
    0% {
      transform: scale(0);
    }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  .fi-rr-pause {
    cursor: pointer;
  }
  .fi-rr-play {
    cursor: pointer;
  }
  #fechar {
    cursor: pointer;
  }