.st-chat-wrapper {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 99999;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
	gap: 8px;
	text-decoration: none;
	font-family: sans-serif;
}

.st-chat-bubble {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, #00b2ff, #006aff);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 106, 255, .3);
	position: relative;
	transition: transform .3s ease;
}

.st-chat-bubble svg {
	width: 22px;
	height: 22px;
	fill: white;
}

.st-chat-text {
	background: #fff;
	color: #006aff;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
	white-space: nowrap;
	border: 1px solid #006aff;
	animation: textFadeInOut 6s infinite;
}

@keyframes textFadeInOut {
	0%, 10% {
		opacity: 0;
		transform: translateX(10px);
		visibility: hidden;
	}
	
	20%, 80% {
		opacity: 1;
		transform: translateX(0);
		visibility: visible;
	}
	
	90%, 100% {
		opacity: 0;
		transform: translateX(10px);
		visibility: hidden;
	}
}

.st-chat-bubble::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #006aff;
	z-index: -1;
	animation: st-mini-pulse 2.5s infinite;
}

@keyframes st-mini-pulse {
	0% {
		transform: scale(1);
		opacity: .5;
	}
	
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

@media screen and (max-width: 768px) {
	.st-chat-wrapper {
		bottom: 100px;
		left: 10px;
		right: auto;
		flex-direction: row;
	}
	
	.st-chat-bubble {
		width: 45px;
		height: 45px;
	}
	
	.st-chat-bubble svg {
		width: 25px;
		height: 25px;
	}
	
	.st-chat-text {
		font-size: 11px;
		padding: 5px 11px;
		animation: textFadeInOutMobile 6s infinite;
	}
}

@keyframes textFadeInOutMobile {
	0%, 10% {
		opacity: 0;
		transform: translateX(-10px);
		visibility: hidden;
	}
	
	20%, 80% {
		opacity: 1;
		transform: translateX(0);
		visibility: visible;
	}
	
	90%, 100% {
		opacity: 0;
		transform: translateX(-10px);
		visibility: hidden;
	}
}

.st-chat-wrapper:hover .st-chat-bubble {
	transform: scale(1.1);
}