/*
/
/	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,
button {
	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: 16,16,16;
	--color-offwhite: 242,242,242;
	--color-card: 48,65,85;
}

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









/*
/
/	GUIDES
/
*/

#guides {
	position: absolute;
	top: 0;
	left: 0;
	margin: 60px 90px;
	width: calc(1920px - 90px - 90px);
	height: calc(1080px - 60px - 60px);
	border: 2px solid rgba(80,227,194,.5);
}







/*
/
/	COACH
/
*/

#coachmark {
	padding: 0 40px;
	position: absolute;
	top: 60px;
	right: 90px;
	border-radius: 10px;
	font-family: "ProximaNova-SemiBold", sans-serif;
	font-size: 32px;
	letter-spacing: 3.2px;
	text-transform: uppercase;
	color: rgb(var(--color-offwhite));
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all .15s ease-in-out;
}
#coachmark img {
	padding: 0 10px;
	width: 70px;
	height: 70px;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	#coachmark {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		background-color: rgba(var(--color-offblack),0.75);
	}
}

/* DOES NOT WORK */
.coachFocus {
	right: 90px;
	opacity: 1;
	color: red;
}







/*
/
/	SIDE PANEL
/
*/

#vpa-panel {
	position: relative;
	left: 1200px;
	margin: 0;
	padding: 60px 0 0 0;
	width: 720px;
	height: 1080px;
	overflow: hidden;
	border-left: 1px salmon;
}










/*
/
/	CARDS
/
*/

.card {
	position: absolute;
	width: 550px;
	height: 145px;
	margin: 0 auto 30px auto;
	background-color: rgba(var(--color-offwhite),0);
	transition: all .15s ease-in-out;
	border-radius: 13px;
	box-shadow:
		1px 20px 25px 0 rgba(0,0,0,0.0);
}
.cardBody {
	position: relative;
	top: 5px;
	left: 5px;
	width: 540px;
	height: 135px;
	box-shadow:
		1px 10px 20px 0 rgba(0,0,0,0.35),
		inset 0px 1px 0px 0 rgba(255,255,255,0.1);
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	background-color: rgba(var(--color-card),0.9);
	/* below fixes Safari transform weirdness
	-webkit-mask-image: -webkit-radial-gradient(white, black); */
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	.cardBody {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}
.card .videoWrapper {
	position: relative;
}
.card .videoOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 240px;
	height: 135px;
}
.card video {
	position: absolute;
	top: 0;
	left: 0;
	width: 240px;
	height: auto;
	/* tried to remove apparent background color */
	background: none !important;
}
.headlineWrapper {
	margin: 0 20px;
	position: relative;
	height: 135px;
	left: 240px;
	width: 260px;
	display: flex;
	justify-content: center;
	align-items: center;
}
h1 {
	font-family: "ProximaNova-SemiBold", sans-serif;
	font-size: 24px;
	line-height: 28px;
	color: rgba(var(--color-offwhite),0.7);
}
button {
	width: 100%;
	height: 50px;
	border: none;
	background: none;
	font-family: "ProximaNova-SemiBold", sans-serif;
	font-size: 22px;
	letter-spacing: 1px;
	line-height: 1;
	color: rgba(var(--color-offwhite),0.7);
	text-transform: uppercase;
	transition: all .15s ease-in-out;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card:first-child {
	top: 55px;
}
.card:nth-child(2) {
	top: 220px;
}
.card:nth-child(3) {
	top: 385px;
	height: 60px;
}
.card:nth-child(3) .cardBody {
	height: auto;
}







/*
/
/	METADATA
/
*/

.metadataWrapper {
	position: absolute;
	bottom: 0;
	height: 60px;
	background-image: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 60%);
	width: 100%;
}
.metadata {
	padding: 24px 0 0 10px;
	font-family: "ProximaNova-Cond-Medium", sans-serif;
	font-size: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(var(--color-offwhite),.7);
	display: flex;
}
.metadata .live {
	padding: 6px 10px 5px 10px;
	background: linear-gradient(225deg, #DE3D05, #B60505);
	border-radius: 5px;
	display: flex;
	align-items: center;
	color: rgba(var(--color-offwhite),1);
}
.metadata li:first-child::before {
	display: inline-block;
	margin: 0 5px 2px 0;
	content: '';
	background-color: rgba(var(--color-offwhite),1);
	border-radius: 100%;
	width: 6px;
	height: 6px;
}









/*
/
/	CARD FOCUS
/
*/

.cardFocus {
	transform: scale(1.05);
	background-color: rgba(var(--color-offwhite),1);
	box-shadow:
		1px 20px 25px 0 rgba(0,0,0,0.5);
}
.cardFocus .cardBody {
	box-shadow:
		1px 10px 20px 0 rgba(0,0,0,0.0),
		inset 0px 1px 0px 0 rgba(255,255,255,0.1);
	background-color: rgba(var(--color-card),1);
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	.cardFocus .cardBody {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
}
.cardFocus h1,
.cardFocus button {
	color: rgba(var(--color-offwhite),1);
}







/*
/
/	BUTTON FOCUS - IN CASE WE WANT A DIFFERENT STYLE
/
*/

.buttonFocus {
	transform: scale(1.04);
}
.buttonFocus .cardBody {
	box-shadow:
		1px 20px 25px 0 rgba(0,0,0,0.5),
		inset 0px 1px 0px 0 rgba(255,255,255,0.1);
	background-color: rgba(var(--color-offwhite),1);
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
	.buttonFocus .cardBody {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
}
.buttonFocus button {
	color: rgba(var(--color-card),1);
}







/*
/
/	CARD IN OUT
/
*/

.card {
	left: 150px;
	opacity: 0;
}
.cardIn {
	left: 90px;
	opacity: 1;
}











/*
/
/	BACKGROUND VIDEO
/
*/

.fullscreen-bg {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
	z-index: -100;
}
.fullscreen-bg video {
	position: absolute;
	top: 0;
	left: 0;
	width: 1920px;
	height: 1080px;
}















/*
/
/	Z-INDICIES
/
*/

#guides {
	z-index: 99;
}
#coachmark {
/*	z-index: 1; */
}
.card .videoOverlay {
	z-index: 4;
}
.card video {
	z-index: 3;
}
#vpa-panel {
	z-index: 2;
}















