/* Episode player */
.rpp-player-wrap {
	margin: 24px 0;
}

.rpp-player-actions {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 10px;
}

.rpp-popout-btn,
.rpp-download-btn {
	display: inline-block;
	cursor: pointer;
	background: none;
	border: 1px solid currentColor;
	border-radius: 3px;
	padding: 4px 12px;
	font-size: 12px;
	font-family: inherit;
	text-decoration: none;
	color: inherit;
	opacity: .65;
	transition: opacity .15s;
}

.rpp-popout-btn:hover,
.rpp-download-btn:hover {
	opacity: 1;
	text-decoration: none;
}

/* Sticky player bar */
.rpp-sticky {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #1a1a2e;
	color: #fff;
	padding: 10px 16px;
	z-index: 99999;
	transform: translateY(100%);
	transition: transform .25s ease;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, .4);
}

.rpp-sticky--visible {
	transform: translateY(0);
}

.rpp-sticky-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 960px;
	margin: 0 auto;
}

.rpp-sticky-playpause {
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	padding: 0;
	flex-shrink: 0;
}

.rpp-sticky-title {
	flex: 1;
	font-size: 13px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	opacity: .85;
}

.rpp-sticky-popout,
.rpp-sticky-close {
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	opacity: .55;
	flex-shrink: 0;
	padding: 0 4px;
	line-height: 1;
	transition: opacity .15s;
}

.rpp-sticky-popout:hover,
.rpp-sticky-close:hover {
	opacity: 1;
}

/* Subscribe prompt */
.rpp-subscribe-prompt {
	margin: 24px 0;
}

/* Chapters */
.rpp-chapters {
	margin: 24px 0;
}

.rpp-chapters__heading {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin: 0 0 10px;
	opacity: .6;
}

.rpp-chapters__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.rpp-chapters__btn {
	display: flex;
	align-items: baseline;
	gap: 10px;
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px 10px;
	border-radius: 4px;
	text-align: left;
	font-family: inherit;
	font-size: 14px;
	color: inherit;
	transition: background .12s;
}

.rpp-chapters__btn:hover {
	background: rgba(255, 255, 255, .07);
}

.rpp-chapters__btn--active {
	background: rgba(255, 255, 255, .12);
}

.rpp-chapters__time {
	font-variant-numeric: tabular-nums;
	font-size: 12px;
	opacity: .55;
	flex-shrink: 0;
	min-width: 38px;
}

.rpp-chapters__label {
	opacity: .9;
}
