.floating-wa-wrap {
  position: fixed;
  bottom: 20vh;
  right: 2vw;
  z-index: 999;
  cursor: pointer;
}

.floating-wa-icon-wrap {
  position: relative;
  width: 40px;
  aspect-ratio: 1;

  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.floating-wa-icon-wrap span svg {
  fill: white;
}

.floating-wa-wrap::after {
  content: "Scrivici..";
  position: absolute;
  top: 8px;
  left: -40px;
  width: 100%;
  height: 20px;
  background: white;
  color: #000000;
  display: flex;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  font-size: 0.5rem;
  opacity: 0;
}
.floating-wa-wrap:hover::after {
  opacity: 1;
}
