.mj-floating-button {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 9999;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	background: #000;
	color: #fff !important;
	padding: 14px 20px;
	border-radius: 0 !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;

	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition:
		opacity .4s ease,
		transform .4s ease,
		background-color .25s ease,
		color .25s ease;
}

.mj-floating-button.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.mj-floating-button:hover {
	color: #fff !important;
	background: #333;
	text-decoration: none;
}

.mj-floating-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.mj-floating-button > svg {
	display: block;
	width: var(--mj-floating-button-icon-size, 22px);
	height: auto;
	flex: 0 0 auto;
	fill: currentColor;
	stroke: none;
}

@media (max-width: 767px) {
	.mj-floating-button {
		right: 10px;
		bottom: 10px;
		font-size: 14px;
		padding: 12px 16px;
	}
}