/* Estilos para el popup */
#pwa-popup, #desktop-popup {
    display: block;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px;
    border-radius: 8px;
    z-index: 9999;
    width: 300px;
}

#pwa-popup {
    bottom: 60px;
    left: 20px;
}

#desktop-popup {
    bottom: 25px;
    right: 20px;
}

/* Estilos para el botón de cerrar */
#close-popup, #close-popup-desktop {
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

/* Alinear el botón a la derecha */
.text-right {
    text-align: right;
}

div#desktop-popup {
    font-size: 14px;
}

div#desktop-popup h3 {
    font-size: 20px;
    color: #FFF;
    font-weight: bold;
    font-family: 'poppinsbold';
    margin-bottom: 9px;
}
button#close-popup-desktop {
    background: #f3903c;
    width: 100%;
    padding: 14px 0px;
    font-size: 15px;
}
@media (max-width: 500px) {

#pwa-popup, #desktop-popup {

    width: 90%;
}


}








