/*
 Theme Name:   kleines Studio
 Text Domain:  kks
 Description:  Child Theme based on GeneratePress.
 Author:       Big Ears Webagentur
 Author URI:   https://bigears.work
 Template:     generatepress
 Version:      0.1
*/

/*** Start KMW ***/
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
	transition: opacity 0.3s linear, width 0.3s linear, height 0.3s linear;
  }

.cursor-dot.is-hovering {
    opacity: 0.375;
    width: 1.4rem;
    height: 1.4rem;
  }

@media (hover: none) {
    .cursor-dot { display: none; }   /* auf Touch ausblenden */
  }