﻿Cursor {
    position: absolute;
    cursor: none;
    z-index: 500;
    opacity: 1;
    transition: opacity 125ms ease-out;
    pointer-events: none;
    flex-shrink: 1;

    img {
        position: absolute;
        height: 128px;
        background-repeat: no-repeat;
        background-size: contain;
        filter: border-wrap(4px, black);
    }

    .avatar {
        transform: translate(100%, 25%);
        width: 32px;
        aspect-ratio: 1;
        z-index: 2;
    }

    &.hide {
        opacity: 0;
    }
}
