body {
    cursor: none !important;
}

/* Cursor */
.Cursor {
    pointer-events: none;
    position: fixed;
    display: block;
    border-radius: 0;
    transform-origin: center center;
    mix-blend-mode: normal;
    top: 0;
    left: 0;
    z-index: 1060; /* Higher than Bootstrap modal */
}

.Cursor span {
    position: absolute;
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 20px;
    background-color: blue;
    transform-origin: center center;
    transform: translate(-50%, -50%);
}

.modal {
    z-index: 1055; /* Lower than the cursor's z-index */
}
