.cursor {
  width: 100%;
  height: 100%;
}
@media (max-width: 1025px) {
  .cursor {
    display: none;
  }
}
.cursor-wrap {
  position: fixed;
  pointer-events: none;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 99999;
}
.cursor-inner {
  width: 0;
  height: 0;
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cursor-inner > * {
  grid-column: 1/-1;
  grid-row: 1/2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cursor-inner-drag {
  transition: all ease 0.4s;
}
.cursor-inner-drag.active .cursor-inner-drag-circle {
  flex-basis: 4rem;
  scale: 1;
}
.cursor-inner-drag.active span {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: all 0.4s ease 0.3s;
}
.cursor-inner-drag.hold {
  transform: scale(0.8);
}
.cursor-inner-drag-inner {
  width: max-content;
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
}
.cursor-inner-drag span {
  opacity: 0;
  flex-shrink: 0;
  transition: all 0.4s ease;
  z-index: 1;
}
.cursor-inner-drag span:first-child {
  transform: translateX(100%);
}
.cursor-inner-drag span:last-child {
  transform: translateX(-100%);
}
.cursor-inner-drag-circle {
  width: 3.2rem;
  z-index: 2;
  aspect-ratio: 1;
  border-radius: 999px;
  border: max(1px, 0.1rem) solid var(--cl-primary);
  flex-shrink: 0;
  transform-origin: center center;
  scale: 0;
  flex-basis: 0.8rem;
  transition: all ease 0.6s;
}
@keyframes play {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pause {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.cursor-inner-video-inner {
  width: 100%;
  height: 100%;
  width: 8rem;
  height: 8rem;
  background-color: var(--cl-primary);
  color: var(--cl-white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  scale: 0;
  transition: all ease 0.6s;
}
.cursor-inner-video-inner span {
  grid-area: 1/1/2/2;
  transition: all 0.4s ease;
}
.cursor-inner-video-inner span:last-child {
  opacity: 0;
  scale: 0.8;
}
.cursor-inner-video.active .cursor-inner-video-inner {
  animation: play 0.8s;
  scale: 1;
}
.cursor-inner-video.pause .cursor-inner-video-inner {
  animation: pause 0.8s;
}
.cursor-inner-video.pause .cursor-inner-video-inner span:first-child {
  opacity: 0;
  scale: 0.8;
}
.cursor-inner-video.pause .cursor-inner-video-inner span:last-child {
  opacity: 1;
  scale: 1;
}
