#mingob-lsp-button{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

border-radius:50%;

background:#005baa;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

cursor:pointer;

z-index:999999;

box-shadow:0 5px 15px rgba(0,0,0,.25);

transition:.3s;

}

#mingob-lsp-button:hover{

transform:scale(1.1);

}
/* Fondo oscuro */

#mingob-lsp-overlay{

display:none;

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

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

z-index:999998;

}

/* Ventana */

#mingob-lsp-popup{

display:none;

position:fixed;

top:50%;

left:50%;

transform:translate(-50%,-50%);

width:500px;

max-width:95%;

background:white;

border-radius:10px;

box-shadow:0 10px 40px rgba(0,0,0,.3);

z-index:999999;

overflow:hidden;

}

/* Cabecera */

.lsp-header{

background:#005baa;

color:white;

padding:15px;

display:flex;

justify-content:space-between;

align-items:center;

font-size:18px;

}

/* Botón cerrar */

#mingob-lsp-close{

background:none;

border:none;

color:white;

font-size:28px;

cursor:pointer;

}

/* Cuerpo */

.lsp-body{

padding:25px;

min-height:250px;

}