.list-products{
	margin: 30px 0px 30px 0px ;
	position: relative ;
}
.list-products .title{
	font-size: 16px ;
	display: block ;
	margin: 0px 0px 15px 0px ;
}
.list-products .grid{
	display: grid ;
	grid-template-columns: repeat( 3 , 1fr ) ;
	grid-gap: 15px ;
}
.list-products .grid > a{
	display: grid ;
	grid-template-columns: 120px 1fr ;
	grid-gap: 15px ;
	align-items: center ;
	width: 100% ;
	height: 120px ;
	background-color: #FFFFFF ;
	border-radius: 5px ;
	padding: 10px ;
	box-sizing: border-box ;
	color: #282828 ;
	text-decoration: none ;
	transition-property: transform ;
	transition-duration: 0.25s ;
	position: relative ;
}
.list-products .grid > a:hover{
	transform: scale(0.95) ;
	cursor: pointer ;
}
.list-products .grid > a .image{
	width: 100% ;
	height: 100% ;
	border-radius: 5px ;
	overflow: hidden ;
}
.list-products .grid > a .image img{
	height: 100% ;
	width: 100% ;
	object-fit: contain ;
}
.list-products .grid > a .information .title-product{
	font-size: 14px ;
	display: -webkit-box ;
	-webkit-box-orient: vertical ;
	-webkit-line-clamp: 1 ;
	line-clamp: 1 ;
	overflow: hidden ;
}
.list-products .grid > a .information .description-product{
	margin: 5px 0px 5px 0px ;
	font-size: 12px ;
	color: #B3B3B3 ;
	display: -webkit-box ;
	-webkit-box-orient: vertical ;
	-webkit-line-clamp: 2 ;
	line-clamp: 2 ;
	overflow: hidden ;
}
.list-products .grid > a .information .data{
	display: flex ;
	align-items: center ;
	justify-content: space-between ;
}
.list-products .grid > a .information .data p:first-child{
	color: #FFC000 ; 
}
.list-products .grid > a .note-pending{
	position: absolute ;
	top: 5px ;
	right: 5px ;
	border-radius: 5px ;
	background-color: #8792C7 ;
	color: #FFFFFF ;
	padding: 2.5px 5px ;
	font-size: 12px ;
}
.list-products .nav-controller-list{
	position: absolute ;
	bottom: -40px ;
	right: 0px ;
	display: grid ;
	grid-template-columns: repeat(3, 25px) ;
	grid-gap: 2px ;
}
.list-products .nav-controller-list .btn-move-list,
.list-products .nav-controller-list .list-interval{
	display: flex ;
	width: 25px ;
	height: 25px ;
	box-sizing: border-box ;
	background-color: #FFFFFF;
	transition: all 0.25s ;
	font-size: 12px ;	
	align-items: center ;
	justify-content: center ;
	text-align: center ;
}
.list-products .nav-controller-list .btn-move-list:hover{
	cursor: pointer ;
}
.list-products .nav-controller-list .btn-move-list svg{
	width: calc( 100% - 10px ) ;
	height: calc( 100% - 10px ) ;
	fill: #282828 ;
	transition: all 0.25s ;
}
.list-products .nav-controller-list .btn-move-list:hover svg{
	transform: scale(0.9) ;
}
.list-products .nav-controller-list .btn-move-list:first-child{
	border-radius: 5px 0px 0px 5px ;
	box-shadow: -1px 2px 5px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: -1px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: -1px 2px 5px 0px rgba(0,0,0,0.2);
}
.list-products .nav-controller-list .list-interval{
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
}
.list-products .nav-controller-list .btn-move-list:last-child{
	border-radius: 0px 5px 5px 0px ;
	box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 1px 2px 5px 0px rgba(0,0,0,0.2);
}
.list-products .none-items{
	display: flex ;
	align-items: center ;
	justify-content: center ;
	text-align: center ;
	width: 100% ;
	min-height: 100px ;
	padding: 15px ;
	box-sizing: border-box ;
	border-radius: 5px ;
	background-color: #FFFFFF ;
}
@media(max-width: 960px){
	.list-products .grid > a{
		grid-template-columns: 100px 1fr ;
		height: 100px ;
	}
}
@media(max-width: 900px){
	.list-products .grid > a{
		grid-template-columns: 1fr ;
		height: 270px ;
		text-align: center ;
	}
	.list-products .grid > a .image{
		height: 160px ;
	}
}
@media(max-width: 625px){
	.list-products .grid{
		grid-template-columns: repeat( 2 , 1fr ) ;
	}
}
@media(max-width: 450px){
	.list-products .grid{
		grid-template-columns: 1fr ;
	}
}