/* Vant action sheet mobile safety fixes.
   Kept as a real static asset because index.html loads this before the app bundle. */
.van-action-sheet {
  max-width: var(--app-max-width, 100%);
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  overflow: hidden;
}

.van-action-sheet__content {
  -webkit-overflow-scrolling: touch;
}

.van-action-sheet__item,
.van-action-sheet__cancel {
  min-height: 48px;
  line-height: 1.3;
  word-break: break-word;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .van-action-sheet {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
