#gradient {
	position: absolute;
	width: 100%;
	height: 100%;

	z-index: 9995;
	pointer-events: none;

	opacity: 1;
	transition: 0.5s ease-in-out;

	background: rgb(0,0,0);
	background: radial-gradient(circle at 0% 100%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 20%);
}
#gradient.hide {
	opacity: 0;
}

ul#menu {
	position: absolute;
	z-index: 9996;

	bottom: 40px;
	left: 40px;

	padding: 0;
	margin: 0;

	opacity: 1;
	transition: opacity 1s;
}
ul#menu.hide {
	opacity: 0;
}
ul#menu.hide li a {
	pointer-events: none;
}
ul#menu li {
	list-style: none;
	display: inline-block;

	margin-right: 0px;/* temp, bug */
}
ul#menu li a {
	pointer-events: auto;

	width: 90px;
	margin: 0;

	font-family: 'Knockout 51 Middleweight';
	font-size: 18px;
	line-height: 20px;

	background: inherit;
	border: inherit;
	border-radius: inherit;

	border-left: 2px solid #fff;
	border-right: 2px solid #fff;

	text-transform: uppercase;
	text-align: center;
	color: #fff;

	white-space: nowrap;

	overflow: hidden;
	transition: none;
}
ul#menu li:first-child a {
	border-left: 4px solid #fff;
	border-right: 2px solid #fff;
}
ul#menu li:last-child a {
	border-left: 2px solid #fff;
	border-right: 4px solid #fff;

	width: 50px;
}
ul#menu li a.disabled {
	pointer-events: none;
}

#backgroundVideoPlayerControls {
	position: absolute;
	z-index: 0;

	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	color: #fff;
	background: rgba(0,0,0,0);

	opacity: 1;
	pointer-events: auto;
	transition: 0.5s ease-in-out;
}
#backgroundVideoPlayerControls.hide {
	opacity: 0;
	pointer-events: none;
}
#backgroundVideoPlayerControls.active {
	background: rgba(0,0,0,0.5);
}
#backgroundVideoPlayerControls.active #buttons,
#backgroundVideoPlayerControls.active #controls #progresstimer,
#backgroundVideoPlayerControls.active #controls #durationtimer {
	opacity: 1;
}
#backgroundVideoPlayerControls.active #buttons,
#backgroundVideoPlayerControls.active #controls {
	pointer-events: auto;
}

#backgroundVideoPlayerControls #buttons {
	display: flex;
	align-items: center;

	width: 100%;

	opacity: 0;
	pointer-events: none;
	transition: 0.5s ease-in-out;
}

#backgroundVideoPlayerControls #buttons ul {
	display: flex;
	justify-content: space-between;

	width: 100%;
	margin: 0 auto;
}

#backgroundVideoPlayerControls #buttons ul li {
	list-style: none;
	display: inline-block;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	padding: 20px 0;
	width: 20%;

	cursor: pointer;
}

#backgroundVideoPlayerControls #buttons ul li#recule,
#backgroundVideoPlayerControls #buttons ul li#avance {
	border-left: 3px solid rgba(255, 255, 255, 0.2);
	border-right: 3px solid rgba(255, 255, 255, 0.2);
}

#backgroundVideoPlayerControls #buttons ul li .button {
	border: 0;
	background-color: transparent;
	outline: none;
	-webkit-tap-highlight-color: transparent;
}
#backgroundVideoPlayerControls #buttons ul li .button:focus {
	border: none;
	outline: none;
}

#backgroundVideoPlayerControls #buttons ul li .button svg {
	height: 120px;
	fill: #fff;

	transform: translateX(5px) scaleX(0.9);
}

#backgroundVideoPlayerControls #buttons ul li i {
	font-size: 3.5em;
}

#backgroundVideoPlayerControls #buttons ul li i.icon-retour {
	transform: scale(-1);
}

#backgroundVideoPlayerControls #buttons ul li span {
	font-family: 'Knockout 51 Middleweight';
	font-size: 18px;
	line-height: 22px;

	text-transform: uppercase;
	text-align: center;
	margin-top: 30px;
}

#backgroundVideoPlayerControls #controls {
	display: flex;
	align-items: center;

	position: absolute;
	bottom: 40px;

	pointer-events: none;
}

#backgroundVideoPlayerControls #controls #progresstimer {
	width: 45px;
	font-family: 'Knockout 50 Welterweight';
	text-align: center;

	opacity: 0;
	transition: 0.5s ease-in-out;
}

#backgroundVideoPlayerControls #controls #durationtimer {
	width: 45px;
	font-family: 'Knockout 50 Welterweight';
	text-align: center;

	opacity: 0;
	transition: 0.5s ease-in-out;
}

#backgroundVideoPlayerControls #controls #progressbar-wrapper {
	width: 500px;
	margin: 20px;

	background-color: rgba(255,255,255,0.5);
}

#backgroundVideoPlayerControls #controls #progressbar-wrapper #progressbar {
	width: 0%;
	height: 5px;

	background-color: #fff;
	/*box-shadow: 0 0 5px 3px rgba(0,0,0,0.1);*/
}





#backgroundVideoPlayerSubtitles {
	position: fixed;
	bottom: 0;
	width: 100%;
	margin: 0 auto;
	/*background-color: #000;*/

	padding: 0 20px 120px 20px;
	/*transform: translate(0, 100%);*/

	z-index: 1;

	opacity: 0;

	pointer-events: none;
}
#backgroundVideoPlayerSubtitles.active {
	opacity: 1;
}
#backgroundVideoPlayerSubtitles p {
	margin: 0;
	padding: 0;
	
	opacity: 0;

	color: #fff;
	font-family: 'Knockout 52 Cruiserweight';
	font-size: 36px;/*30*/
	line-height: 40px;/*35*/
	text-align: center;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}



