.keyboard {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 5px 0;
  background: white;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  user-select: none;
  transition: bottom 0.4s;
  z-index: 999999;
}
.keyboard--hidden {
  bottom: -100%;
}
.keyboard__keys {
  text-align: center;
}
.keyboard__key {
  height: 45px;
  width: 6%;
  max-width: 90px;
  margin: 3px;
  border-radius: 4px;
  border: none;
  background: rgba(174, 173, 173, 0.2);
  color: black;
  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;
}
.keyboard__key:active {
  background: rgba(174, 173, 173, 0.2);
}
.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: rgb(133, 216, 8);
}
.keyboard__key--dark {
  background: rgba(206, 206, 206, 0.7);
}

.keyboard__preview__container{
    background: rgba(206, 206, 206, 0.7);
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    width: 80%;
    margin-left:10%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 15px;
    padding: 5px;
}

.keyboard__preview{
    text-wrap: auto;
    word-wrap: break-word;
    max-width: 100%;
}

.keyboard__key-confirm,
.keyboard__key-cancel {
    width: 20% !important;
    max-width: 130px !important;
}

.keyboard__key-confirm {
    background-color: #A4E1B1 !important;
}