/* Channels Filter */

.channel-filters {
	text-transform: uppercase;
	font-size: 0.75rem;
}

.channel-filters span {
	font-weight: 700;
	color: #009846;
}

.channel-filters ul {
	display: flex;
	flex-wrap: wrap;
    margin: 0.5rem 0 0 0;
    padding: 0;
    list-style: none;
}

.channel-filters ul li {
	width: 50%;
    font-weight: 400;
}

.channel-filters ul li a {
    text-decoration: none;
    color: #69BB83 !important;
}

.channel-filters ul li a.active {
    color: #009846 !important;
}

@media (min-width: 576px) {
	.channel-filters ul li {
		width: 25%;
	}
}

@media (min-width: 992px) {
	.channel-filters {
		font-size: 0.875rem;
	}
}

@media (min-width: 992px) {
	.channel-filters {
		display: flex;
		align-items: center;
	}

	.channel-filters ul {
		margin: 0;
	}

    .channel-filters ul li {
        margin-left: 1rem;
		width: auto;
    }
}



/* Channels List */

.channel-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin: -0.5rem;
}

.channel-list__item {
	display: none;
	width: 50%;
    padding: 0.5rem;
}

.channel-list__item.active {
	display: block;
}

@media (min-width: 576px) {
	.channel-list__item {
		width: 25%;
	}
}

@media (min-width: 768px) {
    .channel-list {
        margin: -1rem;
    }
    
    .channel-list__item {
		width: 33.33333%;
        padding: 1rem;
    }
}

@media (min-width: 992px) {
	.channel-list__item {
		width: 25%;
	}
}

@media (min-width: 1200px) {
	.channel-list__item {
		width: 16.66667%;
	}
}



/* Channel */

.channel {
	position: relative;
	height: 100%;
    text-align: center;
	font-size: 0.875rem;
	border: 1px solid #DDD;
	border-radius: 0 0.5rem 0 0.5rem;
}

.channel__logo
.channel__name,
.channel__description {
	z-index: 1;
	position: relative;
}

.channel__logo {
	display: block;
	margin: 0 auto;
	padding: 1rem 1rem 0.5rem 1rem;
	width: 80%;
	height: auto;
}

.channel__name {
	padding: 0 1rem;
	line-height: 1.2;
	text-transform: uppercase;
	font-weight: 700;
}

.channel__description {
	padding: 0.5rem 1rem 1rem 1rem;
	line-height: 1.2;
	font-size: 0.75rem;
}

.channel__quality {
	z-index: 2;
	position: absolute;
	top: 0.25rem;
	right: 0.25rem;
	padding: 0.25rem;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 0.675rem;
	border-radius: 0 0.25rem 0 0.25rem;
	background-color: #F4F3F4;
}