@charset "utf-8";

/* animation */
.animation-flare {
    animation-name: indexIcon;
    animation-duration: 7s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes indexIcon {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    21.42857% {
        transform: scale(2.3);
        opacity: 0;
    }
    100% {
        transform: scale(2.3);
        opacity: 0;
    }
}
