.swb-button {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 56px;
	padding: 0 18px;
	border-radius: 999px;
	background: #25d366;
	color: #ffffff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.swb-button:hover,
.swb-button:focus {
	background: #1ebe5d;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.swb-button:focus-visible {
	outline: 3px solid #111111;
	outline-offset: 3px;
}

.swb-button__icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
}

.swb-button__icon svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.swb-button__text {
	display: inline-block;
}

@media (max-width: 600px) {
	.swb-button {
		right: 16px;
		bottom: 16px;
		min-height: 52px;
		padding: 0 14px;
		font-size: 14px;
	}

	.swb-button__icon,
	.swb-button__icon svg {
		width: 22px;
		height: 22px;
	}
}
