:root {
	--V-color: var(--primary-color);
}
.Vcontainer {
	height: 0;
	padding: 0 0 56.25% 0;
	position: relative;
	background: #000;
	cursor: none;
	overflow: hidden;
}
.Vcontainer.Vmouse {
	cursor: default;
}
.Vcontainer iframe, .Vcontainer img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.Vveil {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.Vveil i.fa-play {
	width: 100px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	font-size: 40px;
	line-height: 40px;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
	padding: 30px 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.Vcontainer.Vpaused .Vveil {
	display: none;
}
.VM.Vcontainer.Vpaused .Vveil {
	display: flex;
	opacity: 0;
}
.Vcontainer.Vplaying .Vveil {
	opacity: 0;
	cursor: none;
}

.Vcontainer:hover i.fa-play {
	color: #fff;
}

.Vcontrols {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	height: 40px;
	justify-content: space-between;
	align-items: stretch;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	display: none;
}
.Vcontainer.Vmouse .Vcontrols, .Vcontainer.Vpaused .Vcontrols {
	display: flex;
}
.Vcontainer.Vstopped .Vcontrols {
	display: none;
}
.Vcontainer.Vmouse .Vveil {
	cursor: default;
}

.Vcontrols .Vbuttons {
	display: flex;
	justify-content: flex-start;
	width: 250px;
	max-width: 80%;
}

.Vcontrols button {
	margin: 0;
	padding: 0;
	width: 40px;
	height: 40px;
	vertical-align: middle;
	text-align: center;
	border: none;
	border-radius: 0;
	background: none;
	color: #fff;
	font-size: 20px;
	line-height: 20px;
	cursor: pointer;
}
.Vcontrols button:hover {
	color: var(--V-color);
}
.Vcontrols button:hover, .Vcontrols button:active, .Vcontrols button:focus {
	border: none;
	outline: none;
}
.Vcontrols input {
	height: 40px;
	margin: 0;
	padding: 0;
	border: none;
	cursor: pointer;
}
.Vcontrols button.Vmute {
	text-align: left;
	padding-left: 8.75px;
}
.Vvolume {
	margin: 0 10px;
	width: calc(100% - 160px);
}
.Vtime {
	font-family: 'Arial', sans-serif;
	width: 70px;
	padding: 12px 0;
	text-align: center;
	font-size: 16px;
	line-height: 16px;
}
.Vadvance {
	flex-grow: 2;
	margin: 0 5px;
}
.Vadvance input {
	width: 100%;
	outline: none;
}

.Vcontainer input[type='range'],
.Vcontainer input[type='range']::-webkit-slider-runnable-track,
.Vcontainer input[type='range']::-webkit-slider-thumb {
	-webkit-appearance: none;
	outline: none;
}
.Vcontainer input[type='range'] {
	color: #fff;
	background: none;
}

.Vcontainer input[type='range']::-webkit-slider-thumb {
	background-color: var(--V-color);
	width: 20px;
	height: 20px;
	border: none;
	border-radius: 50%;
	margin-top: -7px;
}

.Vcontainer input[type='range']::-moz-range-thumb {
	background-color: var(--V-color);
	width: 20px;
	height: 20px;
	border: none;
	border-radius: 50%;
}

.Vcontainer input[type='range']::-ms-thumb {
	background-color: var(--V-color);
	width: 20px;
	height: 20px;
	border: none;
	border-radius: 50%;
}

.Vcontainer input[type='range']::-webkit-slider-runnable-track {
	background: #fff;
	height: 6px;
}

.Vcontainer input[type='range']:focus::-webkit-slider-runnable-track {
	outline: none;
}

.Vcontainer input[type='range']::-moz-range-track {
	background-color: #fff;
	height: 6px;
}
.Vcontainer input[type='range']::-moz-range-progress {
	background-color: #fff;
	height: 6px;
}

.Vcontainer input[type='range']::-ms-track {
	background-color: #fff;
	height: 6px;
}

.Vcontainer input[type='range']::-ms-fill-lower {
	background-color: #fff;
}

.Vcontainer input[type='range']::-ms-fill-upper {
	background-color: #fff;
}
@media (max-width: 480px) {
	.Vcontrols {
		height: 30px;
	}
	.Vcontrols input {
		height: 30px;
	}
	.Vcontrols button {
		width: 30px;
		height: 30px;
		font-size: 15px;
		line-height: 15px;
	}
	.Vtime {
		width: 50px;
		padding: 8px 0;
		font-size: 14px;
		line-height: 14px;
	}
	.Vcontrols button.Vmute {
		padding-left: 5px;
	}
	.Vvolume {
		margin: 0 5px;
		width: calc(100% - 120px);
	}
	.Vadvance {
		flex-grow: 1;
		margin: 0 3px;
	}

	.Vcontainer input[type='range']::-webkit-slider-thumb {
		width: 14px;
		height: 14px;
		margin-top: -4px;
	}

	.Vcontainer input[type='range']::-moz-range-thumb {
		width: 14px;
		height: 14px;
	}

	.Vcontainer input[type='range']::-ms-thumb {
		width: 14px;
		height: 14px;
	}
}