.pisell-virtual-keyboard-wrap {
  display: flex;
  gap: 7px;
  .pisell-virtual-keyboard-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;

    .pisell-virtual-keyboard-item {
      border-radius: 5px;
      background: var(--Base-White, #fff);
      box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.06);;
      overflow: hidden;
      width: calc((100% - 14px) / 3 * 1);
      padding-top: 25%;
      position: relative;

      .pisell-virtual-keyboard-item-button {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 5px;
        color: var(--Base-Black, #000);
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        box-shadow: none;
        padding: 0 !important;
      }
    }
  }
  .pisell-virtual-keyboard-right {
    flex-direction: column;
    justify-content: start;
    .pisell-virtual-keyboard-item{
      width: 100%;
    }
  }
}
