/* vod/playlist.html + vod/detail_data2.html */
@media (max-width: 768px) {
	.playlist-panel {
		margin-top: -10px !important;
	}
}

.player-buttons {
	padding: 15px;
	margin-bottom: 10px;
}

.player-btn {
	width: 140px;
	height: 36px;
	margin: 0 10px 10px 0;
	float: left;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.player-buttons::after {
	content: "";
	display: table;
	clear: both;
}

.player-buttons .btn {
	margin-right: 10px;
	margin-bottom: 5px;
	position: relative;
}

.player-buttons .badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #ff6b35;
	color: white;
	border-radius: 10px;
	padding: 2px 6px;
	font-size: 10px;
	line-height: 1;
}

@media (max-width: 480px) {
	.player-buttons {
		display: flex;
		flex-wrap: wrap;
		padding: 15px;
		gap: 8px;
	}
	
	.player-btn {
		width: calc(25% - 6px);
		height: 36px;
		margin: 0;
		padding: 8px;
		font-size: 12px;
		float: none;
		flex: 0 0 auto;
		text-align: center;
	}
}

@media (min-width: 481px) and (max-width: 767px) {
	.player-btn {
		width: 110px;
		margin: 0 8px 10px 0;
	}
}
