.mf-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 250;
    direction: ltr;
    contain: layout style size;
    pointer-events: none;
    transition: color 0.4s;
    color: white; /* Replacing $mf-color-base */
    font-family: 'lausanne';    
}

.mf-cursor:before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    display: block;
    width: 48px;
    height: 48px;
    transform: scale(0.2);
    background: currentColor;
    border-radius: 50%;
    transition: transform 0.25s ease-in-out;
}

.mf-cursor.-inverse {
    color: invert(#000); /* Replacing $mf-color-base */
}

.mf-cursor.-exclusion {
    mix-blend-mode: exclusion;
}

.mf-cursor.-exclusion:before {
    background: invert(#000); /* Replacing $mf-color-base */
}

.mf-cursor.-pointer:before {
    transform: scale(0.15);
}

.mf-cursor.-text:before {
    transform: scale(1.7);
}

.mf-cursor.-text.-active:before {
    transform: scale(1.6);
    transition-duration: 0.2s;
}

.mf-cursor.-icon:before {
    transform: scale(1.5);
}

.mf-cursor.-icon.-active:before {
    transform: scale(1.4) translate(100px, -100px);
}

.mf-cursor.-hidden:before {
    transform: scale(0);
}

.mf-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);
    color: #000000; /* Replacing $mf-color-text */
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.mf-cursor.-text .mf-cursor-text,
.mf-cursor.-icon .mf-cursor-text {
    transform: scale(1);
}

.mf-cursor-media {
    position: absolute;
    width: 400px;
    height: 400px;
    margin: calc(-400px * 0.5) 0 0 calc(-400px * 0.5);
}

.mf-cursor-media img,
.mf-cursor-media video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

@supports (object-fit: cover) {
    .mf-cursor-media img,
    .mf-cursor-media video {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translateZ(0);
    }
}

.mf-cursor-media-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: scale(0) translateZ(0);
    padding: 1px;
    border-radius: 50%;
    transition: transform 0.35s;
}

.mf-cursor.-media .mf-cursor-media-box {
    transform: scale(0.696);
    transition-duration: 0.4s, 0.4s;
    transition-delay: 0s, 0s;
}
