#inform-box{
    height:60%;
    width:60%;
    left:20%;
    top:15%;
    /*background-color: #6d6d6d;*/
    position: absolute;
    /*display:none;*/
}

#inform-text{
    height:75%;
    width:100%;
    /*background-color: #b5c19f;*/
    font-size: 2vmax;
    overflow:hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break:keep-all;
}

#inform-buttons{
    height:15%;
    width:100%;
    margin:auto;
    /*background-color: #cef5ff;*/
}

#vote-agree,#vote-against,#confirm-button{
    height: 15%;
    width: 30%;
    border-radius: 1vmax;
    font-size:3vmax;
    color:white;
    opacity: 0.75;
    overflow:hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break:keep-all;
    position: absolute;
}

#vote-agree,#vote-against{
    cursor:pointer;
}

#vote-agree{
    /*margin-left: 0;*/
    background-color: blue;
    box-shadow: 2px 2px 2px 2px #00009b;
    left:10%;
    display:none;
}

#vote-agree:hover{
    background-color: #3838ff;
    box-shadow: 2px 2px 2px 2px #1b1b9b;
}

#vote-agree:active{
    background-color: blue;
    box-shadow: -1px -1px 0 1px #00009b;
    padding:1px 0 0 1px;
}

#vote-against{
    /*margin-left: 60%;*/
    background-color: red;
    box-shadow: 2px 2px 2px 2px #9b0000;
    left:60%;
    display:none;
}

#vote-against:hover{
    background-color: #ff342e;
    box-shadow: 2px 2px 2px 2px #9b1f1d;
}

#vote-against:active{
    background-color: red;
    box-shadow: -1px -1px 0 1px #9b0000;
    padding:1px 0 0 1px;
}

#confirm-button{
    background-color: #a7a199;
    box-shadow: 2px 2px 2px 2px #85796c;
    left:35%;
    display:none;
}

.inform-confirm .confirm-clickable #confirm-button{
    /*background-color: #ffc765;*/
    /*box-shadow: 2px 2px 2px 2px #9b7248;*/
    cursor:pointer;
}

.inform-clickable #confirm-button:hover{
    background-color: #ffdb90;
    box-shadow: 2px 2px 2px 2px #9b8463;
}

.inform-clickable #confirm-button:active{
    background-color: #ffc765;
    box-shadow: -1px -1px 0 1px #9b7248;
    padding:1px 0 0 1px;
}

.inform-vote #vote-agree,.inform-vote #vote-against{
    display:flex;
}

.inform-clickable #confirm-button{
    display:flex;
}
