

/*Main container*/
.main-product-list-container {
	position: relative;
	display: block;
	width: 100%;
	max-width: 1250px;
	min-height: 100vh;
	padding: 0;
	margin: 0 auto;
}

.main-product-list-cat-slider-arrow-prev,
.main-product-list-cat-slider-arrow-next {
	position: absolute;
	top: calc(50% - 50px);
	left: 10px;
	display: block;
	padding: 3px 4px;
	margin: 0;
	background: whitesmoke;
	font-size: 2em;
	font-weight: bold;
	color: black;
	opacity: 0.2;
	cursor: pointer;
	border-radius: 0 5px 5px 0;
	border: 1px black solid;
	z-index: 2;
}

.main-product-list-cat-slider-arrow-next {
	left: auto;
	right: 10px;
	border-radius: 5px 0 0 5px;
}

.main-product-list-cat-slider-arrow-prev:hover,
.main-product-list-cat-slider-arrow-next:hover {
	background: #2d3e50;
  	color: #FFEB3B;
	opacity: 1;
}


#main-product-list-cat-slider a {
	overflow: hidden;
}

#main-product-list-cat-slider a > img {
	transition: transform 0.5s;
}

#main-product-list-cat-slider a:hover > img {
	transform: scale(1.2, 1.2);
}

/*Fiter content style*/
.product-filter-show-view {
	float: left;
	margin-left: 10px;
	padding: 8px 20px;
	font-weight: normal;
	font-size: 1em;
	cursor: pointer;
	border: 1px #2a80b9 solid;
}

.product-sort-container {
	float: right;
	margin-right: 10px;
	border: 0.2px #2a80b9 solid;
}

.product-filter-close-view-btn {
	position: absolute;
	top: -20px;
	right: -10px;
	display: block;
	padding: 10px;
	text-align: center;
	font-size: 2.5em;
	font-weight: bold;
}

a.product-filter-close-view-btn:hover {
	color: red;
}

.product-list-filter-container {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	padding: 0;
	z-index: 999;
	background: rgba(0,0,0,0.5);
	overflow: hidden;
}

.product-list-filter-content {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 10px;
	padding-top: 35px;
	margin: 0;
	background: white;
	border-radius: 0px;
	overflow: auto;
	overflow-x: hidden;
}

.product-filter-item {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	margin-bottom: 10px;
	padding-bottom: 10px;
	font-size: 0.9em;
	text-indent: 10px;
	opacity: 0.8;
	background: #E8E8E8;
	border: 1px solid #D3D3D3;
	border-radius: 5px 5px 0 0;
}

.product-filter-item-title {
	padding: 5px 5px 10px 5px;
	color: black;
	font-weight: bold;
	font-size: 1.2em;
	text-indent: 0;
	opacity: 1;
	cursor: pointer;
	background: #D3D3D3;
	border: 1px solid #D3D3D3;
	border-radius: 5px 5px 0 0;
}

.product-filter-item-title span {
	float: right;
}

.product-filter-item-content {
  overflow: hidden;
  transition: max-height 0.1s ease-out;
}


/*Products content container*/
.product-list-content-container {
	position: relative;
	padding: 10px;
	background-color: white;
}


.product-list-content-title {
	font-size: 22px;
	text-transform: uppercase;
	color: #373d54;
	margin: 10px;
	font-weight: 700;
	position: relative;
	letter-spacing: 2px;
}
.product-list-content-title span {
	position: relative;
	display: inline-block;
	padding: 0 0 8px;
}
.product-list-content-title span:before {
	display: block;
	position: absolute;
	content: "";
	bottom: 0;
	height: 2px;
	left: 0;
	right: 0;
	background: #f8fafc;
}
.product-list-content-title span:after {
	display: block;
	position: absolute;
	content: "";
	bottom: 0;
	height: 2px;
	left: 0;
	width: 60px;
	background: #373d54;
}

.product-list-top-view-content {
	display: block;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgb(221, 215, 215);
}

.product-list-item-container {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}

.product-list-item-content {
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}

.product-list-item {
	position: relative;
	display: inline-block;
	width: 250px;
	height: auto;
	padding: 5px;
	margin: 5px;
	border: 2px solid  #2a80b9;
	border-radius: 10px 10px 0 0;
}

.product-list-item:nth-child(even):hover {
	box-shadow: 0 0 20px 2px #2a80b9;
	border-radius: 10px 0 10px 0;
}

.product-list-item:nth-child(odd):hover {
	box-shadow: 0 0 20px 2px #2a80b9;
	border-radius: 0 10px 0 10px;
}

.product-list-item-image {
	position: relative;
	display: inline-block;
	width: 240px;
	height: 250px;
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
	overflow: hidden;
}

.product-list-item-image img {
	visibility: hidden;
}

.product-list-item-image-loading {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row nowrap;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-size: 1.5em;
}

.product-list-item-name,
.product-list-item-price,
.product-list-item-moq {
	display: block;
	width: 100%;
	height: 20px;
	padding: 5px;
	margin: 5px;
	line-height: 20px;
	text-align: center;
	font-size: 0.95em;
	overflow: hidden;
}

.product-list-item-name {
	height: 45px;
	overflow: hidden;
}

.product-list-item-price {
	height: auto;
	line-height: 16px;
	overflow: visible;
}

.product-list-item-price > b > span {
	white-space: nowrap;
	overflow: hidden;
}

.product-list-item-price-tooltip {
	position: relative;
	bottom: 6px;
	display: none;
	width: auto;
	height: auto;
	padding: 1px 6px;
	margin: 0;
	font-size: 0.6em;
	font-weight: bold;
	text-align: center;
  color: #FFEB3B;
	background-color: #2d3e50;
	border-radius: 50px;
}

.product-list-item-price-tooltip > span {
	position: absolute;
	bottom: calc(100% + 7px);
	left: -10px;
	display: inline-block;
	width: auto;
	height: auto;
	padding: 5px 10px;
	margin: 0;
	text-align: center;
	font-weight: normal;
	font-size: 1.5em;
	color: #FFEB3B;
	background-color: #2d3e50;
	border-radius: 10px;
	white-space: nowrap;
	visibility: hidden;
}

.product-list-item-price-tooltip > span:after {
	content: " ";
  position: absolute;
  top: calc(100% - 2px);
  left: 8px;
  border-width: 10px;
  border-style: solid;
  border-color: #2d3e50 transparent transparent transparent;
}

.product-list-item-price-tooltip:hover > span {
	visibility: visible;
}

.product-list-item-moq {
	font-size: 0.8em;
}

.product-list-item-contact-btn,
.product-list-item-add-cart-btn {
	display: block;
	width: 100%;
	padding: 7px;
	margin: 5px 0;
	text-align: center;
}

.product-list-item-add-cart-btn {
	color: #2d3e50;
	background-color: whitesmoke;
	border: 1px #2d3e50 solid;
}

.product-list-pagenation {
	display: block;
	width: 100%;
	height: auto;
	padding: 0 10px;
	margin: 0;
	margin-top: 50px;
	text-align: center;
}

.product-list-pagenation > a {
	display: inline-block;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 1px;
	line-height: 40px;
	text-align: center;
	vertical-align: middle;
	font-size: 1.2em;
	font-weight: bolder;
	border: 1px solid #FFA500;
	border-radius: 100px;
}

.product-list-pagenation > a[active],
.product-list-pagenation > a:hover {
  color: #FFA500;
	background-color: #36454F;
}

.product-list-pagenation > span {
	display: inline-block;
	width: 20px;
	height: 40px;
	padding: 0;
	margin: 1px;
	line-height: 33px;
	text-align: center;
	vertical-align: middle;
	font-size: 1.2em;
	font-weight: bold;
}

.product-list-sell-request-btns {
	display: block;
	width: 100%;
	margin: 15px 0;
	margin-top: 80px;
	padding: 0;
	text-align: center;
	font-size: 0.9em;
}

.product-list-sell-request-btns > a {
	display: inline-block;
	padding: 10px;
	color: #2a80b9;
}

.product-list-sell-request-btns > a:nth-child(2) {
	border-left: 2px solid #DCDCDC;
}

.product-list-sell-request-btns > a:hover {
	text-decoration: underline;
}


/* Check for device orientation in protrait mode */
@media only screen and (orientation: portrait){
    
}

/* Small devices (portrait phones, 481px and up) */
@media only screen and (min-width: 481px) {

	.product-list-filter-content {
		width: 300px;
	}

	.product-list-item {
		width: 200px;
	}

	.product-list-item-image {
		width: 190px;
		height: 200px;
	}

	.product-list-item img {
		-webkit-transition: 0.7s; /* Safari */
	  transition: 0.7s;
	}

	.product-list-item:hover img {
		-ms-transform: scale(1.15, 1.15); /* IE 9 */
	  -webkit-transform: scale(1.15, 1.15); /* Safari */
	  transform: scale(1.15, 1.15);
	}

	.product-list-sell-request-btns {
    font-size: 1em;
  }
}

/* Small devices (portrait tablets and large phones, 601px and up) */
@media only screen and (min-width: 601px) {
	.product-list-pagenation > a {
		width: 45px;
		height: 45px;
		line-height: 45px;
	}

	.product-list-pagenation > span {
		width: 20px;
		height: 45px;
		line-height: 37px;
	}

  .product-list-sell-request-btns {
    font-size: 1.1em;
  }
} 

/* Medium devices (landscape tablets, 769px and up) */
@media only screen and (min-width: 769px) {
	.product-list-item {
		width: 220px;
	}

	.product-list-item-image {
		width: 210px;
		height: 220px;
	}
}

/* Large devices (laptops/desktops, 993px and up) */
@media only screen and (min-width: 993px) {
	.product-filter-show-view, 
	.product-filter-close-view-btn {
		display: none;
	}

	.product-list-filter-container {
		position: static;
		display: block;
		width: auto;
		background: transparent;
		z-index: 1;
	}

	.product-list-filter-content {
		width: 280px;
		padding: 10px;
	}

	.product-list-item {
		border: none;
		border-radius: 0;
	}

	.product-list-sell-request-btns {
		font-size: 1.2em;
	}
} 

/* Extra large devices (large laptops and desktops, 1201px and up) */
@media only screen and (min-width: 1201px) { 

	.product-list-item {
		width: 230px;
	}

	.product-list-item-image {
		width: 220px;
		height: 230px;
	}
}

