<style>

body {
    font-family: 'Open Sans', sans-serif;
}

#board {
    width:100%;
    height:100%;
    display:none;
}

#msg {
    width:100%;
    margin:5%;
    color: black;
}

#finePartitaMsg {
    width: 40%;
    right: 0px;
    position: absolute;
    border: 5px solid black;
    background-color: white;
    z-index: 999999999;
    padding: 10px;
    font-family: 'Open Sans', sans-serif;
    display: none;
}

#chatBtnContent {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    width: calc(100% - 4px);
    height: 41px;
    border: 2px inset 87bD25;
}

#msgPanel {
    position: absolute;
    z-index: 99999;
    width: calc(100% - 92px);
    height: calc(100% - 92px);
    background-color: white;
    border: 4px solid black;
    top: 0px;
    left: 0%;
    padding: 40px;
    -webkit-box-shadow: 6px 8px 5px 0px rgb(50 50 50 / 71%);
    -moz-box-shadow: 6px 8px 5px 0px rgba(50, 50, 50, 0.71);
    box-shadow: 6px 8px 5px 0px rgb(50 50 50 / 71%);
    display:none;
    opacity: 0.92;
    font-size: 16px;
}

#msgPanel p {
    font-size: 22px;
    font-weight: bold;
}

#msgPanel button {
    padding: 10px;
    opacity: 1;
    background-color: darkgreen;
    color: white;
    font-size: 16px;
    border-radius: 15px;
    border: 4px outset darkgreen;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;

}

#msgPanelBtn {
    right: 5px;
    top: 5px;
    position: absolute;
    font-size: 12px;
    border-radius: 10px;
    border: 2px outset darkgreen;
    font-family: 'Open Sans', sans-serif;
}

#iniziaPartita {
    display:none;
}

#login {
    width:100%;
    height:100%;
    display: block;
    text-align: center;
}

.container {
    width: 100%;
    height: 100%;
}

.main {
    width: 74%;
    height: 100%;
    display: block;
    float: left;
    font-family: 'Open Sans', sans-serif;
}

.chatBox {
    width: 25%;
    height: 100%;
    background-color: 87bD25;
    display: none;
    float: left;
}

.chatFlow {
    position: relative;
    background-color: #87bD25;
    width: 100%;
    height: calc( 100% - 45px);
    overflow-y: scroll;
    font-family: 'Open Sans', sans-serif;
}

.verofalso {
    width: 50%;
    height: 45px;
    display: none;
    float: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 23px;
    cursor: pointer;
    color: white;
    margin: 4px;
}

#vero {
    background-color: green !important;
    border: 4px outset green !important;
}
#vero:hover {
    background-color: lightgreen !important;
    border: 4px outset lightgreen !important;    
    color: black;
}
#falso {
    background-color: red !important;
    border: 4px outset red !important;
}
#falso:hover {
    background-color: #FF6666;
    border: 4px outset #FF6666;
    color: black;
}

.lancio {
    width: 100%;
    height: 45px;
    display: none;
    float: left;
    font-family: 'Open Sans', sans-serif;
    font-size: 23px;
    border: 5px outset red;
    background-color: red;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.lancio:hover {
    border: 5px outset blue;
    background-color: blue;
}

.box {
    border: 1px solid black;
    font-size: 14px;
}

.boxright {
    position: relative;
    width: calc( 100% - 60px);
    left: 40px;
    background-color: aquamarine;
    color: black;
    margin: 5px;
    border-radius: 8px;
    padding: 5px;
}

.boxleft {
    width: calc( 100% - 40px);
    left: 0px;
    background-color: bisque;
    color: black;
    margin: 5px;
    border-radius: 8px;
    padding: 5px;
}

svg {
    width: 100%;
    height: 100%;
    background-color: #006837;
}

.dado {
    position: absolute;
    padding: 10px;
    width: 20%;
    top: 5%;
    left:3%;
    background-color: white;
    border: 5px solid black;
    display: none;
    border-radius: 30px;
}

.undado { 
    width: 50px;
    height: 50px; 
    background-image: url('images/dadi.png');
}

.dadolabel {
    font-size: 20px;
}

.imgDomanda {
    width: 30%;
    float:left;
}
.imgDomanda img {
    width: 100%;
    padding: 5px;
    margin-left: -15px;
}
</style>

