.od-video-player {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #333;
}

.od-video-player p:empty{
	display: none;
}

.od-video-player video {
	width: 100%;
	height: auto;
	display: block;
}

.od-video-player .controls-container {
	width: 100%;
	position: relative;
}

.od-video-player .controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.od-video-player #playPauseBtn {
	width: 60px;
	height: 60px;
	cursor: pointer;
	background: transparent;
	border: none;
	color: white;
	font-size: 20px;
	flex-shrink: 0;
	border-right: 2px solid #ffffff;
}

.od-video-player #playPauseBtn:focus {
	outline: none;
}

.od-video-player #playPauseBtn::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
}

.od-video-player #playPauseBtn.play-btn::before {
	content: '\f04b'; /* play */
}

.od-video-player #playPauseBtn.pause-btn::before {
	content: '\f04c'; /* pause */
}

.od-video-player .time-display {
	padding: 0 15px;
	font-weight: bold;
	white-space: nowrap;
	color: white;
	width: 150px;
	text-align: center;
}

/* Прогресс-бар */
.od-video-player .progress-bar-container {
	height: 100%;
	width: calc(100% - 210px);
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 60px;
	overflow-y: hidden;
}

.od-video-player .progress-bar {
	height: 100%;
	width: 0;
	background-color: #999999;
	border-radius: 0 50px 50px 0;
}

.od-video-player .video-title {
	top: 50%;
	left: 20px;
	position: absolute;
	color: #ffffff;
	font-size: 1.2em;
	font-weight: bold;
	display: block;
	z-index: 3;
	white-space: nowrap;
	transform: translateY(-50%);
}