.whatsapp-wrap {
	position: fixed;
	right: 20px;
	bottom: 30px;
	z-index: 99999;
}
.whatsapp-wrap-l {
	position: fixed;
	left: 20px;
	bottom: 30px;
	z-index: 99999;
}
#WAbtn {
	background:#25D366;
	width: 60px;
	padding: 1em;
	height: 60px;
	border-radius: 50%;
	display: block;
	float: right;
}
#WAbtn-l {
	background:#25D366;
	width: 60px;
	padding: 1em;
	height: 60px;
	border-radius: 50%;
	display: block;
	float: left;
}
.text-wa {
	width: 100%;
	max-width: 254px;
	background: #fff;
	padding: 1em;
	text-align: left;
	position: relative;
	margin-bottom: 10px;
	border-radius: 5px;
	border: 1px solid #ededed;
	font-size: 10pt;
	line-height: 1rem;
}
.WAclose {
	position: absolute;
	top: -10px;
	left: -10px;
	background: #118C7E;
	border: 1px solid #118C7E;
	width: 20px;
	height: 20px;
	text-align: center;
	border-radius: 50%;
	line-height: 17px;
	color: #fff!important;
	z-index: 3;
}
.WAclose-l {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #118C7E;
	border: 1px solid #118C7E;
	width: 20px;
	height: 20px;
	text-align: center;
	border-radius: 50%;
	line-height: 17px;
	color: #fff!important;
	z-index: 3;
}
.WAclose:hover {
	cursor: pointer;
	text-decoration: none;
	background: #0A1015;
}
.WAclose-l:hover {
	cursor: pointer;
	text-decoration: none;
	background: #0A1015;
}
.text-wa:hover {
	background: #E7F0E4;
	color: #000;
}
.text-wa a:not(.WAclose), .text-wa a:not(.WAclose-l){
	color: #000;
	text-decoration: none!important;
}

.text-wa a:not(.WAclose):hover {
	text-decoration: none!important;
}
.hide-text .text-wa {
	display: none;
}
.wa-inner {
	position: relative;
}
.link-wa {
	z-index: 1;
	cursor: pointer;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
}
.wa-checkout-button {
	display: inline-flex;
	margin: 20px 0;
	background-color: #43cd66; /* Color de fondo */
	border-color: #43cd66;
	color: white!important; /* Color del texto */
	border: none; /* Sin borde */
	padding: 15px 30px; /* Espaciado interno */
	font-size: 18px; /* Tamaño del texto */
	font-weight: bold; /* Texto en negrita */
	text-transform: uppercase; /* Texto en mayúsculas */
	border-radius: 50px; /* Esquinas redondeadas */
	cursor: pointer; /* Cursor de mano */
	transition: all 0.3s ease; /* Transición suave */
}

.wa-checkout-button:hover {
	background-color: #36A856; /* Color de fondo al pasar el cursor */
	box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.2); /* Sombra al pasar el cursor */
	transform: translateY(-3px); /* Efecto de elevación */
}

.wa-checkout-button:active {
	background-color: #36A856; /* Color de fondo al hacer clic */
	box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Sombra al hacer clic */
	transform: translateY(2px); /* Efecto de hundimiento */
}

.wa-checkout-button img {
	width: 100%;
	max-width: 24px;
	height: auto;
	margin-right: 10px
}
/* Responsive */
@media(max-width: 989px) {
	.hide-text .text-wa {
		display: block;
	}
	.link-wa {
		max-width: 310px;
		left: 0;
		margin: 0 auto;
	}
	#section-footer {padding-bottom: 70px;}
	#WAbtn, .WAclose {display: none;}
	#WAbtn-l, .WAclose-l {display: none;}
	.whatsapp-wrap {left: 20px;}
	.whatsapp-wrap-l {right: 20px;}
	.text-wa {
		margin: 0 auto;
		border: 1px solid #ededed;
		box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 10%);
		padding-left: 55px;
		max-width: 310px;
	}
	.text-wa:before {
		content: '';
		display: block;
		width: 35px;
		height: 35px;
		background: url(../img/whatsapp.svg) #25D366 no-repeat center center;
		background-size: 24px;
		border-radius: 50%;
		position: absolute;
		left: 10px;
	}
}
@media(max-width: 767px) {
	.whatsapp-wrap {bottom: 15px;}
	.whatsapp-wrap-l {bottom: 15px;}
	.text-wa {
		max-width: 100%;
		min-height: 60px;
		display: flex;
		align-items: center;
	}
}