#weblogbaz-contact-button {
	display: none;
	position: fixed;
	z-index: 9999;
	clear: both;
	margin: 0;
	border-radius: 50px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
	touch-action: none;
}

#weblogbaz-contact-button,
#weblogbaz-contact-button * {
	box-sizing: border-box;
}

.weblogbaz-contact-button__inner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 50px;
}

.weblogbaz-contact-button__text {
	align-items: center;
	min-height: 34px;
	margin: 8px 6px 8px 50px;
	padding: 8px 12px;
	border-radius: 21px;
	font-size: 14px;
	line-height: 18px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.weblogbaz-contact-button__link {
	position: absolute;
	inset: 0 auto 0 0;
	width: 50px;
	height: 50px;
	display: block;
	text-decoration: none;
	outline: none;
}

.weblogbaz-contact-button__ring,
.weblogbaz-contact-button__fill,
.weblogbaz-contact-button__icon {
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.weblogbaz-contact-button__ring {
	width: 130px;
	height: 130px;
	top: -40px;
	left: -40px;
	border: 2px solid;
	opacity: 0;
}

.weblogbaz-contact-button__fill {
	width: 80px;
	height: 80px;
	top: -15px;
	left: -15px;
	opacity: 0.18;
}

.weblogbaz-contact-button__icon {
	width: 50px;
	height: 50px;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid transparent;
}

.weblogbaz-contact-button__icon::before {
	content: "";
	width: 25px;
	height: 25px;
	display: block;
	background: #fff;
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25 1.12.37 2.32.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.28-.28.67-.36 1.02-.25 1.12.37 2.32.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.weblogbaz-contact-button--solid .weblogbaz-contact-button__icon::before {
	width: 28px;
	height: 28px;
}

.weblogbaz-contact-button--wave .weblogbaz-contact-button__ring {
	animation: weblogbaz-contact-button-ring 1.25s infinite ease-in-out;
}

.weblogbaz-contact-button--wave .weblogbaz-contact-button__fill {
	animation: weblogbaz-contact-button-fill 2.3s infinite ease-in-out;
}

.weblogbaz-contact-button--shake .weblogbaz-contact-button__icon {
	animation: weblogbaz-contact-button-shake 1s infinite ease-in-out;
	transform-origin: 50% 50%;
}

#weblogbaz-contact-button.is-dragging {
	transition: none;
}

@keyframes weblogbaz-contact-button-ring {
	0% {
		transform: scale(0.5);
		opacity: 0.1;
	}
	35% {
		transform: scale(0.75);
		opacity: 0.45;
	}
	100% {
		transform: scale(1);
		opacity: 0.05;
	}
}

@keyframes weblogbaz-contact-button-fill {
	0%,
	100% {
		transform: scale(0.72);
		opacity: 0.16;
	}
	50% {
		transform: scale(1);
		opacity: 0.24;
	}
}

@keyframes weblogbaz-contact-button-shake {
	0%,
	50%,
	100% {
		transform: rotate(0);
	}
	10%,
	30% {
		transform: rotate(-25deg);
	}
	20%,
	40% {
		transform: rotate(25deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.weblogbaz-contact-button--wave .weblogbaz-contact-button__ring,
	.weblogbaz-contact-button--wave .weblogbaz-contact-button__fill,
	.weblogbaz-contact-button--shake .weblogbaz-contact-button__icon {
		animation: none;
	}
}
