/* !!FLOATING PLAYER FROM HERE!! */

#fp-floating-player {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;       
  pointer-events: auto;
}

@media (max-width: 600px) {
  #fp-floating-player {
    right: 12px;
    bottom: 12px;
  }
}

#fpPlayBtn {
  background: #000;
  border: 0.2em solid #ffffff;
  box-shadow:
    inset 0 0 0 2px #000,
    inset 0 0 0 4px #ffffff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: relative;
}



#fpPlayBtn:not(.playing)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-left: 12px solid #fffdf8;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translate(-40%, -50%);
}



#fpPlayBtn.playing::before,
#fpPlayBtn.playing::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 18px;
  background: #fffdf8;
  transform: translateY(-50%);
  border-radius: 2px;
}

/* left bar */
#fpPlayBtn.playing::before {
  left: 16px;
}

/* right bar */
#fpPlayBtn.playing::after {
  right: 16px;
}
/* !!FLOATING PLAYER FROM HERE!! */
