/** Sparkton Logo Slider */
.sls-widget .spw-viewport { padding: 6px; margin: -6px; }
.sls-item { display: flex; }
.sls-card,
.sls-card:visited {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 120px;
	padding: 18px;
	background: #fff;
	border: 1px solid #e6e9ee;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
	color: inherit;
	text-align: center;
	text-decoration: none !important;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.sls-card:hover,
.sls-card:focus,
.sls-card:active { text-decoration: none !important; }
.sls-card:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.sls-image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	line-height: 0;
}
.sls-image {
	display: block;
	width: auto !important;
	height: auto !important;
	max-width: 82%;
	max-height: 72px;
	margin: 0 auto !important;
	object-fit: contain;
	opacity: 1;
	transition: transform .3s ease, filter .3s ease, opacity .3s ease;
}
.sls-name {
	display: block;
	max-width: 100%;
	margin-top: 10px;
	overflow: hidden;
	color: #1f2937;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.sls-hover-lift-yes .sls-card:hover { transform: translateY(-4px); }
.sls-grayscale-yes .sls-image { filter: grayscale(1); }
.sls-grayscale-yes .sls-card:hover .sls-image,
.sls-grayscale-yes .sls-card:focus-visible .sls-image { filter: grayscale(0); }
@media (prefers-reduced-motion: reduce) {
	.sls-card,
	.sls-image { transition-duration: .01ms !important; }
}
