


.float-wapp{
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	top:auto;
	right:auto;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px; 
  z-index:100;
	z-index:+1000;
}

.my-float-wapp{
	position:relative;
	margin-top:16px;
	color:#fff;
	z-index:+1001;
}

.my-float-wapp:after{
  content: " ";
	position:absolute;
	top:-16px; bottom:0; left:-17px; right:0;
	background-color:red;
	width:60px;
	height:60px;
	border-radius:50%;
	z-index:-1;
	background-color: rgba(37, 211, 102, 0.3);
	border:2px solid rgba(37, 211, 102, 0.5);

	-webkit-animation: scale-up-center 2000ms ease-in-out infinite alternate both;
	        animation: scale-up-center 2000ms ease-in-out infinite alternate both;
	 
}








.float-call{
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	top:auto;
	right:auto;
	left:150px;
	background-color:#3240a8;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px; 
  z-index:100;
	z-index:+1000;
}

.my-float-call{
	position:relative;
	margin-top:16px;
	color:#fff;
	z-index:+1001;
}

.my-float-call:after{
  content: " ";
	position:absolute;
	top:-16px; bottom:0; left:-17px; right:0;
	background-color:red;
	width:60px;
	height:60px;
	border-radius:50%;
	z-index:-1;
	background-color: rgba(50, 64, 168, 0.3);
	border:2px solid rgba(50, 64, 168, 0.5);

	-webkit-animation: scale-up-center 2000ms ease-in-out infinite alternate both;
	        animation: scale-up-center 2000ms ease-in-out infinite alternate both;
	 
}

 


.scale-up-center {
	-webkit-animation: scale-up-center 2000ms ease-in-out infinite alternate both;
	        animation: scale-up-center 2000ms ease-in-out infinite alternate both;
}
 
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

