.sheet-swipe-cue {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  display: flex;
  width: 78px;
  height: 78px;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #27c9b7, #10998a);
  box-shadow: 0 10px 28px rgb(8 84 76 / 28%), inset 0 -1px rgb(255 255 255 / 24%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, var(--sheet-cue-reveal, -53px), 0) scale(var(--sheet-cue-scale, .82));
  transform-origin: center top;
  transition: opacity 90ms ease, transform 90ms linear, box-shadow 120ms ease;
  box-sizing: border-box;
  will-change: transform, opacity;
}

.sheet-swipe-cue svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 1px 1px rgb(0 0 0 / 16%));
}

.sheet-swipe-cue path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sheet-swipe-cue.is-visible { opacity: var(--sheet-cue-opacity, .42); }
.sheet-swipe-cue.is-ready { box-shadow: 0 10px 30px rgb(8 84 76 / 34%), 0 0 0 5px rgb(31 190 170 / 16%), inset 0 -1px rgb(255 255 255 / 30%); }

[data-sheet-swipe-surface] [data-sheet-swipe-panel] {
  will-change: transform;
}

[data-sheet-swipe-surface].is-sheet-swiping [data-sheet-swipe-panel] {
  transform: translate3d(0, var(--sheet-swipe-y, 0), 0) !important;
  transition: none !important;
}

[data-sheet-swipe-surface].is-sheet-returning [data-sheet-swipe-panel] {
  transform: translate3d(0, var(--sheet-swipe-y, 0), 0) !important;
  transition: transform 180ms cubic-bezier(.22, .75, .3, 1) !important;
}

[data-sheet-swipe-surface].is-sheet-dismissing [data-sheet-swipe-panel] {
  transform: translate3d(0, 110dvh, 0) !important;
  transition: transform 180ms cubic-bezier(.32, .72, 0, 1) !important;
}

[data-sheet-swipe-surface] [data-sheet-swipe-close] {
  opacity: var(--sheet-backdrop-opacity, 1);
}

[data-sheet-swipe-handle] {
  touch-action: none;
}

@media (prefers-reduced-motion: reduce) {
  .sheet-swipe-cue,
  [data-sheet-swipe-surface] [data-sheet-swipe-panel] { transition: none !important; }
}
