/* START RADIO */
.audioPlayer{
  position: absolute;
  height: 24px;
  width: 24px;
  float: right;
  margin: 20px;
  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;
}

@media only screen and (max-width: 750px) {
    
    .audioPlayer {
    position: absolute;
    height: 24px;
    width: 24px;
    float: left;
    right: 25px;
    margin: 20px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    clip-path: circle(50% at 50% 50%);
    background-color: red;
    }
}

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