/* TaxIt – Custom Cursor (blauer Punkt), nur auf Maus-/Trackpad-Geräten */
@media (hover:hover) and (pointer:fine){
  html.tx-cursor-on, html.tx-cursor-on body{cursor:none}
  html.tx-cursor-on a,
  html.tx-cursor-on button,
  html.tx-cursor-on input,
  html.tx-cursor-on textarea,
  html.tx-cursor-on select,
  html.tx-cursor-on label,
  html.tx-cursor-on [role=button],
  html.tx-cursor-on .seg,
  html.tx-cursor-on .eg-seg{cursor:none}

  .tx-cur-dot{
    position:fixed;top:0;left:0;z-index:99999;pointer-events:none;border-radius:50%;
    will-change:transform;
    width:14px;height:14px;margin:-7px 0 0 -7px;
    background:var(--tx-blue,#356EF4);
    transition:width .2s var(--ease,cubic-bezier(.22,.61,.36,1)),height .2s,margin .2s,opacity .2s;
  }
  .tx-cur-dot.is-hover{width:22px;height:22px;margin:-11px 0 0 -11px}
  .tx-cur-dot.is-hidden{opacity:0}
}
