.ym-cursor, .ym-cursor-center {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 250;
    direction: ltr;
    contain: layout style size;
    pointer-events: none;
    transition: opacity .3s, color .4s
}

.ym-cursor.ym-type-default:before {
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
}

.ym-cursor.ym-type-ring:before {
    top: -24px;
    left: -24px;
    width: 48px;
    height: 48px;
    border: 2px solid;
    background: transparent
}

.ym-cursor-center:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .25s ease-in-out, opacity .1s;
    display: block;
}

.ym-cursor:before {
    content: "";
    position: absolute;
    display: block;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: currentColor;
    border-radius: 50%;
    transition: transform .25s ease-in-out, opacity .1s
}

@supports (mix-blend-mode: exclusion) {
    .ym-cursor.ym-state-exclusion {
        mix-blend-mode: exclusion
    }

    .ym-cursor.ym-state-exclusion:before {
        background: #fff
    }

    .ym-cursor.ym-state-opaque:before, .ym-cursor.ym-type-default.ym-state-opaque:before  {
        background: #fff;
        transform: scale(2.5);
    }

    .ym-cursor.ym-type-ring.ym-state-opaque:before  {
        background: #fff;
        transform: scale(1.32);
    }

    .ym-cursor.ym-state-opaque {
        mix-blend-mode: exclusion
    }
}

.ym-cursor.ym-type-default.ym-state-hover:before {
    opacity: 0.6;
    background: white;
}

.ym-cursor.ym-type-ring.ym-state-hover:before {
    opacity: 0.6;
    background: white;
    border: none;
}

.ym-cursor.ym-state-pointer:before, .ym-cursor.ym-type-default.ym-state-pointer:before {
    transform: scale(0.5)
}

.ym-cursor.ym-type-ring.ym-state-pointer:before {
    transform: scale(0.2);
    background: currentColor;
}

.ym-cursor.ym-type-default.ym-state-text:before, .ym-cursor.ym-state-text:before {
    opacity: .85;
    transform: scale(6)
}

.ym-cursor.ym-type-ring.ym-state-text:before {
    opacity: .85;
    transform: scale(1.7);
    background: currentColor;
}

.ym-cursor.ym-state-active:before {
    transform: scale(0);
}

.ym-cursor-center.ym-state-active:before {
    transform: scale(3);
}

.ym-cursor-center.ym-type-ring:before {
    transform: scale(1);
}
.ym-cursor-center.ym-state-text:before,
.ym-cursor-center.ym-state-opaque:before,
.ym-cursor-center.ym-state-pointer:before,
.ym-cursor-center.ym-state-media:before,
.ym-cursor-center.ym-type-default:before,
.ym-cursor-center:before {
    transform: scale(0);
}


.ym-cursor.ym-state-text.ym-state-active:before, .ym-cursor.ym-type-default.ym-state-text.ym-state-active:before {
    transform: scale(8);
    transition-duration: .2s
}

.ym-cursor.ym-type-ring.ym-state-text.ym-state-active:before {
    transform: scale(3);
    transition-duration: .2s
}

.ym-cursor.ym-state-icon:before, .ym-cursor.ym-type-default.ym-state-icon:before {
    transform: scale(5)
}

.ym-cursor.ym-type-ring.ym-state-icon:before {
    transform: scale(1.5)
}

.ym-cursor.ym-state-icon.ym-state-active:before {
    transform: scale(1.4)
}



.ym-cursor-text {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(10deg);
    opacity: 0;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    transition: opacity .4s, transform .3s
}

.ym-cursor.ym-state-text .ym-cursor-text, .ym-cursor.ym-state-icon .ym-cursor-text {
    opacity: 1;
    transform: scale(1)
}

.ym-cursor-media {
    position: absolute;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px
}

.ym-cursor-media img, .ym-cursor-media video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%
}

@supports (object-fit: cover) {
    .ym-cursor-media img, .ym-cursor-media video {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translateZ(0)
    }
}

.ym-cursor-media-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: scale(0) translateZ(0);
    padding: 1px;
    opacity: 0;
    border-radius: 50%;
    transition: transform .35s, opacity .2s .2s
}

.ym-cursor.ym-state-media .ym-cursor-media-box {
    opacity: 1;
    transform: scale(0.696);
    transition-duration: .4s, .4s;
    transition-delay: 0s, 0s
}

.ym-cursor.ym-state-hidden:before {
    transform: scale(0) !important
}

.ym-cursor-center.ym-state-hidden:before {
    transform: scale(0)!important
}

.ym-sticky-overlay {
    border: 2px solid white!important;
}

.ym-state-bordered {
    border: 2px solid white!important;
}

.notCursor {
    cursor: none!important;
}