.keyboard {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 5px 0;
    background: rgba(92, 71, 49, 1);
    user-select: none;
    transition: bottom 0.4s;
}

.keyboard--hidden {
    bottom: -100%;
}

.keyboard__keys {
    text-align: center;
}

.keyboard__key {
    height: 60px;
    width: 6%;
    max-width: 90px;
    margin: 3px;
    border-radius: 4px;
    border: none;
    background: rgba(140, 110, 80, 1);
    color: rgba(217, 219, 220, 0.8);
    font-size: 30px;
    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;
}

.keyboard__key.keyboard__onlynums {
    width: 284px;max-width: none;height: 67px;color: rgba(217, 219, 220, 0.8);
}

.keyboard__key:active {
    background: rgba(255, 255, 255, 0.12);
}

.keyboard__key--wide {
    width: 12%;
}

.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);
}
.keyboard__key--light {
    background: rgba(140, 110, 80, 1);color: rgba(217, 219, 220, 0.8) !important;
}

.icons.backspace_white {width: 31px;height: 22px;background: url("../images/icons/delete2_white.png");background-size: cover;}
.icons.backspace {width: 31px;height: 22px;background: url("../images/icons/delete.png");background-size: cover;}

@media all and (max-height: 800px) {
    .keyboard__key {height: 55px;}
}