.img-capped {
	max-height: 150px;
}

table th,
.nowrap {
	white-space: nowrap;
}


.product-status {
	color: #fff;
	display: inline-block;	
	padding: 0px 4px;
}
.product-status.check {
	background-color: #e3d14a;
}
.product-status.faulty {
	background-color: #de7697;
}
.product-status.good {
	background-color: #9bb2e1;
}
.product-status.online {
	background-color: #8ac064;
}


/** LIGHTBOX MARKUP **/

.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox img {
	/** Pad the lightbox image */
	max-width: 90%;
	max-height: 80%;
	margin-top: 2%;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}