div#popupBG {
        position: fixed;
        overflow: auto;
        top: 0px;
        left: 0px;
        right: 0px;
        height: 100%;
        background-color: rgba(128,128,128,0.7);
        cursor: pointer;
/*      backdrop-filter: blur(3px);*/
        display: flex;
        align-items: flex-start;
        justify-content: center;
	z-index: 1000000;
}
div#popup {
        cursor: default;
        min-width: 20vw;
        min-height: 20vh;
	max-width: 800px;
        background-color: #ffffff;
        border-radius: 16px;
        display: inline-block;
        border: 1px solid #606060;
        box-shadow: 2px 2px 8px 0px #404040;
        padding: 16px;
        text-align: center;
	margin-top: 10vh;
}
div#popup .pgumbi {
        display: flex;
        justify-content: space-evenly;
        margin-top: 8px;
}
div#popup .pgumbi button {
        font-size: 1.4em;
        cursor: pointer;
}
div#popup h3 {
	color: #000000 !important;
}
