.conteneur-video-principale-local {
	position: relative;
	width: 100%;
}
.conteneur-video-principale-distant {
	position: relative;
	width: 100%;
	height: 100%;
}
.conteneur-temoin-son {
	position: absolute;
	right: 8px;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	overflow: hidden;
	pointer-events: none;
	z-index: 5;
}
@media screen and (min-width: 961px) {
	.onde-temoin-son {
		animation-name: propagation-temoin-son-grand;
	}
}
.onde-temoin-son {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-left: -3px;
	margin-top: -3px;
	border: 2px solid white;
	border-radius: 50%;
	box-sizing: border-box;
	opacity: 0;
	animation-name: propagation-temoin-son;
	animation-duration: 1.6s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
	animation-play-state: paused;
}
.conteneur-temoin-son.temoin-son-actif .onde-temoin-son {
	animation-play-state: running;
}
.onde-temoin-son-delai-1 {
	animation-delay: 0s;
}
.onde-temoin-son-delai-2 {
	animation-delay: 0.53s;
}
.onde-temoin-son-delai-3 {
	animation-delay: 1.06s;
}
@keyframes propagation-temoin-son {
	0% {
		transform: scale(0.4);
		opacity: 0.85;
	}
	100% {
		transform: scale(5);
		opacity: 0;
	}
}
@keyframes propagation-temoin-son-grand {
	0% {
		transform: scale(0.4);
		opacity: 0.85;
	}
	100% {
		transform: scale(10);
		opacity: 0;
	}
}
