@charset "utf-8";
/* CSS Document */

.view-detect {
	display: none;
}

/*START - DEVICE DEPENDANT CSS*/
@media (max-width: 767px) {
	/*CONTENT applying col-xs VIEWS*/
	.view-detect {
		height: 1px;
	}
}
		
@media (min-width: 768px) and (max-width: 991px) {
	/*CONTENT applying col-sm VIEWS*/
	.view-detect {
		height: 2px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	/*CONTENT applying col-md VIEWS*/
	.view-detect {
		height: 3px;
	}
}

@media (min-width: 1200px) {
	/*CONTENT applying col-lg VIEWS*/
	.view-detect {
		height: 4px;
	}	
}
/*END*/