/* CSS Document */
.zen-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto; }

.zen-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer; }

.zen-dot.is-active {
  background: rgba(255, 255, 255, 0.9); }

.slide-sentinel {
  display: block;
  height: 1px; }
