/*--------------------------------------------------------------------------*\
    Animation style
    (style for the element when the animation is not playing,
    before it starts, after it ends, or both)
\*--------------------------------------------------------------------------*/

.anim-prop-fill-mode-forwards {
    /*animation*/
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

.anim-prop-fill-mode-both {
    /*animation*/
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}