@charset "UTF-8";
.wcc-coverflow {
  --bg: #2e2667;
  --fg: #e8eaed;
  --slide-w: 300px;
  --slide-radius: 14px;
  --gap: 30px;
  --t: 160ms;
  --e: linear;
  --img-scale-k: 0.18;
  --img-shift-y: 40;
  --img-shift-x: 0;
  position: relative;
  outline: none;
}
.wcc-coverflow * {
  box-sizing: border-box;
}
.wcc-coverflow .wrap {
  width: 100%;
  overflow: visible;
  position: relative;
  background: var(--bg);
}
.wcc-coverflow .carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--fg);
}
.wcc-coverflow .carousel .stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  touch-action: pan-y;
}
.wcc-coverflow .carousel .stage .slide {
  position: absolute;
  top: 0; /* FIX: ne legyen 50% */
  left: 0; /* FIX: ne legyen 50% */
  width: var(--slide-w);
  height: calc(var(--slide-w) * 1.5);
  transform: none; /* FIX: JS pozicionál teljesen */
  border-radius: var(--slide-radius);
  overflow: hidden;
  transition: none;
  cursor: grab;
  z-index: 1;
}
.wcc-coverflow .carousel .stage .slide:active {
  cursor: grabbing;
}
.wcc-coverflow .carousel .stage .slide[data-offset="-3"], .wcc-coverflow .carousel .stage .slide[data-offset="3"] {
  z-index: -3;
}
.wcc-coverflow .carousel .stage .slide[data-offset="-2"], .wcc-coverflow .carousel .stage .slide[data-offset="2"] {
  z-index: -2;
}
.wcc-coverflow .carousel .stage .slide[data-offset="-1"], .wcc-coverflow .carousel .stage .slide[data-offset="1"] {
  z-index: -1;
}
.wcc-coverflow .carousel .stage .slide .wcc-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0);
  opacity: 0;
  transition: none;
  pointer-events: none;
  will-change: opacity;
}
.wcc-coverflow .carousel .stage .slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  transform: none !important;
  object-position: center;
  display: block;
  transition: none;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.wcc-coverflow .carousel .controls {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
}
.wcc-coverflow .carousel .controls button {
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.18);
  border: 0;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--fg);
  cursor: pointer;
  transition: background var(--t) var(--e);
}
.wcc-coverflow .carousel .controls button:hover {
  background: rgba(255, 255, 255, 0.35);
}
.wcc-coverflow .carousel .template-pane {
  position: absolute;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
}
.wcc-coverflow .carousel .template-inner {
  min-height: 100%;
}
.wcc-coverflow .carousel .wcc-spacer {
  width: 100%;
  height: 0;
  display: block;
}
.wcc-coverflow .carousel .state-indicator {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--fg);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.2px;
  pointer-events: none;
  user-select: none;
}

/*# sourceMappingURL=coverflow.css.map */
