#scene{
    perspective: 600px;
    width: 300px;
    margin: 0 auto;
    position: relative;
    transform: scale(1.15);
    transform-origin: center -200px;
    display: block;
    height: 490px;
    font-family: sans-serif;
}

#teclado{
    width:300px;
    height: 490px;
    margin:0 auto;
    font-family: sans-serif;
    border: 1px solid #cacaca;
    position: absolute;
    padding:5px;
    transition: transform 1s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transform: rotateY(0deg);
}
#teclado.hide{
    transform: rotateY(180deg);
}

#message{
    width:300px;
    height: 490px;
    margin:0 auto;
    font-family: sans-serif;
    border: 1px solid #cacaca;
    position: absolute;
    padding:5px;
    transition: transform 1s;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transform: rotateY(180deg);
}

#message.show{
    transform: rotateY(360deg);
}

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

input{
    padding: 2px 7px;
    margin-bottom: 16px;
    margin-top: 10px;
    margin-left: 15px;
    width: 174px;
    box-sizing: border-box;
    font-size: 68px;
    font-weight: bold;
    text-align: center;
    background-color: #ffffff;
}

ul{
    list-style-type:none;
    padding:0px;
    margin:0;
    width:100%;
    display:block;
    box-sizing:border-box;
    text-align:center;
}

li,
#reset{
    background-color: #ffb900;
    color: #ffffff;
    display: inline-block;
    box-sizing: border-box;
    width: 33.33%;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    height: 90px;
    width: 90px;
    padding-top: 22px;
    margin: 1px;
    vertical-align: middle;
    cursor: pointer;
}

#entrada{
    background-color:green;
    font-size: 18px;
    padding: 34px 0px;
}
#salida{
    background-color:red;
    font-size: 18px;
    padding: 34px 0px;
}

#clear{
    position: absolute;
    top: 0px;
    right: 0;
    position: absolute;
    top: 12px;
    right: 17px;
    background-color: #d4d4d4;
}

#message{
    text-align:center;
    padding: 40px;
    box-sizing: border-box;

}

#user_name{
    font-size: 37px;
    margin-bottom: 20px;
}

#action{
    font-size: 25px;
    margin-bottom: 20px;
}

#fecha{
    font-size: 25px;
    margin-bottom: 108px;
}

.noselect {

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}
