body {
	background-color: rgba(236, 240, 241,1.0);
	font-size: 14px;
}

header {
	background-color: #FFF;
	position: fixed;
	right: 0px;
	left: 0px;
	top: 0px;
	z-index: 900;
}

#products {
	margin-top: 70px;
}

.product {
	display: grid;
	grid-template-columns: 160px auto;
	background-color: #FFF;
	padding: 16px;
	border-bottom: 1px solid #ecf0f1;
}

.product:hover {
	transition: ease-in;
	background-color: #fff;
	cursor: pointer;
}


.product-image {
	width: 160px;
	height: 160px;
	overflow: hidden;
	line-height: 160px;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	vertical-align: top;
}

.product-title {
	font-weight: 600;  
	font-size: 18px;
}

.product-stock-status {
	font-weight: 600;
}

.product-price {
	font-weight: 600;
	text-align: right;
	  font-size: 18px;
}

.font-weight-600 {
	font-weight: 600;
}

.cart-btn {
	border: 0px solid #7f8c8d;
	background: #EEE;
	height: 35px;
	font-weight: 600;
	width: 35px;
	font-size:13px;
}

.cart-btn.minus {
	border-radius: 20px 0px 0px 20px;
}

.cart-btn.plus {
	border-radius: 0px 20px 20px 0px;
}

.cart-btn:hover {
	background: #DDD;
	color: #000;
}

.cart-quantity {
	background: #EEE;
	height: 35px;
	width: 50px;
	text-align: center;
	line-height: 35px;
}

.quantity {
	width: 100%;
	height: 100%;
	text-align:center;
	border-top: 0px solid #7f8c8d;
	border-bottom: 0px solid #7f8c8d;
	border-right: none;
	border-left: none;
	outline: none;
	font-weight: 600;
	background: #F4F4F4;
}

.quantity:focus {
	outline: none;
}

.create-catalog-link {
	text-decoration: none;
	color: inherit;
}

.offcanvas-custom-width {
	width: 500px !important;
}

.order-action {
	margin-top: 20px;
	padding: 12px;
}

.order-action button {
	height: 50px;
}

#placeOrderBtn {
	margin-top: -5px;
}

#cartTable tr td {
	vertical-align: middle;
}

#cartTable tbody tr td {
	vertical-align: middle;
	color: #333232;
}


.searchContainer {
	background: #FFF;
	padding: 12px;
	border-bottom: 1px solid #ecf0f1;
}

.categories-container .category-item {
	background: #FFF;
	padding: 12px;
	border-bottom: 1px solid #ecf0f1;
	padding-left: 32px;
}


.section-title {
	background: #FFF;
	padding: 12px;	
	border-bottom: 1px solid #ecf0f1;
	font-weight: 600;
}


.categories-container {
	position: sticky;
	top: 70px;
	height: 70vh;
	overflow: auto;
}

.searchContainer {
	position: sticky;
	top: 61px;
}


#cartTableMobile {
	display: none;
	box-shadow: 0px 0px 3px #ddd;
}

.mobile-product {
	background: #F4F4F4;
	padding: 8px;
	display: grid; 
	grid-template-columns: 75px auto 38px;
}

.image-holder {
	width: 90px;
	height: 90px;
	object-fit: contain;
	/* background: #EEE; */
	text-align: center;
}

.image-holder img {
	width: 100%;
}


.catalog-error-container {
	margin: 60px auto;
	width: 500px;
}

.mobile-floating-btn {
	text-align: center;
	position: fixed;
	bottom: 16px;
	right: 12px;
	cursor: pointer;
	display:none;
}

.product-information {
	display: grid;
	grid-template-columns: auto auto;
}


.mobile_cart_item_total {
	text-align: right;
	font-weight: 600;
}

.mobile_cart_item {
	display: grid; 
	grid-template-columns: 100px auto auto; 
	border-bottom: 1px solid #EEE;
	padding: 8px 14px 4px 0px;
}


.product-og-price {
	text-align: right;
	font-size: 13px;
}

.product-og-price .product-percent-price {
	background: red;
	color: #FFF;
	font-weight: 600;
	padding: 2px 6px 4px 6px;
	border-radius:2px;
	margin-right: 4px;
}

.product-og-price .product-amount-price {
	text-decoration: line-through;
	color: #737272;
}

.product-stock-description {
	font-size: 13px;
}

.product-stock-description strong {
	font-weight: 600;
}

.product-stock-description h1,
.product-stock-description h2,
.product-stock-description h3,
.product-stock-description h4,
.product-stock-description h5,
.product-stock-description h6
{
	font-weight: 600 !important;
	font-size: 16px !important;
}

@media (max-width: 768px) {
	.cart-btn-sm {
		border-radius: 0px !important;
		height: 45px;
		width: 50px;
	}
	
	.cart-quantity-sm {
		height: 45px;
	}
	
	#address_information {
		font-size: 12.25px;
	}
	.single_product {
		display: block !important; 
	}
	
	.product-information {
		display: grid;
		grid-template-columns: auto;
		padding-left: 8px;
	}

	.product-image {
		width: 100%;
		height: 320px;
	}
	
	.product-image img {
		width: 100%;
		height: auto;
		object-fit: contain;
		vertical-align: top;
	}
	
	.mobile-floating-btn {
		display: block;
	}
	
    .product {
		padding: 16px;
		grid-template-columns: 120px auto;
    } 
	
	.product-price {
		font-weight: 600;
		text-align: left;
		font-size: 16px;
		margin-top: 0px;
	}
	
	.product {
		  border-bottom: 0px solid #ecf0f1;
		  margin-bottom: 8px;
	}
	
	.product-title {
		font-size: 16px;
	}
	
	.custname,
	.phone,
	.custEmail {
		margin-bottom: 8px;
	}
	
	#cartTable {
		display: none;
	}
	
	#cartTableMobile {
		display: block;
	}
	
	#shareCatalogTop {
		display: none;
	}
}
