.lt-yt-playlist {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	height: 480px;
	min-height: 0;
	background: #000;
	overflow: hidden;
}

.lt-yt-playlist__player {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 0;
	height: 100%;
	background: #000;
	position: relative;
}

.lt-yt-playlist__player-target {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.lt-yt-playlist__player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.lt-yt-playlist__sidebar {
	flex: 0 0 120px;
	width: 120px;
	height: 100%;
	max-height: 100%;
	min-height: 0;
	align-self: stretch;
	background: #fff;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	border-left: 1px solid #e5e5e5;
}

.lt-yt-playlist__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lt-yt-playlist__item {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #f1f1f1;
}

.lt-yt-playlist__item-button {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 4px;
	width: 100%;
	padding: 6px 4px;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	color: inherit;
	font: inherit;
}

.lt-yt-playlist__item:hover .lt-yt-playlist__item-button,
.lt-yt-playlist__item.is-active .lt-yt-playlist__item-button {
	background: #e8f0fe;
}

.lt-yt-playlist__index {
	flex: 0 0 auto;
	width: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 0;
	font-size: 10px;
	line-height: 1;
	color: #606060;
}

.lt-yt-playlist__item.is-active .lt-yt-playlist__index {
	color: #065fd4;
}

.lt-yt-playlist__play-icon {
	display: block;
	width: 12px;
	height: 12px;
}

.lt-yt-playlist__thumb-wrap {
	position: relative;
	flex: 0 0 auto;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
}

.lt-yt-playlist__thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lt-yt-playlist__duration {
	position: absolute;
	right: 2px;
	bottom: 2px;
	padding: 0 3px;
	border-radius: 2px;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-size: 10px;
	line-height: 1.3;
	font-weight: 500;
}

.lt-yt-playlist__meta {
	flex: 1 1 auto;
	min-width: 0;
	padding-top: 0;
}

.lt-yt-playlist__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	font-size: 11px;
	line-height: 1.25;
	font-weight: 400;
	color: #0f0f0f;
}

.lt-yt-playlist__author {
	display: none;
}

.lt-yt-playlist__notice {
	padding: 16px;
	border: 1px solid #dcdcde;
	background: #fff;
	color: #50575e;
}

@media (max-width: 767px) {
	.lt-yt-playlist {
		flex-direction: column;
	}

	.lt-yt-playlist__sidebar {
		width: 100%;
		flex: 0 0 auto;
		max-height: 360px;
		border-left: 0;
		border-top: 1px solid #e5e5e5;
	}
}
