.audio-container {
	padding: .5em;
	margin: .5em 0;
	
	color: var(--article-content-color);
	background-color: var(--article-highlight-bg-color);
	box-shadow: 0px 0px 4px 2px rgba(0,0,0,.5);
	
	border-radius: 5px;
	
	display: flex;
	flex-direction: row;
	gap: 1em;
	align-items: center;
}

.audio-play-btn {
	padding: .5em;
	border-radius: 100%;
	border: none;
	
	height: 55px;
	width: 55px;
	font-size: 1.5rem;
	
	background-color: var(--ovgu-beere);
	color: white;
	
	cursor: pointer;
}

.audio-progress-container {
	background: #fff;
	border-radius: 5px;
	cursor: pointer;
	margin: 10px 0;
	height: 4px;
	width: 100%;
}

.audio-progress {
	background-color: var(--ovgu-beere);
	border-radius: 5px;
	height: 100%;
	width: 0%;
	transition: width 0.1s linear;
}

.audio-info {
	width: 100%;
}