* {
  font-family: "PublicSansForXanhSM-Regular", "Public Sans", sans-serif;
}

@keyframes scaleUpDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scaleDownUp {
  0% {
    transform: scale(1);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes arrowDownUp {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateY(-25%) rotate(0deg);
  }
  25% {
    transform: translateY(-25%) rotate(-5deg);
  }
  50% {
    transform: translateY(-25%) rotate(0deg);
  }
  75% {
    transform: translateY(-25%) rotate(5deg);
  }
}

@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.7));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1))
      drop-shadow(0 0 15px rgba(255, 165, 0, 0.8));
  }
}

.press-animation {
  animation: scaleDownUp 0.01s ease-in;
}

.animation__arrow--updown {
  animation: arrowDownUp 1s linear infinite;
}

.separator {
  position: absolute;
  border-left: 1px dashed #9e9e9e;
  height: 50%;
  margin: 0 10px;
}

.rotate-animation {
  animation: rotate 5s linear infinite;
}

.champion-cup-shake {
  animation:
    shake 0.3s ease-in-out infinite,
    glow 1.5s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.8));
}

.vehicle-item::after,
.vehicle-item::before {
  pointer-events: none !important;
}

.text-shadow-inner {
  background-color: #ffca00;
  color: transparent;
  text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.55);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
}

.text-stroke {
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #0eb09f;
  paint-order: stroke fill;
}

.text-shadow {
  text-shadow:
    0px 4px 8.3px #439087,
    -1px 1px 0px 0px #482c0c;
}

.sonar {
  background: #0dbc18;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
}

.sonar::before,
.sonar::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: transparent;
  box-sizing: border-box;
  border: #2dccd3 4px solid;
}

.sonar::before {
  animation: smallPulse 3s ease-out infinite;
}

.sonar::after {
  animation: largePulse 3s ease-out infinite;
}

@keyframes smallPulse {
  from {
    transform: scale(0.75);
    opacity: 1;
  }
  95%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes largePulse {
  from {
    transform: scale(0.75);
    opacity: 1;
  }
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}
