
#whatsflutuante{display:none;}


.wc_whatsapp_app {
  position: fixed;
  bottom: 30px;
  z-index: 9999999999;
  display: flex;
  align-items: center;
 
}
.wc_whatsapp_app:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: #F13C00;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.wc_whatsapp_app.left {
  left: 30px;
}
.wc_whatsapp_app.right {
  right: 30px;
}
.wc_whatsapp {
  z-index: 10;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  background: #F13C00;
  box-shadow: 2px 2px 20px 8px rgba(0, 0, 0, 0.2);
  transition: all ease 0.2s;
  
}
.wc_whatsapp:hover,
.wc_whatsapp_app:hover::before,
.wc_whatsapp:focus {
  box-shadow: 2px 2px 20px 8px rgba(0, 0, 0, 0.2);
  background: #4173fd;
}
.wc_whatsapp::before {
   
  content: "";
  display: block;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3e%3cpath d='M0 32C0 14.3 14.3 0 32 0L48 0c44.2 0 80 35.8 80 80l0 288c0 8.8 7.2 16 16 16l464 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-66.7 0c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16l-197.5 0c1.8 5 2.7 10.4 2.7 16c0 26.5-21.5 48-48 48s-48-21.5-48-48c0-5.6 1-11 2.7-16L144 448c-44.2 0-80-35.8-80-80L64 80c0-8.8-7.2-16-16-16L32 64C14.3 64 0 49.7 0 32zM432 96l0-40c0-4.4-3.6-8-8-8l-80 0c-4.4 0-8 3.6-8 8l0 40 96 0zM288 96l0-40c0-30.9 25.1-56 56-56l80 0c30.9 0 56 25.1 56 56l0 40 0 224-192 0 0-224zM512 320l0-224 16 0c26.5 0 48 21.5 48 48l0 128c0 26.5-21.5 48-48 48l-16 0zM240 96l16 0 0 224-16 0c-26.5 0-48-21.5-48-48l0-128c0-26.5 21.5-48 48-48z' fill='%23fff'/%3e%3c/svg%3e") 
  no-repeat center;
  height: 22px;
  margin-top: 20px;
}

.wc_whatsapp_secondary {
  width: 165px;
  position: absolute;
  right: 75px;
  text-align: center;
}
.wc_whatsapp_secondary p {
  text-transform: uppercase;
  margin-left: 15px;
  border: 1px solid #e2e2e2;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 700;
  position: relative;
  color: #263b50;
  margin-bottom: 0;
  margin-top: 0;
  font-size: 14px;
  background: #fff;
}
.wc_whatsapp_secondary p::before {
  left: auto;
  content: "";
  position: absolute;
  background: white;
  border-top: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  right: -5px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  z-index: 1;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
