/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Nov 17 2025 | 10:07:55 */
.round-cursor-button {
    position: fixed;
    width: 139px;
    height: 139px;
    background: #ffebff;
    border-radius: 50%;
    padding: 42px 34px;
    color: #34212d;
    font-size: 16px;
	font-weight: medium;
    text-align: center;
	line-height:20px;
    pointer-events: none;
    z-index: 9000;
    left: 0 ;
    top: 0;
    transform: translate(-50%, -50%) !important;
    opacity: 0;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px !important;
    
    transition: none !important;
    user-select: none !important;
}

@media (max-width: 1024px) {
    .round-cursor-button { display: none !important; }
}