/* Wrapper for the player */
div.audiojs-wrapper { width: 0px;
	position: absolute;
	left: -9999px;	
	}

/* Wrapper for player and playlist */
div.playlist {
	width: 900px;
	margin: 0px auto;
	}

/* Styles for the playlist */
ol {
    padding: 0px;
    margin: 0 5px;
    list-style: none;
    color: #000;
    width: 900px;
    font-size: 0.9em;
}
ol li {
	color: #000;
	font-size: 1.2em;
	padding: 10px 0;
	list-style-type: none;
	border-bottom: 1px solid #bec176;
	cursor: pointer;
	}
li.playing a, li a {
    color: #000 !important;
    display: block;
}
.playlist li:hover, .playlist a:hover {
	color: #653607 !important;
	cursor: pointer;
}
.playlist li.playing div.audiothumbnail::before {
	color: #c36e04;
	content: "\266B";
	position: relative;
	right: 140px;
	bottom: 18px;
	font-size: 2.8rem;
	text-decoration: none !important;
	line-height: 1em;
}
div.audioinfo {
	display: inline-block;
    vertical-align: top;
}
div.audioinfo span {
    font-weight: bold;
}
div.audiothumbnail {
	vertical-align: bottom;
	float: right;
	height: 60px;
}
img.audiothumb {
    border: 1px solid #312111;
}
/* Loading Spinner for mobile devices */
@media only screen and (max-device-width: 1366px) {
	#spinner {
		position: fixed;
		top: 45%;
		left: 50%;
		background-color: transparent;
		border: 6px solid #f3f3f3;
		border-radius: 50%;
		border-top: 6px solid #c36e04;
		width: 20px;
		height: 20px;
		-webkit-animation: spin 2s linear infinite; /* Safari */
		animation: spin 2s linear infinite;
		display: block;
	}

	/* Safari */
	@-webkit-keyframes spin {
		0% { -webkit-transform: rotate(0deg); }
		100% { -webkit-transform: rotate(360deg); }
	}

	@keyframes spin {
		0% { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
	}

}