.r3-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.r3-slider-track {
    white-space: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
	scrollbar-width: none;
}

.r3-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.r3-slider-arrow.prev { left: 0; }
.r3-slider-arrow.next { right: 0; }

.r3-slider-arrow:hover {
	background: rgba(0,0,0,.8);
}

.r3-slider-track::-webkit-scrollbar {
	display: none;
}
.r3-slider-track {
	scrollbar-width: none;
}


.r3-slider-track > div {
	display:inline-block;
	margin-left:8px;
}
.r3-slider-track > div:first-child {
	margin-left:0;
}
.r3-slider-track > div > div {
    display: flex;
    justify-content: center;
    align-items: center;
}