@import 'z-index_values.css';

#custom-cursor {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: #ffffff0a;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: var(--z-index-customCursor);
}

#custom-cursor.hover {
    width: 80px;
    height: 80px;
    transition: width 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), height 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

a, button, [role="button"], [tabindex] {
    cursor: none;
}

@media screen and (max-width: 1180px) {
    
    /* #custom-cursor{
        display: none;
        opacity: 0;
    } */
    
}