.pisell-lowcode__booking-service-item {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #D5D7DA;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  background-color: #fff;

  &:last-child {
    margin-bottom: 0;
  }

  &::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #80BCFE;
    z-index: 2;
  }

  .pisell-lowcode__booking-service-item-title {
    color: var(--gray-900, #101828);

    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
  }

  .pisell-lowcode__booking-service-item-date {
    color: var(--gray-500, #667085);

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .pisell-lowcode__booking-service-item-technician {
    color: var(--gray-500, #667085);

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .pisell-lowcode__booking-service-item-price-wrap {
    .pisell-lowcode__booking-service-item-price {
      color: var(--gray-500, #667085);

      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;
    }

    .pisell-lowcode__booking-service-item-original-price {
      color: var(--gray-500, #667085);

      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;
      margin-left: 8px;
      text-decoration: line-through;
    }


  }

  .pisell-lowcode__booking-service-item-discount-reason {
    color: var(--gray-500, #667085);

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    white-space: break-spaces;
  }

  .pisell-lowcode__booking-service-item-error {
    border: none;
    margin: 0 -20px -16px;
    border-radius: 0 0 8px 8px;
  }
}

.pisell-lowcode__booking-service-item-relation-details {
  padding-top: 6px;
  margin-top: 6px;
  border-top: 1px solid #d5d7da;
  margin-bottom: 6px;
}

.pisell-lowcode__booking-service-item-relation-detail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 4px;
  overflow: hidden;

  .pisell-lowcode__booking-service-item-relation-detail-title {}

  .pisell-lowcode__booking-service-item-relation-detail-info {
    .pisell-lowcode__booking-service-item-relation-detail-info-quantity {}

    .pisell-lowcode__booking-service-item-relation-detail-info-unit {
      padding: 0 4px;
    }

    .pisell-lowcode__booking-service-item-relation-detail-info-price {}
  }

}