
/*** Default Cursor Settings ***/
.custom_cursor {
    position:fixed;
    top:50%;
    left:50%;
    pointer-events: none;
    transition: ease opacity .1s;
    opacity: 0;
}
.custom_cursor.show {
    opacity: 1;
}
.custom_cursor.hide {
    opacity: 0;
}
/*** Different Cursor Styles ***/
#cursor__circle {
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    background: black;
    border-radius: 50%;
    backface-visibility: hidden;
    z-index: 10000000000;
}