/* START RADIO */
.audioPlayer{
  position: relative;
  height: 24px;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 24px;
    width: 24px;
    top: 0rem;
    background-color: transparent;
	transition: all ease 0.5s; 
}

.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 */