/* Playlists :::::::::::::::::::::::::::::::::::::::: */

.playlists {
	display: block;
	width: 100%;
	margin: 3vw 0 2vw 0;
	box-sizing: border-box;
	clear: both;
}
.playlist {
	display: inline-block;
	position: relative;
	float: left;
	background-color: #333;
	width: 48%;
	margin: 0 2% 2% 0;
	border: 1px solid #333;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	box-shadow: 1px 1px 3px rgba(0,0,0,0.4);
	overflow: hidden;
}
.playlist:nth-of-type(even) {
	margin-right: 0;
}
.playlist-80s {
	background-color: #208051;
}
.playlist-am {
	background-color: #805115;
}
.playlist-covers {
	background-color: #808080;
}
.playlist-chrome-city {
	background-color: #2470c4;
}
.playlist-ebm {
	background-color: #335180;
}
.playlist-exotica {
	background-color: #066006;
}
.playlist-goth {
	background-color: #333333;
}
.playlist-gothic-depths {
	background-color: #422439;
}
.playlist-goth-rock {
	background-color: #241542;
}
.playlist-harsh-realm {
	background-color: #800909;
}
.playlist-industrial {
	background-color: #244566;
}
.playlist-lounge {
	background-color: #606600;
}
.playlist-night-city {
	background-color: #001833;
}
.playlist-nordic-folk {
	background-color: #1566cf;
}
.playlist-rock-70s {
	background-color: #451212;
}
.playlist-the-noise-room {
	background-color: #453300;
}
.playlist:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: transparent url('../images/bg-ballroom-floor.jpg') left top repeat;
	background-size: 150px 150px;
	width: 100%;
	height: 100%;
	opacity: 0.5;
}
.playlist-title,
.playlist-load,
.playlist-embed,
.playlist-toggle {
	display: inline-block;
	position: relative;
	float: left;
	height: 180px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.playlist-title {
	width: 40%;
	width: -moz-calc(50% - 60px);
	width: -webkit-calc(50% - 60px);
	width: calc(50% - 60px);
	color: #e6e6ff;
	padding: 10px 6px 6px 10px;
}
.playlist-title h3 {
	display: block;
	font-size: 20px;
	font-size: 1.25em;
	margin: 0 0 6px 0;
}
.playlist-title p {
	display: block;
	font-size: 14px;
}
.playlist-title p span {
	font-style: italic;
}
.playlist-title a {
	color: #e6e6ff;
	border-bottom: 1px dotted rgba(230,204,255,0.5);
}
.playlist-toggle {
	width: 60px;
	padding: 6px 0 0 0;
}
.playlist-toggle a {
	display: block;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 0;
	font-weight: 400;
	color: #e6e6ff;
	line-height: 0;
	text-transform: uppercase;
	text-align: center;
	vertical-align: top;
}
.playlist.loaded .playlist-toggle a {
	font-size: 12px;
	line-height: 1;
}
.playlist-toggle a:before {
	content: "";
}
.playlist.loaded .playlist-toggle a:before {
	content: "\25bc";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 30px;
	text-shadow: 0px 1px 3px rgba(255,255,255,0.5);
	margin: 6px 0 0 0;
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.playlist.loaded.open .playlist-toggle a:before {
	content: "\25b2";
	margin: 0 0 6px 0;
}
.playlist-load,
.playlist-embed {
	float: right;
	text-align: right;
	width: 50%;
}
.playlist-load {
	background: #333 url('../images/bg-playlist-load.jpg') left top no-repeat;
	background-size: cover;
	font-family: 'Milonga', 'Lora', Georgia, Times, serif;
	font-size: 24px;
	color: rgba(255,255,255,0.7);
	line-height: 1;
	text-align: center;
	letter-spacing: 0.5px;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.playlist-load:hover,
.playlist-load:active {
	color: rgba(255,255,255,1);
}
.playlist-load span {
	display: inherit;
	padding-top: 20px;
}
.playlist.loaded .playlist-load {
	display: none;
}
.playlist-thumbnail {
	display: inline;
	float: left;
	width: auto;
	height: 100%;
}
.playlist-embed {
	display: none;
	-webkit-transition: height 0.3s ease;
	-moz-transition: height 0.3s ease;
	-o-transition: height 0.3s ease;
	transition: height 0.3s ease;
}
.playlist.loaded .playlist-embed {
	display: inline-block;
}
.playlist.open .playlist-embed {
	height: 306px;
}
.playlist-embed iframe {
	width: 100%;
	height: 100%;
}
.playlist-tracks {
	display: block;
	float: left;
	width: 100%;
	height: auto;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height 0.3s ease;
	-moz-transition: max-height 0.3s ease;
	-o-transition: max-height 0.3s ease;
	transition: max-height 0.3s ease;
}
.playlist.open .playlist-tracks {
	max-height: 1000px;
}
.playlist-tracks .track {
	display: block;
	width: 100%;
	height: auto;
	font-size: 14px;
	line-height: 1;
	padding: 4px 0 4px 6px;
	box-sizing: border-box;
	border-top: 1px dotted #333;
}
.playlist-tracks .track:first-of-type {
	border-top: 1px solid #333;
}

/* Media Queries :::::::::::::::::::::::::::::::::::::::: */

@media only screen and (max-width: 1360px) {
	.playlist,
	.playlist:nth-of-type(even) {
		display: block;
		width: 100%;
		margin: 0 0 2% 0;
		clear: both;
	}
	.playlist-title,
	.playlist-load,
	.playlist-embed,
	.playlist-toggle {
		height: 110px;
	}
	.playlist-title p {
		font-size: 14px;
	}
}

@media only screen and (max-width: 1240px) {
}

@media only screen and (max-width: 1110px) {
	.playlist-title {
		width: -moz-calc(100% - 60px);
		width: -webkit-calc(100% - 60px);
		width: calc(100% - 60px);
		height: auto;
		padding: 10px 10px 10px 10px;
	}
	.playlist-load,
	.playlist-embed {
		width: 100%;
	}
	.playlist-toggle {
		float: right;
	}
}

@media only screen and (max-width: 1024px) {
}

@media only screen and (max-width: 768px) {
}

@media only screen and (max-width: 660px) {
}

@media only screen and (max-width: 480px) {
}