.bfc-floating {
	position: fixed;
	z-index: 99990;
	bottom: 34px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff !important;
	text-decoration: none !important;
	font-family: 'Tajawal', sans-serif;
}

.bfc-floating--left {
	left: 24px;
}

.bfc-floating--right {
	right: 24px;
}

.bfc-floating__icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	border-radius: 18px;
	background: #20a868;
	box-shadow: 0 12px 28px rgba(0, 0, 0, .3);
	transition: transform .2s ease;
}

.bfc-floating--telegram .bfc-floating__icon {
	background: #268dcc;
}

.bfc-floating__icon svg {
	width: 31px;
	height: 31px;
}

.bfc-floating__label {
	padding: 9px 13px;
	color: #fff;
	background: #172740;
	border-radius: 11px;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 9px 22px rgba(0, 0, 0, .25);
}

.bfc-floating:hover .bfc-floating__icon {
	transform: translateY(-3px);
}

@media (max-width: 600px) {
	.bfc-floating {
		bottom: max(78px, calc(env(safe-area-inset-bottom, 0px) + 66px));
	}

	.bfc-floating--left {
		left: 14px;
	}

	.bfc-floating--right {
		right: 14px;
	}

	.bfc-floating__icon {
		width: 52px;
		height: 52px;
		border-radius: 16px;
	}

	.bfc-floating__label {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bfc-floating__icon {
		transition: none;
	}
}
