.od-audio-player {
	width: 100%;
	background-color: #333;
	color: white;
	border-radius: 5px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.od-audio-player p:empty {
	display: none;
}

.od-audio-player .controls-container {
	display: flex;
	align-items: center;
	width: 100%;
	z-index: 2;
}

.od-audio-player #playPauseBtn {
	width: 60px;
	height: 60px;
	cursor: pointer;
	background: transparent;
	border: none;
	color: white;
	font-size: 22px;
	flex-shrink: 0;
}

.od-audio-player #playPauseBtn:focus {
	outline: none;
}

.od-audio-player #playPauseBtn::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
}

.od-audio-player #playPauseBtn.play-btn::before {
	content: '\f04b';
}

.od-audio-player #playPauseBtn.pause-btn::before {
	content: '\f04c';
}

.od-audio-player .text-and-progress {
	flex-grow: 1;
	position: relative;
	padding: 20px;
	border-left: 2px solid #ffffff;
	cursor: pointer;
	overflow-x: hidden;
}

.od-audio-player .audio-title {
	font-size: 1.2em;
	font-weight: bold;
	display: block;
	position: relative;
	z-index: 3;
	white-space: nowrap;
}

.od-audio-player .progress-bar-container {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1; /* Progress bar is behind the controls */
}

.od-audio-player .progress-bar {
	height: 100%;
	width: 0;
	background-color: #999999;
	margin: 0;
	border-radius: 0 50px 50px 0;
}

.od-audio-player .time-display {
	padding: 10px 20px;
	font-weight: bold;
	white-space: nowrap;
	width: 150px;
	text-align: center;
}