#chatwithus {
  position: fixed;
  width: 40px; /* Dimensione fissa per l'icona */
  height: 40px;
  padding: 5px;
  background: #fff;
  z-index: 9;
  /* border-radius: 50%; /* Rende il contenitore rotondo */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Aggiunge un'ombra per un effetto flottante */
}
#chatwithus > svg,
#chatwithus > img {
  color: #fff;
  fill: #fff;
  width: 100%;
  height: auto;
  display: block;
}
#chatwithus > .dcw-icon-mask {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color:#fff;
}

#chatwithus #popup {
  display: none;
  position: fixed;
  width: 90vw;
  box-sizing: border-box;
  margin: 5vw;
  background-color: #fff;
  padding: 20px;
  -webkit-box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 20px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  bottom: 0;
  left: 0;
  border: 5px solid #ccc;

  @media only screen and (min-width: 992px) {
    position: absolute;
    width: 20vw;
    margin: 0;
    bottom: unset;
    left: unset;
  }
}
/* Fix per posizionamento popup e inversione della freccia */
@media only screen and (min-width: 992px) {
  #chatwithus.dcw-position-bl #popup {
    left: 50%;
    bottom: 50%;
  }

  #chatwithus.dcw-position-br #popup {
    right: 50%;
    bottom: 50%;
  }

  #chatwithus.dcw-position-tl #popup {
    left: 50%;
    top: 50%;
  }

  #chatwithus.dcw-position-tr #popup {
    right: 50%;
    top: 50%;
  }
}
#chatwithus #popup img {
  max-width: 50%;
  max-height: 50%;
  object-fit: cover;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: block;
  margin: 0 auto 10px auto;
}
#chatwithus #popup h3 {
  margin: 0;
}

/* --- Posizionamento Desktop --- */

/* Default: Bottom Left (bl) */
.dcw-position-bl {
  bottom: 20px;
  left: 20px;
}

/* Bottom Right (br) */
.dcw-position-br {
  bottom: 20px;
  right: 20px;
}

/* Top Right (tr) */
.dcw-position-tr {
  top: 20px;
  right: 20px;
}

/* Top Left (tl) */
.dcw-position-tl {
  top: 20px;
  left: 20px;
}

/* --- Mobile & Tablet (max-width: 1024px) --- */
@media only screen and (max-width: 1024px) {
  #chatwithus #popup .close {
    font-size: 36px;
    padding: 10px;
  }
}

#chatwithus #popup .close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}
