.sci-bar {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999999;
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sci-position-right {
	right: 0;
}

.sci-position-left {
	left: 0;
}

.sci-item {
	width: 52px;
	height: 52px;
	background: var(--sci-bg, #1a4f8a);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.sci-item img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	display: block;
}

.sci-fallback {
	color: var(--sci-icon-color, #ffffff);
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
}

.sci-item:hover {
	opacity: 0.88;
}

/* Tablet and mobile: convert to a fixed bottom bar */
@media (max-width: 1024px) {
	.sci-bar {
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		transform: none;
		flex-direction: row;
		width: 100%;
	}

	.sci-item {
		flex: 1 1 0;
		width: auto;
		height: 48px;
	}
}

@media (max-width: 480px) {
	.sci-item {
		height: 44px;
	}

	.sci-item img {
		width: 20px;
		height: 20px;
	}
}
