.channel-filter {
	justify-content: center;
	align-items: center;
}
#channels {
	min-height: 300px;
}
.channel-block {
	padding: 0.8rem;
	text-align: center;
	margin-right: 0.6rem;
	transition: 1s all ease;
	box-sizing: border-box;
	min-height: 125px;
	font-weight: bold;
	-webkit-box-shadow: 1px 1px 6px 1px rgba(199,199,199,1);
	-moz-box-shadow: 1px 1px 6px 1px rgba(199,199,199,1);
	box-shadow: 1px 1px 6px 1px rgba(199,199,199,1);
	margin-bottom: 0.5rem;
	line-height: 1;
}
.channel-block:hover {
	background: linear-gradient(185deg, rgba(7,104,159,1) 0%, rgba(3,76,117,1) 100%);
	cursor: pointer;
	color: white;
	-webkit-box-shadow: 1px 1px 6px 4px rgba(143,141,143,0.69);
	-moz-box-shadow: 1px 1px 6px 4px rgba(143,141,143,0.69);
	box-shadow: 1px 1px 6px 4px rgba(143,141,143,0.69);
	border-top-left-radius: 25%;
}
.channel-title {
	padding-top: 0.6rem;
}
.hide {
	transition: all ease 0.35s;
	opacity: 0;
	min-height: 0;
	min-width: 0;
	display: none;
}
.channel-block::before{
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	content: '';
	background-repeat: no-repeat;
	background-size: cover;
	width: 60px;
	height: 60px;
	transition: .5s all ease;
}
.channel-block:nth-child(1) {
	font-size: 0.9rem;
}
.channel-block:nth-child(1)::before {
	background-image: url('../assets/img/chanels/newlogo/internet.png');
}
.channel-block:nth-child(2)::before {
	background-image: url('../assets/img/chanels/newlogo/sports.png');
}
.channel-block:nth-child(3)::before {
	background-image: url('../assets/img/chanels/newlogo/news.png');
}
.channel-block:nth-child(4)::before {
	background-image: url('../assets/img/chanels/newlogo/creativity.png');
}
.channel-block:nth-child(5)::before {
	background-image: url('../assets/img/chanels/newlogo/cinema.png');
}
.channel-block:nth-child(6)::before {
	background-image: url('../assets/img/chanels/newlogo/music-note.png');
}
.channel-block:nth-child(7)::before {
	background-image: url('../assets/img/chanels/newlogo/playtime.png');
}
.channel-block:nth-child(8), .channel-block:nth-child(9) {
	line-height: 1em;
  font-size: 0.85rem;
}
.channel-block:nth-child(8)::before {
	background-image: url('../assets/img/chanels/newlogo/information-button.png');
	width: 55px;
	height: 55px;
}
.channel-block:nth-child(9)::before {
	background-image: url('../assets/img/chanels/newlogo/plus-18-movie.png');
	width: 55px;
	height: 55px;
}
.channel-block:hover::before{
	filter: invert(120%);
}
.channel-icon.hd:before {
    background-image: url(https://viasat.com.ua/assets/img/channel-hd.png?e407e771571a28d68b1e2ede52492c94);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 32%;
    left: -10px;
    max-height: 20px;
    max-width: 36px;
    position: absolute;
    top: 0;
    width: 44%;
  }