#teclado{
    width: 100%;
    height: 480px;
    text-align: center;
    max-width: 1080px;
    position: absolute;
    padding: 5px;
    display: block;
    padding-top: 15px;
    box-sizing: border-box;
    background-color: rgba(63, 62, 63, .8);
    display: block;
    transition: top .3s ease-in-out;
    -webkit-transition: top .3s ease-in-out;
    top: 1920px;
    z-index: 5;
}

#teclado.show {
    top: 1438px;
}

#teclado > div{
    width: 100%;
    height: auto;
}

#teclado > div > span{
    margin: 5px;
    border: 2px #FFF solid;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    font-family: "Arial Narrow";
    font-size: 30px;
    color: #FFF;

}

.number{
    width: 65px;
    height: 65px;
    line-height: 65px;
}

.func-key, .key{
    width: 80px;
    height: 80px;
    line-height: 75px;
}

.number:active, .key:active, #backspace:active {
    background-color: #E7147F;
}

.func-key > img{
    horiz-align: center ;
    vertical-align: middle;
    display: inline-block;
}

#backspace{
    width: 110px;
}

#space{
    width: 420px;
}

#cedilha{
    position: absolute;
    bottom: 150px;
    background-color: #E7147F;
    left: 340px;
}

.hide{
    display: none!important;
}

#uppercase.active {
    background-color: #E7147F;
}