.attention-anim-10-a {
    animation: attention-anim-10-a 10s linear infinite;
}
.attention-anim-10-b {
    position: absolute;
    animation: attention-anim-10-b 10s linear infinite;
}
@keyframes attention-anim-10-a {
    74% {
        transform: scale(1);
        opacity: 0;
        border-radius: 0%;
    }
    82% {
        transform: scale(1.2);
        opacity: .5;
        border-radius: 50%;
    }
    84% {
        border-radius: 40% 50% 20% 15%;
    }
    86% {
        border-radius: 15% 40% 50% 20%;
    }
    88% {
        border-radius: 20% 15% 40% 50%;
    }
    90% {
        border-radius: 50% 20% 15% 40%;
    }
    92% {
        transform: scale(1.2);
        opacity: .5;
        border-radius: 50%;
    }
    100% {
        transform: scale(1);
        opacity: 0;
        border-radius: 0%;
    }
}
@keyframes attention-anim-10-b {
    74% {
        opacity: 1;
        border-radius: 0%;
    }
    82% {
        opacity: .5;
        border-radius: 50%;
    }
    84% {
        border-radius: 50% 20% 50% 50%;
    }
    86% {
        border-radius: 50% 50% 20% 50%;
    }
    88% {
        border-radius: 50% 50% 50% 20%;
    }
    90% {
        border-radius: 20% 50% 50% 50%;
    }
    92% {
        opacity: .5;
        border-radius: 50%;
    }
    100% {
        opacity: 1;
        border-radius: 0%;
    }
}
