
#customer_service {
	position: fixed;
	bottom: 10px;
	right: 5px;
	z-index: 1000;
	cursor: pointer;
}

#chat-sales-container {
	opacity: 100%;
}

#chat-sales-container img {
	width: 180px;
	transition: transform 0.5s ease;
}

.float-button:hover img,
#chat-sales-container:hover img {
	transform: scale(1.1);
}

#chat-buttons-container {
	display: none;
	flex-direction: column;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.float-button {
	display: block;
	margin-bottom: 5px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.float-button:hover img,
#chat-sales-container:hover img {
	transform: scale(1.1);
}

.float-button img {
	width: 180px;
	height: auto;
	transition: transform 0.3s ease;
}

@media (min-width: 758px) {
	#chat-sales-container img {
		width: 300px;
	}

	.float-button img {
		width: 250px;
	}

}