/* WhatsApp Button  */
.whatsapp-button {
	position: fixed;
	bottom: 165px;
	width: 46px;
	height: 46px;
	right: 20px;
	border-radius: 75%;
	transition: all 0.5s cubic-bezier(0, 0, 0, 1) 0s;
	z-index: 1000;
	box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.2);
	-webkit-box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.2);
	-moz-box-shadow: 6px 6px 13px 0px rgba(42, 67, 113, 0.2);
	visibility: visible;
}
.whatsapp-button:hover {
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

/* Blinking Text */
.blink_me {
	animation: blinker 2s linear infinite;
  }
  
  @keyframes blinker {  
	50% { opacity: 0; }
  }


