/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 15 2025 | 12:12:04 */
.iconanim .elementor-icon {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    overflow: visible;
}

.iconanim .elementor-icon::before,
.iconanim .elementor-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(204, 26, 28, 0.3); /* #CC1A1C */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: -1;
    pointer-events: none;
    animation: ripple 2.5s ease-out infinite;
}

.iconanim .elementor-icon::after {
    animation-delay: 1.25s; /* Вторая волна позже */
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    70% {
        opacity: 0.15;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}
