.keyboard {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 5px 0;
  background: var(--primary);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  user-select: none;
  transition: bottom 0.4s;
  z-index: 6;
  height: 30vw;
}

.keyboard--hidden {
  bottom: -100%;
}

.keyboard__keys {
  text-align: center;
  height: 409px;
  /*  max-width: 1080px; */
  margin: 0 auto;
  background-color: var(--grenn);
}

.keyboard__key {
  width: 6%;
  max-width: 7.8vw;
  margin: 0.21vw;
  border-radius: 4px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 2.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;
}

.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: var(--primary); */
}

.keyboard__key--dark {
  background: rgba(0, 0, 0, 0.25);
}

.next,
.prev,
.dot {
  display: none !important;
}

.keyboard__keys {
  height: 388px;
}

.keyboard__key {
  height: 6.57vw;
  width: 100%;
  font-size: 2.05rem;
}

.KeyboardOff {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
