.site-audio-toggle {
  filter: drop-shadow(1px 1px 2px rgb(0 0 0/0.5));
}
.site-audio-toggle-base,
.site-audio-toggle-one {
  transition: all 0.2s ease-in-out 0.2s;
}
.site-audio-toggle-two {
  transition: all 0.2s ease-in-out 0.1s;
}
.site-audio-toggle.site-audio-toggle-muted .site-audio-toggle-base {
  transform: translateX(4px);
}
.site-audio-toggle.site-audio-toggle-muted .site-audio-toggle-one {
  opacity: 0;
  transition: all 0.2s ease-in-out 0.2s;
}
.site-audio-toggle.site-audio-toggle-muted .site-audio-toggle-two {
  opacity: 0;
  transition: all 0.2s ease-in-out 0.1s;
}
.falling-anim-item {
  position: absolute;
  animation: falling-anim-fall 5s linear infinite;
}
.falling-anim-item-up {
  position: absolute;
  bottom: 0;
  animation: falling-anim-fall-up 5s linear infinite;
}
@keyframes falling-anim-fall {
  0% {
    transform: translateY(-60px) rotate(0deg);
    opacity: 1;
  }
  to {
    transform: translateY(100vh) rotate(1turn);
    opacity: 0;
  }
}
@keyframes falling-anim-fall-up {
  0% {
    transform: translateY(60px) rotate(0deg);
    opacity: 1;
  }
  to {
    transform: translateY(-100vh) rotate(1turn);
    opacity: 0;
  }
}
.popup-ticker {
  position: fixed;
  padding: 10px;
  border-radius: 5px;
  font-weight: 700;
  z-index: 1;
  transition: opacity 0.5s;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
  color: #000;
  font-size: 10em;
  animation: pop-up-animation 0.8s ease-out forwards;
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: none;
}
@keyframes pop-up-animation {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.site-animations-enabled .hodl-logo-wrapper {
  animation: siteAnimBounce 3s ease-in-out infinite;
}
.site-animations-enabled .hodl-ca-wrapper {
  animation: siteAnimPulse 3s ease-in-out infinite;
}
.site-animations-enabled .hodl-ticker-wrapper:hover {
  animation: siteAnimPulse 0.3s ease-in-out infinite;
}
@keyframes siteAnimBounce {
  0%,
  20%,
  50%,
  80%,
  to {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
@keyframes siteAnimSlideIn {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes siteAnimfadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes siteAnimPulse {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.site-has-custom-cursor {
  cursor: var(--site-custom-cursor), default !important;
}
.site-has-custom-cursor [role="button"] :hover,
.site-has-custom-cursor [role="button"]:hover,
.site-has-custom-cursor a:hover,
.site-has-custom-cursor button:hover {
  cursor: var(--site-custom-cursor-pointer), pointer !important;
}
