/*!
(C)2011-2018 by Don Stamey, MacWisdom Systems, http://www.macwisdom.com. All rights reserved.
This module may not be copied, modified, or used without written permission of the above owner.
*/
/* gg.AudioPlayer.css */

.gg-audioPlayer {
	display: table;
	position: relative; /* put this element on equal layering terms (smae z-index layer) with absolute elements */
	max-width: 100%;
	margin: auto;
	border: 2px solid #555;
	border-radius: 4px;
	padding: 4px 10px;
	text-align: left;
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	line-height: 100%;
	color: #fff;
	background-color: #000;
}
.gg-audioPlayer [data-id="btnGroup"] {
	margin-bottom: 8px;
	white-space: nowrap;
}
/*
.gg-audioPlayer [data-id="startBtn"] {
	display: inline-block;
	border: 1px solid #222;
	border-radius: 4px;
	padding: 1px 6px;
	font-size: 10px;
	color: #222;
	background-color: #eee;
	cursor: pointer;
}
*/
.gg-audioPlayer [data-id="currentSong"] {
	padding: 4px;
	margin: 2px;
	text-align: center;
	font-size: 110%;
	font-weight: bold;
	color: #ea3;
}
.gg-audioPlayer [data-id="audio-enclosure"] {
	padding-bottom: .75em;
	border-bottom: 1px solid;
}
.gg-audioPlayer [data-id="songList"] {
	display: table;
	margin: 10px auto;
}
.gg-audioPlayer [data-id="songList"] > div {
	display: inline-block;
	max-width: 400px;
	max-height: 500px;
	border: 1px solid #888;
	overflow: auto;
}
.gg-audioPlayer [data-id="songList"] table {
	width: 100%;
	border-spacing: 12px 4px;
	padding: 2px 1px;
}
.gg-audioPlayer [data-id="songList"] td {
	white-space: nowrap;
	cursor: pointer;
}
.gg-audioPlayer [data-id="songList"] td:first-child {
	display: none;
}
.gg-audioPlayer [data-id="songList"] td:nth-child(3) {
	text-align: right;
}
.gg-audioPlayer [data-songfile]:hover {
	color: #88f;
	text-decoration: underline;
}
.gg-audioPlayer [data-id="selected"] {
	font-style: italic;
	color: #ea3;
}
.gg-audioPlayer [data-id="author"] {
	text-align: center;
	font-size: 10px;
	font-style: italic;
	color: #888;
}
/* use this locally for auto-numbering
body {
  counter-reset: songTrackNum;
}
.gg-audioPlayer [data-id="songList"] td:first-child::before {
  counter-increment: songTrackNum;
  content: counter(songTrackNum);
}
*/
