.section-grid-scroller{
	margin: 30px 0px 30px 0px ;
	position: relative ;
	overflow-x: hidden ;
}
.section-grid-scroller .none-items{
	padding: 20px 0px 20px 0px ;
	text-align: center ;
	opacity: 0.5 ;
}
.section-grid-scroller .title{
	font-size: 16px ;
	display: block ;
	margin: 0px 0px 15px 0px ;
}
.section-grid-scroller .grid{
	display: flex ;
	gap: 15px ;
	transform: translateX(-215px) ;
}
.section-grid-scroller .grid > a{
	display: block ;
	min-width: 200px ;
	width: 200px ;
	height: 260px ;
	background-color: #FFFFFF ;
	border-radius: 5px ;
	padding: 10px ;
	box-sizing: border-box ;
	color: #282828 ;
	text-decoration: none ;
	transition-property: transform ;
	transition-duration: 0.25s ;
}
.section-grid-scroller .grid > a:hover{
	transform: scale(0.95) ;
	cursor: pointer ;
}
.section-grid-scroller .grid > a .image{
	width: 180px ;
	height: 160px ;
	border-radius: 5px ;
	overflow: hidden ;
}
.section-grid-scroller .grid > a .image img{
	height: 100% ;
	width: 100% ;
	object-fit: contain ;
}
.section-grid-scroller .grid > a .information{
	margin-top: 10px ;
}
.section-grid-scroller .grid > a .information .title-product{
	font-size: 14px ;
	text-align: center ;
	display: -webkit-box ;
	-webkit-box-orient: vertical ;
	-webkit-line-clamp: 1 ;
	line-clamp: 1 ;
	overflow: hidden ;
}
.section-grid-scroller .grid > a .information .description-product{
	margin: 5px 0px 5px 0px ;
	font-size: 12px ;
	text-align: center ;
	color: #B3B3B3 ;
	display: -webkit-box ;
	-webkit-box-orient: vertical ;
	-webkit-line-clamp: 2 ;
	line-clamp: 2 ;
	overflow: hidden ;
}
.section-grid-scroller .grid > a .information .data{
	display: flex ;
	align-items: center ;
	justify-content: space-between ;
}
.section-grid-scroller .grid > a .information .data p:first-child{
	color: #FFC000 ; 
}
.section-grid-scroller .scroll-controller{
	display: grid ;
	grid-template-columns: repeat(2, 25px) ;
	grid-gap: 2px ;
	position: absolute ;
	right: 0px ;
	top: 0px ;
	width: 52px ;
}
.section-grid-scroller .scroll-controller .btn-move-scroll{
	display: block ;
	width: 25px ;
	height: 25px ;
	padding: 5px ;
	box-sizing: border-box ;
	background-color: #FFFFFF;
	transition: all 0.25s ;
}
.section-grid-scroller .scroll-controller .btn-move-scroll:hover{
	cursor: pointer ;
}
.section-grid-scroller .scroll-controller .btn-move-scroll svg{
	width: 100% ;
	height: 100% ;
	fill: #282828 ;
	transition: all 0.25s ;
}
.section-grid-scroller .scroll-controller .btn-move-scroll:hover svg{
	transform: scale(0.9) ;
}
.section-grid-scroller .scroll-controller .btn-move-scroll: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);
}
.section-grid-scroller .scroll-controller .btn-move-scroll: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);
}
@media(max-width:320px){
	.section-grid-scroller .title{
		text-align: center ;
		margin-bottom: 10px ;
	}
	.section-grid-scroller .scroll-controller{
		position: relative ;
		margin: 0px auto 10px auto ;
	}
}