/* Responsive Logo Slideshow 2.0.0 */

.rls-slideshow {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 960px;
	margin: 15px auto;
	padding: 0 44px 0;
	box-shadow: inset 0 5px 3px -1px rgba(0, 0, 0, 0.09), inset 0 -5px 1px -2px rgba(0, 0, 0, 0.09);
}

.rls-track {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.rls-track::-webkit-scrollbar { display: none; }
.rls-track:focus-visible { outline: 2px solid currentColor; outline-offset: -2px; }

.rls-slideshow .touchcarousel-container {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rls-slideshow .touchcarousel-item {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 170px;
	height: 90px;
	margin: 0;
	padding: 10px 20px;
	border-right: 1px solid rgba(0, 0, 0, 0.06);
	scroll-snap-align: start;
}

.rls-slideshow .imgsize {
	display: block;
	max-width: 130px;
	max-height: 60px;
	width: auto;
	height: auto;
	object-fit: contain;
	opacity: 0.5;
	transition: opacity 0.2s ease;
}

.rls-slideshow a:hover .imgsize,
.rls-slideshow a:focus-visible .imgsize,
.rls-slideshow .touchcarousel-item:hover .imgsize { opacity: 1; }

.rls-arrow {
	position: absolute;
	top: 45px;
	width: 36px;
	height: 36px;
	margin-top: -18px;
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 50%;
	background: #fff;
	color: #1e1e1e;
	font-size: 26px;
	line-height: 32px;
	cursor: pointer;
}
.rls-arrow--prev { left: 4px; }
.rls-arrow--next { right: 4px; }
.rls-arrow:disabled { opacity: 0.35; cursor: default; }
.rls-arrow:hover:not(:disabled), .rls-arrow:focus-visible { background: #1e1e1e; color: #fff; }

.rls-slideshow--static .rls-arrow,
.rls-slideshow--static .rls-toggle { display: none; }
.rls-slideshow--static .touchcarousel-container { justify-content: center; flex-wrap: wrap; }

.rls-toggle {
	display: block;
	margin: 4px auto 6px;
	padding: 2px 10px;
	border: 1px solid currentColor;
	border-radius: 3px;
	background: transparent;
	color: inherit;
	font-size: 0.8em;
	cursor: pointer;
}
