#root {
	display: flex;
	margin-bottom: 40px;
	font-family: Arial;
}

.playlist {
	display: flex;
    box-sizing: border-box;
    flex-direction: column;
    margin: 0 5px;
    height: 273px;
    width: 385px;
    overflow-y: hidden;
/*    border: 1px solid #CCCCCC;*/
    padding: 0 5px;
}
.playlist-item {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: 84px;
	flex-shrink: 0;
	transition: all 0.3s;
	margin-top: 5px;
	background-color: #f9f9f9 !important;
    font-size: 14px;
}

.playlist-item:hover {
	background-color: #ececec !important;
}

.center_arrow {
	width: 175px;
	text-align: center;
}
#iframe_yt {
	margin-top: 34px;
}
#root img:hover, .playlist-item:hover {
	cursor: pointer;
}
.arrow-up {
	transform: scaleY(-1)
}
.active-item {
	border-left: 10px solid red;
}

.vdo-title {
	width: 200px;
	float: left;
	padding: 10px 10px 10px 0px;
}

.vdo-thumb {
	width: 168px;
	float: left;
}

/* Mobile Styles */

@media (max-width: 767px) {
	#root {
		display: block;
	}
	
	.center_arrow {
		width: 100%;
	}
	
	.playlist {
		display: block;
		width: 100%;
		margin: 0px;
	}
	
	.embed-container { 
		position: relative; 
		padding-bottom: 56.25%; 
		height: 0; 
		overflow: hidden; 
		max-width: 100%; 
	} 

	.embed-container iframe, 
	.embed-container object, 
	.embed-container embed { 
		position: absolute; 
		top: 0; 
		left: 0; 
		width: 100%; 
		height: 100%; 
	}
	
	.vdo-title {
		font-size: 14px;
	}

	.vdo-thumb {
		width: 168px;
	}
	.playlist-item {
		background-size: contain;
	}
}

@media (max-width: 375px) {
	.vdo-title {
		font-size: 12px;
	}
	
	.vdo-thumb {
		width: 300px;
	}
	
	.playlist-item {
		background-size: contain !important;
	}
}

@media (max-width: 320px) {
	
	.playlist-item {
		background-size: 120px !important;
	}
}