/*==================================	
categoryHighlights
==================================*/

.category-highlights {
	position: relative;
	background-size: cover!important;
	height: 250px;
	background-position: center center !important;
	margin: 15px 0;
}

.category-highlights-link {
	 position: absolute;
	 z-index: 9;
	 left: 0;
	 right: 0;
	 top: 0;
	 bottom: 0;
}

.category-highlights-overlay {
	 position: absolute;
	 z-index: 2;
	 top: 0;
	 bottom: 0;
	 left: 0;
	 right: 0;
	background: rgba(4,4,4,0.55);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.category-highlights:hover .category-highlights-overlay {
	opacity: 0.7;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.category-highlights:hover .highlightbox-star-img {
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.category-highlights-content-wrapper {
    display: table-cell;
	position: relative;
	z-index: 3;
	vertical-align: middle;
	text-align: center;
	color: #fff;
}

.category-highlights-title {
	text-transform: uppercase;
    font-weight: 700;
    padding: 0 15px;
}

.category-highlights-subtitle {
	display: none;
}

.category-highlights-content {
	 padding: 0 20px;
	font-weight: 300;
}

.category-highlights-inner {
	display: table;
	width: 100%;
	height: 100%;
}

.category-highlights-content {
	color: #fff;
	margin-bottom: 0;
}

.category-highlights-content:after {
	position: relative;
	padding: 0 0 0 5px;
	content: "\f105";
	color: #fff;
	font-size: 0.7rem;
	font-family: 'FontAwesome';
	font-weight: 100;
}

/*==================================	
Responsive
==================================*/

@media (max-width:991px) and (min-width:768px) {
    
	.category-highlights-title {
		font-size: 1.2rem;
	}
    
}

@media screen and (max-width:425px) {
    
	.category-highlights {
		margin: 10px 0;
	}
    
}

/*==== End of Responsive ====*/