.keyboard {
    position: fixed !important;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    background: #5b5a60;
    user-select: none;
    transition: bottom 0.4s;
    z-index: 1;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.keyboard__keys {
    text-align: center;
}

.keyboard__key {
    height: 34px;
    width: 6%;
    max-width: 70px;
    margin: 3px;
    border-radius: 4px;
    border: none;
    background: #1e2327;
    color: #fff;
    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;
    font-weight: 600;
    svg {
        width: 18px;
        height: 18px;
    }
}

.keyboard__key:active {
    background: var(--ot-primary);
    background: #715de8;
}

.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: rgb(222 222 222 / 40%);
    border-radius: 50%;
}

.keyboard__key--active::after {
    background: #08ff00;
}

.keyboard__key--dark {
    background: #1abc57;
}
