* {
    cursor: none !important;
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--cursorSize);
    height: var(--cursorSize);
    background-color: var(--drawColor);
    color: var(--bgColor);
    font-size: calc(var(--cursorSize) * 0.75);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--animDuration) var(--animType), width var(--animDuration) var(--animType), height var(--animDuration) var(--animType);
    z-index: 9999;
}

.cursor.pointer {
    width: calc(var(--cursorSize) * 0.75);
    height: calc(var(--cursorSize) * 0.75);
    background-color: var(--drawColor) !important;
}

.cursor.pointer::after {
    content: "" !important;
}

.cursor.arrowLeft::after,
.cursor.arrowRight::after {
    position: absolute;
    top: 2px;
    line-height: 1em;
}

.cursor.arrowLeft::after {
    content: "←";
}

.cursor.arrowRight::after {
    content: "→";
}

/* .cursor.Right {
    background-color: yellow;
}

.cursor.Left {
    background-color: rgb(0, 255, 140);
} */

::selection {
    background-color: var(--mainColor);
    color: var(--bgColor);
}

/* -------------------------------------------------------------- Portrait */
@media screen and (orientation: portrait) {
    * {
        cursor: auto !important;
    }

    button,
    a,
    .cursorItem {
        cursor: pointer !important;
    }

    .cursor {
        display: none;
    }
}