/* Immaculate SoftWash - cursor follower */
.isw-cur-dot,
.isw-cur-ring {
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2147483000;
  opacity: 0;
  will-change: transform;
  transition: opacity .3s ease;
}

.isw-cur-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--nav-blue, #2ea3e0);
}

.isw-cur-ring {
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 1.5px solid rgba(46, 163, 224, .7);
  background: rgba(46, 163, 224, 0);
  transition: opacity .3s ease,
              width .25s cubic-bezier(.22, 1, .36, 1),
              height .25s cubic-bezier(.22, 1, .36, 1),
              margin .25s cubic-bezier(.22, 1, .36, 1),
              background-color .25s ease,
              border-color .25s ease;
}

html.isw-cur-on .isw-cur-dot,
html.isw-cur-on .isw-cur-ring {
  opacity: 1;
}

html.isw-cur-on .isw-cur-ring.is-hot {
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  background: rgba(46, 163, 224, .13);
  border-color: rgba(46, 163, 224, .5);
}

html.isw-cur-on .isw-cur-dot.is-hot {
  opacity: .35;
}

@media (hover: none), (pointer: coarse) {
  .isw-cur-dot,
  .isw-cur-ring { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .isw-cur-dot,
  .isw-cur-ring { display: none; }
}
