/* channel selector */
#channel-selector {
	background-color: #fff;
	border: 1px solid #ccc;
}
#channel-selector .channels-title {
	position: relative;
	padding: 6px 12px;
	cursor: pointer;
}
#channel-selector .channels-title .fa {
	position: absolute;
	top: 10px;
	right: 10px;
}
#chosen-channels-num {
	font-weight: bold;
}
#channel-selector .channels-list .channel-group-name {
	float: left;
	width: 100%;
	font-weight: bold;
	background-color: #fafafa;
	padding: 4px 12px;
}
#channel-selector .channels-list .channel-group-items {
	float: left;
	width: 100%;
	padding: 12px 12px 8px 12px;
}
#channel-selector .channels-list .channel-item {
	display: block;
	float: left;
	width: calc((100% / 8) - 4px);
	margin: 0px 2px 4px 2px;
	padding: 6px;
	border: 1px solid #fff;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 85%;
}
#channel-selector .channels-list .channel-item:hover,
#channel-selector .channels-list .channel-item.active {
	border-color: #ED044E;
}
#channel-selector .channels-list .channel-item .channel-logo-placeholder {
	padding-bottom: 100%;
}
@media all and (max-width:700px){
	#channel-selector .channels-list .channel-item {
		width: calc((100% / 6) - 4px);
	}
}
@media all and (max-width:500px){
	#channel-selector .channels-list .channel-item {
		width: calc((100% / 4) - 4px);
	}
}
@media all and (max-width:350px){
	#channel-selector .channels-list .channel-item {
		width: calc((100% / 3) - 4px);
	}
}

/* autocomplete */
#search-movie-person-results a {color: inherit;}
#search-movie-person-results a:hover {text-decoration:none;}
#fulltext-submit-btn {color: #828282;}
#fulltext-submit-btn:hover {color: #002c3e;}
