﻿
@keyframes ttGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0.0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.0);
    }
}


.tt-attention {
    animation: ttGlow 3s ease-in-out infinite;
}


