.FloatingSocial {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 11111110;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 6px 0;
}

.FloatingSocial--right {
	right: 0;
}

.FloatingSocial--left {
	left: 0;
}

.FloatingSocial__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--fs-size, 48px);
	height: var(--fs-size, 48px);
	border-radius: 50%;
	text-decoration: none;
	box-shadow: rgba(0, 0, 0, 0.35) 0 2px 8px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	flex-shrink: 0;
}

.FloatingSocial--right .FloatingSocial__btn {
	border-radius: 50% 0 0 50%;
}

.FloatingSocial--left .FloatingSocial__btn {
	border-radius: 0 50% 50% 0;
}

.FloatingSocial__btn:hover {
	transform: scale(1.12);
	box-shadow: rgba(0, 0, 0, 0.45) 0 4px 14px;
	border-radius: 50%;
	text-decoration: none;
}

.FloatingSocial__btn svg {
	width: 52%;
	height: 52%;
	display: block;
	pointer-events: none;
}
