.popupWindow {
    display: none;
    background-color: var(--background-color);
    transition: 0.2s;
    opacity: 1;
    border-bottom-left-radius: 1vmin;
    border-bottom-right-radius: 1vmin;
    border: 1px solid;
    border-color: var( --main-color);
    /* padding: 3vmin; */
    /* max-width: 350px; */
    z-index: 10000;
    text-align: center;
    color: var(--text-color-sidePanel);
    position: fixed;
    top: 12vmin;
    /* margin: 0 auto; */
    left: 50%;
    transform: translate(-50%, 0px);
    /* min-width: 45vmin; */
    width: 39%;
}

.popupWindow button {
    width: 39%;
    display: block;
    position: relative;
    min-width: 0;
}

.popupWindowText {
    font-size: 2vmin;
    line-height: 1.5;
    padding-bottom: 3vmin;
    /* text-align: left; */
    word-break: break-word;
    white-space: normal;
}

#promptWindowButtonHolder,
#confirmWindowButtonHolder{
    display: flex;
    justify-content: space-evenly;
    /* display: grid; */
    /* grid-template-columns: 45% 45%; */
    /* grid-column-gap: 10%; */
}

#promptWindowInput {
    margin: 0 0 2vmin 0;
    width: 90%;
    height: 2.5vmin;
}

#promptWindowCheckboxDiv {
    display: none;
}

#promptWindowCheckbox,
#promptWindowCheckboxLabel {
    cursor: pointer;
}