.wplogist-wa-floating-button {
	align-items: center;
	background: #25d366;
	bottom: 24px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
	color: #fff;
	display: inline-flex;
	height: 58px;
	justify-content: center;
	position: fixed;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
	width: 58px;
	z-index: 99999;
}

.wplogist-wa-floating-button.shape-circle {
	border-radius: 999px;
}

.wplogist-wa-floating-button.shape-rounded {
	border-radius: 14px;
}

.wplogist-wa-floating-button.shape-square {
	border-radius: 0;
}

.wplogist-wa-floating-button.is-right {
	right: 24px;
}

.wplogist-wa-floating-button.is-left {
	left: 24px;
}

.wplogist-wa-floating-button:hover,
.wplogist-wa-floating-button:focus {
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
	color: #fff;
	filter: brightness(0.94);
	outline: none;
	transform: translateY(-2px);
}

.wplogist-wa-floating-button:focus-visible {
	outline: 3px solid #111;
	outline-offset: 3px;
}

.wplogist-wa-floating-button__icon {
	display: block;
	height: 34px;
	width: 34px;
}

.wplogist-wa-floating-button__icon svg {
	display: block;
	fill: currentColor;
	height: 100%;
	width: 100%;
}

.wplogist-wa-floating-button__icon img {
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.wplogist-wa-floating-button.animation-pulse {
	animation: wplogist-wa-pulse 1.8s ease-out infinite;
}

.wplogist-wa-floating-button.animation-bounce {
	animation: wplogist-wa-bounce 1.8s ease-in-out infinite;
}

.wplogist-wa-floating-button.animation-glow {
	animation: wplogist-wa-glow 1.6s ease-in-out infinite;
}

@keyframes wplogist-wa-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(var(--wplogist-wa-highlight-rgb, 37, 211, 102), 0.45), 0 12px 28px rgba(0, 0, 0, 0.22);
	}

	70% {
		box-shadow: 0 0 0 18px rgba(var(--wplogist-wa-highlight-rgb, 37, 211, 102), 0), 0 12px 28px rgba(0, 0, 0, 0.22);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(var(--wplogist-wa-highlight-rgb, 37, 211, 102), 0), 0 12px 28px rgba(0, 0, 0, 0.22);
	}
}

@keyframes wplogist-wa-bounce {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}
}

@keyframes wplogist-wa-glow {
	0%,
	100% {
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), 0 0 0 rgba(var(--wplogist-wa-highlight-rgb, 37, 211, 102), 0);
	}

	50% {
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), 0 0 22px rgba(var(--wplogist-wa-highlight-rgb, 37, 211, 102), 0.85);
	}
}

@media (prefers-reduced-motion: reduce) {
	.wplogist-wa-floating-button.animation-pulse,
	.wplogist-wa-floating-button.animation-bounce,
	.wplogist-wa-floating-button.animation-glow {
		animation: none;
	}
}

@media (max-width: 600px) {
	.wplogist-wa-floating-button {
		bottom: 18px;
		height: 54px;
		width: 54px;
	}

	.wplogist-wa-floating-button.is-right {
		right: 18px;
	}

	.wplogist-wa-floating-button.is-left {
		left: 18px;
	}
}
