/* css/overlays.css - Style dla NAME, RESULTS, CURRENT */

/* ===== CURRENT ===== */
#current-wrap {
  opacity: 0;
  transition: opacity .25s ease;
  display: none;
}

#current-wrap.show {
  opacity: 1 !important;
}

#cur-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tcur {
  font-family: var(--font-ui);
  letter-spacing: .01em;
}

.shadowCur {
  filter: url(#softShadowCur);
}

/* Ukrywanie nieużywanych rzędów w CURRENT */
#cur-svg g[data-visible="0"] {
  display: none;
}

#cur-svg g[data-visible="1"] {
  display: block;
}