/* Quicksand Regular */
@font-face {
  font-family: "Quicksand";
  src: url("/fonts/Quicksand-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Quicksand Bold */
@font-face {
  font-family: "Quicksand";
  src: url("/fonts/Quicksand-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Quicksand Light */
@font-face {
  font-family: "Quicksand";
  src: url("/fonts/Quicksand-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Quicksand Medium */
@font-face {
  font-family: "Quicksand";
  src: url("/fonts/Quicksand-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Quicksand SemiBold */
@font-face {
  font-family: "Quicksand";
  src: url("/fonts/Quicksand-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Quicksand;
  font-weight: 500;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  width: 1080px;
  height: 1920px;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

/*************** Virtual Keyboard  ***************/
@keyframes slideDownKeyboard {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.keyboard {
  position: absolute;
  top: 300px;
  left: 49px;
  width: 1000px;
  height: 430px;
  padding: 16px;
  background: #2d3655;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transition: bottom 0.4s;
  z-index: 1054;
  border-radius: 25px;
  display: none;
}
.keyboard.active {
  display: block;
  animation: slideDownKeyboard 0.4s ease forwards;
}
.keyboard__keys {
  text-align: center;
}
.keyboard__key {
  height: 86px;
  width: 68px;
  margin: 5px;
  border-radius: 12px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 32px;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: 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-icon {
  width: 40px;
  height: 40px;
}
.keyboard__key--activatable::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}

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

.keyboard__key--dark {
  background: rgba(0, 0, 0, 0.25);
}

body::-webkit-scrollbar {
  display: none;
}


/*************** Virtutal Keyboard End ***************/

/*************** Barkod ***************/
.barkod {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: fixed;
  bottom: 40px;
  left: 20px;
  width: 606px;
  height: 136px;
  border-radius: 79px;
  font-size: 27px;
  color: #818181;
  border: 20px solid #00a1ed;
  background-color: #fff;
  z-index: 10;
}
/*************** Barkod End ***************/
