html {
	width: 100%;
	height: 100%;
	position: relative;
}
body {
	padding-bottom: 70px;
}
section#player {
	width: 100%;
	height: 0;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	left: 0;
	bottom: 70px;
	z-index: 11;
	color: #FFF;
	background-image: linear-gradient(#333, #111);
	overflow-x: hidden;
	overflow-y: scroll;
	vertical-align: middle;
	transition: height .5s ease-in-out;
}
section#bg {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	background-image: linear-gradient(#333, #000);
	background-size: cover;
	background-position: center;
	-webkit-filter: blur(10px) grayscale(100%) brightness(80%);
	filter: blur(10px) grayscale(100%) brightness(80%);
}

section#player h1,
section#player h2,
section#player h3,
section#player h4,
section#player h5,
section#player h6 {
	color: #FFF;
}

section#player aside {
	text-align: center;
}
input#checkboxFull,
input#checkboxPlay { display: none; }
input#checkboxFull:checked + section#player,
section#player:target { height: calc(100% - 70px); }

section#covers {
	width: 100%;
	height: 100%;
	height: 320px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	vertical-align: middle;
	align-items: center;
    justify-content: center;
	overflow: hidden;
	perspective: 1000px;
}

section#covers > div {
	max-width: 100%;
	margin: 0 10px;
	display: inline-block;
	vertical-align: middle;
	background: #000;
	background-size: cover;
	border-radius: 2px;
	transition: 1s;
}
section#covers > div:nth-child(1) {
	min-width: 0;
	height: 100px;
	transform: rotateY(60deg);
	opacity: 0;
}
section#covers > div:nth-child(7) {
	min-width: 0;
	height: 100px;
	transform: rotateY(-60deg);
	opacity: 0;
}
section#covers > div:nth-child(2) {
	min-width: 150px;
	height: 150px;
	transform: rotateY(45deg);
}
section#covers > div:nth-child(6) {
	min-width: 150px;
	height: 150px;
	transform: rotateY(-45deg);
}
section#covers > div:nth-child(3) {
	min-width: 200px;
	height: 200px;
	transform: rotateY(30deg);
}
section#covers > div:nth-child(5) {
	min-width: 200px;
	height: 200px;
	transform: rotateY(-30deg);
}
section#covers > div:nth-child(4) {
	min-width: 300px;
	height: 300px;
}

nav.bar {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-between;
}
nav.bar ul {
	min-width: 70px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}
nav.bar ul li {
	padding: 0;
	border-bottom: 0;
}
nav.bar li > ul {
	display: none;
}
nav.bar li:hover > ul {
	display: inline-block;
}

nav#barTop {
	position: absolute;
	left: 0;
	top: 0;
}

nav#barBottom {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 10;
	background: #333;
}
nav#barBottom div#now {
	flex-grow: 1;
}
nav#barBottom p {
	margin: 0;
	overflow: hidden;
}
nav#barBottom div.nowCover {
	width: 50px;
	height: 50px;
	margin: 10px;
	border-radius: 2px;
	background-color: #000;
	background-size: cover;
	float: left;
}
.icon-logo {
	display: block;
	width: 70px;
	height: 70px;
	margin-left: 20px;
	background-size: cover;
}

.icon::before {
	content: attr(data-icon);
	cursor: pointer;
	width: 70px;
	height: 70px;
	line-height: 70px;
	display: inline-block;
	text-align: center;
	text-transform: none;
	font-family: 'Simple-Line-Icons';
	font-weight: normal;
    font-variant: normal;
	font-size: 1rem;
	speak: none;
    -webkit-font-smoothing: antialiased;
}

.play::before			{ content: '\e071' }
input#checkboxPlay:checked + .play::before	{ content: '\e072' }
#full::before			{ content: '\e057' }
input#checkboxFull:checked ~ #player #full::before	{ content: '\e058' }
#www					{ background-image: url('/player/graphics/info.svg'); }

section#player > audio{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}

#scroll-up {
	bottom: 150px !important;
}