/* На всякий случай прячем легаси-ярлык (id из старого виджета — не мешает). */
#jivo_chat_widget {
	display: none !important;
}

/* Фирменная кнопка чата КОММА — заменяет стандартный ярлык Jivo.
   Лаймовый кружок в правом нижнем углу с иконкой чата (как был прежний виджет). */
#jivo_custom_widget {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #d5ff2f;
	background-image: url(images/chat-icon.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30px 30px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	z-index: 2147483000;
	transition: transform 0.15s ease;
}

#jivo_custom_widget:hover {
	transform: scale(1.06);
}

/* Мобила: чуть ближе к краю. */
@media (max-width: 640px) {
	#jivo_custom_widget {
		right: 16px;
		bottom: 16px;
	}
}
