@charset "utf-8";

.popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    z-index:9999;
}

.popup-box{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    height:100%;
}

.popup-contenido{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
    box-shadow:0 0 20px rgba(0,0,0,.5);
}