/* Cursore lumaca GAR */
@media (pointer: fine) {
  html.gar-custom-cursor,
  html.gar-custom-cursor * {
    cursor: none !important;
  }

  #gar-custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 55px;
    height: auto;
    z-index: 2147483647;
    pointer-events: none;
    user-select: none;
    transform: translate(-46px, -16px);
    transition: opacity .08s ease;
    opacity: 0;
  }

  #gar-custom-cursor.is-visible {
    opacity: 1;
  }
}