.play_list a {
	text-decoration: none;
}
.playlist-description {
	width: 0px;
	height: 270px;
	text-decoration: none !important;

	background: black;
	transition: all 0.7s ease;
}

.playlist-container {
	display: flex;
	flex-direction: row;

	.video-latest-list {
		filter: saturate(1);
	}
}
.playlist-container:hover {
	.video-latest-list {
		width: 200px !important;
		filter: saturate(1.5);
	}
	.playlist-description {
		width: calc(100% - 200px);
		padding: 20px 20px;
		
		color: white;
	}
	.playlist-title {
		font-size: 24px;
		font-weight: bold;
	}
}