.audio-play-toggle{
	padding-left:30px;
	position:relative;
	background-color:#dfdfdf;
	transition: all .5s ease;
}
.audio-play-toggle:hover{
	cursor:pointer;
	background-color:white;
}
.audio-play-toggle::before,
.audio-play-toggle.paused::before{
	content:"";
	background-image:url("./assets/paused.svg");
	background-size: contain;
	background-repeat:no-repeat;
	background-position:center center;
	display:inline-block;
	height:22px;
	width:28px;
	position:absolute;
	top:0;
	left:0;
	background-color:white;
}

.audio-play-toggle.playing::before{
	content:"";
	background-image:url("./assets/playing.svg");
	background-size: contain;
	background-repeat:no-repeat;
	background-position:center center;
	display:inline-block;
	height:22px;
	width:28px;
	position:absolute;
	top:0;
	left:0;
	background-color:white;
}