#btn_singleForm.hide {
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

#btn_singleForm.show {
	transform: translateY(0);
	pointer-events: auto;
	position: fixed;
	bottom: 0;
	z-index: 3;
	margin: 0 -10px;
	box-shadow: 0 -20px 40px 20px #00203F26;
}

/* Popup activado */
.container_singleForm.activePopup {
	position: fixed;
	right: 0;
	background: #0A0A0AB2;
	z-index: 9999;
	height: 100vh;
	top: 0;
	display: flex;
	justify-content: center;
	padding: 0 10px;
}
#btn_closePopup {
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    margin: 0 0 10px auto;
    border-radius: 6px;
    display: flex;
    align-items: center;
}

.whatsapp_fixed {
  bottom: 20px; 
  transition: bottom 0.3s ease-in-out;
}

.whatsapp_fixed.withFormBtn {
  bottom: 70px !important;
}