/* Fixes an issue with browser vendor specific video player not being shown in Chrome and other browsers that use the same engine. The issue is with the height being set to 100%. */
.h5p-audio-wrapper.h5p-audio-controls > audio.h5p-audio {
  height: revert !important;
}

/* Removes border radius from audio player in any browsers using WebKit engine. Currently needed for Chrome and others that use the same engine. */
.h5p-audio-wrapper.h5p-audio-controls > audio.h5p-audio::-webkit-media-controls-enclosure {
  border-radius: 0;
}
