
::Selection { color: #fff; background: #000;
}

/*
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    color: rgb(50, 50, 61);
    }
*/
#fade {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-linear-gradient(top, transparent 128px, rgb(0, 0, 0) 100%);
    }


#lastfm {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: row;
	/*justify-content: stretch;*/
	list-style: none;
	margin: 0;
	padding: 0;
	margin: 0 -10px;
	overflow: hidden;
	position: relative;
    }

#lastfm:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }

#lastfm .track {
	position: relative;
	margin: 0 0 30px;
	padding: 0 10px;
	width: 100%;
	}

@media only screen and (min-width: 400px) {
	#lastfm {
		margin: 0 -10px;
		}
	#lastfm .track {
		width: 50%;
		}
}
	
@media only screen and (min-width: 620px) {
	#lastfm .track {
		width: 33.3333%;
		}
}

@media only screen and (min-width: 880px) {
	#lastfm .track {
		width: 25%;
		}
}


#lastfm .track.nowplaying {
	}
#lastfm .track.nowplaying .nowplaying-banner {
	position: absolute;
	left: 10px;
	top: 0;
	z-index: 10;
	padding: 2px 6px 0 6px;
	font-size: 12px;
	border: 1px solid hsl(0, 0%, 20%);
	border-bottom-right-radius: 3px;
	background-image: -webkit-linear-gradient(top, hsl(0, 80%, 50%), hsl(0, 100%, 30%));
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
	}
/*
#lastfm .track .art {
    position: absolute;
    left: 10px;
    top: 16px;
    width: 72px;
    height: 72px;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }
*/
#lastfm .track .art img {
    position: relative;
    width: 100%;
    margin: 0 0 10px;
    height: auto;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(255, 255, 255, 0.6);
    }
/*
#lastfm .track .art .gloss {
    position: absolute;
    left: 0;
    top: 0;
    width:72px;
    height:72px;
    border-radius: 2px;
    box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.4);
    background-image: -webkit-linear-gradient(-60deg, rgba(255, 255, 255, 0.0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.0) 50%, rgba(255, 255, 255, 0.05) 100%);
    }
*/
#lastfm .track .song {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }

#lastfm .track .artist {
    padding-bottom: 1px;
    font-size: 14px;
    color: hsl(0, 0%, 60%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*
#lastfm .track .album {
    padding-bottom: 1px;
    font-size: 14px;
    color: hsl(0, 0%, 40%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }

#lastfm .track .time {
    padding-bottom: 3px;
    font-size: 12px;
    color: hsl(0, 0%, 30%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    }
*/