html,
body {
  height: 100%;
  max-height: 100%;
  min-height: 100%;
}

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

body {
  padding: 0;
  margin: 0;
  max-height: 100%;
  max-width: 100%;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #f1f9fd;
}

canvas {
  cursor: pointer;
}

.waveform__play {
  cursor: pointer;
  color: #bff4ff;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 22%;
  pointer-events: none;
}

.waveform__play:hover {
  transform: translate(-50%, -50%) scale(1.15);
}

.waveform__play svg {
  width: 70%;
}

.waveform__play svg .st0 {
  fill: #c0f4ff;
}

.paused {
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
}

@media (min-width: 548px) {
  .waveform__play {
    width: 16%;
  }
}

@media (min-width: 768px) {
  .waveform__play {
    width: 12%;
  }
}
