.swiper-container:hover + .swiper-mouseover {
	opacity: 1; visibility: visible;
}

.swiper-container:has(+ .swiper-mouseover) .swiper-slide:hover {
	cursor: none;
}

.swiper-mouseover {
	padding: 5px;
	position: fixed; top: 0; left: 0; z-index: 123; opacity: 0; visibility: hidden;
	color: #ffffff;
	pointer-events: none;
	user-select: none;
	background-color: var(--sc-blue);
	padding: 8px 16px;
	border-radius: 4px;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
	display: flex;
	align-items: center;
	gap: .4em;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
}
	

.swiper-mouseover:before {
	content: '';
	transform-origin: center;
	width: 1em;
	height: 1em;
	background-color: currentColor;
	transition: transform 0.2s ease-in-out;
	mask: url("data:image/svg+xml,%3Csvg width='21' height='9' viewBox='0 0 21 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 0.5L20.5 4.5M20.5 4.5L16.5 8.5M20.5 4.5H0.5M0.5 4.5L4.5 0.5M0.5 4.5L4.5 8.5' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")  no-repeat center / contain;
	-webkit-mask: url("data:image/svg+xml,%3Csvg width='21' height='9' viewBox='0 0 21 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 0.5L20.5 4.5M20.5 4.5L16.5 8.5M20.5 4.5H0.5M0.5 4.5L4.5 0.5M0.5 4.5L4.5 8.5' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")  no-repeat center / contain;
	flex-shrink: 0;
}