#Game {
    display: none;
    position: absolute;
    width: 97.6%;
    height: 95.84%;
    left: 50%;
    top: 50%;
    transform: translate(-50.01%,-50%);
    background: rgba(0, 20, 40, 0.75);
    border: 1px solid #004466;
    gap: 8px;
}

#GrapicDemo {
    height: 65%;
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.gameScreen {
    position: relative;
    background: rgba(0, 20, 40, 0.84);
    box-shadow: inset 0 0 10px #001f3f;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
    margin-top: 0;
}

.map {
    background: url(../Game/map.png);
    background-size: 101% 102%;
    background-position: center;
}

#gameAktionProcessBar {
    background-color: rgb(8, 7, 29);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    position: relative;
}

#gameAktionProgressCounter {
    width: 25%;
    background-color: #0b6b9b; 
    border-radius: 0 3px 3px 0;
}

#gameAktionProgressTimer {
    width: 75%;
    background-color: #004466;
    border-radius: 0 3px 3px 0;
}

#gameAktionProgressCounterV {
    width: 100%;
    height: 50%;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 75%;
    text-align: center;
    color: white;
    padding: 0px;
}

#gameAktionProgressTimerV {
    width: 100%;
    height: 50%;
    background-color: transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 75%;
    text-align: center;
    color: white;
    padding: 0px;
}