/* here you can put your own css to customize and override the theme */


.blink {
    animation-direction: alternate;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-name: blink;
    animation-timing-function: ease-in-out;
}
@keyframes blink {
0% {
    opacity: 1;
}
100% {
    opacity: 0;
}
}

