canvas {
    position: fixed;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

canvas.pixelated {
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
}

canvas#sqCursor {
    z-index: 1;
}

div#sqSpinner {
    position: fixed;
    margin: auto; top: 0; left: 0; bottom: 0; right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px 5px #F90;
    display: none;
    transform: rotate(30deg);
    z-index: 2;
}

div#sqSpinner > div {
    position: absolute;
    top: 45px;
    left: 5px;
    width: 90px;
    height: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px 5px #F90;
}
