body {
    background-color: #000000;
    height: 100%;
    width: 100%;
    margin: 0px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Disables touch zoom */
    touch-action: pan-y;
}

#input {
    position: fixed;
    font-size: 100px;
    top: -200px;
    display: none;
}

#content {
    width: 100%;
    height: 100%;
    margin: 0px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

#test {
    width: 100%;
    height: 2000px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
}

.wiener_popup {
    z-index: 100;
    max-height: 80%;
    height: auto;
    max-width: 100%;
    padding: 2%;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    top: 0px;
}

.wiener_popup .gameresult{
    position: relative;
    width: 96%;
    text-align: center;
}

.wiener_popup p{
    background: white;
    padding: 50px;
}

.wiener_popup .gameresult img{
    width: 100%;
}

.wiener_debugMenu {
    position: fixed;
    opacity: 0;
    top: 0px;
    left: 0px;
    font-size: 25px;
    color: #efffb6;
}

.wiener_debugMenu.wiener_debugMenu_opened {
    opacity: 1;
}

.wiener_debugMenu:hover {
    opacity: 1;
}

.wiener_debugMenu_fps {
    position: fixed;

    top: 0px;
    left: 0px;
    font-size: 30px;
}

.wiener_debugMenu_opened .wiener_debuContent {
    display: flex;
    flex-flow: column;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: calc(100vh - 110px);
    border-radius: 0px 15px 15px 15px;
    border: 2px solid #858585;
}

.wiener_debugMenu_closed .wiener_debuContent {
    display: none;
    flex-flow: unset;
}

.wiener_debugMenu_closed .wiener_debugBtn {
    opacity: 0.5;
}

.wiener_icon {
    margin-top: 36%;
}

.wiener_debug_item {
    padding: 10px;
    pointer-events: all;
    cursor: pointer;
    width: 348px;
    /* height: 80px; */
    background-color: #0000008e;
    border-top: 1px solid #ffffff49;
    border-bottom: 1px solid #ffffff49;
}

.wiener_debug_item:hover {
    padding: 10px;
    pointer-events: all;
    cursor: pointer;
    width: 348px;
    /* height: 80px; */
    background-color: #efffb6;
    border-top: 1px solid #00000049;
    border-bottom: 1px solid #00000049;
    color: black;
}

.wiener_debugBtn {
    width: 120px;
    height: 100px;
    cursor: pointer;
    background-color: #0000008e;
    pointer-events: all;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wiener_debuContent::-webkit-scrollbar {
    width: 20px;
}
  
.wiener_debuContent::-webkit-scrollbar-track {
    background-color: #0000008e;
    border-radius: 0px 15px 15px 0px;
}
  
.wiener_debuContent::-webkit-scrollbar-thumb {
    background-color: #efffb6;
    background-clip: content-box;
    border-radius: 20px;
    border: 2px solid #9da77d;
    padding: 20px;
}
  
.wiener_debuContent::-webkit-scrollbar-thumb:hover {
    background-color: #d6dee1;
}