.DeadCenter {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%,-50%);
}
.TopCenter {
    position: absolute;
    top: 10%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%);
}
.ButtonLike {
    display:inline-block;
    font-size: 120%;
    font-weight: bold;
    border-radius: 1em;
    border: 1px solid black;
    cursor: pointer;
    background-color: white;
    padding: 8px;
}
.SmallButton {
    display:inline-block;
    font-weight: bold;
    border-radius: 1em;
    border: 1px solid black;
    cursor: pointer;
    background-color: white;
    padding:.3em;
    margin-left: 1em;
}
.InlineButton {
    display: inline-block;
    text-align: center;
    border-radius: 1em;
    border: 1px solid black;
    cursor: pointer;
    background-color:#f0f0ff;
    margin: .5em 3em .5em 3em;
    padding: 8px;
    font-size: 1.3vw;
    line-height: 0.9;
    box-shadow: 6px 6px 5px rgba(0, 0, 0, 0.4);
}
.LargeButton {
    display: inline-block;
    text-align: center;
    font-weight: bold;
    border-radius: 1em;
    border: 1px solid black;
    cursor: pointer;
    background-color: white;
    margin-top: 0.7em;
    padding: 8px;
    font-size: 1.2vw;
    color: #404080;
    box-shadow: 8px 8px 6px rgba(0, 0, 0, 0.4);
}

.PopupMessage {
    display:block;
    z-index:4101;
    border:2px solid black;
    border-radius: 1em;
    font-size: 1.7vw;
    padding: 4px 8px;
    font-family:sans-serif;
    text-align: center;
    color:black;
    background-color:white;
    box-shadow: 14px 14px 12px rgba(0,0,0, 0.5);
}

.PopupMessageX {
    position:absolute;
    top: -.5em;
    right: -.5em;
    background: rgba(255,255,255,1.0);
    border: 2px solid black;
    border-radius: 1em;
    font-family: sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 110%;
    cursor: pointer;
}

.PromptPopup {
    display:block;
    z-index:4001;
    float:right; clear:both;
    border:2px solid black;
    border-radius: 1em;
    font-size: 1.2vw;
    font-family:sans-serif;
    color:black;
    background-color:white;
    box-shadow: 14px 14px 12px rgba(0,0,0, 0.5);
}
.PromptPopupTitle {
    background-color:#f0f0f0;
    border-top-left-radius:1em;
    border-top-right-radius:1em;
    padding: .1em .5em .4em .5em;
    margin:1px;
}
.PromptPopupName {
    color:black;
    font-weight: bold;
    font-family: "Arial Narrow", Ariel, sans-serif;
    display: inline-block;
}
.PromptPopupX {
    font-weight:bold;
    font-size:115%;
    float:right;
}
.PromptPopupInputBox {
    clear:both;
    position: relative;
    padding:0 0.5em 0.5em 0.5em;
}
.PromptPopupInput {
    font-size: 1.3vw;
}

.popup-prompt {
    display: none;
    position: fixed;
    z-index: 2001;
    width: 512px;
    color: black;
    background: white;
    padding: 0px;
    border: 1px solid #999;
    box-shadow: 14px 14px 12px rgba(0,0,0, 0.5);
    border-radius: 12px;
}

.popup-prompt h1 {
    padding: 8px;
    margin: 0;
    font-size: 16pt;
    background: #ddd;
}
.popup-close {
    text-decoration: none;
    float: right;
}

.popupInputFieldContainer {
    z-index: 7101;
    background-color: white;
    position: fixed;
    box-shadow: 3px 4px 3px 2px rgba(0,0,0, 0.3), 0 0 2px 2px rgba(0,0,0, 0.2);
}
.popupInputField {
    font-size: 1.3vw;
    width: 40vw;
    background-color: #ffffe8;
}

#window-shadow-mask {
    padding: 0; border: 0; margin: 0;
    position: fixed; left: 0; top: 0;
    z-index: 999;
    background-color: white;
    display: none;
}
