.maluco-playlist {
	background: #fff;
	box-sizing: border-box;
	display: flex;
	height: 400px;
	max-width: 100%;
	overflow: hidden;
	width: 100%;
}

.maluco-playlist__player {
	background: #000;
	flex: 1 1 62%;
	min-width: 0;
	position: relative;
}

.maluco-playlist__frame {
	border: 0;
	display: block;
	height: 100%;
	width: 100%;
}

.maluco-playlist__side {
	background: #fdf6ec;
	box-sizing: border-box;
	display: flex;
	flex: 0 0 38%;
	flex-direction: column;
	min-width: 220px;
}

.maluco-playlist__heading {
	color: #a3691e;
	flex: 0 0 auto;
	font-family: Pacifico, cursive;
	font-size: 1.5rem;
	font-weight: 400;
	padding: 12px 16px 8px;
}

.maluco-playlist__list {
	flex: 1 1 auto;
	list-style: none;
	margin: 0;
	overflow-y: auto;
	padding: 0;
}

.maluco-playlist__item {
	align-items: center;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #fdf6ec;
	color: #a3691e;
	cursor: pointer;
	display: flex;
	font-family: "Noto Sans", sans-serif;
	font-size: 0.85rem;
	gap: 10px;
	letter-spacing: 0.2px;
	padding: 8px 12px;
	text-align: left;
	width: 100%;
}

.maluco-playlist__item.is-active,
.maluco-playlist__item:hover,
.maluco-playlist__item:focus {
	background: rgba(163, 105, 30, 0.08);
}

.maluco-playlist__thumb {
	flex: 0 0 72px;
}

.maluco-playlist__thumb img {
	border-radius: 3px;
	display: block;
	height: 40px;
	object-fit: cover;
	width: 72px;
}

.maluco-playlist__item-title {
	display: block;
	line-height: 1.3;
}

@media (max-width: 767px) {
	.maluco-playlist {
		flex-direction: column;
		height: 75vh;
	}

	.maluco-playlist__player {
		flex: 1 1 55%;
		min-height: 180px;
	}

	.maluco-playlist__side {
		flex: 1 1 45%;
		min-width: 0;
	}
}
