/* Custom viewfinder cursor (fine-pointer devices only). */
@media (pointer: fine) {
  .sh-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.18s ease, opacity 0.2s ease;
  }
  .sh-cursor::before {
    content: "";
    position: absolute;
    inset: 44%;
    border-radius: 50%;
    background: var(--sh-orange);
  }
  .sh-cursor .c {
    position: absolute;
    width: 9px;
    height: 9px;
    border: 1.5px solid var(--sh-orange);
    transition: transform 0.18s ease;
  }
  .sh-cursor .c1 { top: 0; left: 0; border-right: 0; border-bottom: 0; }
  .sh-cursor .c2 { top: 0; right: 0; border-left: 0; border-bottom: 0; }
  .sh-cursor .c3 { bottom: 0; left: 0; border-right: 0; border-top: 0; }
  .sh-cursor .c4 { bottom: 0; right: 0; border-left: 0; border-top: 0; }
  .sh-cursor.is-active { transform: scale(1.6); }
  .sh-cursor.is-active .c { border-color: var(--sh-bone); }
}
