/* [project]/apps/web/src/components/depth-carousel.css [app-client] (css) */
.depth-carousel {
  width: 100%;
  height: 100%;
  min-height: 320px;
  perspective: var(--dc-perspective, 1400px);
  perspective-origin: 50%;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: grab;
  outline: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.depth-carousel:active {
  cursor: grabbing;
}

.depth-carousel:focus-visible {
  outline: 2px solid var(--color-violet, rgba(255, 255, 255, .5));
  outline-offset: 4px;
  border-radius: 12px;
}

.depth-carousel__stage {
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.depth-carousel__card {
  transform-origin: center;
  will-change: transform, opacity, filter;
  cursor: pointer;
  background: #0b0d12;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .65), 0 8px 20px -10px rgba(0, 0, 0, .5);
}

.depth-carousel__img {
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  width: 100%;
  height: 100%;
  display: block;
}

.depth-carousel__tint {
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.depth-carousel__arrow {
  z-index: 3000;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  background: rgba(18, 20, 26, .55);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  place-items: center;
  width: 42px;
  height: 42px;
  transition: background .2s, border-color .2s, transform .2s;
  display: grid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.depth-carousel__arrow:hover {
  background: rgba(28, 31, 40, .85);
  border-color: rgba(255, 255, 255, .4);
}

.depth-carousel__arrow:active {
  transform: translateY(-50%)scale(.94);
}

.depth-carousel__arrow--prev {
  left: 16px;
}

.depth-carousel__arrow--next {
  right: 16px;
}

.depth-carousel__dots {
  z-index: 3000;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: rgba(14, 16, 22, .4);
  border-radius: 999px;
  gap: 8px;
  padding: 8px 12px;
  display: flex;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.depth-carousel__dot {
  cursor: pointer;
  background: rgba(255, 255, 255, .32);
  border: none;
  border-radius: 999px;
  width: 7px;
  height: 7px;
  padding: 0;
  transition: width .25s, background .25s;
}

.depth-carousel__dot.is-active {
  background: #fff;
  width: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .depth-carousel__card {
    will-change: auto;
  }

  .depth-carousel__arrow, .depth-carousel__dot {
    transition: none;
  }
}

/*# sourceMappingURL=apps_web_src_components_depth-carousel_945f1f24.css.map*/