.wpmp3-player {
	box-sizing: border-box;
	max-width: 100%;
	margin: 1rem 0;
	padding: 1rem;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
	background: #fff;
}

.wpmp3-player__title {
	margin: 0 0 .65rem;
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.35;
}

.wpmp3-player__audio {
	display: block;
	width: 100%;
}

.wpmp3-player__actions {
	margin-top: .65rem;
}

.wpmp3-player__download {
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
}

.wpmp3-player-error {
	padding: .75rem 1rem;
	border-left: 4px solid #cc1818;
	background: #fff5f5;
}

.wpmp3-playlist {
	box-sizing: border-box;
	max-width: 100%;
	margin: 2rem 0;
	padding: 1.25rem;
	border: 1px solid #d8d8d8;
	border-radius: 14px;
	background: #fafafa;
}

.wpmp3-playlist__title {
	margin: 0 0 .5rem;
	font-size: 1.45rem;
	line-height: 1.25;
}

.wpmp3-playlist__description {
	margin: 0 0 1rem;
}

.wpmp3-playlist__description p:last-child {
	margin-bottom: 0;
}

.wpmp3-playlist__tracks {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpmp3-playlist__track {
	margin: 0;
	padding: 1rem 0;
	border-top: 1px solid #e2e2e2;
}

.wpmp3-playlist__track:first-child {
	border-top: 0;
	padding-top: 0;
}

.wpmp3-playlist__track:last-child {
	padding-bottom: 0;
}

.wpmp3-playlist__track-heading {
	display: flex;
	gap: .65rem;
	align-items: baseline;
	margin-bottom: .6rem;
	font-weight: 700;
	line-height: 1.35;
}

.wpmp3-playlist__track-number {
	min-width: 1.8rem;
	font-variant-numeric: tabular-nums;
	opacity: .7;
}

.wpmp3-player--playlist {
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.wpmp3-player--playlist .wpmp3-player__actions {
	margin-top: .5rem;
}

.wpmp3-playlist__cover {
	margin: 0 0 1rem;
}

.wpmp3-playlist__cover img {
	display: block;
	max-width: 260px;
	height: auto;
	border-radius: 12px;
}

.wpmp3-playlist__track-inner {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.wpmp3-playlist__track-image {
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 10px;
}

.wpmp3-playlist__track-main {
	flex: 1 1 auto;
	min-width: 0;
}

.wpmp3-playlist__lyrics {
	margin-top: .75rem;
}

.wpmp3-playlist__lyrics summary {
	cursor: pointer;
	font-weight: 600;
}

.wpmp3-playlist__lyrics-content {
	margin-top: .5rem;
	padding: .75rem;
	border-left: 3px solid #d8d8d8;
	background: #fff;
	white-space: normal;
	max-height: 320px;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.wpmp3-playlist__missing-audio,
.wpmp3-playlist__empty {
	margin: .25rem 0 0;
	font-style: italic;
	opacity: .75;
}

@media (max-width: 520px) {
	.wpmp3-playlist__track-inner {
		display: block;
	}

	.wpmp3-playlist__track-image {
		margin: 0 0 .75rem;
	}
}

.wpmp3-playlist__song-list {
	margin-top: 1rem;
}

.wpmp3-playlist__song-list-summary {
	display: flex;
	gap: .75rem;
	align-items: center;
	justify-content: space-between;
	padding: .75rem 1rem;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	font-weight: 700;
	line-height: 1.35;
}

.wpmp3-playlist__song-list-summary::-webkit-details-marker {
	display: none;
}

.wpmp3-playlist__song-list-summary::before {
	content: "+";
	flex: 0 0 auto;
	width: 1.35rem;
	height: 1.35rem;
	border: 1px solid currentColor;
	border-radius: 999px;
	text-align: center;
	line-height: 1.2rem;
	font-weight: 700;
}

.wpmp3-playlist__song-list[open] > .wpmp3-playlist__song-list-summary::before {
	content: "–";
}

.wpmp3-playlist__song-list-label {
	flex: 1 1 auto;
}

.wpmp3-playlist__song-list-count {
	flex: 0 0 auto;
	font-size: .92rem;
	font-weight: 600;
	opacity: .75;
}

.wpmp3-playlist__song-list-panel {
	padding-top: 1rem;
}

.wpmp3-playlist__song-list-panel .wpmp3-playlist__tracks {
	margin-top: 0;
}

@media (max-width: 520px) {
	.wpmp3-playlist__song-list-summary {
		align-items: flex-start;
		justify-content: flex-start;
	}

	.wpmp3-playlist__song-list-count {
		margin-left: auto;
	}
}

.wpmp3-playlist__buy {
	margin: .5rem 0 1rem;
}

.wpmp3-playlist__track-buy {
	margin: .5rem 0 0;
}

.wpmp3-playlist__buy-link {
	display: inline-block;
	padding: .4rem .9rem;
	border-radius: 6px;
	background: #1d1f23;
	color: #fff;
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.wpmp3-playlist__buy-link:hover,
.wpmp3-playlist__buy-link:focus {
	background: #34373d;
	color: #fff;
}

.wpmp3-playlist__track-buy .wpmp3-playlist__buy-link {
	padding: .25rem .7rem;
	font-size: .82rem;
}

.wpmp3-player__viz {
	display: block;
	width: 100%;
	height: 40px;
	margin-top: .5rem;
	color: #1d1f23;
}

.wpmp3-player__viz[hidden] {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.wpmp3-player__viz {
		display: none;
	}
}

.wpmp3-playlist__donate {
	margin: .5rem 0 1rem;
}

.wpmp3-playlist__track-donate {
	margin: .35rem 0 0;
}

.wpmp3-playlist__donate-link {
	display: inline-block;
	padding: .4rem .9rem;
	border: 1px solid #1d1f23;
	border-radius: 6px;
	background: transparent;
	color: #1d1f23;
	font-size: .9rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.wpmp3-playlist__donate-link:hover,
.wpmp3-playlist__donate-link:focus {
	background: #1d1f23;
	color: #fff;
}

.wpmp3-playlist__track-donate .wpmp3-playlist__donate-link {
	padding: .2rem .65rem;
	font-size: .8rem;
}
