.hp-custom-cursor,
.hp-custom-cursor * {
    box-sizing: border-box;
}
.hp-custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2147483647;
    font-family: var(--t-headline-font);
}
.hp-custom-cursor__circle {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    mix-blend-mode: difference;
    z-index: 2147483647;
}
.hp-custom-cursor__circle--expanded {
    width: 40px;
    height: 40px;
    border-width: 2px;
    background: rgba(255, 255, 255, 0.5);
}
.hp-custom-cursor.is-hidden {
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 768px) {
    .hp-custom-cursor {
        display: none;
    }
}