@import url('https://rsms.me/inter/inter.css');
html { font-family: 'Inter', sans-serif !important; }
@supports (font-variation-settings: normal) {
html { font-family: 'Inter var', sans-serif !important; }
}
/* */
body {
	background: rgb(96,194,254);
	background: -moz-linear-gradient(-45deg, rgba(96,194,254,1) 0%, rgba(21,112,227,1) 84%);
	background: -webkit-linear-gradient(-45deg, rgba(96,194,254,1) 0%,rgba(21,112,227,1) 84%);
	background: linear-gradient(135deg, rgba(96,194,254,1) 0%,rgba(21,112,227,1) 84%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#60c2fe', endColorstr='#1570e3',GradientType=1 );
	background-size: 100% 100%;
	background-attachment: fixed;

	font-family: 'Inter','Source Sans Pro', sans-serif;

	margin: 0px;
	padding: 0px;
}
body div.musicnote {
	height: 50%;
	width: 50%;
	background-image: url('/img/global/musical-note.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom right;
	filter: blur(10px);
	position: fixed;
	bottom: 30px;
	right: 0px;
	opacity: 0.1;
	z-index: -1;
}

#player_container {
	width: 100%;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	text-align: center;
	background: rgba(255,255,255,0.9);
	border-radius: 3px;
	box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
	}
	@media screen and (min-width: 0px) and (max-width: 1023px) {
		#player_container {
			margin-top: 15px;
		}
	}
	#player_container #artwork {
		width: 100%;
		width: calc(100% - 15px - 15px);
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
		padding: 15px;
		text-align: center;
		background: rgba(255,255,255,0.9);
		border-radius: 3px;
		height: 300px;
		background-size: 50%;
		background-position: center center;
		background-repeat: no-repeat;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		}
	#player_container h2 {
		margin: 0px;
		padding: 15px 0px 10px 0px;
		color: rgba(60, 155, 241, 1.0);
	}
	#player_container .playerWrapper {
		padding: 0px 15px 15px 15px;
	}

#player_container .metadata {
	padding-bottom: 15px;
	padding-top: 15px;
	/* padding-left: 15px;
	padding-right: 15px; */
	border-top: 1px solid rgba(0,0,0,0.1);
	background: rgba(255,255,255,0.4);
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	display: none;
	}
	#player_container .metadata.notSupportsNowPlaying {
		display: none;
	}
	#player_container .metadata.supportsNowPlaying {
		display: block;
	}
	#player_container .metadata.notPlaying {
		display: none;
	}
	#player_container .metadata h3 {
		font-size: 12px;
		color: rgba(0,0,0,0.3);
		text-transform: uppercase;
		margin: 0px;
		margin-bottom: 10px;
		border-bottom: 2px solid rgba(0,0,0,0.2);
		display: inline-block;
	}
	#player_container .metadata .title,
	#player_container .metadata .title a {
		font-size: 17px;
		color: rgba(0,0,0,0.8);
		text-decoration: none;
	}
	#player_container .metadata .artist,
	#player_container .metadata .artist a {
		margin-top: 5px;
		text-transform: uppercase;
		font-size: 13px;
		color: rgba(0,0,0,0.7);
		text-decoration: none;
	}

	footer {
		margin-top: 30px;
		margin-bottom: 90px;
		text-align: center;
		color: rgba(255,255,255,1);
		font-size: 10px;
		}
		footer.footer--fixed {
			position: fixed;
			bottom: 0px;
			width: 100%;
			margin-bottom: 0px;
			padding-top: 80px;
			padding-bottom: 15px;
			background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 100%);
			background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.15) 100%);
			background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.15) 100%);
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 );
			color: rgba(255,255,255,0.6);
		}
		@media screen and (min-height: 0px) and (max-width: 650px) {
			footer.footer--fixed {
				position: relative;
				background: none;
				padding-top: 30px;
			}
		}
		footer a {
			color: rgba(255,255,255,0.6);
			border-bottom: 1px dotted rgba(255,255,255,0.4);
			text-decoration: none;
			}
			footer a:hover {
				color: rgba(255,255,255,0.7);
				border-bottom: 1px dotted rgba(255,255,255,0.6);
				}
		footer .madein {
			margin-top: 5px;
			color: rgba(255,255,255,0.4);
			}
			footer .madein span {
				color: rgba(255, 0, 0, 0.4);
			}
		footer .version {
			color: rgba(255,255,255,0.4);
			margin-top: 10px;
		}
		footer .links {
			margin-top: 5px;
			color: rgba(255,255,255,0.4);
			}
			footer .links a {
				color: rgba(255,255,255,0.4);
				border-bottom: 1px dotted rgba(255,255,255,0.4);
				}
				footer .links a:hover {
					color: rgba(255,255,255,0.8);
					border-bottom: 1px dotted rgba(255,255,255,0.6);
				}
