.h-scroll{
	position: relative;
	display: block;
	width: 100%;
	}
.h-scroll-arrows{
	position: absolute;
	top: 50%;
	margin-top: -20px;
	z-index: 3;
	width: 40px;
	height: 40px;
	background-color: var(--color);
	-moz-border-radius: 40px; 
	-webkit-border-radius: 40px;
	-moz-box-shadow: 2px 2px 7px rgba(0,0,0,0.4); 
	-webkit-box-shadow: 2px 2px 7px rgba(0,0,0,0.4); 
	box-shadow: 2px 2px 7px rgba(0,0,0,0.4);
	text-align: center;
	line-height: 40px !important;
	cursor: pointer;
	}
.h-scroll-arrows i{
	color: #FFF;
	margin: 0 !important;
	pointer-events: none;
	}
.h-scroll-arrow-prev{
	left: -15px;
	}
.h-scroll-arrow-next{
	right: -15px;
	}
.h-scroll-content{
	box-sizing: content-box;
	max-width: 100%;
	padding-bottom: 20px;
	display: flex;
	display: -webkit-box;
  	display: -ms-flexbox;
  	align-items: stretch;
	/*display: none;*/
	overflow-x: auto;
  	scroll-snap-type: x mandatory;
  	scroll-behavior: smooth;
  	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	}
.h-scroll-content::-webkit-scrollbar{
	display: none;
	}
.h-scroll-item{
	position: relative;
	flex-grow: 0;
	flex-shrink: 1;
	scroll-snap-align: start;
	width: 220px;
	margin: 0px;
	list-style: none;
	}

@media (max-width: 1600px) {

}
@media (max-width: 1200px) {
	.h-scroll-arrows{
		width: 30px;
		height: 30px;
		line-height: 30px !important;
		}
	/*
	.h-scroll-arrow-prev{
		left: 0px;
		}
	.h-scroll-arrow-next{
		right: 0px;
		}
	*/
}
@media (max-width: 1024px) {

}
@media (max-width: 840px) {
	.h-scroll-arrows{
		display: none;
		}
}
@media (max-width: 720px) {

}
@media (max-width: 600px) {

}
@media (max-width: 480px) {

}
@media (max-width: 320px) {

}