.water-widget {
    display: inline-block;
}
	.water-widget:hover{
		cursor: pointer;
	}
	.water-widget{
		background:#00A0E3;
		width: 60px;
		height: 60px;
		border-radius: 50%
	} 
	.water-widget img{
		position: absolute;
		top: 9px;
		left: 9px;
		width: 40px;
		height: 40px;
	}
.ripple1, .ripple2, .ripple3, .ripple4 {
    position: absolute;
    border-radius: 50%;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    opacity: 0;
    animation: water-widget 4s linear infinite;
}
 
.ripple1 {
    border: 3px solid #4d4e53;
    animation-delay: 0s;
}
 
.ripple2 {
    border: 3px solid #4d4e53;
    animation-delay: 6s;
}
 
.ripple3 {
    border: 3px solid #4d4e53;
    animation-delay: 12s;
}
 
.ripple4 {
    border: 3px solid #4d4e53;
    animation-delay: 18s;
}
 
@keyframes water-widget {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    33% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    66% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
	.chat-panel{
		display: none;
	}


.water-widget{
	position: fixed;
    bottom: 50px;
    right: 50px;
}
.chat-panel{
	z-index: 2;
	position: fixed;
    bottom: 90px;
    right: 50px;
}
.chat-panel{
    flex-direction: column;
    align-content: center;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
}
	.chat-panel.show{
		transition: all .4s linear;
		display: flex;
	}
.chat-item{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.chat-panel .icon{
	width: 50px!important;
	height: 50px!important;
	background: #6F6A6A;
	border-radius: 50%;
	padding: 10px;
}
.icon a{
	width: 100%;
	height: auto;
}
.icon svg g #SVGRepo_iconCarrier{
	width: 50px!important;
	height: 50px!important;
}
.title-chat{
	display: none;
	position: relative;
	width: fit-content;
	background: #292929;
	padding: 7px 15px;
	margin-bottom: 0px;
    font-size: 15px;
	margin-right: 15px;
}
.title-chat.show{
	display: block;
}
.title-chat::after{
	content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: solid transparent;
    border-left-color: transparent;
    border-width: 14px;
    top: 50%;
    right: -27px;
    transform: translateY(-50%);
    border-left-color: #292929;
}
.title-chat p{
	margin-bottom: 0px;
	color: #FFFFFF;
}
@media (max-width: 576px){
.water-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
}
}