
.fx--pulse {
    -webkit-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite;
    &:hover {
        -webkit-animation: none;
    }
}

/* Keyframes für den Effekt */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }
}