@import url('../global.css');

.pet-hoverable > * {
  transition: opacity 0.1s linear;
  pointer-events: none;
}

.pet-hoverable {
  position: relative;
}

.pet-hover {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0.5em;
}

.pet-hoverable:hover > :not(.pet-hover) {
  opacity: 0;
}

.pet-hoverable:hover .pet-hover {
  opacity: 1;
}

