/* stylelint-disable selector-id-pattern */
#jivo_chat_widget {
	display: none;
}

/* stylelint-disable-next-line keyframes-name-pattern */
@keyframes jivoPulse {
	50% {
		transform: scale(1, 1);
		opacity: 1;
	}

	100% {
		transform: scale(2, 2);
		opacity: 0;
	}
}

#custom_jivo {
	display: flex;
	position: fixed;
	z-index: 100;
	right: 50px;
	bottom: 50px;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: rgba(0, 173, 239, .2);
	cursor: pointer;
}

.custom_jivo_animation {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	animation: jivoPulse infinite 1500ms;
	border: 1px solid rgb(0, 173, 239);
	border-radius: 50%;
}

.custom_jivo_background {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	border: 1px solid rgb(0, 173, 239);
	border-radius: 50%;
	background-color: rgb(0, 173, 239);
}

/* the default style - for offline messages if no one is online */
#jivo_custom_widget {
	width: 35px;
	height: 35px;
	background-image: url('./images/chat-icon.svg');
	background-repeat: no-repeat;
	background-position: center;
}
