.booking-info-warp {
  position: relative;

  .booking-info {
    padding-bottom: 0px;

    .booking-info-client-line {
      display: flex;
      flex-direction: row;
      gap: 10px;

      .booking-info-client-line-code {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        border-radius: 8px;
        background: #5d3f9f;
        cursor: pointer;
      }
    }

  }

  // &::before {
  //   content: '';
  //   position: absolute;
  //   top: 0;
  //   left: 0;
  //   width: 100%;
  //   height: 42px;
  //   background: #069456;
  // }
}

.booking-info-mobile-container {
  border-radius: 16px 16px 0 0;
}

.booking-info-mobile-handler {
  display: flex;
  flex: none;
  width: 100%;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: #667085;
  background: #fff;
  cursor: pointer;
}

.booking-info-mobile-handler-icon {
  font-size: 20px;
  line-height: 1;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.booking-info-mobile-handler-open {
  .booking-info-mobile-handler-icon {
    transform: rotate(0deg);
  }
}

.booking-info-mobile-tab-pane {
  min-height: 0;
  overflow: hidden;
  border-top: 1px solid #f2f4f7;

  .pisell-lowcode__booking-tab-pane-wrap {
    height: 100% !important;
    flex: 1 1 auto;
    min-height: 0;
  }

  .pisell-lowcode__booking-tab-pane-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    padding: 0 12px 16px;
  }

  .booking-info-warp {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    overflow: hidden;
  }

  .booking-info {
    display: flex;
    min-height: 0;
    flex: 1 1 auto;
    flex-direction: column;
    overflow: hidden;

    > * {
      flex: 0 0 auto;
    }

    .pisell-lowcode__booking-service-wrap {
      min-height: 0;
      flex: 1 1 auto;
      overflow: auto;
    }
  }

  .pisell-lowcode__booking-tab-pane-title {
    padding: 12px 16px;
    font-size: 20px;
    line-height: 28px;
  }
}

.booking-info-mobile-tab-pane-open {
  border-top-color: #f2f4f7;
}

.booking-info-mobile-mask {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 0;
  border: 0;
  appearance: none;
  background: rgba(16, 24, 40, 0.45);
  cursor: pointer;
}

.booking-info-mobile-footer {
  padding: 6px 12px 16px;
  padding-bottom: calc(16px + constant(safe-area-inset-bottom));
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  border-top: 1px solid #e7e8e9;
  background: #fff;

  .pisell-lowcode__booking-tab-pane-footer {
    padding: 8px 10px;
    border-top: 0;
  }
}

#create-booking-page-info-wrap {
  .pisell-lowcode__booking-tab-pane-footer {
    padding: 12px 16px !important;
  }
}

.create-booking-page-info-wrap-create {
  background: var(--Success-50, #ecfdf3);
}

.create-booking-page-info-wrap {
  position: initial !important;
  padding: 0 10px !important;

  .booking-info-create-new {
    margin-top: 10px;
    color: var(--Base-Black, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
  }
}