@media (min-width: 769px) {
  body, a, button, input, textarea, select {
    cursor: none !important;
  }
  body.tx {
    cursor: none !important;
  }
  #cdot, #cring {
    position: fixed;
    top: -50px;
    left: -50px;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    will-change: left, top;
  }
  #cdot {
    width: 9px;
    height: 9px;
    background: #f8347c;
    border-radius: 50%;
    transition: width 0.22s, height 0.22s, background 0.22s, border-radius 0.22s;
  }
  #cring {
    width: 38px;
    height: 38px;
    border: 1.5px solid #2f1e4b;
    border-radius: 50%;
    opacity: 0.5;
    transition: width 0.22s, height 0.22s, border-color 0.22s, opacity 0.22s;
  }
  body.ch #cdot {
    width: 18px;
    height: 18px;
    background: #2f1e4b;
  }
  body.ch #cring {
    width: 60px;
    height: 60px;
    border-color: #f8347c;
    opacity: 0.3;
  }
  body.tx #cdot {
    width: 2px;
    height: 24px;
    border-radius: 1px;
    background: #f8347c;
  }
  body.tx #cring {
    opacity: 0;
    width: 0;
    height: 0;
  }
}
@media (max-width: 768px) {
  #cdot, #cring {
    display: none !important;
  }
}
