.keyboard {
    z-index: 98;
}
/* fallback Icon keyboard fonts */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/material-icons.woff2) format('woff2');
  }
  
  .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
  }
  
  /* Keyboard fonts ends here */

  
.keyboard {
    position: absolute;
/*    left: 0;*/
    width: 100%;
    bottom: 130px;
/*    padding: 5px 0;*/
    padding: 20px 0;
/*    background: #171333;*/
/*    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);*/
    user-select: none;
    transition: bottom 0.4s;
}

.keyboard--hidden {
    bottom: -100%;
}

.keyboard__keys {
    text-align: center;
    width: 37%;
    margin: auto;
    background: #FFFFFF87 0% 0% no-repeat padding-box;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    padding: 4px 0;
}

.keyboard__key {
/*    height: 45px;*/
/*    width: 6%;*/
    max-width: 53px;
    margin: 3px;
    border-radius: 4px;
    border: none;
/*    background: rgba(255, 255, 255, 0.2);*/
    color: #121622;
    font-size: 1.05rem;
    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;

    height: 35px;
    width: 6.8%;
/*    width: 7.7%;*/
    background: #f5f5f5;
}


.keyboard__key:active {
    background: rgba(255, 255, 255, 0.12);
}

.keyboard__key--wide {
    width: 15% !important;
}

.keyboard__key--extra-wide {
    width: 36%;
    max-width: 500px;
}

.keyboard__key--activatable::after {
    content: '';
    top: 10px;
    right: 10px;
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
}

.keyboard__key--active::after {
    background: #2d64fb;
}

.keyboard__key--dark {
    background: #121622;
    color: #f5f5f5;
}
.keyboard__key--enter {
    background: #3DA7DE;
    color: #f5f5f5;
}
.hide-me {
    display: none;;
}

.backspace-btn {
    width: 200px !important;
    /* margin-left: 10px; */
    margin-left: 0px !important;
    margin-right: 3px !important;
}

.nr-0 {
    /* margin-left: -22px !important; */
    margin-right: 33px !important;
}
