.swish-demo-fab {
	position: fixed;
	right: 20px;
	bottom: 25px;
	z-index: 99998;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: calc(100vw - 20px - 20px - 10px - 140px); /* Gtranslate the button to the left by 32px and 100px to account for the padding and the width of the button */
	padding: 8px 24px;
	border-radius: 999px;
	background: var(--global-palette2, #4a9fd4);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 8px 24px #0000004d;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.swish-demo-fab:hover,
.swish-demo-fab:focus {
	color: #fff;
	background: var(--global-palette2-hover, #3d8bc0);
	box-shadow: 0 10px 28px #00000059;
	transform: translateY(-2px);
}

@media (max-width: 600px) {
	.swish-demo-fab {
		padding: 8px 16px;
		font-size: 12px;
    bottom: 25px;
	}
}
