  
  #widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f2f2f2;
    cursor: pointer;
    z-index: 9999;
    background-image: url("../img/Logo-soporte.jpg");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  }
  
  #widget.custom-image {
    background-image: url("../img/Logo-soporte.jpg");
  }

  #tooltip {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f2f2f2;
    padding: 5px;
    border-radius: 5px;
    display: none;
  }
  
  #widget:hover #tooltip {
    display: block;
  }
  
  #formulario-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 50px;
    width: 600px; /* Ajusta el ancho según tus necesidades */
    height: 600px; /* Ajusta la altura según tus necesidades */
  }
  
  #cerrar-formulario {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
  }