#cursor {
     position: fixed;
     display: flex;
     justify-content: center;
     align-items: center;
     top: -5px;
     left: -5px;
     width: 10px;
     height: 10px;
     background-color: rgb(255, 68, 0);
     border-radius: 50%;
     pointer-events: none;
     z-index: 999999999999999999999 !important;
}


@media(max-width: 900px){
     #cursor{
          display:none;
     }
}

@media screen and (min-width: 300px) and (max-width:500px){
     #cursor{
          display: none;
     }
}