.audio-player-container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 305;
  padding: 5px;
}

button.play-button,
button.mute-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;

  border: 0;
  cursor: pointer;
  border-radius: 50%;

  opacity: 0.6;

  fill: #8A1344;
  color: #8A1344;
  background: rgba(255, 255, 255, 0.5);

  transition: opacity 0.5s ease-in-out;
}

button.play-button:hover,
button.mute-button:hover {
  opacity: 0.9;
}

button.play-button svg,
button.mute-button svg {
  width: 20px;
}
