html{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	height: 100%;
}

body{
	min-height: 100%;
	margin: 0px;
	overflow: hidden;
}

.noBullets{
	list-style: none;
	padding-left: 0px;
	margin: 0;
}

#debugStuff{
	position: absolute;
}

#debugStuff>canvas{
	background: black;
	image-rendering: pixelated;
	display: block;
}

.blackBox{
	background: rgba(0,0,0,0.8);
	border-radius: 20px;
	box-shadow: 0px 10px 20px rgba(0,0,0,0.5);
	color: #d8d8d8;
	padding: 20px;
	transition: opacity 0.5s, visibility 0.5s;
}
.blackBox.centered{
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

@supports(-webkit-backdrop-filter: blur(20px)){
	.blackBox{
		-webkit-backdrop-filter: blur(20px);
		background: rgba(0,0,0,0.4);
		color: white;
	}
}

.blackBox > :first-child{
	margin-top: 0;
}

.blackBox > :last-child{
	margin-bottom: 0;
}

a{
	color: inherit;
}

a:hover{
	text-decoration: none;
}

#controlsContainer{
	position: absolute;
	bottom: 0;
	width: 100%;
	pointer-events: none;
	transition: visibility 0.5s, opacity 0.5s;
}

#controlsContainer > *{
	pointer-events: auto;
}

#controls{
	margin: 20px;
	padding: 0;
	height: 40px;
	position: relative;
	transition: width 0.5s;
	margin-left: auto;
	width: 40px;
}

.controlsIcon{
	width: 40px;
	height: 40px;
	transform: scale(0.6);
}

#playButton{
	cursor: pointer;
	overflow: hidden;
	transition: visibility 0.5s, opacity 0.5s;
}

.playButtonIcon{
	transition: transform 0.5s;
}

#settingsButton{
	background-image: url(svg/settings.svg);
	right: 0;
	top: 0;
	position: absolute;
	cursor: pointer;
}

#playerSeekBarSvg{
	position: absolute;
	width: calc(100% - 80px);
	left: 40px;
	height: 100%;
	cursor: pointer;
	transition: visibility 0.5s, opacity 0.5s;
}

.playerSeekBar{
	stroke-width: 4px;
	stroke-linecap: round;
	stroke: white;
}

#playerSeekCircle{
	fill: white;
	display: none;
}

#settingsMenu{
	max-width: 250px;
	margin: 20px;
	margin-left: auto;
}

.sourceSelect > li{
	padding: 14px;
	margin: 10px 0px;
	background: rgba(100, 100, 100, 0.3);
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.3s;
	position: relative;
}

.sourceSelect > li:hover{
	background: rgba(150, 150, 150, 0.3);
}
.sourceSelect > li:active{
	background: rgba(170, 170, 170, 0.3);
}
.sourceSelect > li > .sub{
	font-size: 8pt;
}

#enterUrlBox{
	background: none;
	border: none;
	font-size: inherit;
	color: inherit;
	padding: 0;
	border-radius: 5px;
	box-sizing: border-box;
	transition: padding 0.2s, margin 0.2s, background 0.2s;
	cursor: pointer;
}

#enterUrlBox:focus{
	outline: none;
	background: rgba(255, 255, 255, 0.1);
	padding: 5px;
	margin-bottom: 5px;
	padding-right: 25px;
	cursor: text;
}

#enterUrlBox::placeholder{
	color: inherit;
	transition: opacity 0.2s;
}
#enterUrlBox:focus::placeholder{
	opacity: 0.5;
}

.urlBoxFeedbackImg{
	width: 0px;
	height: 0px;
	display: inline;
	position: relative;
}
.urlBoxFeedbackImg::after{
	content: '';
	width: 20px;
	height: 20px;
	display: inline-block;
	position: absolute;
	right: 5px;
	bottom: -2px;
}
#urlBoxFeedbackLoading::after{
	background: url(svg/loading.svg);
}
#urlBoxFeedbackFailed::after{
	background: url(svg/crossRed.svg);
}
#urlBoxFeedbackSuccess::after{
	background: url(svg/checkGreen.svg);
}

.inlineIcon{
	width: 10px;
	height: 10px;
	display: inline-block;
	position: relative;
	top: 1px;
}

.newWindowIcon{
	background: url(svg/newWindow.svg);
}

.checkIcon{
	background: url(svg/check.svg);
}

#settingsKnobs{
	text-align: center;
}

.knobSliderContainer{
	width: 50px;
	height: 60px;
	display: inline-block;
	cursor: ns-resize;
	margin: 0px 7px;
	position: relative;
}

.knobSliderLabel{
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}

.playingIcon{
	width: 20px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	margin: 0px 10px;
}

#dragFileHover{
	width: 100%;
	height: 100%;
	background: #000000ad;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	z-index: 100;
	padding: 20px;
	transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

#dragFileHover.hidden{
	opacity: 0;
	visibility: hidden;
	transform: scale(1.1);
}

#dragFileHoverBorder{
	height: 100%;
	border: 3px dashed #6d6d6d;
	border-radius: 20px;
	box-sizing: border-box;
	position: relative;
}

#dragFileText{
	text-align: center;
	top: 50%;
	position: relative;
	color: #adadad;
}
