@font-face
{
	font-family: 'DejaVu Sans';
	src: url('DejaVuSans.woff');
}

@font-face
{
	font-family: 'DejaVu Serif';
	src: url('DejaVuSerif.woff');
}

html
{
	width: 100%;
	height: 100%;

	overflow: hidden;

	font-family: 'DejaVu Serif', Arial, Helvetica, Sans-Serif;
	font-size: 14px;
}

body
{
	z-index: -3;
	text-align: center;
	align-content: center;
	vertical-align: middle;

	width: 100vw;
	height: 100vh;
	margin: 0px;
	padding: 0px;
	overflow: hidden;

	background-color: #000;
	background-image: url('./background.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom right;
}

#visualizer
{
	position: absolute;
	bottom: 0px;
	left: 0px;

	max-width: 100vw;
	width: 100vw;
	height: 300px;

	z-index: -2;
}

#background
{
	position: absolute;
	top: 0px;
	left: center;
	z-index: 0;
	height: 100%;
	padding: 0px;
	border: none;
}

#container
{
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
}

.container
{
	border-style: solid;
	border-color: #111;
	border-width: 1px;

	padding: 10px;

	background-color: #DDD;
}

.listContainer
{
	width: 42.5%;
}

.buttonsContainer
{
	width: 10%;
	max-width: 300px;
}

select
{
	background-color: white;
	color: black;
}

button
{
	background-color: white;
	color: black;
}

.playlistSelect
{
	width: 100%;
	max-width: 800px;
	height: calc(100vh - 160px);
}

.inline
{
	display: inline-block;
	height: 100%;
}

button
{
	vertical-align: middle;
}

.block
{
	display: block;
	width: 100%;
}

.centerBlock
{
	display: block;
	margin-top: auto;
	margin-bottom: auto;
}

.hidden
{
	display: none;
}

.titleBar
{
	border-style: solid;
	border-width: 2px;
	border-color: #000;
	border-radius: 10px;

	font-family: 'DejaVu Sans', Arial, Helvetica, Sans;
	color: #FFF;
	overflow: hidden;

	width: 90%;
	padding: 5px;

	position: absolute;
	top: -150px;
	left: calc(5% - 7px);

	margin: 0px;

	background-color: rgba(30, 30, 90, 0.7);

	webkit-transition-property: top, height;
	transition-property: top, height;
	webkit-transition-duration: 1s;
	transition-duration: 1s;
	webkit-transition-delay: 1s;
	transition-delay: 1s;
	webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

@media (max-width: 450px)
{
	.titleBarScaling
	{
		font-size: 13px;
	}
}

@media (max-width: 799px)
{
	.titleBarScaling
	{
		font-size: 16px;
	}
}

@media (min-width: 800px)
{
	.titleBarScaling
	{
		font-size: 18px;

		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (min-width: 1200px)
{
	.lyrics
	{
		max-width: 25vw;
	}
}



.statusBar
{
	border-style: solid;
	border-width: 2px;
	border-color: #000;
	border-radius: 10px;

	font-size: 16px;
	font-weight: bold;
	font-family: 'DejaVu Sans', Arial, Helvetica, Sans;
	color: #FFF;
	overflow: hidden;

	/*height: 25px;*/
	width: 90%;
	padding: 5px;
	padding-bottom: 10px;

	position: absolute;
	bottom: -8px;
	left: calc(5% - 7px);

	margin: 0px;

	background-color: rgba(90, 90, 90, 0.7);

	webkit-transition-property: bottom, height;
	transition-property: bottom, height;
	webkit-transition-duration: 1s;
	transition-duration: 1s;
	/*webkit-transition-delay: 1s;
	transition-delay: 1s;*/
	webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

/*.statusBarClosed
{
	bottom: -39px;
}*/

.lyrics
{
	position: fixed;
	top: 100%;
	right: 1%;
	z-index: -1;

	background-color: rgba(30, 30, 200, 0.3);
	border-width: 3px;
	border-color: #33E;
	border-radius: 5px;

	padding-top: 15px;
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 15px;

	color: #EEE;
	text-align: right;
}

.animateLyrics
{
	animation-name: lyricsMove;
	animation-timing-function: linear;
}

p
{
	margin-top: 3px;
	margin-bottom: 3px;
}

.stats
{
	position: absolute;
	top: 5px;
	left: 5px;
	
	border-style: solid;
	border-color: #000;
	border-width: 2px;
	
	background-color: #444;
	color: #FFF;
	
	padding: 3px;
}

.clickCatcher
{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	
	background-color: rgba(0, 0, 0, 0.0);
	background-repeat: no-repeat;
	background-size: contain;
	background-attachment: fixed;
	background-position: center center;

	z-index: 32;
}

.needsClick
{
	background-image: url('./clickcatcher.png');
	background-color: rgba(200, 200, 200, 0.5);
}

.volumeClass
{
	z-index: 35;
}

.volumeControls
{
	display: none;
	background-color: rgba(200, 200, 200, 0.7);
	padding-top: 3px;
	padding-bottom: 3px;
}

#volumeButton
{
	padding-top: 20px;
	position: fixed;
	bottom: 20px;
	left: 3px;
	text-align: left;

	cursor: pointer;
}

#playbackStartButton
{
	width: 75px;
	height: 25px;
}

div.autoPlayPrompt
{
	display: none;

	background-color: white;

	position: fixed;
	height: 100px;
	width: 300px;
	top: 50%;
	left: 50%;
	margin-top: -50px;
	margin-left: -150px;

	border-radius: 5px;
	border-style: solid;
	border-width: 3px;
	border-color: #555;

	padding: 6px;
}

img.volumeControls
{
	display: inline-block;
}

input.volumeControls
{
	position: absolute;
	top: 0px;
	left: 0px;
}