.keyboard {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    top: 300px;
    height: 215px;
    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;
}

.keyboard--hidden, .keyboard---hidden {
    bottom: -100%;
    display: none;
}

.keyboard__keys_number {
    text-align: center;
    width: 280px;
    background: white;
    margin: auto;
}

.keyboard.pay_cash{
    top: 560px;
}

.keyboard__keys_number.pay_cash{
    width: 300px;
}

.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);
}