#my-custom-cursor {
    position: fixed;
    width: 60px;
    height: 60px;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.15);
    z-index: 999999;
    transition: transform 0.25s ease, background 0.25s ease;
}

#my-cursor-dot {
    width: 100%;
    height: 100%;
    background: rgba(245, 86, 24, 0.4);
    border-radius: 60%;
}

.custom-pointer-active #my-custom-cursor {
    transform: translate(-50%, -50%) scale(1);
}

@media screen and (max-width:1024px){
	#my-custom-cursor{
		display:none;
	}
}