
/* Simple Look - WhatsApp Chat (v1.0.4) */
.slwc-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  border: 0;
  outline: none;
}

.slwc-icon{
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25D366;
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.slwc-icon svg{
  width: 28px;
  height: 28px;
  fill: #fff;
}

.slwc-float:hover .slwc-icon{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0,0,0,.26);
  filter: brightness(1.02);
}

.slwc-tooltip{
  display: none;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1;
  color: #111;
  background: rgba(255,255,255,.96);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
  white-space: nowrap;
}

@media (min-width: 900px){
  .slwc-tooltip{ display: inline-flex; }
}

@media (max-width: 420px){
  .slwc-float{ right: 14px; bottom: 14px; }
  .slwc-icon{ width: 52px; height: 52px; }
}
