.js-carousel {
	position: relative;
	margin-right: 0px;
}

.js-carousel-body {
	display: flex !important;
	gap: 15px !important;
	overflow: auto !important;
	padding-bottom: 10px !important;
}

.js-carousel-body::-webkit-scrollbar { 
	display: none;  /* Safari and Chrome */
}

.js-carousel-btn {
	position: absolute;
	background-color: transparent;
	border: none;
	top: calc(50% - 20px);
	width: 40px;
	height: 40px;
	margin-right: 20px;
	box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
	border-radius: 48px;
	transition: all 0.2s ease;
	cursor: pointer;
	z-index: 5;
	outline: none !important;
}
.js-carousel-btn.disabled {
	opacity: 0.3;
	pointer-events: none;
}

.js-carousel-btn:hover {
	transform: scale(1.2);
}

.js-carousel-prev {
	background: url(../images/Right.png) center no-repeat;
}

.js-carousel-next {
	right: -20px;
	background: url(../images/Left.png) center no-repeat;
}
