.fleetmon-spinner {
    left: 50%;
    position: fixed;
    text-align: center;
    top: 50%;
    width: 200px;
    z-index: 10000;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.fleetmon-spinner.mini {
    position: absolute;
    width: 160px;
    z-index: 5;
}

.fleetmon-spinner > img {
    -moz-animation: fmSpinnerAnimation 3s infinite;
    -moz-transition-timing-function: ease-in-out;
    -o-animation: fmSpinnerAnimation 3s infinite;
    -o-transition-timing-function: ease-in-out;
    -webkit-animation: fmSpinnerAnimation 3s infinite;
    -webkit-transition-timing-function: ease-in-out;
    animation: fmSpinnerAnimation 3s infinite;
    transition-timing-function: ease-in-out;
    height: auto;
    width: 150px;
}

.fleetmon-spinner.mini > img {
	width: 100px;
}

@-moz-keyframes fmSpinnerAnimation {
    0% {
        -moz-transform: rotate(0deg);
    }
    25% {
        -moz-transform: rotate(55deg);
    }
    75% {
        -moz-transform: rotate(-23deg);
    }
    100% {
        -moz-transform: rotate(0deg);
    }
}

@-o-keyframes fmSpinnerAnimation {
    0% {
        -o-transform: rotate(0deg);
    }
    25% {
        -o-transform: rotate(55deg);
    }
    75% {
        -o-transform: rotate(-23deg);
    }
    100% {
        -o-transform: rotate(0deg);
    }
}

@-webkit-keyframes fmSpinnerAnimation {
    0% {
        -webkit-transform: rotate(0deg);
    }
    25% {
        -webkit-transform: rotate(55deg);
    }
    75% {
        -webkit-transform: rotate(-23deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

@keyframes fmSpinnerAnimation {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(55deg);
    }
    75% {
        transform: rotate(-23deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.fleetmon-spinner > span {
    background-color: #2c2d2c;
    color: #f1f1f1;
    display: inline-block;
    margin-top: 8px;
    padding: 4px 6px;
    text-shadow: 1px 1px 0 #000000;
}