/* 
    Created on : Nov 12, 2015, 4:02:46 PM
    Author     : kdjackson
*/

@keyframes spinner {
    to {transform: rotate(360deg);}
}
 
@-webkit-keyframes spinner {
    to {-webkit-transform: rotate(360deg);}
}
 
.spinner {
    min-width: 24px;
    min-height: 24px;
}
 
.spinner:before {
    content: 'Loading…';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-left: -8px;
}
 
.spinner:not(:required):before {
    content: '';
    border-radius: 50%;
    border: 3px solid rgba(100, 100, 100, .2);
    border-top-color: rgba(255, 255, 255, .9);
    animation: spinner .6s linear infinite;
    -webkit-animation: spinner .8s linear infinite;
}
.spinner.black:not(:required):before {
    border: solid rgba(0, 0, 0, .7);
    border-top-color: rgba(200, 200, 200, .9);
}

.spinner.large:before {
    width: 80px;
    height: 80px;
    border-width: 5px;
    margin-top: -40px;
    margin-left: -40px;        
}
