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

.trending-product-list-content {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	padding: 10px;
	margin: 0 auto;
	background-color: whitesmoke;
	border-radius: 10px;
	overflow: hidden;
}

.trending-product-list-title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-flow: row nowrap;
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}

.trending-product-list-title > span:nth-child(1) {
	display: inline-block;
	width: auto;
	height: auto;
	padding: 10px;
	margin: 0;
	font-size: 1.3em;
	font-weight: bold;
	white-space: nowrap;
}

.trending-product-list-title > span:nth-child(2) {
	display: inline-block;
	width: 100%;
	height: 10px;
	padding: 0;
	margin: 5px;
	background-color: #FFA500;
	border-radius: 10px;
}

.trending-product-list-item-centent-container {
	position: relative;
}

.trending-product-list-item-centent {
	display: block;
	/*justify-content: center;
	flex-flow: row wrap;*/
	width: 100%;
	height: auto;
	padding: 0;
	margin: 10px auto;
}

.trending-product-list-item {
	position: relative;
	display: block;
	width: 100%;
	max-width: 200px;
	height: auto;
	padding: 5px;
	margin: 8px auto;
	background-color: white;
	border: 0.5px solid  #dfe4e9;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}

/*
.trending-product-list-item[trending-level='2'] {
	display: none;
}
*/

.trending-product-list-item:hover {
	box-shadow: 0 0 15px 1px #2a80b9;
}

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

.trending-product-list-item-image {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	min-height: 150px;
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
	overflow: hidden;
}

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

	-webkit-transition: 0.7s; /* Safari */
	transition: 0.7s;
}

.trending-product-list-item-image > span {
	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.3em;
}

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

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

.trending-product-list-item-price {
	font-size: 0.85em;
	white-space: nowrap;
	overflow: visible;
}


.trending-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;
}

.trending-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;
}

.trending-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;
}

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


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

.trending-product-list-item-contact-btn,
.trending-product-list-item-add-cart-btn {
	display: block;
	width: 100%;
	height: 35px;
	padding: 0 8px;
	margin: 5px auto;
	line-height: 35px;
	text-align: center;
	font-size: 0.9em;
	border-radius: 5px;
	overflow: hidden;
}

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

.trending-product-slider-arrow-prev,
.trending-product-slider-arrow-next {
	position: absolute;
	top: calc(50% - 50px);
	left: 0;
	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;
}

.trending-product-slider-arrow-next {
	left: auto;
	right: 0;
	border-radius: 5px 0 0 5px;
}

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



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

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

/* Medium devices (landscape tablets, 769px and up) */
@media only screen and (min-width: 769px) {
	
}

/* Large devices (laptops/desktops, 993px and up) */
@media only screen and (min-width: 993px) {
	
} 

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






