@keyframes animated-counter-grow {
    30% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
}

@keyframes animated-counter-grow-huge {
    30% {
        transform: scale3d(1.3, 1.3, 1.3);
    }
}

.o_animated_number {
    transform-origin: right center;

    &.o_animated_grow {
        animation: animated-counter-grow 1s ease 0s 1 normal none running;
    }

    &.o_animated_grow_huge {
        animation: animated-counter-grow-huge 1s ease 0s 1 normal none running;
    }
}
