#keyboard {
  position: absolute;
  bottom: 0;
  left:0;
  right:0;
  z-index: 100;
  /* background-color: rgb(0 0 0 / 0.75); */
  padding: 1rem 1rem 8rem 1rem;
  background-color: rgba(36,48,94,0.9);
  height: 20rem;
  /* border-radius: 0rem 0 0 4rem !important; */
  border-radius: 1.5rem 1.5rem 0 0 !important;
}



.jkeyboard {
  display: inline-block;
}
.jkeyboard, .jkeyboard .jline, .jkeyboard .jline ul {
  display: block;
  margin: 0;
  padding: 0;
}

.jkeyboard .jline ul {display: flex;justify-content: center;}
.jkeyboard .jline {
  text-align: center;
  /* margin-left: -14px; */
  /* display: flex; */
  /* justify-content: center; */
}
.jkeyboard .jline ul li {
  font-family: arial, sans-serif;
  font-size: 1.4rem;
  display: inline-block;
  border: 1px solid #468db3;
  -webkit-box-shadow: 0 0 3px #468db3;
  -webkit-box-shadow: inset 0 0 3px #468db3;
  margin: 1px;
  color: #f7faf7;
  border-radius: 5px;
  width: 9vw;
  height: 9vw;
  box-sizing: border-box;
  text-align: center;
  line-height: 9vw;
  overflow: hidden;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
  flex-shrink: 0;
}

.jkeyboard .jline ul li.clicked {
  background-color: rgb(255 255 255 / 0.25);
}

.jkeyboard .jline ul li.uppercase {
  text-transform: uppercase;
}
.jkeyboard .jline ul li:hover, .jkeyboard .jline ul li:active {
  background-color: #185a82;
}
.jkeyboard .jline .return {
  width: 120px;
}
.jkeyboard .jline .space {
  width: 100%;
  flex-shrink: 1;
}
.jkeyboard .jline .numeric_switch {
  width: 84px;
}
.jkeyboard .jline .layout_switch {
  background: url("../assets/locale.png") no-repeat center right;
  display: none;
}
.jkeyboard .jline .shift {
  /* width: 100px; */
  background: url("../assets/shift.png") no-repeat center center;
  width: 18vw;
}
.jkeyboard .jline .shift.active {
  border-color: #fff;
}
.jkeyboard .jline .shift.lock {
  transform: rotate(180deg);
}
.jkeyboard .jline .backspace {
  /* width: 69px; */
  background: url("../assets/backspace.png") no-repeat center center;
}
