.rtmkit-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999999;
}

.rtmkit-cursor .dot {
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 999999;
    transition: width 0.2s ease, height 0.2s ease, transform 0.2s ease, padding 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.rtmkit-cursor .dot.is-view {
    width: 44px;
    height: 44px;
    padding: 0 8px;
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(1);
}

.rtmkit-cursor .outline {
    width: 32px;
    height: 32px;
    border: 2px solid #000;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.2s ease, height 0.2s ease;
    z-index: 999999;
}

.rtmkit-cursor .outline.is-view {
    width: 56px;
    height: 56px;
    transform: translate(-50%, -50%) scale(1.05);
}

body.rtmkit-mouse-effects-enabled {
    cursor: none;
}

