/**
 * Canvas Media Embed: sound toggle button
 *
 * Positions the .media-trigger-volume mute/unmute button emitted by the
 * media-embed component over the bottom-right corner of a self-hosted
 * video. Show/hide per playback + mute state, and the click behaviour,
 * are handled by the theme (style.css media-actions rules + the
 * media-actions JS module bound to .media-wrap).
 */

.canvas-media-embed .media-trigger-volume {
	position: absolute;
	top: auto;
	left: auto;
	right: 20px;
	bottom: 10px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--cnvs-contrast-0);
	color: var(--cnvs-contrast-1000);
	font-size: 1.25rem;
	border: 0;
}

.canvas-media-embed .media-trigger-volume i {
	position: relative;
	left: 1px;
}
