.login-frm-ef {
	width: 25%;
	text-align: center;
}

.shop {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

.button {
	color: #eee;
	background-color: #000;
	height: 50px;
	border-radius: 5px;
	font-size: 1.1em;
	padding: 15px;
/*	margin: 10px; */
	text-decoration: none;
}

.button:hover, .button:active, .button:visited, .button:focus {
	text-decoration: none;
	color: #eee;
}

.product {
	border: 1px solid #fff;
	border-radius: 5px;
	max-width: 200px;
	min-height: 375px;
	margin: 5px;
	padding-left: 0;
	padding-right: 0;
}

.product .img-wrapper {
	min-height: 200px;
}

.product > a > img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.product .title {
	font-weight: 800;
	text-align: center;
	width: 100%;
	position: absolute;
	padding: 0 5px 0 5px;
	
	/* to truncate long product titles */
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.product .price {
	text-align: center;
	width: 100%;
	position: absolute;
}

.product .stock {
	text-align: center;
	width: 100%;
	position: absolute;
}

.product .button {
	text-align: center;
	min-width: 130px;
}

.lowstock, .soldout {
	color: red;
}

.required {
	color: red;
}

.warning {
	color: red;
	font-weight: 800;
}

.warning-2 {
	color: red;
}

#tbl_Cart th, #tbl_Cart td {
	padding: 5px;
}

.tbl-cart-cell-prod {
	width: 50%;
}

.tbl-cart-cell-qty {
	text-align: right;
	width: 16%;
}

.tbl-cart-cell-prc {
	text-align: right;
	width: 16%;
}

.tbl-cart-cell-extn {
	text-align: right;
	width: 16%;
}

.icon-bar {
	background-color: #000 !important; /* override default color  to make it pop more */
}

@media (max-width: 900px) {
	.login-frm-ef {
		width: 50%;
	}
}

@media (max-width: 375px) {
	.login-frm-ef {
		width: 75%;
	}
	
	.product {
		width: 300px;
		max-width: 300px;
		min-height: 410px;
	}
	
	.product .img-wrapper {
		min-height: 250px;
	}
	
	.shop {
		margin-bottom: 75px;
	}
}