/* Add custom CSS styles below */ 
#salla-whatsapp-btn{
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99999;
  transition: transform .2s ease, box-shadow .2s ease;
}

#salla-whatsapp-btn:hover{
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0,0,0,.30);
}

#salla-whatsapp-btn svg{
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 768px){
  #salla-whatsapp-btn{
    width: 54px;
    height: 54px;
    bottom: 16px;
    left: 16px;
  }
}