/* [project]/app/pc/music/music.css [app-client] (css) */
.music-scrollbar::-webkit-scrollbar {
  width: 8px;
}

.music-scrollbar::-webkit-scrollbar-track {
  background: none;
}

.music-scrollbar::-webkit-scrollbar-thumb {
  background-color: #fff3;
  border-radius: 4px;
}

.music-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #ffffff4d;
}

@keyframes blob {
  0% {
    translate: 0;
    rotate: none;
  }

  30% {
    rotate: 40deg;
  }

  50% {
    translate: 300px 390px;
    scale: 1.1;
  }

  80% {
    rotate: 90deg;
  }

  100% {
    translate: 0;
    rotate: none;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatWord {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.music-player-root {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
  user-select: none;
  font-family: Inter, PingFang SC, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.music-player-root * {
  scrollbar-width: thin;
  scrollbar-color: #fff3 transparent;
}

/*# sourceMappingURL=app_pc_music_music_ad65b47f.css.map*/