﻿    /* This is for the loading spinner thanks to :
    http://www.designcouch.com/home/why/2013/05/23/dead-simple-pure-css-loading-spinner/
    added the z index myself to show over my overlay.
*/
    .spinner

{
    height: 30px;
    width: 30px;
    margin: 60px auto 0 auto;
    position: absolute;     /* use absolute to overlay the spinner on the screen.  Relative will insert */
    -webkit-animation: rotation 1s infinite linear;
    -moz-animation: rotation 1s infinite linear;
    -o-animation: rotation 1s infinite linear;
    animation: rotation 1s infinite linear;
    border-left: 10px solid rgba(6, 112, 242, .15);
    border-right: 10px solid rgba(6, 112, 242, .15);
    border-bottom: 10px solid rgba(6, 112, 242, .15);
    border-top: 10px solid rgba(6, 112, 242, .8);
    border-radius: 100%;
    z-index: 9999999;
}

/* keyframes gradually change from 0deg to 359deg */

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes rotation {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(359deg);
    }
}

@-o-keyframes rotation {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

