.set-animation {
animation-delay: 0s;
animation-direction: normal;
animation-duration: 500ms;
animation-fill-mode: forwards;
animation-iteration-count: 1;
animation-name: motion;
animation-timing-function: ease-in-out;
}
@keyframes motion {
0% {
}
50% {
}
100% {
}
}