
.whatsapp_pos{
  position:fixed;
  bottom:90px;
  right:26px;
  z-index:9999;
}

/* wrapper */

.wpfab-wrapper{
  position:fixed;
  bottom:24px;
  right:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  z-index:9999;
  min-width: 46px;
  max-width: 140px;
}

.w-5{
  width: calc(0.25rem * 5);
}
.h-5{
  height: calc(0.25rem * 5);
}
/* FAB button */

.wpfab{
  position:relative;
  z-index:5;

  display:inline-flex;
  align-items:center;

  height:40px;
  padding:0 10px;
  border-radius:999px;
  background-color: #833375;
  color:white;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
  overflow:hidden;
  transition:all .35s cubic-bezier(.4,0,.2,1);
  min-width: 40px;
  border:0;
}

/* icon */

.wpfab-icon{
  width:40px;
  height:40px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:20px;

  flex-shrink:0;
}

/* text hidden */

.wpfab-text{
  max-width:0;
  opacity:0;

  white-space:nowrap;
  overflow:hidden;

  margin-left:0;

  transition:
    max-width .35s ease,
    opacity .25s ease,
    margin-left .35s ease;
}

/* expanded */

.expanded .wpfab-text{
  max-width:140px;
  opacity:1;
  margin-left:8px;
}

/* ripple */

.ripple{
  position:absolute;

  width:100%;
  height:100%;

  border-radius:999px;

  border:2px solid rgba(162,76,146,0.5);

  animation:rippleWave 3s infinite;
}

.text-gold {
	color: #F1CE90;
}
/* wave delay */

.r1{ animation-delay:0s; }
.r2{ animation-delay:1s; }
.r3{ animation-delay:2s; }

/* ripple animation */

@keyframes rippleWave{

  0%{
    transform:scale(.8);
    opacity:1;
  }

  70%{
    transform:scale(1.2); /* smaller ripple range */
    opacity:.2;
  }

  100%{
    transform:scale(1.4);
    opacity:0;
  }

}
