@keyframes jsxc-bounce-6 {
  0% {
    transform: scale(1, 1) translateY(0);
  }

  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }

  30% {
    transform: scale(0.9, 1.1) translateY(-10px);
  }

  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }

  57% {
    transform: scale(1, 1) translateY(-1px);
  }

  64% {
    transform: scale(1, 1) translateY(0);
  }

  100% {
    transform: scale(1, 1) translateY(0);
  }
}

@keyframes jsxc-establishing {
  0% {
    background-color: $establishing-color1;
    border-width: 0;
    margin-left: -20px;
    width: 40px;
  }

  50% {
    background-color: $establishing-color2;
    margin-left: -40px;
    width: 80px;
  }

  100% {
    background-color: $establishing-color1;
    border-width: 0;
    margin-left: -20px;
    width: 40px;
  }
}

@keyframes jsxc-ringing {
  0% {
    background-color: $ringing-color1;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    width: 20px;
  }

  50% {
    background-color: $ringing-color2;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
    width: 80px;
  }

  100% {
    background-color: $ringing-color1;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    width: 20px;
  }
}

@keyframes jsxc-rotate {
  0% {
    transform: rotate(0deg);
  }

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