.qkb-board {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 16px;
  overflow: hidden;
  width: $board-width;
  height: 80vh;
  margin-bottom: 10px;
  border-radius: $board-radius;
  background-color: $board-bg;
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.15);

  @media screen and (max-width: 600px) {
    width: 95%;
  }
}
.qkb-board-full-screen {
  width: $board-full-screen-width;
  @media screen and (max-width: 600px) {
    width: 95%;
  }
}
.apply-transition {
  transition: all 0.5s linear;
}
