


#game {
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    bottom: 0px;
}

#langCorrect{
    position: absolute;
    display: none !important;
    background-color: rgba(255,255,255,0.2);
    top: 0; left: 0; bottom: 0; right: 0;
}

#langCorrect .window{
    position: absolute;
    left: 50%;
    top: 50%;
    height: 600px;
    width: 600px;
    transform: translate(-50%,-50%);
    background-color: rgba(0,0,0,0.8);
    border-radius: 10px;
    display: flex !important;
    flex-direction: column;

}
#langCorrect.appear {
    display: block !important;
}
#langCorrect .entryList {
    flex: auto;
    overflow: scroll;
}
#langCorrect .loginForm {
    flex: auto;
    margin: 0 auto;
}

#langCorrect .loginForm > div{
    margin: 0 0 10px 0;
}
#langCorrect .loginForm input[type=submit]{
    padding: 4px;
}


#langCorrect h1 {
    color: whitesmoke;
    font-size: 150%;
    text-align: center;
}
#langCorrect .window > form > label {
    padding-left: 50px;

}
#langCorrect .correctionList{
    flex: auto;
    flex-direction: column;
    display: flex;
    overflow: auto;
}

#langCorrect .userInfo {
    flex: none;
    text-align: center;
    padding-right: 20px;
    padding-bottom: 5px;
}
#langCorrect .userInfo:hover  {
    color: deepskyblue;
}
#langCorrect .textEntity {
    margin: 10px;
    display: block;
    background-color: #3e3f3e;
    border-radius: 4px;
    padding: 4px;
}



#langCorrect .textEntity > textarea {
    width: calc(100% - 10px);
    margin-top: 2px;
    background-color: #1f2323;
    border: none;
    display: none;
    overflow-wrap: break-word;
    color: #ffffff;
    text-shadow: none;
    resize: none;
}
#langCorrect .shown > textarea{
    display: block !important;
    padding: 5px 5px;

}
::placeholder {
    text-shadow: none;
}
#langCorrect .textEntity > span {
    padding: 5px 5px;
    display: block;
}
#langCorrect .textEntity > span:hover {
    color: #6897bb;
}

#langCorrect .buttons {
    flex: none;
    display: block;
    text-align: center;
    padding: 2px 0 8px 0;
}
#langCorrect .buttons > button {
    margin-right: 5px;
}

#langCorrect button, #langCorrect input[type=submit]{
    color: white;
    background: #993311;
    padding: 5px;
    border-radius: 4px;
    border: none;
}
#langCorrect button[disabled]{
    background: #444444;
    color: #b0b0b0;
}

#langCorrect button:hover, #langCorrect input[type=submit]:hover{
    background: #cc461b;
}
#langCorrectSubmit {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);
}
#langCorrectSubmit .popUps {
    height: 100px;
    width: 250px;
    display: none;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-color: #e0e0e0;
    padding: 5px;
    border: 2px solid #444444;
    border-radius: 5px;

}
#langCorrectSubmit .topDiv {
    flex: auto;
    color: #000;
    padding: 10px 5px;
    text-shadow: none;
    text-align: center;

}
#langCorrectSubmit .buttonDiv {

    height: 30px;
    flex: none;
    text-align: center;


}
#langCorrectSubmit .buttonDiv > button {

    margin-right: 5px;
    color: black;

}


.errorMessage{
    width: 800px;
    height: 600px;
    box-sizing: border-box;
    background: rgba(0,0,0, 0.75);
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -400px;
    margin-top: -300px;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}
.errorMessage *{
    user-select: text;
}
.errorMessage h2{
    font-size: 30px;
    margin: 0;
    padding: 0 0 10px 0;
    flex: none;
}
.errorMessage p{
    flex: none;
}

.errorMessage .details{
    background: #333;
    color: #8a8;
    font-family: monospace;
    user-select: all;
    flex: auto;
    overflow: scroll;
    padding: 4px;
}