.spinner {
    position: absolute;
    z-index: 10000010;
    width: 20px;
    height: 20px;
}

/* Spinner Circle Rotation */
.spinner {
    border: 4px rgba(0, 136, 204, 0.25) solid;
    border-top: 4px #0088CC solid;
    border-radius: 50%;
    -webkit-animation: spCircRot .6s infinite linear;
    animation: spCircRot .6s infinite linear; }

@-webkit-keyframes spCircRot {
    from {
        -webkit-transform: rotate(0deg); }
    to {
        -webkit-transform: rotate(359deg); }
}

@keyframes spCircRot {
    from {
        transform: rotate(0deg); }
    to {
        transform: rotate(359deg); }
}

/*# sourceMappingURL=nu_spinner.css.map */
