.keyboard_ {
    display: block;
    position: fixed;
    left: 0;
    top: 900px;
    height: 165px;
    width: 100%;
    padding: 5px 0;
    background: #ffffff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    user-select: none;
    transition: bottom 0.4s;
    z-index: 11111;
}

.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--hidden, .keyboard---hidden {
    bottom: -100%;
    display: none;
}

.keyboard__keys {
    text-align: center;
    /*width: 80%;*/
}

.keyboard__key {
    height: 45px!important;
    width: 65px!important;
    max-width: 190px;
    margin: 3px!important;
    border-radius: 4px!important;
    border: 1px solid #d3d3d3!important;
    background: rgb(230, 230, 230)!important;
    color: rgb(85, 85, 85)!important;
    font-size: 1.05rem!important;
    outline: none!important;
    cursor: pointer!important;
    display: inline-flex!important;
    align-items: center!important;
    justify-content: center!important;
    vertical-align: top!important;
    padding: 0!important;
    -webkit-tap-highlight-color: transparent!important;
    position: relative!important;
}

.keyboard__key:active {
// background: rgba(255, 255, 255, 0.12);
}

.keyboard__key--wide {
    width: 96px;
}

.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: #08ff00;
}

.keyboard__key--dark {
    background: rgba(0, 0, 0, 0.25);
}