.Gstore-telegram-float {
	position: fixed;
	right: calc(var(--gstore-telegram-float-right, 20px) + env(safe-area-inset-right, 0px));
	top: var(--gstore-telegram-float-top, 75%);
	width: var(--gstore-telegram-float-size, 56px);
	height: var(--gstore-telegram-float-size, 56px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--gstore-telegram-float-bg, #229ED9);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
	z-index: 99999;
	transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
	-webkit-tap-highlight-color: transparent;
}

.Gstore-telegram-float:hover,
.Gstore-telegram-float:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
	background: color-mix(in srgb, var(--gstore-telegram-float-bg, #229ED9) 92%, #000 8%);
	outline: none;
}

.Gstore-telegram-float:active {
	transform: translateY(0);
}

.Gstore-telegram-float__icon {
	width: 28px;
	height: 28px;
	fill: currentColor;
}

@media (max-width: 480px) {
	.Gstore-telegram-float {
		--gstore-telegram-float-size: 46px;
		--gstore-telegram-float-right: 14px;
	}
	.Gstore-telegram-float__icon {
		width: 24px;
		height: 24px;
	}
}

@media print {
	.Gstore-telegram-float {
		display: none !important;
	}
}

