.custom-cursor, .custom-cursor.visible.button-hover {
    position: fixed;
    top: -40px;
    left: -40px;
    z-index: 9999;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 1px solid var(--white);
    cursor: none;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.custom-cursor.visible {
    opacity: 1;
    visibility: visible;
}

.custom-cursor.pressed {
    border: 1px solid transparent;
    background: var(--gold);
}

.custom-cursor .left-arrow, .custom-cursor .right-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.custom-cursor .left-arrow {
    left: 7px;
}

.custom-cursor .right-arrow {
    right: 7px;
}

.custom-cursor .left-arrow svg path, .custom-cursor .right-arrow svg path {
    fill: #FFF;
}