/* START RADIO */
.audioPlayer{
  position: absolute;
  height: 24px;
  width: 24px;
  top: 50px;
  right: 50px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  clip-path: circle(50% at 50% 50%);
  background-color: red;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 24px;
  width: 24px;
  padding: 5px;
  color: white;
  background-color: transparent;
  transition: all ease 0.5s; 
  border:0;
}

.audioPlayer .btn.play .fa-pause {display: none; }
.audioPlayer .btn.pause {transform: rotate(180deg); }
.audioPlayer .btn.pause .fa-play {display: none; }
.audioPlayer .btn:hover {cursor: pointer; }

@keyframes move {
      0%, 100% { transform: translateY(-50%); }
      50% { transform: translateY(-20%); } 
}

/* END RADIO */