/*
/
/	RESET
/
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

/* fix vertical spacing */
img {
	display: block;
}
/* allow styling of individual svg symbol instances */
svg path {
	fill: inherit;
}
/* fix webfont issues */
html {
	-webkit-font-smoothing: antialiased;
}

/* prevent horizontal scrolling */
body {
	width: 100%;
	overflow: hidden;
}







/*
/
/	FONTS
/
*/

/* Proxima Nova Regular */
@font-face {
	font-family: 'ProximaNova-Regular';
	src: url('../../fonts/proximanova-regular-webfont.eot');
	src: url('../../fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/proximanova-regular-webfont.woff2') format('woff2'),
		 url('../../fonts/proximanova-regular-webfont.woff') format('woff');
}

/* Proxima Nova Semibold */
@font-face {
	font-family: 'ProximaNova-Semibold';
	src: url('../../fonts/proximanova-semibold-webfont.eot');
	src: url('../../fonts/proximanova-semibold-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/proximanova-semibold-webfont.woff2') format('woff2'),
		 url('../../fonts/proximanova-semibold-webfont.woff') format('woff');
}

/* Proxima Nova Condensed Medium */
@font-face {
	font-family: 'ProximaNova-Cond-Medium';
	src: url('../../fonts/proximanova-cond-medium-webfont.eot');
	src: url('../../fonts/proximanova-cond-medium-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/proximanova-cond-medium-webfont.woff') format('woff');
}

/* Proxima Nova Condensed Black */
@font-face {
	font-family: 'ProximaNova-Cond-Black';
	src: url('../../fonts/proximanova-cond-black-webfont.eot');
	src: url('../../fonts/proximanova-cond-black-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../../fonts/proximanova-cond-black-webfont.woff') format('woff');
}












/*
/
/	BASIC STYLES
/
*/

:root {
	--color-offblack: #101010;
	--color-offblack-rgb: 16,16,16;
	--color-offwhite: #F2F2F2;
	--color-offwhite-rgb: 242,242,242;
}

body {
	background: var(--color-offblack);
}
main {
	width: 1920px;
	height: 1080px;
	overflow: hidden;
}











/*
/
/	SIDE PANEL
/
*/

#vpa-panel {
	position: relative;
	/* left: 1388px;
	left: 1920px; */
	/* background-color: rgba(var(--color-offblack-rgb),.9); */
	width: 534px;
	height: 1080px;
	overflow: hidden;
}
/*
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	#vpa-panel {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		background-color: rgba(var(--color-offblack-rgb),.9);
	}
}
*/







/*
/
/	CLOCK
/
*/

#clock {
	position: relative;
	padding: 55px 90px 50px 90px;
	font-family: "ProximaNova-SemiBold", sans-serif;
	font-size: 28px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-offwhite);
	display: flex;
	transition: all .15s ease-in-out;
}
#clock li:last-child {
	margin-left: auto;
}

.clockLock {
	/* background-color: rgba(var(--color-offblack-rgb),.9); */
	box-shadow: 0 80px 40px 0 rgba(0,0,0,.25);
	border-style: solid;
	border-width: 0 0 1px 0;
	border-image: linear-gradient(to right, rgba(242,242,242,0), rgba(242,242,242,.25), rgba(242,242,242,0)) 1;
}
/*
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	.clockLock {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		background-color: rgba(var(--color-offblack-rgb),.9);
	}
}
*/









/*
/
/	CARDS
/
*/

#panel-inner-wrapper {
	position: relative;
	overflow: hidden;
}
#now-watching {
	position: relative;
	padding: 50px 0 0 0;
}
#alerts {
	position: relative;
	padding: 20px 0 0 0;
}

h1 {
	margin: 0 0 20px 90px;
	font-family: "ProximaNova-Regular", sans-serif;
	font-size: 34px;
	color: var(--color-offwhite);
}
h2 {
	position: relative;
	margin: 10px 0 0 0;
	font-family: "ProximaNova-SemiBold", sans-serif;
	font-size: 20px;
	line-height: 24px;
	color: rgba(var(--color-offwhite-rgb),.7);
}
#alerts h2 {
	margin: 10px 0 40px 0;
}
.card {
	margin: 0 auto 40px auto;
	width: 352px;
	transition: all .15s ease-in-out;
}
.card .videoWrapper {
	position: relative;
}
.card .videoOverlay {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: auto;
    padding-top: 56.25%;	/* 16:9 Aspect Ratio */
    position: relative;		/* If you want text inside of it */
}
.card video {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: auto;
	box-shadow:
		1px 10px 20px 0 rgba(0,0,0,0.35),
		inset 0 1px 0 0 rgba(255,255,255,0.1);
}
button {
	margin: 15px 0 0 0;
	padding: 12px 0 10px 0;
	width: 100%;
	background: rgba(var(--color-offwhite-rgb),.5);
	border: none;
	border-radius: 8px;
	font-family: "ProximaNova-Cond-Medium", sans-serif;
	font-size: 22px;
	color: var(--color-offblack);
	letter-spacing: 1px;
	text-align: center;
	text-transform: uppercase;
	transition: all .15s ease-in-out;
}





/*
/
/	METADATA
/
*/

.metadata {
	font-family: "ProximaNova-Cond-Medium", sans-serif;
	font-size: 20px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(var(--color-offwhite-rgb),.7);
	display: flex;
}
.metadata li:last-child {
	margin: 0 0 0 auto;
	display: none;
}
.metadata svg {
	margin: 0 8px 0 18px;
	fill: rgba(var(--color-offwhite-rgb),.7);
	width: 10px;
	height: 10px;
}
.metadata .live {
	padding: 6px 12px 5px 14px;
	background: linear-gradient(225deg, #DE3D05, #B60505);
	border-radius: 5px;
	display: inline-block;
	display: flex;
	/* "live" is always white */
	color: rgba(var(--color-offwhite-rgb),1);
}
.metadata .live div {
	margin: 6px 6px 0 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-offwhite);
}
.metadata .channel {
	padding: 6px 0 0 10px;
	letter-spacing: normal;
}

/* METADATA OVER THUMBS ONLY */
.metadataWrapper {
	position: absolute;
	bottom: 0;
	height: 80px;
	background-image: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 60%);
	width: 100%;
}
.metadataWrapper .metadata {
	padding: 35px 15px 0 15px;
}
.metadataWrapper .metadata li:last-child img {
	position: relative;
	top: 5px;
}
















/*
/
/	FOCUS
/
*/

.cardFocus {
	transform: scale(1.05);
}
.cardFocus .metadata {
	color: rgba(var(--color-offwhite-rgb),1);
}
.cardFocus .metadata svg {
	fill: rgba(var(--color-offwhite-rgb),1);
}
.cardFocus h2 {
	color: rgba(var(--color-offwhite-rgb),1);
}
.cardFocus button {
	background: rgba(var(--color-offwhite-rgb),1);
}
.cardFocus .videoWrapper {
	left: -5px;
	border: 5px solid var(--color-offwhite);
}









/*
/
/	BACKGROUND VIDEO
/
*/

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    z-index: -100;
	background-image:
		linear-gradient(180deg, rgba(16,16,16,0.25) 25%, rgba(25,26,40,0.95) 70%),
		linear-gradient(-35deg, rgba(5,118,176,0.00) 0%, rgba(3,128,246,0.45) 100%);
}
.fullscreen-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
	transition: all .5s ease-in-out;
	box-shadow: 1px 10px 20px 0 rgba(0,0,0,0.35);
}
/* just ".minimized" does not work; must declare path */
.fullscreen-bg video.minimized {
    top: 60px;
    left: 90px;
    width: 1296px;
    height: 729px;
}













/*
/
/	Z-INDICIES
/
*/

#clock {
	z-index: 3;
}
.card .videoOverlay {
	z-index: 2;
}
.card video {
	z-index: 1;
}















