.stt-btn-ff61ab94 {
	position: fixed;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: none;
	outline: none;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s;
	opacity: 0;
	pointer-events: none;
}

/* Animations */
.stt-btn-ff61ab94.stt-anim-fade {
	transform: scale(0.9);
}

.stt-btn-ff61ab94.stt-anim-fade.stt-visible-ff61ab94 {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1);
}

.stt-btn-ff61ab94.stt-anim-slide {
	transform: translateY(100px);
}

.stt-btn-ff61ab94.stt-anim-slide.stt-visible-ff61ab94 {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.stt-btn-ff61ab94:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.stt-btn-ff61ab94:active {
	transform: scale(0.95);
}
