.bac-floating-button {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 99999;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 50px;
	padding: 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: #3b82f6;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
	color: #ffffff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.bac-floating-button:hover {
	background: #2563eb;
	box-shadow: 0 13px 32px rgba(15, 23, 42, 0.34);
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
}

.bac-floating-button:focus,
.bac-floating-button:focus-visible {
	color: #ffffff;
	outline: 3px solid rgba(59, 130, 246, 0.35);
	outline-offset: 3px;
	text-decoration: none;
}

.bac-floating-button__icon {
	width: 21px;
	height: 21px;
	flex: 0 0 21px;
	fill: currentColor;
}

@media (max-width: 767px) {
	.bac-floating-button {
		right: 16px;
		bottom: 16px;
		min-height: 48px;
		padding: 0 17px;
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bac-floating-button {
		transition: none;
	}
}
