.pgen_popup {
    z-index: 99999;
    position: fixed;
    height: 100vh;
    width: 100vw;
    display: grid;
    place-content: center;
    place-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.pgen_popup.pgen_popup_hide {
    display: none;
}

.pgen_popup_backdrop {
    z-index: 1;
    position: fixed;
    height: 100vh;
    width: 100vw;
    display: grid;
    place-content: center;
    place-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
    background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

.pgen_popup_content {
    display: flex;
    position: fixed;
    width: 80vw;
    height: 80vh;
    top: 10vh;
    left: 10vw;
    z-index: 2;
    background: white;
    padding: 5px;
}

.pgen_popup_content.rounded {
    border-radius: 0.85rem;
}

.pgen_popup_close {
    position: absolute;
    width: 20px;
    height: 30px;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    box-sizing: content-box;
    right: 2px;
    top: 2px!important;
    display: grid;
    place-content: center;
}