.keyboard {
    position: fixed;
    left: 0;
    width: 100%;
    /*
    padding: 5px 0;
    padding-left: 10% !important;
    padding-right: 10% !important;
    bottom: 90px;
    background:rgba(0, 0, 0, 0.90);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.4);
    */
    
    user-select: none;
    transition: bottom 0.4s;
    z-index: 1000;
    display: flex;
    justify-content:center;
    
}

.keyboard--hidden {
/*    bottom: -1000%; */
    display:none;
}

.keyboard__keys {
    text-align: center;
    
}

.keyboard__num {
    text-align: center;
}

.keyboard__key_Letter {
    /* 
    width: 5.5%; 
    max-width: 3rem;
    */    
}

.keyboard__key_Number {
    /* 
    width: 19%; 
    max-width: 3rem;
    */    
}

.keyboard__key_NumberDouble {
    /* 
    width: 38.26%;
    max-width: 6rem;
    */    
    flex-grow:2 !important;
}

.keyboard__key_NumberBig {
    /*
    width: 22%;
    */    
    flex-grow:1.25 !important;
}

.keyboard__key {
    height: 2rem;    
   /* max-width: 60px;     border: none;*/
    margin: 0.025rem;
    border-radius: 0.2rem;

    border: 0.06250rem solid rgba(255, 255, 255, .1);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    font-family: 'SVBasicManual';
}

.keyboard__key:hover {
    background: rgba(0, 255, 255, 0.2);
}

.keyboard__key:active {
    background: rgba(255, 153, 75, 0.5);
}

.keyboard__key--middle {
    /* width: 8%; */
    flex-grow: 1.25 !important;

}

.keyboard__key--wide {
    /* width: 14%; */
    flex-grow: 1.75 !important;
}

.keyboard__key--smallwide {
    /* width: 11%; */
    flex-grow: 1.5 !important;
}

.keyboard__key--extra-wide {
    /*
    width: 45%;
    max-width: 650px;
    */
    flex-grow:5 !important;
}

.keyboard__key--activatable::after {
    content: '';
    top: 5px;
    right: 5px;
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}

.keyboard__key--active::after {
    background: #08ff00;
}

.keyboard__key--superactive::after {
    background: #00eeff;
}

.keyboard__key--dark {
    background: rgba(0, 66, 17, 0.25);
}


.col-md-9, .col-md-3
{
    position: relative;
    /*
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    */
}      

.col-md-9 
{
    width: 100%;      /* 75% */
    max-width:50rem;
}

.col-md-3 
{
    width: 100%;     /* 25% */
    max-width:35rem;
}

.col-md-9, .col-md-3
{
     float: left;
    

    /*
   display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: space-between;    
    */
}

.keyboard_line
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;    
    width:100%;
}

.keyboard_line li
{
    flex-grow:1;  /* | [ <none> <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ] */
    
}

.shiftKeyText
{
    position:absolute;
    top: 0.1rem;
    right: 0.2rem;
    font-size: 0.7rem;
    color:darkgray;
}

.keyboard[lang="AR"] .keyboard__keys {
    flex-direction: row-reverse;
}