@keyframes bounce {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2, 1.2);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
.sbc-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease-in 0s;
  &.disable {
    opacity: 0;
    pointer-events: none;

    z-index: -1;
  }
  img {
    max-height: 120px;
    max-width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    animation: bounce 1s linear 0s infinite forwards;
    transform: translate(-50%, -50%);
  }
}
