.product a
{
	color: inherit;
	outline: none;
}

.prod-name
{
	font-size: 24px;
	display: inline-block;
}

.product a:hover img
{

}

.prod-img-wrap
{
	position: relative;
}

.prod-img-wrap:before
{
	content: '';
	font-family: 'FontAwesome', sans-serif;
	font-size: 64px;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	background: rgba(0, 0, 0, 0.5);
	transition: 0.15s;
}

a:hover .prod-img-wrap:before
{
	opacity: 1;
}

.product-modal .container
{
	padding-top: 15px;
}

/*
 * ======================================
 * 				RESIZE
 * ======================================
 */

/* x >= MD */
@media (min-width: 992px)
{
	.product-modal .container
	{
		padding-left: 0;
		padding-top: 0;
	}
}

/* x < MD */
@media (max-width: 991px)
{
	.prod-img-wrap:before
	{
		font-size: 36px;
		display: flex;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		height: 64px;
		opacity: 1;
		background: rgba(0, 0, 0, 0.7);
	}
}