/* Botón WhatsApp Flotante */
.float-wsp{
	position:fixed;
	width:60px;
	height:60px;
	bottom:30px;
	right:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: var(--shadow-modern);
  z-index:9999;
  transition: var(--transition-default);
}

.float-wsp:hover {
	transform: scale(1.1);
	box-shadow: var(--shadow-modern-hover);
	color: #FFF;
	text-decoration: none;
}

.my-float-wsp{
	margin-top:16px;
}

