@keyframes rotateMe {
    from {
        transform: rotate(0) scale(1);
    }
    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes rotateMe {
    from {
        transform: rotate(0) scale(1);
    }
    to {
        transform: rotate(360deg);
    }
}
@-moz-keyframes rotateMe {
    from {
        transform: rotate(0) scale(1);
    }
    to {
        transform: rotate(360deg);
    }
}
@-o-keyframes rotateMe {
    from {
        transform: rotate(0) scale(1);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes rotateMe {
    from {
        transform: rotate(0) scale(1);
    }
    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes ScaleMe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
@-moz-keyframes ScaleMe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
@-o-keyframes ScaleMe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes ScaleMe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
.history-block .image-box:before {
    -webkit-animation-name: ScaleMe;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: ScaleMe;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: ScaleMe;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: ScaleMe;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
