/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
.whatsapp{
    position: fixed;
    bottom: 30px;
    width: 55px;
    left: 15px;
    cursor: pointer;
z-index:999999;
animation-name: float;
animation-duration: 4s;
animation-iteration-count: infinite;
}

@keyframes float {
  0% {bottom: 25px;}
  50% {bottom: 45px;}
  100% {bottom: 25px;}
}
