#keyboard-screen {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 20px;
  width: 40vw;
  min-width: 600px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#keyboard-screen .row {
  margin: 5px 0;
  height: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#keyboard-screen .padding {
  padding: 0 25px;
}

#keyboard-screen .col {
  padding: 0 5px;
  height: 25%;
  color: rgba(255, 255, 255, 0.5);
  float: left;
  font-size: 20px;
  text-align: center;
  line-height: 55px;
  border-bottom: 0.3rem solid transparent;
  font-weight: bold;
}

#keyboard-screen .size-backspace {
  width: 10%;
  height: 59px;
}

#keyboard-screen .size-backspace::before {
  content: "\f55a";
  font-size: 25px;
  font-family: "Font Awesome 6 Free";
}

#keyboard-screen .size-alpha,
#keyboard-screen .size-symbol {
  width: 10%;
  height: 59px;
}

#keyboard-screen .size-alpha::before {
  content: "\f0aa";
  font-size: 25px;
  font-family: "Font Awesome 6 Free";
}

#keyboard-screen .size-symbol::before {
  content: "\f121";
  font-size: 25px;
  font-family: "Font Awesome 6 Free";
}

#keyboard-screen .col.size-symbol.active,
#keyboard-screen .col.size-alpha.active {
  color: rgba(255, 255, 255, 1);
}

#keyboard-screen .size-ok {
  height: 59px;
  width: 30%;
}

#keyboard-screen .size-ok::before {
  content: "\f058";
  font-size: 25px;
  font-family: "Font Awesome 6 Free";
}

#keyboard-screen .size-1 {
  width: 10%;
}

#keyboard-screen .size-2 {
  width: 30%;
}

#keyboard-screen .size-5 {
  width: 40%;
  height: 59px;
}

#keyboard-screen .size-5:before {
  content: "";
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  width: 94%;
  display: block;
  left: 3%;
  bottom: -70%;
  position: relative;
}

#keyboard-screen .col.selected {
  position: relative;
  color: rgba(255, 255, 255, 1) !important;
  opacity: 1 !important;
}

#keyboard-screen .col.selected::after {
  content: "";
  width: 100%;
  height: 0.3rem;
  background: #f47521;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  /* box-shadow: 0 0 25px 6px #f47521, 0 0 15px 6px #f47521 inset; */
}

#keyboard-screen .col.size-5.selected::before {
  border-color: rgba(255, 255, 255, 1) !important;
}
