/* This file should be probably deleted */

/*
 Here is how it was integrated: 

.pdfViewer[data-cursor="pin"] .page {
    cursor: url(/profiles/civicomment/modules/custom/oc_interactive_content/img/plus-circle-cursor.svg) 14 14,pointer;
}

As you can see there is fallbacks for the older Webkit browsers, mostly Chrome.

Another difference is the x y coordinates - these will set the cursor's hotspot, relative to the top-left corner of the image
I guess these were tested and were picked the best possible coordinates for the image.

*/

.pdfViewer[data-cursor="pin"] .page {
    cursor: url('/files/plus-circle-cursor.svg') 8 16, pointer;
    cursor: -webkit-image-set(url('/files/plus-circle-cursor.svg') 1.2x) 5 15, pointer;
}