.disabled {
    background-color: #c9c9c9 !important;
}

#idDivTeclado {
    display: grid;
    grid-template-columns: repeat(10, 10%);
    grid-template-rows: auto;
    box-sizing: border-box;
    justify-content: space-evenly;
    justify-items: center;
    align-content: space-evenly;
    align-items: center;
}

#idDivTeclado .teclaApagada{
    visibility: hidden;
} 

#idDivTeclado .tecla, .backspace, .backspaceh {
    background-color: #0e2a60;
    border-radius: 0%;
    color: #fff;
    margin: 2px;
    visibility: visible;
}

#idDivInfoAjuda .questionTop {
    background-color: #ae0000;
    width: 2em;
    display: inline-block;
    text-align: center;
    color: #fff;
    border-radius: 20%;
}

#idDivTeclado .tecla, .backspace , .question {
    margin: 3px;
    padding-top: 0.4em;
    font-family: verdana;
    width: 2em;
    padding-bottom: 0.5em;
}

#idDivTeclado .tecla:hover {
    cursor: pointer;
    background-color: #6b7c9d;
    color: black;
}

.question{
    box-sizing: border-box;
    background-color: #ae0000;
    border-radius: 20%;
    color: #fff;
    font-family: 'verdana';    
}