#wpais-floating-button {

  position: fixed;

  left: 10px;

  bottom: 30px;

  background: #005ae0;

  color: #fff;

  padding: 14px 20px;

  border-radius: 40px;

  cursor: pointer;

  font-weight: 600;

  z-index: 99999;

  box-shadow: 0 8px 20px rgba(0,0,0,.2);

}

#wpais-floating-button:hover{

  transform: translateY(-2px);

}

#wpais-modal{

  position: fixed;

  inset:0;

  background: rgba(0,0,0,.5);

  display:none;

  justify-content:center;

  align-items:center;

  z-index:999999;

}

.wpais-modal-content{

  background:#fff;

  width:700px;

  max-width:90%;

  max-height:80vh;

  overflow:auto;

  padding:30px;

  border-radius:12px;

  position:relative;

}

.wpais-close{

  position:absolute;

  right:20px;

  top:15px;

  font-size:30px;

  cursor:pointer;

}