/**
 * Frontend Css code.
 */

.cbfw-button {
	align-items: center;
	background: #25d366;
	border-radius: var(--cbfw-radius, 50%);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	box-sizing: border-box;
	color: #fff;
	display: flex;
	height: var(--cbfw-size, 56px);
	justify-content: center;
	opacity: 0;
	position: fixed;
	text-decoration: none;
	transform: translateY(8px) scale(0.96);
	transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
	width: var(--cbfw-size, 56px);
	z-index: 99999;
}

.cbfw-button:hover,
.cbfw-button:focus {
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
	color: #fff;
	outline: none;
	transform: translateY(0) scale(1.04);
}

.cbfw-button:focus-visible {
	box-shadow: 0 0 0 3px #fff, 0 0 0 6px #25d366;
}

.cbfw-is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.cbfw-position-bottom-right {
	bottom: var(--cbfw-bottom, 24px);
	right: var(--cbfw-right, 24px);
}

.cbfw-position-bottom-left {
	bottom: var(--cbfw-bottom, 24px);
	left: var(--cbfw-left, 24px);
}

.cbfw-position-top-right {
	right: var(--cbfw-right, 24px);
	top: var(--cbfw-top, 24px);
}

.cbfw-position-top-left {
	left: var(--cbfw-left, 24px);
	top: var(--cbfw-top, 24px);
}

.cbfw-button-icon {
	display: block;
	height: 62%;
	width: 62%;
}

.cbfw-button-icon svg {
	display: block;
	fill: currentColor;
	height: 100%;
	width: 100%;
}

.cbfw-badge {
	align-items: center;
	background: #d63638;
	border: 2px solid #fff;
	border-radius: 999px;
	color: #fff;
	display: flex;
	font-size: 11px;
	font-weight: 700;
	height: 20px;
	justify-content: center;
	line-height: 1;
	min-width: 20px;
	padding: 0 5px;
	position: absolute;
	right: -5px;
	top: -5px;
}

.cbfw-badge {
	align-items: center;
	background: #d63638;
	border: 2px solid #fff;
	border-radius: 50%;
	box-sizing: border-box;
	color: #fff;
	display: flex;
	font-size: 11px;
	font-weight: 700;
	height: 22px;
	width: 22px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: -6px;
	top: -6px;
}
.cbfw-animation-pulse.cbfw-is-visible {
	animation: cbfw-pulse 1.8s ease-in-out infinite;
}

.cbfw-animation-bounce.cbfw-is-visible {
	animation: cbfw-bounce 1.8s ease-in-out infinite;
}

.cbfw-animation-shake.cbfw-is-visible {
	animation: cbfw-shake 2.2s ease-in-out infinite;
}

.cbfw-animation-zoom.cbfw-is-visible {
	animation: cbfw-zoom 1.8s ease-in-out infinite;
}

.cbfw-animation-floating.cbfw-is-visible {
	animation: cbfw-floating 2.4s ease-in-out infinite;
}

.cbfw-animation-rotate.cbfw-is-visible {
	animation: cbfw-rotate 2.6s ease-in-out infinite;
}

@keyframes cbfw-pulse {
	0%,
	100% {
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(37, 211, 102, 0.45);
	}

	50% {
		box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), 0 0 0 12px rgba(37, 211, 102, 0);
	}
}

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

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

@keyframes cbfw-shake {
	0%,
	90%,
	100% {
		transform: translateX(0);
	}

	92% {
		transform: translateX(-3px);
	}

	94% {
		transform: translateX(3px);
	}

	96% {
		transform: translateX(-2px);
	}
}

@keyframes cbfw-zoom {
	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.08);
	}
}

@keyframes cbfw-floating {
	0%,
	100% {
		transform: translateY(0);
	}

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

@keyframes cbfw-rotate {
	0%,
	100% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(8deg);
	}
}

@media (min-width: 1201px) {
	.cbfw-hide-desktop {
		display: none;
	}
}

@media (min-width: 1025px) and (max-width: 1200px) {
	.cbfw-hide-laptop {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.cbfw-hide-tablet {
		display: none;
	}
}

@media (max-width: 767px) {
	.cbfw-hide-mobile {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cbfw-button,
	.cbfw-button.cbfw-is-visible {
		animation: none;
		transition: none;
	}
}
