@media print {
  * { /* Keyword values */
    -webkit-print-color-adjust: economy;
    -webkit-print-color-adjust: exact !important;
    /* Global values */
    -webkit-print-color-adjust: inherit;
    -webkit-print-color-adjust: initial;
    -webkit-print-color-adjust: unset;
  }
}
.horizontal {
  position: relative;
  color: #fff;
}
.horizontal__wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.horizontal .panel {
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .horizontal .panel {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .horizontal {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 0;
  }
  .horizontal.is-active {
    z-index: 5;
  }
  .horizontal__wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    will-change: transform;
  }
  .horizontal .panel {
    position: relative;
    flex: 0 0 100%;
    width: 100vw;
    height: 100vh;
    padding: 0;
    overflow: hidden;
    will-change: transform, opacity;
  }
}

/* =========================
   v3: indicator paneli (pagination po prawej)
========================= */
@media (min-width: 1024px) {
  .horizontal__pagination {
    position: fixed;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
    pointer-events: auto;
  }
}
@media (max-width: 1023px) {
  .horizontal__pagination {
    display: none;
  }
}

.horizontal__pagination-bullet {
  width: 2.5rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-family: inherit;
  letter-spacing: 0.05em;
  transition: color 0.35s ease, transform 0.35s ease;
  position: relative;
}
.horizontal__pagination-bullet::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
  transition: width 0.35s ease, background 0.35s ease;
}
.horizontal__pagination-bullet:hover {
  color: rgba(255, 255, 255, 0.8);
}
.horizontal__pagination-bullet--active {
  color: #fff;
}
.horizontal__pagination-bullet--active::after {
  width: 1.5rem;
  background: #fff;
  border-radius: 0.2rem;
}
/*# sourceMappingURL=horizontal.css.map */
