.list-channels .item.video-block .img-holder .label.positive {
	background: #4caf50;
	color: #fff;
}
.list-channels .item.video-block .img-holder .label.negative {
	background: #e74c3c;
	color: #fff;
}

.content-holder.list-channels .video-block {
  width: 16.66%;
}

@media (max-width: 1250px) {
  .content-holder.list-channels .video-block {
    width: 20%;
  }
}

@media (max-width: 1100px) {
  .content-holder.list-channels .video-block {
    width: 25%;
  }
}

@media (max-width: 880px) {
  .content-holder.list-channels .video-block {
    width: 33.33%;
  }
}

@media (max-width: 550px) {
  .content-holder.list-channels .video-block {
    width: 50%;
  }
}

@media (max-width: 380px) {
  .content-holder.list-channels .video-block {
    width: 100%;
  }
}

.content-holder.list-channels .video-block .img-holder {
  padding-bottom: 139.83%;
}

.film {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	padding: 16px;
	background: #313131;
	border-radius: 4px;
}
.film__img {
	flex: 0 0 220px;
	max-width: 220px;
	position: relative;
}
.film__img figure {
	margin: 0;
	border-radius: 4px;
	overflow: hidden;
	background: #0f0f0f;
}
.film__img figure a {
	display: block;
}
.film__img figure img {
	width: 100%;
	height: auto;
	display: block;
}
.film__img .no-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 280px;
	color: #777;
	font-size: 14px;
	background: #0f0f0f;
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
}
.film__img_details {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 10px;
	font-size: 13px;
	color: #bbb;
}
.film__img_details i {
	margin-right: 4px;
	color: #888;
}

.film__info {
	flex: 1 1 auto;
	min-width: 0;
}
.film__list {
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
}
.film__list li {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 6px 0;
	border-bottom: 1px solid #262626;
	font-size: 14px;
	line-height: 1.4;
}
.film__list li:last-child {
	border-bottom: 0;
}
.film__list li.bb_gray {
	display: block;
	padding: 8px 12px;
	margin-bottom: 8px;
	background: #2a2a2a;
	border-radius: 3px;
	border-bottom: 0;
	text-align: center;
}
.film__list li.bb_gray > span {
	flex: none;
	color: #999;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.film__list li > span:first-child {
	flex: 0 0 160px;
	color: #888;
}
.film__list li a {
	color: #ff9800;
	text-decoration: none;
}
.film__list li a:hover {
	text-decoration: underline;
}

.film__tags {
	margin: 12px 0;
}
.film__tags ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}
.film__tags ul li {
	display: inline-block;
}
.film__tags ul li > span {
	color: #888;
	font-size: 14px;
	margin-right: 4px;
}
.film__tags ul li a {
	display: inline-block;
	padding: 4px 10px;
	background: #262626;
	color: #ddd;
	border-radius: 4px;
	font-size: 13px;
	text-decoration: none;
	transition: background .15s;
}
.film__tags ul li a:hover {
	background: #ff9800;
	color: #fff;
}

.film__text__area {
	margin-top: 12px;
}
.film__text {
	color: #ccc;
	font-size: 14px;
	line-height: 1.5;
	max-height: 210px;
	overflow: hidden;
	position: relative;
}
.film__text.open {
	max-height: none;
}
.film__text p {
	margin: 0;
}
.film__more {
	display: inline-block;
	margin-top: 8px;
	padding: 6px 14px;
	background: transparent;
	border: 1px solid #444;
	color: #ddd;
	border-radius: 4px;
	font-size: 13px;
	cursor: pointer;
	transition: all .15s;
}
.film__more:hover {
	background: #ff9800;
	border-color: #ff9800;
	color: #fff;
}

@media (max-width: 880px) {
	.film {
		flex-direction: column;
	}
	.film__img {
		flex: 0 0 auto;
		max-width: 100%;
		width: 100%;
	}
	.film__img figure img {
		max-width: 280px;
		margin: 0 auto;
	}
	.film__list li > span:first-child {
		flex: 0 0 130px;
	}
}

@media (max-width: 550px) {
	.film {
		padding: 12px;
	}
	.film__list li {
		flex-direction: column;
		gap: 2px;
	}
	.film__list li > span:first-child {
		flex: none;
	}
}

.content-video .video-left-col.video-left-col--full {
	max-width: 100%;
	width: 100%;
}

.title.film__title {
	margin-bottom: 16px;
}

.no-player {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	background: #000;
}
.no-player img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.no-player .message {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 16px;
	text-align: center;
	padding: 12px 20px;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 4px;
	max-width: 80%;
}
.no-player .message:empty {
	display: none;
}

.player__tabs--scenes {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}
.player__tabs--scenes > li {
	display: inline-block;
	vertical-align: middle;
}
.player__tabs--scenes > li > span {
	color: #bbb;
	font-size: 14px;
	margin-right: 4px;
}
.player__tabs--scenes .js-dvd-scene-btn {
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	background: #282829;
	border: 1px solid transparent;
	border-radius: 4px;
	box-shadow: 2px 3px 2px 2px rgba(36, 36, 38, 0.75);
	color: #fff;
	font-size: 14px;
	line-height: 36px;
	text-align: center;
	cursor: pointer;
	transition: .2s;
	box-sizing: border-box;
}
.player__tabs--scenes .js-dvd-scene-btn:hover {
	border-color: #ff9239;
	background: #313131;
}
.player__tabs--scenes .js-dvd-scene-btn.active {
	background: #ff9239;
	border-color: #ff9239;
}