.dnb-wpl {
	--dnb-wpl-bg: #101710;
	--dnb-wpl-fg: #eaf1e8;
	--dnb-wpl-muted: #8aa086;
	--dnb-wpl-wave: #77b769;
	--dnb-wpl-progress: #30b314;
	--dnb-wpl-border: rgba(34, 43, 32, 0.18);
	display: block;
	width: 100%;
	margin: 0 0 14px;
	color: var(--dnb-wpl-fg);
	font: inherit;
}

.dnb-wpl__title {
	margin: 0 0 8px;
	color: #111;
	font-weight: 700;
	line-height: 1.25;
}

.dnb-wpl__stage {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 10px;
	min-height: 58px;
	padding: 8px 10px;
	background: var(--dnb-wpl-bg);
	border: 1px solid var(--dnb-wpl-border);
	border-radius: 6px;
}

.dnb-wpl__button {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	color: var(--dnb-wpl-bg);
	background: var(--dnb-wpl-fg);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
}

.dnb-wpl__button:focus-visible {
	outline: 2px solid var(--dnb-wpl-progress);
	outline-offset: 2px;
}

.dnb-wpl__play {
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 14px solid currentColor;
}

.dnb-wpl.is-playing .dnb-wpl__play {
	width: 14px;
	height: 18px;
	margin-left: 0;
	border: 0;
	background:
		linear-gradient(to right, currentColor 0 35%, transparent 35% 65%, currentColor 65% 100%);
}

.dnb-wpl__wave {
	display: block;
	width: 100%;
	height: 42px;
	cursor: pointer;
}

.dnb-wpl__time {
	min-width: 42px;
	color: var(--dnb-wpl-muted);
	font-size: 12px;
	line-height: 1;
	text-align: right;
	font-variant-numeric: tabular-nums;
}

.dnb-wpl__cart,
.dnb-wpl-sticky__cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	color: #101710;
	background: #30b314;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.dnb-wpl__cart:hover,
.dnb-wpl-sticky__cart:hover {
	color: #101710;
	background: #58cf43;
	text-decoration: none;
}

.dnb-wpl__cart[hidden],
.dnb-wpl-sticky__cart[hidden] {
	display: none;
}

.dnb-wpl__track {
	margin-top: 5px;
	color: #333;
	font-size: 13px;
	line-height: 1.35;
}

.dnb-wpl.is-empty,
.dnb-wpl audio {
	display: none;
}

.dnb-wpl-thumb-wrap {
	position: relative;
	display: inline-block;
	max-width: 100%;
	line-height: 0;
	vertical-align: top;
}

.dnb-wpl-thumb-wrap img {
	display: block;
	max-width: 100%;
	height: auto;
}

.dnb-wpl-thumb-wrap--single {
	display: block;
	width: 100%;
	line-height: inherit;
}

.dnb-wpl-thumb-wrap--single img {
	width: 100%;
}

.dnb-wpl--thumb {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	margin: 0;
	background: rgba(0, 0, 0, 0.04);
	transition: background-color 160ms ease;
}

.dnb-wpl--thumb:hover,
.dnb-wpl--thumb.is-playing {
	background: rgba(0, 0, 0, 0.18);
}

.dnb-wpl--thumb .dnb-wpl__button {
	width: 60px;
	height: 60px;
	color: #101710;
	background: rgba(234, 241, 232, 0.94);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.dnb-wpl-thumb-wrap img[width="1"],
.dnb-wpl-thumb-wrap img[height="1"] {
	width: auto;
	height: auto;
}

.dnb-wpl--thumb .dnb-wpl__track {
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 8px;
	margin: 0;
	padding: 4px 6px;
	overflow: hidden;
	color: #fff;
	background: rgba(0, 0, 0, 0.62);
	border-radius: 4px;
	font-size: 11px;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
	opacity: 0;
	transition: opacity 160ms ease;
}

.dnb-wpl--thumb.is-playing .dnb-wpl__track {
	opacity: 1;
}

.dnb-wpl-sticky {
	position: fixed;
	right: 16px;
	bottom: 16px;
	left: 16px;
	z-index: 9999;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) auto auto 28px;
	grid-template-areas:
		"button meta meta cart close"
		"button seek time cart close";
	align-items: center;
	gap: 8px 10px;
	width: auto;
	max-width: none;
	padding: 10px;
	color: #eaf1e8;
	background: #101710;
	border: 1px solid rgba(234, 241, 232, 0.18);
	border-radius: 8px;
	box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

.dnb-wpl-sticky[hidden] {
	display: none;
}

.dnb-wpl-sticky__meta {
	grid-area: meta;
	min-width: 0;
}

.dnb-wpl-sticky__label {
	color: #8aa086;
	font-size: 11px;
	line-height: 1.1;
	text-transform: uppercase;
}

.dnb-wpl-sticky__title {
	overflow: hidden;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.dnb-wpl-sticky__button,
.dnb-wpl-sticky__close {
	display: inline-grid;
	place-items: center;
	margin: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
}

.dnb-wpl-sticky__button {
	grid-area: button;
	align-self: stretch;
	width: 40px;
	height: 40px;
	color: #101710;
	background: #eaf1e8;
	border-radius: 50%;
}

.dnb-wpl-sticky.is-paused .dnb-wpl-sticky__button .dnb-wpl__play {
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 14px solid currentColor;
	background: none;
}

.dnb-wpl-sticky:not(.is-paused) .dnb-wpl-sticky__button .dnb-wpl__play {
	width: 14px;
	height: 18px;
	margin-left: 0;
	border: 0;
	background:
		linear-gradient(to right, currentColor 0 35%, transparent 35% 65%, currentColor 65% 100%);
}

.dnb-wpl-sticky__seek {
	grid-area: seek;
	padding: 14px 0;
	cursor: pointer;
}

.dnb-wpl-sticky__bar {
	height: 6px;
	overflow: hidden;
	background: rgba(234, 241, 232, 0.22);
	border-radius: 999px;
}

.dnb-wpl-sticky__progress {
	width: 0%;
	height: 100%;
	background: #30b314;
	border-radius: inherit;
}

.dnb-wpl-sticky__time {
	grid-area: time;
	color: #b8c8b4;
	font-size: 12px;
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
}

.dnb-wpl-sticky__cart {
	grid-area: cart;
	min-height: 32px;
}

.dnb-wpl-sticky__close {
	grid-area: close;
	align-self: start;
	width: 28px;
	height: 28px;
	color: #eaf1e8;
	background: transparent;
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
}

.dnb-wpl-sticky__close:hover {
	background: rgba(234, 241, 232, 0.12);
}

@media (max-width: 549px) {
	.dnb-wpl__stage {
		grid-template-columns: 40px minmax(0, 1fr) auto;
		gap: 8px;
	}

	.dnb-wpl__time {
		display: none;
	}

	.dnb-wpl__cart {
		min-height: 32px;
		padding: 0 10px;
		font-size: 11px;
	}

	.dnb-wpl--thumb .dnb-wpl__button {
		width: 54px;
		height: 54px;
	}

	.dnb-wpl-sticky {
		right: 8px;
		bottom: 8px;
		left: 8px;
		width: auto;
		grid-template-columns: 40px minmax(0, 1fr) auto 28px;
		grid-template-areas:
			"button meta cart close"
			"button seek cart close";
		gap: 8px;
	}

	.dnb-wpl-sticky__meta {
		grid-area: meta;
	}

	.dnb-wpl-sticky__button {
		grid-area: button;
	}

	.dnb-wpl-sticky__seek {
		grid-area: seek;
		padding: 8px 0;
	}

	.dnb-wpl-sticky__time {
		display: none;
	}

	.dnb-wpl-sticky__close {
		grid-area: close;
	}

}
