﻿
#MasterPageCountPlace {
    position: fixed;
    z-index: 9999;
    background: #666;
    color: #fff;
    opacity: 0.9;
    padding: 2px 12px;
    border-radius: 6px;
    left: 20px;
    bottom: 25px;
}

    #MasterPageCountPlace span {
        vertical-align: middle;
    }

@keyframes spaceboots {

    10%,90% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20%,80% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30%,70% {
        transform: translate(0px, 2px) rotate(0deg);
    }

    40%,60% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
}

.shake {
    animation-name: spaceboots;
    animation-duration: 0.8s;
    transform-origin: 50% 50%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
