@keyframes bell-ring {
    0% {
        transform: rotate(0deg);
    }
    5%, 15%, 25% {
        transform: rotate(16deg);
    }
    10%, 20%, 30% {
        transform: rotate(-16deg);
    }
    35%  {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}


.abit-message {
    background: #fff;
    /*border-radius: 6px 6px 6px 6px;*/
    box-shadow: 0 0 4px rgba(50, 50, 50, 0.4);
    position: fixed;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 20px;
    padding: 4px 10px;
    left: 20px;
    bottom: 20px;
    white-space: nowrap;
    z-index: 99;
    width: auto;
    transition: width 4s ease-in-out;
}
.abit-message-bell {
  color: var(--shspu-color-yellow);
  text-shadow: 0 0 2px rgba(50, 50, 50, 0.4);
  font-size: 30px;
  animation: bell-ring 4s infinite;
  transform-origin: 50% 0;
}
.abit-message-text {
  text-decoration: none !important; 
  margin-left: 8px;
}

@media (max-width: 576px) {
  .abit-message {
    font-size: 14px;
    bottom: 60px;
  }
  .abit-message-bell {
    font-size: 20px;
  }
}