/* =========================================================================
   Custom cursor
   ========================================================================= */
.cursor{
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.cursor-dot, .cursor-ring{
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.cursor-dot{
  width: 8px; height: 8px;
  background: #fff;
  z-index: 9999;
}
.cursor-ring{
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.7);
  z-index: 9998;
  transition: width .25s var(--ease), height .25s var(--ease), opacity .25s var(--ease);
}
.cursor-ring.is-active{
  width: 60px; height: 60px;
  background: rgba(255,255,255,.08);
}
