/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 08-10-2020, 16:06:43
    Author     : Luis
*/

#prontolayout {
    display: none;
    position: absolute;
    top: 0%;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255,255,255,0.75);
    text-align: center;
    align-content: center;
    z-index: 10;
}

.centerpopup {
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
}

.bgpopup {
    background-color: white;
    width: 50vh;
    height: 50vh;
    min-width: 350px;
    min-height: 350px;
    border: orange 3px solid;
    border-radius: 6px;
}

.imgpopup {
    max-width: 100%;
    object-fit: contain;
}

