@import url("https://fonts.googleapis.com/css?family=Open+Sans");

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}

.loading {
	animation: rotation 2s infinite linear;
}

.modal {
	color: #000000;
	min-width: 700px;
	padding: 20px 20px 20px 20px;
}

.modal h1 {
	font-size: 20px;
	font-weight: bold;
}

.modal table {
	color: #000000;
	font-size: 12px;
	margin: 10px 0 20px 0;
	text-align: left;
}

.modal table td {
	padding: 5px 5px 5px 5px;
}

.modal table th {
	font-weight: bold;
	padding: 5px 5px 10px 5px;
}

audio {
	display: none;
}

body {
	background-image: linear-gradient(#212737, #37415C);
	color: #FFFFFF;
	font-family: "Open Sans", sans-serif;
	overflow: hidden;
	text-align: center;
}

canvas#visualizer {
	border-radius: 0px 0px 20px 20px;
	height: 100px;
	margin: 0 0 60px 0;
	width: 700px;
}

div#background {
	background-blend-mode: lighten;
	background-image: linear-gradient(#212737, #37415C), url("../images/background.png");
	background-position: center center;
	background-size: cover;
	height: 100%;
	opacity: 0.2;
	position: absolute;
	right: 0;
	width: 100%;
	z-index: -1;
}

div#container {
	margin: 40px auto 60px auto;
	text-align: left;
	width: 1000px;
}

div#container div {
	display: inline-block;
	vertical-align: top;
}

div#container div#left {
	margin: 0 30px 0 0;
}

div#container div#left img {
	border-radius: 20px;
	height: 200px;
	opacity: 0;
}

div#container div#right {
	padding: 10px 0 0 0;
}

div#container h1 {
	font-size: 28px;
	font-weight: bold;
	height: 28px;
	margin: 0 0 30px 0;
	opacity: 0;
	text-align: center;
}

div#container p {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px 0;
	opacity: 0;
}

div#controls a {
	opacity: 0;
}

div#controls img {
	margin: 0 10px 0 10px;
	width: 50px;
}

div#controls img:hover {
	filter: hue-rotate(30deg);
}

div#volume {
	background: #444444;
	border-radius: 25px;
	box-sizing: content-box;
	height: 20px;
	margin: 0 auto 30px auto;
	opacity: 0;
	padding: 5px 5px 5px;
	width: 500px;
}

div#volume span#bar {
	background-image: linear-gradient(#10A3E9, #3FB5ED);
	border-radius: 20px;
	box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
	display: block;
	height: 100%;
	overflow: hidden;
	position: relative;
}

div#volume span#percentage {
	font-size: 16px;
	font-weight: bold;
	margin: 1.5px 0 0 -17px;
	position: absolute;
	z-index: 1;
}

h1#name {
	font-size: 120px;
	font-weight: bold;
	opacity: 0;
	padding: 20px 0 0 0;
	text-align: center;
}

p#status {
	font-size: 36px;
	font-weight: bold;
	margin: 0 0 30px 0;
	opacity: 0;
}