.playlist-lp {
	display: flex;
	flex-direction: column;
	padding-right: 34px;
}

.playlist-lp,
.playlist-lp a {
	color: #fff;
}

.custom-player {
	max-height: 312px;
	overflow-y: scroll;
}

/* Scrollbar styling */
.custom-player::-webkit-scrollbar {
	width: 2.544px; /* Vertical scrollbar width */
}

/* Scrollbar track (background) */
.custom-player::-webkit-scrollbar-track {
	background: transparent;
	border-radius: 5px;
}

/* Scrollbar thumb (draggable part) */
.custom-player::-webkit-scrollbar-thumb {
	background: #494949;
	border-radius: 9.504px;
}

/* Scrollbar thumb on hover */
.custom-player::-webkit-scrollbar-thumb:hover {
	background: #808080;
}

.audio-player {
	display: flex;
	align-items: center;
	flex: 1 1 100%;
	padding-block: 16px;
	border-bottom: 1px solid #2f2f2f;
}

.audio-player:first-child {
	padding-top: 0;
}

.audio-player:last-child {
	border: 0px;
}

.audio-details {
	display: flex;
	gap: 24px;
	align-items: center;
}

.audio-image {
	flex-shrink: 0;
}

.audio-image img {
	width: 48px;
	height: 48px;
}

.play-pause-btn {
	background: transparent;
	border: none;
	padding: 0;
	display: flex;
	height: 100%;
}

.audio-names {
	display: flex;
	flex-direction: column;
	width: 70px;
	white-space: nowrap;
	overflow: hidden;
	/*mask: linear-gradient(90deg, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);*/
}

.song-name {
	font-family: 'artlist sans', Sans-serif !important;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: -0.14px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.artist-name {
	font-family: 'artlist sans', Sans-serif !important;
	font-size: 10px;
	font-style: normal;
	font-weight: 300;
	line-height: 210%;
	letter-spacing: -0.1px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.audio-categories {
	display: none;
}

.audio-waveform {
	flex: 1 1 auto;
	margin-left: 64px;
}

.audio-waveform .waveform-container,
.audio-waveform wave {
	max-width: 100% !important;
	overflow: hidden !important;
}

.audio-duration {
	margin-left: 24px;
	font-family: 'artlist sans', Sans-serif !important;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: 210%;
	letter-spacing: -0.1px;
}

@media (max-width: 1024px) {
	.custom-player {
		max-height: 224px;
	}

	.audio-image img {
		width: 47.117px;
		height: 47.117px;
	}

	.audio-names {
		width: 100px;
	}

	.song-name {
		font-size: 16px;
		letter-spacing: -0.16px;
		line-height: 129.75%;
	}

	.artist-name {
		font-size: 12px;
		letter-spacing: -0.12px;
		line-height: 173%;
	}

	.audio-waveform {
		margin-left: 28px;
	}

	.audio-duration {
		font-size: 12px;
		letter-spacing: -0.12px;
		line-height: 173%;
	}
}

@media (max-width: 768px) {
	.custom-player {
		max-height: 294px;
	}

	.audio-image img {
		width: 44.55px;
		height: 44.55px;
	}
}

@media (max-width: 460px) {
	.custom-player {
		max-height: 186px;
	}

	.audio-player {
		padding-block: 10px;
	}

	.audio-details {
		gap: 12px;
		width: calc(100% - 47.23px);
	}

	.audio-names {
		flex-direction: row;
		margin-left: 7px;
		max-width: unset;
		gap: 4px;
		align-items: baseline;
		flex: 0 1 auto;
		text-overflow: ellipsis;
		overflow: hidden;
		width: auto;
	}

	.artist-name {
		line-height: 1;
	}

	.song-name {
		line-height: 1;
		flex-shrink: 0;
		max-width: 100%;
	}

	.audio-waveform {
		display: none;
	}

	.audio-duration {
		line-height: 10.575px;
	}
}
