.popup-window{
    position: fixed;
    top:0;
    left:0;
    z-index: 11;
    background: #000000aa;
    width:100%;
    height:100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.popup-window select{
    background: var(--color);
    color: white;
    outline: none;
    border: 1px solid white;
    border-radius: 5px;
}

.popup-window-content{
    overflow: hidden;
    width: 70vw;
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
    border-color: white;
    background-color: var(--color);
    padding: 10px;
    color: white;
    word-wrap: break-word;
}

.popup-window-button {
    border: 2px solid white;
    border-radius: 15px;
    margin: 1vw;
    padding: 5px;
    -webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
    cursor: pointer;
    
}

.popup-window-button:hover{
    background: var(--selected-node-color);
}

.popup-window-title{
    font-size: 30px;
    padding: 20px;
    text-align: center;
    font-weight: 900;
    border-bottom: 5px solid white;
}

.popup-window-inline-container{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    font-size: 2vh;
    text-align: center;
    margin: 1vh;
    border: 2px solid white;
    border-radius: 5px;
    padding: 5px;
}
.popup-window-inline-container>select{
    width:100%;
    height:100%;
}
.popup-window-inline-container>*{
    flex:1;
}