﻿
:root {
	--plyr-color-main: #8BC34A;
}

body {
	margin: 0;
	padding: 0;
	background-color: black;
	font-family: Poppins;
}

.video-container {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: stretch;
	align-items: stretch;
}

	.video-container #player {
		width: 100%;
		height: 100%;
	}

	.video-container #unmute {
		position: absolute;
		left: 10px;
		top: 10px;
		z-index: 1;
		border: none;
		background-color: rgba(255, 255, 255, 0.4);
		color: #000000;
		padding: 5px 15px;
		font-size: 1rem;
		cursor: pointer;
		border-radius: 2px;
	}

		.video-container #unmute:hover {
			background-color: lightgray;
		}

.plyr__controls .live {
	z-index: 1;
	margin: 0 5px;
	color: #fff;
	font-weight: bold;
	font-size: 13px;
}

	.plyr__controls .live span {
		width: 10px;
		height: 10px;
		background-color: red;
		display: inline-block;
		border-radius: 10px;
		margin-right: 5px;
	}
