#keyboard-wrapper
{
    position: absolute;
    display: none;
    padding: 10px;
    background-color: lightgray;
    z-index: 999;
    margin: 0 auto;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    font-size: 1.5vw;
}

#keyboard 
{
    margin: 0;
    padding: 0;
    list-style: none;
}

#keyboard li 
{
    float: left;
    margin: 0 5px 5px 0;
    width: 4vw;
    height: 4vw;
    line-height: 4vw;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;    


  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */


}
    
#keyboard .saut
{
    clear: left;
    border: 0px;
    background-color: transparent;
}

#keyboard .saut.l1
{
    width: 0px;
}

#keyboard .saut.l2
{
    width: 2vw;
}

#keyboard .saut.l3
{
    width: 4vw;
}

#keyboard .saut.l4
{
    width: 6vw;
}
        
#keyboard .delete 
{
    width: 8vw;
}

#keyboard .return 
{
    width: 8vw;
    background-color: var(--le-secondary);
}

#keyboard .space 
{
    clear: left;
    margin-left: calc(8vw + 5px);
    width: calc(28vw + 30px);
}

#keyboard li:hover 
{
    position: relative;
    top: 1px;
    left: 1px;
    border-color: #e5e5e5;
    cursor: pointer;
}

#keyboard .close
{
    float: right;
    font-size: 1.5vw;
}